1.修复设备领用的bug

feature-order-fix
x_z 2 years ago
parent d6d4cc27f6
commit 7c88ebc0de

@ -126,7 +126,11 @@ public class DeviceCollectOrderServiceImpl implements DeviceCollectOrderService
deviceCollectOrderDetailDao.updateByPrimaryKey(detailEntity);
}
});
deviceCollectOrderDao.updateStatusById(status, id);
String auditUser = customerService.getUserBean().getUserName();
deviceCollectOrderEntity.setAuditUser(auditUser);
deviceCollectOrderEntity.setStatus(status);
deviceCollectOrderDao.updateByPrimaryKey(deviceCollectOrderEntity);
return ResultVOUtils.success("更新成功!");
}

@ -11,6 +11,7 @@ import com.glxp.api.admin.util.gs1.Gs1128Decoder;
import com.glxp.api.admin.util.gs1.Gs1128Engine;
import java.util.Map;
import java.util.Optional;
/**
* @author
@ -315,8 +316,11 @@ public class FilterUdiUtils {
* @return
*/
public static String transGlxpHasSerStr(WarehouseEntity warehouseEntity) {
String udiCode = "#" + warehouseEntity.getNameCode() + "#" + warehouseEntity.getProduceDate() + "#" + warehouseEntity.getExpireDate() +
"#" + warehouseEntity.getBatchNo() + "#" + warehouseEntity.getSerialNo() + "#" + "#";
String udiCode = "#" + warehouseEntity.getNameCode()
+ "#" + Optional.ofNullable(warehouseEntity.getProduceDate()).orElse("")
+ "#" + Optional.ofNullable(warehouseEntity.getExpireDate()).orElse("")
+ "#" + Optional.ofNullable(warehouseEntity.getBatchNo()).orElse("")
+ "#" + Optional.ofNullable(warehouseEntity.getSerialNo()).orElse("") + "#" + "#";
return udiCode;
}
}

@ -56,11 +56,3 @@ CREATE TABLE `device_ma_order` (
`status` tinyint(1) NULL DEFAULT NULL COMMENT '状态',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '设备养护记录表' ROW_FORMAT = Dynamic;
ALTER TABLE `udiwms`.`device_collect_order_detail`
ADD COLUMN `invStorageCode` varchar(255) NULL COMMENT '领用仓库' AFTER `updateTime`,
MODIFY COLUMN `invWarehouseCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '领用分库' AFTER `updateTime`;
ALTER TABLE `udiwms`.`device_collect_order_detail`
ADD COLUMN `receiveStorageCode` varchar(255) NULL COMMENT '接收仓库' AFTER `invSpaceCode`,
MODIFY COLUMN `receiveWarehouseCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '接收分库' AFTER `invSpaceCode`;
Loading…
Cancel
Save