长泰添加异常UDI码

dev_fifo1.0
anthonywj 1 year ago
parent 506c61bf64
commit 1551cd46e2

@ -24,6 +24,11 @@ public class IoCodeEntity implements Serializable {
@TableField(value = "code") @TableField(value = "code")
private String code; private String code;
/**
* GS1
*/
@TableField(value = "errUdiCode")
private String errUdiCode;
/** /**
* *
*/ */

@ -22,6 +22,19 @@ public class IoCodeTempEntity {
@TableField(value = "code") @TableField(value = "code")
private String code; private String code;
public void setCode(String code) {
this.code = code;
this.setErrUdiCode(code.replace("\u001D", ""));
}
/**
* GS1
*/
@TableField(value = "errUdiCode")
private String errUdiCode;
/** /**
* *
*/ */

@ -4,7 +4,7 @@ server:
spring: spring:
datasource: datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver driver-class-name: com.p6spy.engine.spy.P6SpyDriver
jdbc-url: jdbc:p6spy:mysql://192.168.0.43:3306/udi_wms_ct?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true jdbc-url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_wms_ct?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root username: root
password: 123456 password: 123456
hikari: hikari:

@ -708,5 +708,8 @@ INSERT ignore INTO `sys_param_config`(`id`, `parentId`, `paramName`, `paramKey`,
`paramType`, `paramExplain`, `updateTime`) `paramType`, `paramExplain`, `updateTime`)
VALUES (200320, 0, '普耗/收费出库先进先出', 'phfee_batchno_fifo', '1', 1, 0, '第三方普耗/收费出库是否按照批号先进先出先进先出', '2024-03-07 15:20:35'); VALUES (200320, 0, '普耗/收费出库先进先出', 'phfee_batchno_fifo', '1', 1, 0, '第三方普耗/收费出库是否按照批号先进先出先进先出', '2024-03-07 15:20:35');
CALL Pro_Temp_ColumnWork('basic_bussiness_type', 'vailInvBatchNo', 'tinyint NULL DEFAULT NULL COMMENT ''是否允许库存批次号先进先出''', 1); CALL Pro_Temp_ColumnWork('basic_bussiness_type', 'vailInvBatchNo',
'tinyint NULL DEFAULT NULL COMMENT ''是否允许库存批次号先进先出''', 1);
CALL Pro_Temp_ColumnWork('io_code_temp', 'errUdiCode', 'varchar(255) NULL DEFAULT NULL COMMENT ''去掉错误符号异常UDI码''', 1);
CALL Pro_Temp_ColumnWork('io_code', 'errUdiCode', 'varchar(255) NULL DEFAULT NULL COMMENT ''去掉错误符号异常UDI码''', 1);

Loading…
Cancel
Save