|
|
@ -438,7 +438,7 @@ public class AcsToWmsServiceImpl implements AcsToWmsService { |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public ApplyTaskResponse applyLabelling(JSONObject param) { |
|
|
|
// 木托盘号(4)##物料编码(12)##数量(2-3)##吨量(单重X数量)##生产日期(11)##客户名称##订单号(12)
|
|
|
|
// 木托盘号(4)##物料编码(12)##数量(2-3)##吨量(单重X数量)##生产日期(11)##客户名称##订单号(12)##产品名称##型号
|
|
|
|
String requestNo = param.getString("requestNo"); |
|
|
|
ApplyTaskRequest baseRequest = param.toJavaObject(ApplyTaskRequest.class); |
|
|
|
if (baseRequest.getVehicle_code() == null) { |
|
|
@ -466,7 +466,9 @@ public class AcsToWmsServiceImpl implements AcsToWmsService { |
|
|
|
.append(multiply).append("##") |
|
|
|
.append(DateUtil.format(DateUtil.parse(DateUtil.today()), "yyyy年MM月dd日")).append("##") |
|
|
|
.append(custer.getCUSTER_NAME()).append("##") |
|
|
|
.append(workorder.getProduction_order()); |
|
|
|
.append(workorder.getProduction_order()).append("##") |
|
|
|
.append(baseMaterial.getMaterial_name()).append("##") |
|
|
|
.append(baseMaterial.getMaterial_model()); |
|
|
|
return ApplyTaskResponse.responseOk(requestNo, sb.toString()); |
|
|
|
} |
|
|
|
|
|
|
|