Browse Source

Merge pull request '导出excel' (#68) from fix_import into develop

Reviewed-on: http://101.201.121.115:3000/leo/LAPP_CHEERSSON_BACKEND/pulls/68
pull/69/head
yehongyang 3 years ago
parent
commit
7aa8f117ff
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      services/ap/implments/CustDemandVerHead.service.impl.go

+ 2
- 2
services/ap/implments/CustDemandVerHead.service.impl.go View File

@ -2039,10 +2039,10 @@ func (impl *CustDemandVerHeadServiceImplement) ExportCompareVersionInfoByArtcle(
value, ok := val.Item[key]
if ok {
cell = row.AddCell()
cell.Value = fmt.Sprintf("%0.2f", value*100) + "%"
cell.Value = fmt.Sprintf("%0.2f", value) + "%"
} else {
cell = row.AddCell()
cell.Value = fmt.Sprintf("%0.2f", value*100) + "%"
cell.Value = fmt.Sprintf("%0.2f", value) + "%"
}
}
}


Loading…
Cancel
Save