|
|
@ -102,11 +102,7 @@ func (t *CustomerOrder) SumCustomerOrder(activityId, rehearsalId, archId interfa |
|
|
|
res := make([]map[string]string, 0) |
|
|
|
err := core.GetXormAuto().Table(t).Select("order_entry_person_id, order_entry_person_name, COALESCE(SUM(goods_num), 0) as num"). |
|
|
|
NoAutoCondition().Where("is_delete=0 and activity_id=? and rehearsal_id=? and arch_id=?", |
|
|
|
<<<<<<< Updated upstream |
|
|
|
activityId, rehearsalId, archId).GroupBy("order_entry_person_id,order_entry_person_name").Limit(limit). |
|
|
|
======= |
|
|
|
activityId, rehearsalId, archId).GroupBy("order_entry_person_id, order_entry_person_name").Limit(limit). |
|
|
|
>>>>>>> Stashed changes |
|
|
|
Desc("num").Find(&res) |
|
|
|
return res, err |
|
|
|
} |
|
|
|