新增库存字段
This commit is contained in:
parent
f9c0efdc1d
commit
5dffce196f
|
|
@ -113,6 +113,9 @@ public class IncomingInspectionTaskControllerService {
|
||||||
@Resource
|
@Resource
|
||||||
private List<ISendMessageService> sendMessageServices;
|
private List<ISendMessageService> sendMessageServices;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private IWmsInventoryService inventoryService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 来料检验申请(对外接口)
|
* 来料检验申请(对外接口)
|
||||||
* 业务规则:
|
* 业务规则:
|
||||||
|
|
@ -372,6 +375,16 @@ public class IncomingInspectionTaskControllerService {
|
||||||
.eq(QmsIncomingInspectionTask::getId, task.getId())
|
.eq(QmsIncomingInspectionTask::getId, task.getId())
|
||||||
.update();
|
.update();
|
||||||
|
|
||||||
|
boolean inventoryUpdated = inventoryService.lambdaUpdate()
|
||||||
|
.set(WmsInventory::getDetectionStatus, (short) 1)
|
||||||
|
.set(WmsInventory::getDetectionResults, null)
|
||||||
|
.eq(WmsInventory::getMaterialNo, request.getMaterialNo())
|
||||||
|
.eq(WmsInventory::getFactoryNo, request.getFactory())
|
||||||
|
.eq(WmsInventory::getWarehouseNo, request.getWarehouse())
|
||||||
|
.eq(WmsInventory::getBinLocation, request.getStorageLocation())
|
||||||
|
.update();
|
||||||
|
VUtil.trueThrowBusinessError(!inventoryUpdated).throwMessage("未找到对应库存,无法更新检测状态");
|
||||||
|
|
||||||
QmsTodoItem qmsTodoItem = new QmsTodoItem()
|
QmsTodoItem qmsTodoItem = new QmsTodoItem()
|
||||||
.setTitle("新的IQC库存检测任务" + task.getTaskNo())
|
.setTitle("新的IQC库存检测任务" + task.getTaskNo())
|
||||||
.setCode(basdeSerialNumberControllerService.generateSerialNumber(32))
|
.setCode(basdeSerialNumberControllerService.generateSerialNumber(32))
|
||||||
|
|
|
||||||
|
|
@ -161,6 +161,7 @@ public class QmsQcMaterialControllerService {
|
||||||
.setMaterialName(request.getMaterialName())
|
.setMaterialName(request.getMaterialName())
|
||||||
.setMaterialTexture(request.getMaterialTexture())
|
.setMaterialTexture(request.getMaterialTexture())
|
||||||
.setMaterialSpecifications(request.getMaterialSpecifications())
|
.setMaterialSpecifications(request.getMaterialSpecifications())
|
||||||
|
.setValidityPeriod(request.getValidityPeriod())
|
||||||
.setIsStandardMaintained(request.getIsStandardMaintained() != null ? request.getIsStandardMaintained() : false)
|
.setIsStandardMaintained(request.getIsStandardMaintained() != null ? request.getIsStandardMaintained() : false)
|
||||||
.setCreatedType(0)
|
.setCreatedType(0)
|
||||||
.setCreateBy(userId)
|
.setCreateBy(userId)
|
||||||
|
|
@ -234,6 +235,9 @@ public class QmsQcMaterialControllerService {
|
||||||
if (request.getMaterialSpecifications() != null) {
|
if (request.getMaterialSpecifications() != null) {
|
||||||
updateChain.set(QmsQcMaterial::getMaterialSpecifications, request.getMaterialSpecifications());
|
updateChain.set(QmsQcMaterial::getMaterialSpecifications, request.getMaterialSpecifications());
|
||||||
}
|
}
|
||||||
|
if (request.getValidityPeriod() != null) {
|
||||||
|
updateChain.set(QmsQcMaterial::getValidityPeriod, request.getValidityPeriod());
|
||||||
|
}
|
||||||
// 更新规则是否已维护
|
// 更新规则是否已维护
|
||||||
if (request.getIsStandardMaintained() != null) {
|
if (request.getIsStandardMaintained() != null) {
|
||||||
updateChain.set(QmsQcMaterial::getIsStandardMaintained, request.getIsStandardMaintained());
|
updateChain.set(QmsQcMaterial::getIsStandardMaintained, request.getIsStandardMaintained());
|
||||||
|
|
@ -360,6 +364,7 @@ public class QmsQcMaterialControllerService {
|
||||||
.setMaterialName(dto.getMaterialName())
|
.setMaterialName(dto.getMaterialName())
|
||||||
.setMaterialTexture(dto.getMaterialTexture())
|
.setMaterialTexture(dto.getMaterialTexture())
|
||||||
.setMaterialSpecifications(dto.getMaterialSpecifications())
|
.setMaterialSpecifications(dto.getMaterialSpecifications())
|
||||||
|
.setValidityPeriod(dto.getValidityPeriod())
|
||||||
.setIsStandardMaintained(false)
|
.setIsStandardMaintained(false)
|
||||||
.setCreatedType(0)
|
.setCreatedType(0)
|
||||||
.setCreateBy(userId)
|
.setCreateBy(userId)
|
||||||
|
|
@ -380,6 +385,7 @@ public class QmsQcMaterialControllerService {
|
||||||
.set(QmsQcMaterial::getMaterialName, dto.getMaterialName())
|
.set(QmsQcMaterial::getMaterialName, dto.getMaterialName())
|
||||||
.set(QmsQcMaterial::getMaterialTexture, dto.getMaterialTexture())
|
.set(QmsQcMaterial::getMaterialTexture, dto.getMaterialTexture())
|
||||||
.set(QmsQcMaterial::getMaterialSpecifications, dto.getMaterialSpecifications())
|
.set(QmsQcMaterial::getMaterialSpecifications, dto.getMaterialSpecifications())
|
||||||
|
.set(QmsQcMaterial::getValidityPeriod, dto.getValidityPeriod())
|
||||||
.set(QmsQcMaterial::getUpdateBy, userId)
|
.set(QmsQcMaterial::getUpdateBy, userId)
|
||||||
.set(QmsQcMaterial::getUpdateByName, operator)
|
.set(QmsQcMaterial::getUpdateByName, operator)
|
||||||
.set(QmsQcMaterial::getUpdateTime, now)
|
.set(QmsQcMaterial::getUpdateTime, now)
|
||||||
|
|
@ -435,7 +441,8 @@ public class QmsQcMaterialControllerService {
|
||||||
.setDrawingNoVer("示例版本号")
|
.setDrawingNoVer("示例版本号")
|
||||||
.setMaterialName("示例物料名称")
|
.setMaterialName("示例物料名称")
|
||||||
.setMaterialTexture("示例材质")
|
.setMaterialTexture("示例材质")
|
||||||
.setMaterialSpecifications("示例规格");
|
.setMaterialSpecifications("示例规格")
|
||||||
|
.setValidityPeriod((short) 12);
|
||||||
|
|
||||||
EecExcelUtil.export("质检物料导入模板", "质检物料导入模板", List.of(example), response);
|
EecExcelUtil.export("质检物料导入模板", "质检物料导入模板", List.of(example), response);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,11 @@ import com.nflg.wms.common.util.VUtil;
|
||||||
import com.nflg.wms.repository.entity.QmsIncomingInspectionTask;
|
import com.nflg.wms.repository.entity.QmsIncomingInspectionTask;
|
||||||
import com.nflg.wms.repository.entity.QmsIncomingInspectionTaskRecord;
|
import com.nflg.wms.repository.entity.QmsIncomingInspectionTaskRecord;
|
||||||
import com.nflg.wms.repository.entity.QmsIssueTicket;
|
import com.nflg.wms.repository.entity.QmsIssueTicket;
|
||||||
|
import com.nflg.wms.repository.entity.WmsInventory;
|
||||||
import com.nflg.wms.repository.service.IQmsIncomingInspectionTaskRecordService;
|
import com.nflg.wms.repository.service.IQmsIncomingInspectionTaskRecordService;
|
||||||
import com.nflg.wms.repository.service.IQmsIncomingInspectionTaskService;
|
import com.nflg.wms.repository.service.IQmsIncomingInspectionTaskService;
|
||||||
import com.nflg.wms.repository.service.IQmsIssueTicketService;
|
import com.nflg.wms.repository.service.IQmsIssueTicketService;
|
||||||
|
import com.nflg.wms.repository.service.IWmsInventoryService;
|
||||||
import jakarta.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
|
@ -46,6 +48,9 @@ public class WmsIncomingInspectionTaskCallbackService {
|
||||||
@Resource
|
@Resource
|
||||||
private IQmsIssueTicketService issueTicketService;
|
private IQmsIssueTicketService issueTicketService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private IWmsInventoryService inventoryService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 向WMS系统发送来料检验任务回调
|
* 向WMS系统发送来料检验任务回调
|
||||||
*/
|
*/
|
||||||
|
|
@ -134,6 +139,14 @@ public class WmsIncomingInspectionTaskCallbackService {
|
||||||
boolean callbackResult = true;
|
boolean callbackResult = true;
|
||||||
try {
|
try {
|
||||||
wmsApiService.post(inventoryUrl, qo, "库存检验任务回调WMS");
|
wmsApiService.post(inventoryUrl, qo, "库存检验任务回调WMS");
|
||||||
|
inventoryService.lambdaUpdate()
|
||||||
|
.set(WmsInventory::getDetectionStatus, (short) 2)
|
||||||
|
.set(WmsInventory::getDetectionResults, taskVO.getInspectionResult())
|
||||||
|
.eq(WmsInventory::getMaterialNo, taskVO.getMaterialNo())
|
||||||
|
.eq(WmsInventory::getFactoryNo, taskVO.getFactory())
|
||||||
|
.eq(WmsInventory::getWarehouseNo, taskVO.getWarehouse())
|
||||||
|
.eq(WmsInventory::getBinLocation, taskVO.getStorageLocation())
|
||||||
|
.update();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
callbackResult = false;
|
callbackResult = false;
|
||||||
throw new NflgException(STATE.BusinessError, "调用WMS接口失败:" + e.getMessage());
|
throw new NflgException(STATE.BusinessError, "调用WMS接口失败:" + e.getMessage());
|
||||||
|
|
@ -185,10 +198,10 @@ public class WmsIncomingInspectionTaskCallbackService {
|
||||||
*/
|
*/
|
||||||
private void process(QmsIncomingInspectionTaskVO taskVO, Short processingResult) {
|
private void process(QmsIncomingInspectionTaskVO taskVO, Short processingResult) {
|
||||||
switch (taskVO.getInspectionType()) {
|
switch (taskVO.getInspectionType()) {
|
||||||
case 1:
|
case 0:
|
||||||
incoming(taskVO,processingResult);
|
incoming(taskVO,processingResult);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 1:
|
||||||
inventory(taskVO,processingResult);
|
inventory(taskVO,processingResult);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,12 @@ public class QmsQcMaterialExportDTO {
|
||||||
@ExcelColumn("物料规格")
|
@ExcelColumn("物料规格")
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
@ExcelColumn("有效周期(月)")
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规则是否已维护
|
* 规则是否已维护
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,12 @@ public class QmsQcMaterialImportDTO {
|
||||||
@ExcelColumn("物料规格")
|
@ExcelColumn("物料规格")
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
@ExcelColumn("有效周期(月)")
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 错误信息
|
* 错误信息
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -24,4 +24,14 @@ public class InventorySearchQO extends PageQO {
|
||||||
* 库存地点编号
|
* 库存地点编号
|
||||||
*/
|
*/
|
||||||
private String warehouseNo;
|
private String warehouseNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测状态:0=未检测,1=检测中,2=已检测
|
||||||
|
*/
|
||||||
|
private Short detectionStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测结果
|
||||||
|
*/
|
||||||
|
private Boolean detectionResults;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,11 @@ public class QmsQcMaterialAddQO {
|
||||||
*/
|
*/
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规则是否已维护:false=未维护,true=已维护
|
* 规则是否已维护:false=未维护,true=已维护
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,11 @@ public class QmsQcMaterialSearchQO extends PageQO {
|
||||||
*/
|
*/
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规则是否已维护(精确匹配):false=未维护,true=已维护
|
* 规则是否已维护(精确匹配):false=未维护,true=已维护
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,11 @@ public class QmsQcMaterialUpdateQO {
|
||||||
*/
|
*/
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规则是否已维护:false=未维护,true=已维护
|
* 规则是否已维护:false=未维护,true=已维护
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -43,4 +43,14 @@ public class InventoryVO {
|
||||||
* 序列号
|
* 序列号
|
||||||
*/
|
*/
|
||||||
private String serialNo;
|
private String serialNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测状态:0=未检测,1=检测中,2=已检测
|
||||||
|
*/
|
||||||
|
private Short detectionStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测结果:true=合格,false=不合格,null=无结果
|
||||||
|
*/
|
||||||
|
private Boolean detectionResults;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -74,6 +74,11 @@ public class QmsQcMaterialVO {
|
||||||
*/
|
*/
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规则是否已维护:false=未维护,true=已维护
|
* 规则是否已维护:false=未维护,true=已维护
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,11 @@ public class QmsQcMaterial implements Serializable {
|
||||||
*/
|
*/
|
||||||
private String materialSpecifications;
|
private String materialSpecifications;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validity period in months.
|
||||||
|
*/
|
||||||
|
private Short validityPeriod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 规则是否已维护:false=未维护,true=已维护
|
* 规则是否已维护:false=未维护,true=已维护
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -96,4 +96,14 @@ public class WmsInventory implements Serializable {
|
||||||
* 储位
|
* 储位
|
||||||
*/
|
*/
|
||||||
private String binLocation;
|
private String binLocation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测状态:0=未检测,1=检测中,2=已检测
|
||||||
|
*/
|
||||||
|
private Short detectionStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测结果:true=合格,false=不合格
|
||||||
|
*/
|
||||||
|
private Boolean detectionResults;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -135,12 +135,16 @@ public class WmsInventoryServiceImpl extends ServiceImpl<WmsInventoryMapper, Wms
|
||||||
.setBinLocation(item.getBinLocation())
|
.setBinLocation(item.getBinLocation())
|
||||||
.setNum(inventory.stream().map(InventoryInDTO::getNum).reduce(BigDecimal.ZERO, BigDecimal::add))
|
.setNum(inventory.stream().map(InventoryInDTO::getNum).reduce(BigDecimal.ZERO, BigDecimal::add))
|
||||||
.setSort(item.getOrder())
|
.setSort(item.getOrder())
|
||||||
|
.setDetectionStatus((short) 0)
|
||||||
|
.setDetectionResults(null)
|
||||||
// .setCreateBy(UserUtil.getUserName())
|
// .setCreateBy(UserUtil.getUserName())
|
||||||
.setCreateTime(LocalDateTime.now());
|
.setCreateTime(LocalDateTime.now());
|
||||||
forAdd.add(info);
|
forAdd.add(info);
|
||||||
} else {
|
} else {
|
||||||
info.setNum(info.getNum().add(inventory.stream().map(InventoryInDTO::getNum).reduce(BigDecimal.ZERO, BigDecimal::add)));
|
info.setNum(info.getNum().add(inventory.stream().map(InventoryInDTO::getNum).reduce(BigDecimal.ZERO, BigDecimal::add)));
|
||||||
info.setSort(item.getOrder());
|
info.setSort(item.getOrder());
|
||||||
|
info.setDetectionStatus((short) 0);
|
||||||
|
info.setDetectionResults(null);
|
||||||
// info.setUpdateBy(UserUtil.getUserName());
|
// info.setUpdateBy(UserUtil.getUserName());
|
||||||
info.setUpdateTime(LocalDateTime.now());
|
info.setUpdateTime(LocalDateTime.now());
|
||||||
forUpdate.add(info);
|
forUpdate.add(info);
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@
|
||||||
material_name,
|
material_name,
|
||||||
material_texture,
|
material_texture,
|
||||||
material_specifications,
|
material_specifications,
|
||||||
|
validity_period,
|
||||||
is_standard_maintained,
|
is_standard_maintained,
|
||||||
created_type,
|
created_type,
|
||||||
create_by_name,
|
create_by_name,
|
||||||
|
|
@ -69,6 +70,9 @@
|
||||||
<if test="request.materialSpecifications != null and request.materialSpecifications != ''">
|
<if test="request.materialSpecifications != null and request.materialSpecifications != ''">
|
||||||
AND material_specifications ilike concat('%', #{request.materialSpecifications}, '%')
|
AND material_specifications ilike concat('%', #{request.materialSpecifications}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
<if test="request.validityPeriod != null">
|
||||||
|
AND validity_period = #{request.validityPeriod}
|
||||||
|
</if>
|
||||||
<if test="request.isStandardMaintained != null">
|
<if test="request.isStandardMaintained != null">
|
||||||
AND is_standard_maintained = #{request.isStandardMaintained}
|
AND is_standard_maintained = #{request.isStandardMaintained}
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -109,6 +113,7 @@
|
||||||
<when test="request.sortField == 'materialName'">material_name</when>
|
<when test="request.sortField == 'materialName'">material_name</when>
|
||||||
<when test="request.sortField == 'materialTexture'">material_texture</when>
|
<when test="request.sortField == 'materialTexture'">material_texture</when>
|
||||||
<when test="request.sortField == 'materialSpecifications'">material_specifications</when>
|
<when test="request.sortField == 'materialSpecifications'">material_specifications</when>
|
||||||
|
<when test="request.sortField == 'validityPeriod'">validity_period</when>
|
||||||
<when test="request.sortField == 'isStandardMaintained'">is_standard_maintained</when>
|
<when test="request.sortField == 'isStandardMaintained'">is_standard_maintained</when>
|
||||||
<when test="request.sortField == 'createdType'">created_type</when>
|
<when test="request.sortField == 'createdType'">created_type</when>
|
||||||
<when test="request.sortField == 'createByName'">create_by_name</when>
|
<when test="request.sortField == 'createByName'">create_by_name</when>
|
||||||
|
|
@ -145,6 +150,7 @@
|
||||||
material_name,
|
material_name,
|
||||||
material_texture,
|
material_texture,
|
||||||
material_specifications,
|
material_specifications,
|
||||||
|
validity_period,
|
||||||
CASE WHEN is_standard_maintained THEN '是' ELSE '否' END AS is_standard_maintained,
|
CASE WHEN is_standard_maintained THEN '是' ELSE '否' END AS is_standard_maintained,
|
||||||
CASE created_type WHEN 0 THEN '人工操作' WHEN 1 THEN '系统同步' ELSE '未知' END AS created_type,
|
CASE created_type WHEN 0 THEN '人工操作' WHEN 1 THEN '系统同步' ELSE '未知' END AS created_type,
|
||||||
create_by_name,
|
create_by_name,
|
||||||
|
|
@ -189,6 +195,9 @@
|
||||||
<if test="request.materialSpecifications != null and request.materialSpecifications != ''">
|
<if test="request.materialSpecifications != null and request.materialSpecifications != ''">
|
||||||
AND material_specifications ilike concat('%', #{request.materialSpecifications}, '%')
|
AND material_specifications ilike concat('%', #{request.materialSpecifications}, '%')
|
||||||
</if>
|
</if>
|
||||||
|
<if test="request.validityPeriod != null">
|
||||||
|
AND validity_period = #{request.validityPeriod}
|
||||||
|
</if>
|
||||||
<if test="request.isStandardMaintained != null">
|
<if test="request.isStandardMaintained != null">
|
||||||
AND is_standard_maintained = #{request.isStandardMaintained}
|
AND is_standard_maintained = #{request.isStandardMaintained}
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -229,6 +238,7 @@
|
||||||
<when test="request.sortField == 'materialName'">material_name</when>
|
<when test="request.sortField == 'materialName'">material_name</when>
|
||||||
<when test="request.sortField == 'materialTexture'">material_texture</when>
|
<when test="request.sortField == 'materialTexture'">material_texture</when>
|
||||||
<when test="request.sortField == 'materialSpecifications'">material_specifications</when>
|
<when test="request.sortField == 'materialSpecifications'">material_specifications</when>
|
||||||
|
<when test="request.sortField == 'validityPeriod'">validity_period</when>
|
||||||
<when test="request.sortField == 'isStandardMaintained'">is_standard_maintained</when>
|
<when test="request.sortField == 'isStandardMaintained'">is_standard_maintained</when>
|
||||||
<when test="request.sortField == 'createdType'">created_type</when>
|
<when test="request.sortField == 'createdType'">created_type</when>
|
||||||
<when test="request.sortField == 'createByName'">create_by_name</when>
|
<when test="request.sortField == 'createByName'">create_by_name</when>
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<select id="search" resultType="com.nflg.wms.common.pojo.vo.InventoryVO">
|
<select id="search" resultType="com.nflg.wms.common.pojo.vo.InventoryVO">
|
||||||
SELECT i."id",i.material_no,i.factory_no,i.warehouse_no,i.bin_location as binNo,i.num,i.batch_no as batchNumber
|
SELECT i."id",i.material_no,i.factory_no,i.warehouse_no,i.bin_location as binNo,i.num,i.batch_no as batchNumber
|
||||||
,i.serial_no as serialNo
|
,i.serial_no as serialNo,i.detection_status,i.detection_results
|
||||||
FROM wms_inventory i
|
FROM wms_inventory i
|
||||||
LEFT JOIN dictionary_item di ON di."value"=i.factory_no
|
LEFT JOIN dictionary_item di ON di."value"=i.factory_no
|
||||||
LEFT JOIN wms_warehouse wh ON wh.factory_id=di."id" and i.warehouse_no=wh.no
|
LEFT JOIN wms_warehouse wh ON wh.factory_id=di."id" and i.warehouse_no=wh.no
|
||||||
|
|
@ -21,6 +21,12 @@
|
||||||
<if test="request.batchNo != null and request.batchNo!=''">
|
<if test="request.batchNo != null and request.batchNo!=''">
|
||||||
AND i.batch_no= #{request.batchNo}
|
AND i.batch_no= #{request.batchNo}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="request.detectionStatus != null">
|
||||||
|
AND i.detection_status = #{request.detectionStatus}
|
||||||
|
</if>
|
||||||
|
<if test="request.detectionResults != null">
|
||||||
|
AND i.detection_results = #{request.detectionResults}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by i.id desc
|
order by i.id desc
|
||||||
</select>
|
</select>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue