Browse Source

fix:bug

token_replace
黄梓健 5 years ago
parent
commit
f79f066576
  1. 2
      controllers/client/order_entry.go

2
controllers/client/order_entry.go

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

Loading…
Cancel
Save