临床使用出库单新增备注字段

dev
anthonywj 2 years ago
parent f89170c3df
commit d6f9e3f06a

@ -667,6 +667,11 @@ public class SpsSyncDownloadController {
InvWarehouseEntity parentInv = invWarehouseService.findOneLevel(invWarehouseEntity.getParentCode());
if (parentInv == null)
parentInv = invWarehouseEntity;
orderEntity.setRmFromCorp(orderEntity.getFromCorp());
orderEntity.setRmDeptCode(orderEntity.getDeptCode());
orderEntity.setRmInvCode(orderEntity.getInvCode());
orderEntity.setInvCode(parentInv.getCode());
orderEntity.setDeptCode(parentInv.getParentId());
orderEntity.setFromCorp("科室使用出库");

@ -243,7 +243,7 @@ public class IoOrderEntity {
@TableField(value = "checkPreInOrders")
private String checkPreInOrders;
// 预验收按货位出库,退货
@TableField(value = "checkPreInInvCode")
private String checkPreInInvCode;
@ -252,4 +252,16 @@ public class IoOrderEntity {
@TableField(value = "checkPreInSpaceCode")
private String checkPreInSpaceCode;
// 使用出库单备注字段
//备注往来单位(病人信息)
@TableField(value = "rmFromCorp")
private String rmFromCorp;
//备注部门
@TableField(value = "rmDeptCode")
private String rmDeptCode;
//备注仓库号
@TableField(value = "rmInvCode")
private String rmInvCode;
}

@ -431,3 +431,8 @@ INSERT ignore INTO `sys_param_config`(id, `parentId`, `paramName`, `paramKey`, `
`paramType`,
`paramExplain`, `updateTime`)
VALUES (20059, 0, '是否允许编辑第三方产品信息', 'enable_edit_third', '1', 0, 0, '01', NULL);
CALL Pro_Temp_ColumnWork('io_order', 'rmFromCorp', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('io_order', 'rmDeptCode', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('io_order', 'rmInvCode', 'varchar(255)', 1);

Loading…
Cancel
Save