hsun 2 years ago
parent
commit
62257bfa91
1 changed files with 1 additions and 0 deletions
  1. 1 0
      models/fms/contract_invoice.go

+ 1 - 0
models/fms/contract_invoice.go

@@ -56,6 +56,7 @@ func (c *ContractInvoice) Update(updateCols []string) (err error) {
 func (c *ContractInvoice) Sum(field, condition string, pars []interface{}) (total float64, err error) {
 	totalList := make([]float64, 0)
 	err = global.DEFAULT_MYSQL.Model(c).
+		Where("is_deleted = 0").
 		Where(condition, pars...).
 		Pluck(field, &totalList).Error
 	for i := range totalList {