...
|
...
|
@@ -498,10 +498,10 @@ func (c *OrderInfoController) GetOrderReal() { |
|
|
"update_time": orderinfo.UpdateTime.Local().Format("2006-01-02 15:04:06"),
|
|
|
}
|
|
|
if orderinfo.OrderCompute.UseOrderAmount >= 0 {
|
|
|
rsp["orderNumCountControl"] = fmt.Sprint(orderinfo.OrderCompute.UseOrderAmount)
|
|
|
rsp["orderNumCountControl"] = fmt.Sprint(orderinfo.OrderCompute.UseOrderCount)
|
|
|
}
|
|
|
if orderinfo.OrderCompute.UseOrderCount >= 0 {
|
|
|
rsp["orderAmountAdjustmentCountControl"] = fmt.Sprint(orderinfo.OrderCompute.UseOrderCount)
|
|
|
rsp["orderAmountAdjustmentCountControl"] = fmt.Sprint(orderinfo.OrderCompute.UseOrderAmount)
|
|
|
}
|
|
|
c.ResponseData(rsp)
|
|
|
return
|
...
|
...
|
|