更新
This commit is contained in:
@@ -538,8 +538,12 @@ public class HfStationDeviceDriver extends AbstractOpcDeviceDriver implements De
|
||||
if (inspect_in_stocck.toString().equals("true")) {
|
||||
json.put("is_first", "true");
|
||||
}
|
||||
String prx = "00";
|
||||
if (barcode < 10){
|
||||
prx = "000";
|
||||
}
|
||||
json.put("device_code", device_code);
|
||||
json.put("barcode", barcode);
|
||||
json.put("barcode", prx + barcode);
|
||||
HttpResponse result = acsToWmsService.updateBarcode(json);
|
||||
if (ObjectUtil.isNotEmpty(result)) {
|
||||
if (result.getStatus() == 200) {
|
||||
|
||||
Reference in New Issue
Block a user