新增预验收单据字段,预验收库存查询接口

master
anthonywj 2 years ago
parent 46e63eaf89
commit c901fbd91a

@ -463,6 +463,9 @@ public class IoCodeTempController extends BaseController {
//校验预验收库存是否已存在
if (bussinessTypeEntity.isScanPreIn()) {
int preInCount = invPreinProductDetailService.findCountByCode(code);
InvPreInProductDetailEntity invPreinDetailEntity = invPreinProductDetailService.findUseOneByCode(code);
if (preInCount <= 0) {

@ -399,7 +399,7 @@ public class BasicBussinessTypeEntity {
// 预验收退库单据类型
@TableField(value = "preInBackAction")
private String preInBackAction;
// 预验收剩余库存退库方式
// 预验收剩余库存退库方式 1:按单使用或退库2按货位/仓库使用或退库
@TableField(value = "backPreinType")
private Integer backPreinType;
}

Loading…
Cancel
Save