作者 tangxvhui

bbug 修复

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