|
|
@ -325,10 +325,10 @@ func (t *OrderEntryCtl) ManualOrder() { |
|
|
|
} |
|
|
|
|
|
|
|
ms := make([]map[string]int, 0) |
|
|
|
err = s.Table(&models.CustomerOrderSub{}).Alias("s").Select("s.goods_id, (COALESCE sum(goods_num), 0) as goods_num"). |
|
|
|
err = s.Table(&models.CustomerOrderSub{}).Alias("s").Select("s.goods_id, COALESCE(SUM(s.goods_num), 0) as goods_num"). |
|
|
|
Join("left", (&models.CustomerOrder{}).Alias("o"), "o.id=s.order_id"). |
|
|
|
Where("o.activity_id=? and o.rehearsal_id=? and o.arch_id=?", activity.Id, activity.RehearsalId, activity.ArchId). |
|
|
|
In("goods_id", goodIds).GroupBy("goods_id").Find(&ms) |
|
|
|
In("s.goods_id", goodIds).GroupBy("s.goods_id").Find(&ms) |
|
|
|
if err != nil { |
|
|
|
s.Rollback() |
|
|
|
t.CheckErr(err) |
|
|
|