|
|
@ -508,7 +508,7 @@ func (t *OrderEntryCtl) EntryOrders() { |
|
|
|
" o.receiver as receiver, o.phone as phone, o.address as address, o.buyer_id as user_id, o.order_entry_person_name as entry_name, "+ |
|
|
|
" o.total_amount as order_money, DATE_FORMAT(o.created_at, '%Y-%m-%d %H:%i:%S') AS order_time"). |
|
|
|
Where("o.activity_id=? and o.rehearsal_id=? and o.order_entry_person_id=? and o.arch_id=?", |
|
|
|
activity.Id, activity.RehearsalId, uid, activity.ArchId).Desc("o.id").Find(&list) |
|
|
|
activity.Id, activity.RehearsalId, uid, activity.ArchId).Desc("o.created_at").Find(&list) |
|
|
|
t.CheckErr(err) |
|
|
|
orderIds := make([]int, 0) |
|
|
|
for _, v := range list { |
|
|
|