|
@@ -233,7 +233,7 @@ func (s *treeService) GetAllContract(projectId int, account *models.CmProjectAcc
|
|
|
ContractsReturned = 0
|
|
|
folder.ContractsIncomeProgress = "0%"
|
|
|
} else {
|
|
|
- folder.ContractsIncomeProgress = fmt.Sprintf("%.0f", (ContractsReturned/ContractsIncome)*100) + "%"
|
|
|
+ folder.ContractsIncomeProgress = fmt.Sprintf("%.2f", (ContractsReturned/ContractsIncome)*100) + "%"
|
|
|
}
|
|
|
|
|
|
contractsPay, _ := strconv.ParseFloat(data.ContractsPay, 64)
|
|
@@ -251,7 +251,7 @@ func (s *treeService) GetAllContract(projectId int, account *models.CmProjectAcc
|
|
|
ContractsPaid = 0
|
|
|
folder.ContractsPayProgress = "0%"
|
|
|
} else {
|
|
|
- folder.ContractsPayProgress = fmt.Sprintf("%.0f", (ContractsPaid/ContractsPay)*100) + "%"
|
|
|
+ folder.ContractsPayProgress = fmt.Sprintf("%.2f", (ContractsPaid/ContractsPay)*100) + "%"
|
|
|
}
|
|
|
|
|
|
// 安全
|