|
@@ -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 {
|