|
@@ -70,7 +70,7 @@ public class VendingMachineAction implements IMINAction {
|
|
|
@MINParam(key = "deliveryNo") String deliveryNo,
|
|
|
@MINParam(key = "returnUrl") String returnUrl,
|
|
|
@MINParam(key = "channel") String channel,
|
|
|
- @MINParam(key = "orderId") String orderId,
|
|
|
+ @MINParam(key = "orderNo") String orderNo,
|
|
|
MINHttpServletRequestContext MINRequest
|
|
|
) throws MINBusinessException, InterruptedException {
|
|
|
MINActionResult res = new MINActionResult();
|
|
@@ -139,7 +139,7 @@ public class VendingMachineAction implements IMINAction {
|
|
|
|
|
|
restList.add(imeiAddr); //机台号
|
|
|
restList.add("|");
|
|
|
- restList.add(orderId); //订单号
|
|
|
+ restList.add(orderNo); //订单号
|
|
|
restList.add("]");
|
|
|
restList.add("(bFA 00 06 00 24");
|
|
|
String cargoNo16 = DataUtil.str10ToStr16(Integer.valueOf(cargoNo));
|