成品生产入库修改
parent
c1885b1805
commit
0590a13141
@ -0,0 +1,97 @@
|
||||
package com.op.wms.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.wms.domain.WmsFpStorageNews;
|
||||
import com.op.wms.service.IWmsFpStorageNewsService;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 成品库存主表Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/major")
|
||||
public class WmsFpStorageNewsController extends BaseController {
|
||||
@Autowired
|
||||
private IWmsFpStorageNewsService wmsFpStorageNewsService;
|
||||
|
||||
/**
|
||||
* 查询成品库存主表列表
|
||||
*/
|
||||
@RequiresPermissions("wms:major:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(WmsFpStorageNews wmsFpStorageNews) {
|
||||
startPage();
|
||||
List<WmsFpStorageNews> list = wmsFpStorageNewsService.selectWmsFpStorageNewsList(wmsFpStorageNews);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出成品库存主表列表
|
||||
*/
|
||||
@RequiresPermissions("wms:major:export")
|
||||
@Log(title = "成品库存主表", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, WmsFpStorageNews wmsFpStorageNews) {
|
||||
List<WmsFpStorageNews> list = wmsFpStorageNewsService.selectWmsFpStorageNewsList(wmsFpStorageNews);
|
||||
ExcelUtil<WmsFpStorageNews> util = new ExcelUtil<WmsFpStorageNews>(WmsFpStorageNews.class);
|
||||
util.exportExcel(response, list, "成品库存主表数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取成品库存主表详细信息
|
||||
*/
|
||||
@RequiresPermissions("wms:major:query")
|
||||
@GetMapping(value = "/{storageId}")
|
||||
public AjaxResult getInfo(@PathVariable("storageId") String storageId) {
|
||||
return success(wmsFpStorageNewsService.selectWmsFpStorageNewsByStorageId(storageId));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品库存主表
|
||||
*/
|
||||
@RequiresPermissions("wms:major:add")
|
||||
@Log(title = "成品库存主表", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody WmsFpStorageNews wmsFpStorageNews) {
|
||||
return toAjax(wmsFpStorageNewsService.insertWmsFpStorageNews(wmsFpStorageNews));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品库存主表
|
||||
*/
|
||||
@RequiresPermissions("wms:major:edit")
|
||||
@Log(title = "成品库存主表", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody WmsFpStorageNews wmsFpStorageNews) {
|
||||
return toAjax(wmsFpStorageNewsService.updateWmsFpStorageNews(wmsFpStorageNews));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品库存主表
|
||||
*/
|
||||
@RequiresPermissions("wms:major:remove")
|
||||
@Log(title = "成品库存主表", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{storageIds}")
|
||||
public AjaxResult remove(@PathVariable String[] storageIds) {
|
||||
return toAjax(wmsFpStorageNewsService.deleteWmsFpStorageNewsByStorageIds(storageIds));
|
||||
}
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package com.op.wms.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.wms.domain.WmsFpStorageNewsSn;
|
||||
import com.op.wms.service.IWmsFpStorageNewsSnService;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 成品库存明细Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/detailed")
|
||||
public class WmsFpStorageNewsSnController extends BaseController {
|
||||
@Autowired
|
||||
private IWmsFpStorageNewsSnService wmsFpStorageNewsSnService;
|
||||
|
||||
/**
|
||||
* 查询成品库存明细列表
|
||||
*/
|
||||
@RequiresPermissions("wms:detailed:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
startPage();
|
||||
List<WmsFpStorageNewsSn> list = wmsFpStorageNewsSnService.selectWmsFpStorageNewsSnList(wmsFpStorageNewsSn);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出成品库存明细列表
|
||||
*/
|
||||
@RequiresPermissions("wms:detailed:export")
|
||||
@Log(title = "成品库存明细", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
List<WmsFpStorageNewsSn> list = wmsFpStorageNewsSnService.selectWmsFpStorageNewsSnList(wmsFpStorageNewsSn);
|
||||
ExcelUtil<WmsFpStorageNewsSn> util = new ExcelUtil<WmsFpStorageNewsSn>(WmsFpStorageNewsSn.class);
|
||||
util.exportExcel(response, list, "成品库存明细数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取成品库存明细详细信息
|
||||
*/
|
||||
@RequiresPermissions("wms:detailed:query")
|
||||
@GetMapping(value = "/{storageId}")
|
||||
public AjaxResult getInfo(@PathVariable("storageId") String storageId) {
|
||||
return success(wmsFpStorageNewsSnService.selectWmsFpStorageNewsSnByStorageId(storageId));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品库存明细
|
||||
*/
|
||||
@RequiresPermissions("wms:detailed:add")
|
||||
@Log(title = "成品库存明细", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
return toAjax(wmsFpStorageNewsSnService.insertWmsFpStorageNewsSn(wmsFpStorageNewsSn));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品库存明细
|
||||
*/
|
||||
@RequiresPermissions("wms:detailed:edit")
|
||||
@Log(title = "成品库存明细", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
return toAjax(wmsFpStorageNewsSnService.updateWmsFpStorageNewsSn(wmsFpStorageNewsSn));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品库存明细
|
||||
*/
|
||||
@RequiresPermissions("wms:detailed:remove")
|
||||
@Log(title = "成品库存明细", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{storageIds}")
|
||||
public AjaxResult remove(@PathVariable String[] storageIds) {
|
||||
return toAjax(wmsFpStorageNewsSnService.deleteWmsFpStorageNewsSnByStorageIds(storageIds));
|
||||
}
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package com.op.wms.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.wms.domain.WmsProductPutRecords;
|
||||
import com.op.wms.service.IWmsProductPutRecordsService;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 成品生产入库记录报Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-06
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/productputrecords")
|
||||
public class WmsProductPutRecordsController extends BaseController {
|
||||
@Autowired
|
||||
private IWmsProductPutRecordsService wmsProductPutRecordsService;
|
||||
|
||||
/**
|
||||
* 查询成品生产入库记录报列表
|
||||
*/
|
||||
@RequiresPermissions("wms:productputrecords:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(WmsProductPutRecords wmsProductPutRecords) {
|
||||
startPage();
|
||||
List<WmsProductPutRecords> list = wmsProductPutRecordsService.selectWmsProductPutRecordsList(wmsProductPutRecords);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出成品生产入库记录报列表
|
||||
*/
|
||||
@RequiresPermissions("wms:productputrecords:export")
|
||||
@Log(title = "成品生产入库记录报", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, WmsProductPutRecords wmsProductPutRecords) {
|
||||
List<WmsProductPutRecords> list = wmsProductPutRecordsService.selectWmsProductPutRecordsList(wmsProductPutRecords);
|
||||
ExcelUtil<WmsProductPutRecords> util = new ExcelUtil<WmsProductPutRecords>(WmsProductPutRecords.class);
|
||||
util.exportExcel(response, list, "成品生产入库记录报数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取成品生产入库记录报详细信息
|
||||
*/
|
||||
@RequiresPermissions("wms:productputrecords:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") String id) {
|
||||
return success(wmsProductPutRecordsService.selectWmsProductPutRecordsById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品生产入库记录报
|
||||
*/
|
||||
@RequiresPermissions("wms:productputrecords:add")
|
||||
@Log(title = "成品生产入库记录报", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody WmsProductPutRecords wmsProductPutRecords) {
|
||||
return toAjax(wmsProductPutRecordsService.insertWmsProductPutRecords(wmsProductPutRecords));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品生产入库记录报
|
||||
*/
|
||||
@RequiresPermissions("wms:productputrecords:edit")
|
||||
@Log(title = "成品生产入库记录报", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody WmsProductPutRecords wmsProductPutRecords) {
|
||||
return toAjax(wmsProductPutRecordsService.updateWmsProductPutRecords(wmsProductPutRecords));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品生产入库记录报
|
||||
*/
|
||||
@RequiresPermissions("wms:productputrecords:remove")
|
||||
@Log(title = "成品生产入库记录报", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable String[] ids) {
|
||||
return toAjax(wmsProductPutRecordsService.deleteWmsProductPutRecordsByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package com.op.wms.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.op.common.log.annotation.Log;
|
||||
import com.op.common.log.enums.BusinessType;
|
||||
import com.op.common.security.annotation.RequiresPermissions;
|
||||
import com.op.wms.domain.WmsProductPutTrayCode;
|
||||
import com.op.wms.service.IWmsProductPutTrayCodeService;
|
||||
import com.op.common.core.web.controller.BaseController;
|
||||
import com.op.common.core.web.domain.AjaxResult;
|
||||
import com.op.common.core.utils.poi.ExcelUtil;
|
||||
import com.op.common.core.web.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 托盘关联箱码Controller
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/code")
|
||||
public class WmsProductPutTrayCodeController extends BaseController {
|
||||
@Autowired
|
||||
private IWmsProductPutTrayCodeService wmsProductPutTrayCodeService;
|
||||
|
||||
/**
|
||||
* 查询托盘关联箱码列表
|
||||
*/
|
||||
@RequiresPermissions("wms:code:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
startPage();
|
||||
List<WmsProductPutTrayCode> list = wmsProductPutTrayCodeService.selectWmsProductPutTrayCodeList(wmsProductPutTrayCode);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出托盘关联箱码列表
|
||||
*/
|
||||
@RequiresPermissions("wms:code:export")
|
||||
@Log(title = "托盘关联箱码", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
List<WmsProductPutTrayCode> list = wmsProductPutTrayCodeService.selectWmsProductPutTrayCodeList(wmsProductPutTrayCode);
|
||||
ExcelUtil<WmsProductPutTrayCode> util = new ExcelUtil<WmsProductPutTrayCode>(WmsProductPutTrayCode.class);
|
||||
util.exportExcel(response, list, "托盘关联箱码数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取托盘关联箱码详细信息
|
||||
*/
|
||||
@RequiresPermissions("wms:code:query")
|
||||
@GetMapping(value = "/{storageId}")
|
||||
public AjaxResult getInfo(@PathVariable("storageId") String storageId) {
|
||||
return success(wmsProductPutTrayCodeService.selectWmsProductPutTrayCodeByStorageId(storageId));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增托盘关联箱码
|
||||
*/
|
||||
@RequiresPermissions("wms:code:add")
|
||||
@Log(title = "托盘关联箱码", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
return toAjax(wmsProductPutTrayCodeService.insertWmsProductPutTrayCode(wmsProductPutTrayCode));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改托盘关联箱码
|
||||
*/
|
||||
@RequiresPermissions("wms:code:edit")
|
||||
@Log(title = "托盘关联箱码", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
return toAjax(wmsProductPutTrayCodeService.updateWmsProductPutTrayCode(wmsProductPutTrayCode));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除托盘关联箱码
|
||||
*/
|
||||
@RequiresPermissions("wms:code:remove")
|
||||
@Log(title = "托盘关联箱码", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{storageIds}")
|
||||
public AjaxResult remove(@PathVariable String[] storageIds) {
|
||||
return toAjax(wmsProductPutTrayCodeService.deleteWmsProductPutTrayCodeByStorageIds(storageIds));
|
||||
}
|
||||
}
|
@ -0,0 +1,340 @@
|
||||
package com.op.wms.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 成品库存明细对象 wms_fp_storage_news_sn
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public class WmsFpStorageNewsSn extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 唯一序列号 */
|
||||
private String storageId;
|
||||
|
||||
/** 仓库编码 */
|
||||
@Excel(name = "仓库编码")
|
||||
private String whCode;
|
||||
|
||||
/** 库区编码 */
|
||||
@Excel(name = "库区编码")
|
||||
private String waCode;
|
||||
|
||||
/** 库位编码 */
|
||||
@Excel(name = "库位编码")
|
||||
private String wlCode;
|
||||
|
||||
/** 入库单号 */
|
||||
@Excel(name = "入库单号")
|
||||
private String orderNo;
|
||||
|
||||
/** 产品名称 */
|
||||
@Excel(name = "产品名称")
|
||||
private String productName;
|
||||
|
||||
/** 产品编码 */
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;
|
||||
|
||||
/** 托盘号 */
|
||||
@Excel(name = "托盘号")
|
||||
private String sn;
|
||||
|
||||
/** 条码 */
|
||||
@Excel(name = "条码")
|
||||
private String barCode;
|
||||
|
||||
/** 数量 */
|
||||
@Excel(name = "数量")
|
||||
private BigDecimal amount;
|
||||
|
||||
/** 备用1 */
|
||||
@Excel(name = "备用1")
|
||||
private String userDefined1;
|
||||
|
||||
/** 备用2 */
|
||||
@Excel(name = "备用2")
|
||||
private String userDefined2;
|
||||
|
||||
/** 备用3 */
|
||||
@Excel(name = "备用3")
|
||||
private String userDefined3;
|
||||
|
||||
/** 备用4 */
|
||||
@Excel(name = "备用4")
|
||||
private String userDefined4;
|
||||
|
||||
/** 备用5 */
|
||||
@Excel(name = "备用5")
|
||||
private String userDefined5;
|
||||
|
||||
/** 备用6 */
|
||||
@Excel(name = "备用6")
|
||||
private String userDefined6;
|
||||
|
||||
/** 备用7 */
|
||||
@Excel(name = "备用7")
|
||||
private String userDefined7;
|
||||
|
||||
/** 备用8 */
|
||||
@Excel(name = "备用8")
|
||||
private String userDefined8;
|
||||
|
||||
/** 备用9 */
|
||||
@Excel(name = "备用9")
|
||||
private String userDefined9;
|
||||
|
||||
/** 备用10 */
|
||||
@Excel(name = "备用10")
|
||||
private String userDefined10;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date gmtCreate;
|
||||
|
||||
/** 最后更新人 */
|
||||
@Excel(name = "最后更新人")
|
||||
private String lastModifiedBy;
|
||||
|
||||
/** 最后更新时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "最后更新时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date gmtModified;
|
||||
|
||||
/** 有效标记 */
|
||||
@Excel(name = "有效标记")
|
||||
private String activeFlag;
|
||||
|
||||
/** 工厂编码 */
|
||||
@Excel(name = "工厂编码")
|
||||
private String factoryCode;
|
||||
|
||||
/** sap工厂编码 */
|
||||
@Excel(name = "sap工厂编码")
|
||||
private String sapFactoryCode;
|
||||
|
||||
public void setStorageId(String storageId) {
|
||||
this.storageId = storageId;
|
||||
}
|
||||
|
||||
public String getStorageId() {
|
||||
return storageId;
|
||||
}
|
||||
public void setWhCode(String whCode) {
|
||||
this.whCode = whCode;
|
||||
}
|
||||
|
||||
public String getWhCode() {
|
||||
return whCode;
|
||||
}
|
||||
public void setWaCode(String waCode) {
|
||||
this.waCode = waCode;
|
||||
}
|
||||
|
||||
public String getWaCode() {
|
||||
return waCode;
|
||||
}
|
||||
public void setWlCode(String wlCode) {
|
||||
this.wlCode = wlCode;
|
||||
}
|
||||
|
||||
public String getWlCode() {
|
||||
return wlCode;
|
||||
}
|
||||
public void setOrderNo(String orderNo) {
|
||||
this.orderNo = orderNo;
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return orderNo;
|
||||
}
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
public void setSn(String sn) {
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public String getSn() {
|
||||
return sn;
|
||||
}
|
||||
public void setBarCode(String barCode) {
|
||||
this.barCode = barCode;
|
||||
}
|
||||
|
||||
public String getBarCode() {
|
||||
return barCode;
|
||||
}
|
||||
public void setAmount(BigDecimal amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public BigDecimal getAmount() {
|
||||
return amount;
|
||||
}
|
||||
public void setUserDefined1(String userDefined1) {
|
||||
this.userDefined1 = userDefined1;
|
||||
}
|
||||
|
||||
public String getUserDefined1() {
|
||||
return userDefined1;
|
||||
}
|
||||
public void setUserDefined2(String userDefined2) {
|
||||
this.userDefined2 = userDefined2;
|
||||
}
|
||||
|
||||
public String getUserDefined2() {
|
||||
return userDefined2;
|
||||
}
|
||||
public void setUserDefined3(String userDefined3) {
|
||||
this.userDefined3 = userDefined3;
|
||||
}
|
||||
|
||||
public String getUserDefined3() {
|
||||
return userDefined3;
|
||||
}
|
||||
public void setUserDefined4(String userDefined4) {
|
||||
this.userDefined4 = userDefined4;
|
||||
}
|
||||
|
||||
public String getUserDefined4() {
|
||||
return userDefined4;
|
||||
}
|
||||
public void setUserDefined5(String userDefined5) {
|
||||
this.userDefined5 = userDefined5;
|
||||
}
|
||||
|
||||
public String getUserDefined5() {
|
||||
return userDefined5;
|
||||
}
|
||||
public void setUserDefined6(String userDefined6) {
|
||||
this.userDefined6 = userDefined6;
|
||||
}
|
||||
|
||||
public String getUserDefined6() {
|
||||
return userDefined6;
|
||||
}
|
||||
public void setUserDefined7(String userDefined7) {
|
||||
this.userDefined7 = userDefined7;
|
||||
}
|
||||
|
||||
public String getUserDefined7() {
|
||||
return userDefined7;
|
||||
}
|
||||
public void setUserDefined8(String userDefined8) {
|
||||
this.userDefined8 = userDefined8;
|
||||
}
|
||||
|
||||
public String getUserDefined8() {
|
||||
return userDefined8;
|
||||
}
|
||||
public void setUserDefined9(String userDefined9) {
|
||||
this.userDefined9 = userDefined9;
|
||||
}
|
||||
|
||||
public String getUserDefined9() {
|
||||
return userDefined9;
|
||||
}
|
||||
public void setUserDefined10(String userDefined10) {
|
||||
this.userDefined10 = userDefined10;
|
||||
}
|
||||
|
||||
public String getUserDefined10() {
|
||||
return userDefined10;
|
||||
}
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
public void setLastModifiedBy(String lastModifiedBy) {
|
||||
this.lastModifiedBy = lastModifiedBy;
|
||||
}
|
||||
|
||||
public String getLastModifiedBy() {
|
||||
return lastModifiedBy;
|
||||
}
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
public void setActiveFlag(String activeFlag) {
|
||||
this.activeFlag = activeFlag;
|
||||
}
|
||||
|
||||
public String getActiveFlag() {
|
||||
return activeFlag;
|
||||
}
|
||||
public void setFactoryCode(String factoryCode) {
|
||||
this.factoryCode = factoryCode;
|
||||
}
|
||||
|
||||
public String getFactoryCode() {
|
||||
return factoryCode;
|
||||
}
|
||||
public void setSapFactoryCode(String sapFactoryCode) {
|
||||
this.sapFactoryCode = sapFactoryCode;
|
||||
}
|
||||
|
||||
public String getSapFactoryCode() {
|
||||
return sapFactoryCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("storageId", getStorageId())
|
||||
.append("whCode", getWhCode())
|
||||
.append("waCode", getWaCode())
|
||||
.append("wlCode", getWlCode())
|
||||
.append("orderNo", getOrderNo())
|
||||
.append("productName", getProductName())
|
||||
.append("productCode", getProductCode())
|
||||
.append("sn", getSn())
|
||||
.append("barCode", getBarCode())
|
||||
.append("amount", getAmount())
|
||||
.append("userDefined1", getUserDefined1())
|
||||
.append("userDefined2", getUserDefined2())
|
||||
.append("userDefined3", getUserDefined3())
|
||||
.append("userDefined4", getUserDefined4())
|
||||
.append("userDefined5", getUserDefined5())
|
||||
.append("userDefined6", getUserDefined6())
|
||||
.append("userDefined7", getUserDefined7())
|
||||
.append("userDefined8", getUserDefined8())
|
||||
.append("userDefined9", getUserDefined9())
|
||||
.append("userDefined10", getUserDefined10())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("gmtCreate", getGmtCreate())
|
||||
.append("lastModifiedBy", getLastModifiedBy())
|
||||
.append("gmtModified", getGmtModified())
|
||||
.append("activeFlag", getActiveFlag())
|
||||
.append("factoryCode", getFactoryCode())
|
||||
.append("sapFactoryCode", getSapFactoryCode())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,206 @@
|
||||
package com.op.wms.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 成品生产入库记录报对象 wms_product_put_records
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-06
|
||||
*/
|
||||
public class WmsProductPutRecords extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** ID */
|
||||
private String id;
|
||||
|
||||
/** 报工单号 */
|
||||
@Excel(name = "报工单号")
|
||||
private String workOrder;
|
||||
|
||||
/** 生产工单号 */
|
||||
@Excel(name = "生产工单号")
|
||||
private String productOrder;
|
||||
|
||||
/** 产品名称 */
|
||||
@Excel(name = "产品名称")
|
||||
private String productName;
|
||||
|
||||
/** 产品编码 */
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;
|
||||
|
||||
/** 仓库编码 */
|
||||
@Excel(name = "仓库编码")
|
||||
private String whCode;
|
||||
|
||||
/** 库区编码 */
|
||||
@Excel(name = "库区编码")
|
||||
private String waCode;
|
||||
|
||||
/** 库位编码 */
|
||||
@Excel(name = "库位编码")
|
||||
private String wlCode;
|
||||
|
||||
/** 托盘号 */
|
||||
@Excel(name = "托盘号")
|
||||
private String sn;
|
||||
|
||||
/** 箱数 */
|
||||
@Excel(name = "箱数")
|
||||
private String number;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String userDefined1;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String userDefined2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private String userDefined3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private String userDefined4;
|
||||
|
||||
/** 预留字段5 */
|
||||
@Excel(name = "预留字段5")
|
||||
private String userDefined5;
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public void setWorkOrder(String workOrder) {
|
||||
this.workOrder = workOrder;
|
||||
}
|
||||
|
||||
public String getWorkOrder() {
|
||||
return workOrder;
|
||||
}
|
||||
public void setProductOrder(String productOrder) {
|
||||
this.productOrder = productOrder;
|
||||
}
|
||||
|
||||
public String getProductOrder() {
|
||||
return productOrder;
|
||||
}
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
public void setWhCode(String whCode) {
|
||||
this.whCode = whCode;
|
||||
}
|
||||
|
||||
public String getWhCode() {
|
||||
return whCode;
|
||||
}
|
||||
public void setWaCode(String waCode) {
|
||||
this.waCode = waCode;
|
||||
}
|
||||
|
||||
public String getWaCode() {
|
||||
return waCode;
|
||||
}
|
||||
public void setWlCode(String wlCode) {
|
||||
this.wlCode = wlCode;
|
||||
}
|
||||
|
||||
public String getWlCode() {
|
||||
return wlCode;
|
||||
}
|
||||
public void setSn(String sn) {
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public String getSn() {
|
||||
return sn;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
public void setUserDefined1(String userDefined1) {
|
||||
this.userDefined1 = userDefined1;
|
||||
}
|
||||
|
||||
public String getUserDefined1() {
|
||||
return userDefined1;
|
||||
}
|
||||
public void setUserDefined2(String userDefined2) {
|
||||
this.userDefined2 = userDefined2;
|
||||
}
|
||||
|
||||
public String getUserDefined2() {
|
||||
return userDefined2;
|
||||
}
|
||||
public void setUserDefined3(String userDefined3) {
|
||||
this.userDefined3 = userDefined3;
|
||||
}
|
||||
|
||||
public String getUserDefined3() {
|
||||
return userDefined3;
|
||||
}
|
||||
public void setUserDefined4(String userDefined4) {
|
||||
this.userDefined4 = userDefined4;
|
||||
}
|
||||
|
||||
public String getUserDefined4() {
|
||||
return userDefined4;
|
||||
}
|
||||
public void setUserDefined5(String userDefined5) {
|
||||
this.userDefined5 = userDefined5;
|
||||
}
|
||||
|
||||
public String getUserDefined5() {
|
||||
return userDefined5;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("workOrder", getWorkOrder())
|
||||
.append("productOrder", getProductOrder())
|
||||
.append("productName", getProductName())
|
||||
.append("productCode", getProductCode())
|
||||
.append("whCode", getWhCode())
|
||||
.append("waCode", getWaCode())
|
||||
.append("wlCode", getWlCode())
|
||||
.append("sn", getSn())
|
||||
.append("number", getNumber())
|
||||
.append("userDefined1", getUserDefined1())
|
||||
.append("userDefined2", getUserDefined2())
|
||||
.append("userDefined3", getUserDefined3())
|
||||
.append("userDefined4", getUserDefined4())
|
||||
.append("userDefined5", getUserDefined5())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,178 @@
|
||||
package com.op.wms.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 成品生产入库关联托盘对象 wms_product_put_tray
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public class WmsProductPutTray extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 唯一序列 */
|
||||
private String storageId;
|
||||
|
||||
/** 报工单号 */
|
||||
@Excel(name = "报工单号")
|
||||
private String workOrder;
|
||||
|
||||
/** 生产工单号 */
|
||||
@Excel(name = "生产工单号")
|
||||
private String productOrder;
|
||||
|
||||
/** 仓库编码 */
|
||||
@Excel(name = "仓库编码")
|
||||
private String whCode;
|
||||
|
||||
/** 库区编码 */
|
||||
@Excel(name = "库区编码")
|
||||
private String waCode;
|
||||
|
||||
/** 库位编码 */
|
||||
@Excel(name = "库位编码")
|
||||
private String wlCode;
|
||||
|
||||
/** 托盘号 */
|
||||
@Excel(name = "托盘号")
|
||||
private String sn;
|
||||
|
||||
/** 箱数 */
|
||||
@Excel(name = "箱数")
|
||||
private String number;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String batchNumber;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String userDefined2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private String userDefined3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private String userDefined4;
|
||||
|
||||
/** 预留字段5 */
|
||||
@Excel(name = "预留字段5")
|
||||
private String userDefined5;
|
||||
|
||||
public void setStorageId(String storageId) {
|
||||
this.storageId = storageId;
|
||||
}
|
||||
|
||||
public String getStorageId() {
|
||||
return storageId;
|
||||
}
|
||||
public void setWorkOrder(String workOrder) {
|
||||
this.workOrder = workOrder;
|
||||
}
|
||||
|
||||
public String getWorkOrder() {
|
||||
return workOrder;
|
||||
}
|
||||
public void setProductOrder(String productOrder) {
|
||||
this.productOrder = productOrder;
|
||||
}
|
||||
|
||||
public String getProductOrder() {
|
||||
return productOrder;
|
||||
}
|
||||
public void setWhCode(String whCode) {
|
||||
this.whCode = whCode;
|
||||
}
|
||||
|
||||
public String getWhCode() {
|
||||
return whCode;
|
||||
}
|
||||
public void setWaCode(String waCode) {
|
||||
this.waCode = waCode;
|
||||
}
|
||||
|
||||
public String getWaCode() {
|
||||
return waCode;
|
||||
}
|
||||
public void setWlCode(String wlCode) {
|
||||
this.wlCode = wlCode;
|
||||
}
|
||||
|
||||
public String getWlCode() {
|
||||
return wlCode;
|
||||
}
|
||||
public void setSn(String sn) {
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public String getSn() {
|
||||
return sn;
|
||||
}
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return number;
|
||||
}
|
||||
public void setBatchNumber(String batchNumber) {
|
||||
this.batchNumber = batchNumber;
|
||||
}
|
||||
|
||||
public String getBatchNumber() {
|
||||
return batchNumber;
|
||||
}
|
||||
public void setUserDefined2(String userDefined2) {
|
||||
this.userDefined2 = userDefined2;
|
||||
}
|
||||
|
||||
public String getUserDefined2() {
|
||||
return userDefined2;
|
||||
}
|
||||
public void setUserDefined3(String userDefined3) {
|
||||
this.userDefined3 = userDefined3;
|
||||
}
|
||||
|
||||
public String getUserDefined3() {
|
||||
return userDefined3;
|
||||
}
|
||||
public void setUserDefined4(String userDefined4) {
|
||||
this.userDefined4 = userDefined4;
|
||||
}
|
||||
|
||||
public String getUserDefined4() {
|
||||
return userDefined4;
|
||||
}
|
||||
public void setUserDefined5(String userDefined5) {
|
||||
this.userDefined5 = userDefined5;
|
||||
}
|
||||
|
||||
public String getUserDefined5() {
|
||||
return userDefined5;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("storageId", getStorageId())
|
||||
.append("workOrder", getWorkOrder())
|
||||
.append("productOrder", getProductOrder())
|
||||
.append("whCode", getWhCode())
|
||||
.append("waCode", getWaCode())
|
||||
.append("wlCode", getWlCode())
|
||||
.append("sn", getSn())
|
||||
.append("number", getNumber())
|
||||
.append("batchNumber", getBatchNumber())
|
||||
.append("userDefined2", getUserDefined2())
|
||||
.append("userDefined3", getUserDefined3())
|
||||
.append("userDefined4", getUserDefined4())
|
||||
.append("userDefined5", getUserDefined5())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,143 @@
|
||||
package com.op.wms.domain;
|
||||
|
||||
import io.swagger.models.auth.In;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 托盘关联箱码对象 wms_product_put_tray_code
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public class WmsProductPutTrayCode extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 唯一序列 */
|
||||
private String storageId;
|
||||
|
||||
/** 托盘号 */
|
||||
@Excel(name = "托盘号")
|
||||
private String sn;
|
||||
|
||||
/** 箱码 */
|
||||
@Excel(name = "箱码")
|
||||
private String barcode;
|
||||
|
||||
/** 数量 */
|
||||
@Excel(name = "数量")
|
||||
private Integer number;
|
||||
|
||||
/** 关联状态 */
|
||||
@Excel(name = "关联状态")
|
||||
private String relatStatus;
|
||||
|
||||
/** 预留字段1 */
|
||||
@Excel(name = "预留字段1")
|
||||
private String userDefined1;
|
||||
|
||||
/** 预留字段2 */
|
||||
@Excel(name = "预留字段2")
|
||||
private String userDefined2;
|
||||
|
||||
/** 预留字段3 */
|
||||
@Excel(name = "预留字段3")
|
||||
private String userDefined3;
|
||||
|
||||
/** 预留字段4 */
|
||||
@Excel(name = "预留字段4")
|
||||
private String userDefined4;
|
||||
|
||||
/** 预留字段5 */
|
||||
@Excel(name = "预留字段5")
|
||||
private String userDefined5;
|
||||
|
||||
public void setStorageId(String storageId) {
|
||||
this.storageId = storageId;
|
||||
}
|
||||
|
||||
public String getStorageId() {
|
||||
return storageId;
|
||||
}
|
||||
public void setSn(String sn) {
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public String getSn() {
|
||||
return sn;
|
||||
}
|
||||
public void setBarcode(String barcode) {
|
||||
this.barcode = barcode;
|
||||
}
|
||||
|
||||
public String getBarcode() {
|
||||
return barcode;
|
||||
}
|
||||
public void setNumber(Integer number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public Integer getNumber() {
|
||||
return number;
|
||||
}
|
||||
public void setRelatStatus(String relatStatus) {
|
||||
this.relatStatus = relatStatus;
|
||||
}
|
||||
|
||||
public String getRelatStatus() {
|
||||
return relatStatus;
|
||||
}
|
||||
public void setUserDefined1(String userDefined1) {
|
||||
this.userDefined1 = userDefined1;
|
||||
}
|
||||
|
||||
public String getUserDefined1() {
|
||||
return userDefined1;
|
||||
}
|
||||
public void setUserDefined2(String userDefined2) {
|
||||
this.userDefined2 = userDefined2;
|
||||
}
|
||||
|
||||
public String getUserDefined2() {
|
||||
return userDefined2;
|
||||
}
|
||||
public void setUserDefined3(String userDefined3) {
|
||||
this.userDefined3 = userDefined3;
|
||||
}
|
||||
|
||||
public String getUserDefined3() {
|
||||
return userDefined3;
|
||||
}
|
||||
public void setUserDefined4(String userDefined4) {
|
||||
this.userDefined4 = userDefined4;
|
||||
}
|
||||
|
||||
public String getUserDefined4() {
|
||||
return userDefined4;
|
||||
}
|
||||
public void setUserDefined5(String userDefined5) {
|
||||
this.userDefined5 = userDefined5;
|
||||
}
|
||||
|
||||
public String getUserDefined5() {
|
||||
return userDefined5;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("storageId", getStorageId())
|
||||
.append("sn", getSn())
|
||||
.append("barcode", getBarcode())
|
||||
.append("number", getNumber())
|
||||
.append("relatStatus", getRelatStatus())
|
||||
.append("userDefined1", getUserDefined1())
|
||||
.append("userDefined2", getUserDefined2())
|
||||
.append("userDefined3", getUserDefined3())
|
||||
.append("userDefined4", getUserDefined4())
|
||||
.append("userDefined5", getUserDefined5())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
package com.op.wms.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.wms.domain.WmsFpStorageNews;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
/**
|
||||
* 成品库存主表Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public interface WmsFpStorageNewsMapper {
|
||||
/**
|
||||
* 查询成品库存主表
|
||||
*
|
||||
* @param storageId 成品库存主表主键
|
||||
* @return 成品库存主表
|
||||
*/
|
||||
public WmsFpStorageNews selectWmsFpStorageNewsByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询成品库存主表列表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 成品库存主表集合
|
||||
*/
|
||||
public List<WmsFpStorageNews> selectWmsFpStorageNewsList(WmsFpStorageNews wmsFpStorageNews);
|
||||
|
||||
/**
|
||||
* 新增成品库存主表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsFpStorageNews(WmsFpStorageNews wmsFpStorageNews);
|
||||
|
||||
/**
|
||||
* 修改成品库存主表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsFpStorageNews(WmsFpStorageNews wmsFpStorageNews);
|
||||
|
||||
/**
|
||||
* 删除成品库存主表
|
||||
*
|
||||
* @param storageId 成品库存主表主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsFpStorageNewsByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 批量删除成品库存主表
|
||||
*
|
||||
* @param storageIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsFpStorageNewsByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 根据产品编码查询库存主表
|
||||
*/
|
||||
public WmsFpStorageNews selectWmsFpStorageNewsByProductCode(String productCode);
|
||||
|
||||
/**
|
||||
* 根据产品编码和库位号查询库存主表
|
||||
* @param productCode
|
||||
* @param wlCode
|
||||
* @return
|
||||
*/
|
||||
public WmsFpStorageNews selectWmsFpStorageNewsByProductCodeAndWlCode(@Param("productCode") String productCode, @Param("wlCode") String wlCode);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.op.wms.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.wms.domain.WmsProductPutRecords;
|
||||
|
||||
/**
|
||||
* 成品生产入库记录报Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-06
|
||||
*/
|
||||
public interface WmsProductPutRecordsMapper {
|
||||
/**
|
||||
* 查询成品生产入库记录报
|
||||
*
|
||||
* @param id 成品生产入库记录报主键
|
||||
* @return 成品生产入库记录报
|
||||
*/
|
||||
public WmsProductPutRecords selectWmsProductPutRecordsById(String id);
|
||||
|
||||
/**
|
||||
* 查询成品生产入库记录报列表
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 成品生产入库记录报集合
|
||||
*/
|
||||
public List<WmsProductPutRecords> selectWmsProductPutRecordsList(WmsProductPutRecords wmsProductPutRecords);
|
||||
|
||||
/**
|
||||
* 新增成品生产入库记录报
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsProductPutRecords(WmsProductPutRecords wmsProductPutRecords);
|
||||
|
||||
/**
|
||||
* 修改成品生产入库记录报
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsProductPutRecords(WmsProductPutRecords wmsProductPutRecords);
|
||||
|
||||
/**
|
||||
* 删除成品生产入库记录报
|
||||
*
|
||||
* @param id 成品生产入库记录报主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutRecordsById(String id);
|
||||
|
||||
/**
|
||||
* 批量删除成品生产入库记录报
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutRecordsByIds(String[] ids);
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
package com.op.wms.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.wms.domain.WmsProductPutTrayCode;
|
||||
|
||||
/**
|
||||
* 托盘关联箱码Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public interface WmsProductPutTrayCodeMapper {
|
||||
/**
|
||||
* 查询托盘关联箱码
|
||||
*
|
||||
* @param storageId 托盘关联箱码主键
|
||||
* @return 托盘关联箱码
|
||||
*/
|
||||
public WmsProductPutTrayCode selectWmsProductPutTrayCodeByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询托盘关联箱码列表
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 托盘关联箱码集合
|
||||
*/
|
||||
public List<WmsProductPutTrayCode> selectWmsProductPutTrayCodeList(WmsProductPutTrayCode wmsProductPutTrayCode);
|
||||
|
||||
/**
|
||||
* 新增托盘关联箱码
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsProductPutTrayCode(WmsProductPutTrayCode wmsProductPutTrayCode);
|
||||
|
||||
/**
|
||||
* 修改托盘关联箱码
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsProductPutTrayCode(WmsProductPutTrayCode wmsProductPutTrayCode);
|
||||
|
||||
/**
|
||||
* 删除托盘关联箱码
|
||||
*
|
||||
* @param storageId 托盘关联箱码主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayCodeByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 批量删除托盘关联箱码
|
||||
*
|
||||
* @param storageIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayCodeByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 根据托盘号查询关联状态
|
||||
* @param sn
|
||||
* @return
|
||||
*/
|
||||
public WmsProductPutTrayCode selectWmsProductPutTrayCodeBySn(String sn);
|
||||
|
||||
/**
|
||||
* 根据箱码查询托盘号
|
||||
* @param barcode
|
||||
* @return
|
||||
*/
|
||||
public WmsProductPutTrayCode selectWmsProductPutTrayCodeByBarcode(String barcode);
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
package com.op.wms.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.op.wms.domain.WmsProductPutTray;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
/**
|
||||
* 成品生产入库关联托盘Mapper接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public interface WmsProductPutTrayMapper {
|
||||
/**
|
||||
* 查询成品生产入库关联托盘
|
||||
*
|
||||
* @param storageId 成品生产入库关联托盘主键
|
||||
* @return 成品生产入库关联托盘
|
||||
*/
|
||||
public WmsProductPutTray selectWmsProductPutTrayByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询成品生产入库关联托盘列表
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 成品生产入库关联托盘集合
|
||||
*/
|
||||
public List<WmsProductPutTray> selectWmsProductPutTrayList(WmsProductPutTray wmsProductPutTray);
|
||||
|
||||
/**
|
||||
* 新增成品生产入库关联托盘
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsProductPutTray(WmsProductPutTray wmsProductPutTray);
|
||||
|
||||
/**
|
||||
* 修改成品生产入库关联托盘
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsProductPutTray(WmsProductPutTray wmsProductPutTray);
|
||||
|
||||
/**
|
||||
* 删除成品生产入库关联托盘
|
||||
*
|
||||
* @param storageId 成品生产入库关联托盘主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 批量删除成品生产入库关联托盘
|
||||
*
|
||||
* @param storageIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 根据托盘号和报工单号删除接口
|
||||
*/
|
||||
public int deleteWmsProductPutTrayBySn(@Param("sn") String sn , @Param("workOrder") String workOrder);
|
||||
|
||||
/**
|
||||
* 根据工单号查询托盘
|
||||
*/
|
||||
public List<WmsProductPutTray> selectWmsProductPutTrayByWorkOrder(String workOrder);
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
package com.op.wms.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.op.wms.domain.WmsFpStorageNews;
|
||||
|
||||
/**
|
||||
* 成品库存主表Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public interface IWmsFpStorageNewsService {
|
||||
/**
|
||||
* 查询成品库存主表
|
||||
*
|
||||
* @param storageId 成品库存主表主键
|
||||
* @return 成品库存主表
|
||||
*/
|
||||
public WmsFpStorageNews selectWmsFpStorageNewsByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询成品库存主表列表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 成品库存主表集合
|
||||
*/
|
||||
public List<WmsFpStorageNews> selectWmsFpStorageNewsList(WmsFpStorageNews wmsFpStorageNews);
|
||||
|
||||
/**
|
||||
* 新增成品库存主表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsFpStorageNews(WmsFpStorageNews wmsFpStorageNews);
|
||||
|
||||
/**
|
||||
* 修改成品库存主表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsFpStorageNews(WmsFpStorageNews wmsFpStorageNews);
|
||||
|
||||
/**
|
||||
* 批量删除成品库存主表
|
||||
*
|
||||
* @param storageIds 需要删除的成品库存主表主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsFpStorageNewsByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 删除成品库存主表信息
|
||||
*
|
||||
* @param storageId 成品库存主表主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsFpStorageNewsByStorageId(String storageId);
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package com.op.wms.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.op.wms.domain.WmsFpStorageNewsSn;
|
||||
|
||||
/**
|
||||
* 成品库存明细Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
public interface IWmsFpStorageNewsSnService {
|
||||
/**
|
||||
* 查询成品库存明细
|
||||
*
|
||||
* @param storageId 成品库存明细主键
|
||||
* @return 成品库存明细
|
||||
*/
|
||||
public WmsFpStorageNewsSn selectWmsFpStorageNewsSnByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询成品库存明细列表
|
||||
*
|
||||
* @param wmsFpStorageNewsSn 成品库存明细
|
||||
* @return 成品库存明细集合
|
||||
*/
|
||||
public List<WmsFpStorageNewsSn> selectWmsFpStorageNewsSnList(WmsFpStorageNewsSn wmsFpStorageNewsSn);
|
||||
|
||||
/**
|
||||
* 新增成品库存明细
|
||||
*
|
||||
* @param wmsFpStorageNewsSn 成品库存明细
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsFpStorageNewsSn(WmsFpStorageNewsSn wmsFpStorageNewsSn);
|
||||
|
||||
/**
|
||||
* 修改成品库存明细
|
||||
*
|
||||
* @param wmsFpStorageNewsSn 成品库存明细
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsFpStorageNewsSn(WmsFpStorageNewsSn wmsFpStorageNewsSn);
|
||||
|
||||
/**
|
||||
* 批量删除成品库存明细
|
||||
*
|
||||
* @param storageIds 需要删除的成品库存明细主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsFpStorageNewsSnByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 删除成品库存明细信息
|
||||
*
|
||||
* @param storageId 成品库存明细主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsFpStorageNewsSnByStorageId(String storageId);
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
package com.op.wms.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.op.wms.domain.WmsProductPutRecords;
|
||||
|
||||
/**
|
||||
* 成品生产入库记录报Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-06
|
||||
*/
|
||||
public interface IWmsProductPutRecordsService {
|
||||
/**
|
||||
* 查询成品生产入库记录报
|
||||
*
|
||||
* @param id 成品生产入库记录报主键
|
||||
* @return 成品生产入库记录报
|
||||
*/
|
||||
public WmsProductPutRecords selectWmsProductPutRecordsById(String id);
|
||||
|
||||
/**
|
||||
* 查询成品生产入库记录报列表
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 成品生产入库记录报集合
|
||||
*/
|
||||
public List<WmsProductPutRecords> selectWmsProductPutRecordsList(WmsProductPutRecords wmsProductPutRecords);
|
||||
|
||||
/**
|
||||
* 新增成品生产入库记录报
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsProductPutRecords(WmsProductPutRecords wmsProductPutRecords);
|
||||
|
||||
/**
|
||||
* 修改成品生产入库记录报
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsProductPutRecords(WmsProductPutRecords wmsProductPutRecords);
|
||||
|
||||
/**
|
||||
* 批量删除成品生产入库记录报
|
||||
*
|
||||
* @param ids 需要删除的成品生产入库记录报主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutRecordsByIds(String[] ids);
|
||||
|
||||
/**
|
||||
* 删除成品生产入库记录报信息
|
||||
*
|
||||
* @param id 成品生产入库记录报主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutRecordsById(String id);
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
package com.op.wms.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.op.wms.domain.WmsProductPutTrayCode;
|
||||
|
||||
/**
|
||||
* 托盘关联箱码Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public interface IWmsProductPutTrayCodeService {
|
||||
/**
|
||||
* 查询托盘关联箱码
|
||||
*
|
||||
* @param storageId 托盘关联箱码主键
|
||||
* @return 托盘关联箱码
|
||||
*/
|
||||
public WmsProductPutTrayCode selectWmsProductPutTrayCodeByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询托盘关联箱码列表
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 托盘关联箱码集合
|
||||
*/
|
||||
public List<WmsProductPutTrayCode> selectWmsProductPutTrayCodeList(WmsProductPutTrayCode wmsProductPutTrayCode);
|
||||
|
||||
/**
|
||||
* 新增托盘关联箱码
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsProductPutTrayCode(WmsProductPutTrayCode wmsProductPutTrayCode);
|
||||
|
||||
/**
|
||||
* 修改托盘关联箱码
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsProductPutTrayCode(WmsProductPutTrayCode wmsProductPutTrayCode);
|
||||
|
||||
/**
|
||||
* 批量删除托盘关联箱码
|
||||
*
|
||||
* @param storageIds 需要删除的托盘关联箱码主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayCodeByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 删除托盘关联箱码信息
|
||||
*
|
||||
* @param storageId 托盘关联箱码主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayCodeByStorageId(String storageId);
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
package com.op.wms.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.op.wms.domain.WmsProductPutTray;
|
||||
|
||||
/**
|
||||
* 成品生产入库关联托盘Service接口
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
public interface IWmsProductPutTrayService {
|
||||
/**
|
||||
* 查询成品生产入库关联托盘
|
||||
*
|
||||
* @param storageId 成品生产入库关联托盘主键
|
||||
* @return 成品生产入库关联托盘
|
||||
*/
|
||||
public WmsProductPutTray selectWmsProductPutTrayByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 查询成品生产入库关联托盘列表
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 成品生产入库关联托盘集合
|
||||
*/
|
||||
public List<WmsProductPutTray> selectWmsProductPutTrayList(WmsProductPutTray wmsProductPutTray);
|
||||
|
||||
/**
|
||||
* 新增成品生产入库关联托盘
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertWmsProductPutTray(WmsProductPutTray wmsProductPutTray);
|
||||
|
||||
/**
|
||||
* 修改成品生产入库关联托盘
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateWmsProductPutTray(WmsProductPutTray wmsProductPutTray);
|
||||
|
||||
/**
|
||||
* 批量删除成品生产入库关联托盘
|
||||
*
|
||||
* @param storageIds 需要删除的成品生产入库关联托盘主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayByStorageIds(String[] storageIds);
|
||||
|
||||
/**
|
||||
* 删除成品生产入库关联托盘信息
|
||||
*
|
||||
* @param storageId 成品生产入库关联托盘主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsProductPutTrayByStorageId(String storageId);
|
||||
|
||||
/**
|
||||
* 根据托盘号和报工单号删除接口
|
||||
*/
|
||||
public int deleteWmsProductPutTrayBySn(String sn,String workOrder);
|
||||
|
||||
/**
|
||||
* 批量添加托盘信息
|
||||
*/
|
||||
public int insertWmsProductPutTrays(List<WmsProductPutTray> wmsProductPutTrays);
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
package com.op.wms.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.wms.mapper.WmsFpStorageNewsMapper;
|
||||
import com.op.wms.domain.WmsFpStorageNews;
|
||||
import com.op.wms.service.IWmsFpStorageNewsService;
|
||||
|
||||
/**
|
||||
* 成品库存主表Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
@Service
|
||||
public class WmsFpStorageNewsServiceImpl implements IWmsFpStorageNewsService {
|
||||
@Autowired
|
||||
private WmsFpStorageNewsMapper wmsFpStorageNewsMapper;
|
||||
|
||||
/**
|
||||
* 查询成品库存主表
|
||||
*
|
||||
* @param storageId 成品库存主表主键
|
||||
* @return 成品库存主表
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public WmsFpStorageNews selectWmsFpStorageNewsByStorageId(String storageId) {
|
||||
return wmsFpStorageNewsMapper.selectWmsFpStorageNewsByStorageId(storageId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询成品库存主表列表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 成品库存主表
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<WmsFpStorageNews> selectWmsFpStorageNewsList(WmsFpStorageNews wmsFpStorageNews) {
|
||||
return wmsFpStorageNewsMapper.selectWmsFpStorageNewsList(wmsFpStorageNews);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品库存主表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertWmsFpStorageNews(WmsFpStorageNews wmsFpStorageNews) {
|
||||
return wmsFpStorageNewsMapper.insertWmsFpStorageNews(wmsFpStorageNews);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品库存主表
|
||||
*
|
||||
* @param wmsFpStorageNews 成品库存主表
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateWmsFpStorageNews(WmsFpStorageNews wmsFpStorageNews) {
|
||||
return wmsFpStorageNewsMapper.updateWmsFpStorageNews(wmsFpStorageNews);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除成品库存主表
|
||||
*
|
||||
* @param storageIds 需要删除的成品库存主表主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsFpStorageNewsByStorageIds(String[] storageIds) {
|
||||
return wmsFpStorageNewsMapper.deleteWmsFpStorageNewsByStorageIds(storageIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品库存主表信息
|
||||
*
|
||||
* @param storageId 成品库存主表主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsFpStorageNewsByStorageId(String storageId) {
|
||||
return wmsFpStorageNewsMapper.deleteWmsFpStorageNewsByStorageId(storageId);
|
||||
}
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
package com.op.wms.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.wms.mapper.WmsFpStorageNewsSnMapper;
|
||||
import com.op.wms.domain.WmsFpStorageNewsSn;
|
||||
import com.op.wms.service.IWmsFpStorageNewsSnService;
|
||||
|
||||
/**
|
||||
* 成品库存明细Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-04
|
||||
*/
|
||||
@Service
|
||||
public class WmsFpStorageNewsSnServiceImpl implements IWmsFpStorageNewsSnService {
|
||||
@Autowired
|
||||
private WmsFpStorageNewsSnMapper wmsFpStorageNewsSnMapper;
|
||||
|
||||
/**
|
||||
* 查询成品库存明细
|
||||
*
|
||||
* @param storageId 成品库存明细主键
|
||||
* @return 成品库存明细
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public WmsFpStorageNewsSn selectWmsFpStorageNewsSnByStorageId(String storageId) {
|
||||
return wmsFpStorageNewsSnMapper.selectWmsFpStorageNewsSnByStorageId(storageId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询成品库存明细列表
|
||||
*
|
||||
* @param wmsFpStorageNewsSn 成品库存明细
|
||||
* @return 成品库存明细
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<WmsFpStorageNewsSn> selectWmsFpStorageNewsSnList(WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
return wmsFpStorageNewsSnMapper.selectWmsFpStorageNewsSnList(wmsFpStorageNewsSn);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品库存明细
|
||||
*
|
||||
* @param wmsFpStorageNewsSn 成品库存明细
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertWmsFpStorageNewsSn(WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
return wmsFpStorageNewsSnMapper.insertWmsFpStorageNewsSn(wmsFpStorageNewsSn);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品库存明细
|
||||
*
|
||||
* @param wmsFpStorageNewsSn 成品库存明细
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateWmsFpStorageNewsSn(WmsFpStorageNewsSn wmsFpStorageNewsSn) {
|
||||
return wmsFpStorageNewsSnMapper.updateWmsFpStorageNewsSn(wmsFpStorageNewsSn);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除成品库存明细
|
||||
*
|
||||
* @param storageIds 需要删除的成品库存明细主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsFpStorageNewsSnByStorageIds(String[] storageIds) {
|
||||
return wmsFpStorageNewsSnMapper.deleteWmsFpStorageNewsSnByStorageIds(storageIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品库存明细信息
|
||||
*
|
||||
* @param storageId 成品库存明细主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsFpStorageNewsSnByStorageId(String storageId) {
|
||||
return wmsFpStorageNewsSnMapper.deleteWmsFpStorageNewsSnByStorageId(storageId);
|
||||
}
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package com.op.wms.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.utils.DateUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.wms.mapper.WmsProductPutRecordsMapper;
|
||||
import com.op.wms.domain.WmsProductPutRecords;
|
||||
import com.op.wms.service.IWmsProductPutRecordsService;
|
||||
|
||||
/**
|
||||
* 成品生产入库记录报Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-09-06
|
||||
*/
|
||||
@Service
|
||||
public class WmsProductPutRecordsServiceImpl implements IWmsProductPutRecordsService {
|
||||
@Autowired
|
||||
private WmsProductPutRecordsMapper wmsProductPutRecordsMapper;
|
||||
|
||||
/**
|
||||
* 查询成品生产入库记录报
|
||||
*
|
||||
* @param id 成品生产入库记录报主键
|
||||
* @return 成品生产入库记录报
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public WmsProductPutRecords selectWmsProductPutRecordsById(String id) {
|
||||
return wmsProductPutRecordsMapper.selectWmsProductPutRecordsById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询成品生产入库记录报列表
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 成品生产入库记录报
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<WmsProductPutRecords> selectWmsProductPutRecordsList(WmsProductPutRecords wmsProductPutRecords) {
|
||||
return wmsProductPutRecordsMapper.selectWmsProductPutRecordsList(wmsProductPutRecords);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品生产入库记录报
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertWmsProductPutRecords(WmsProductPutRecords wmsProductPutRecords) {
|
||||
wmsProductPutRecords.setCreateTime(DateUtils.getNowDate());
|
||||
return wmsProductPutRecordsMapper.insertWmsProductPutRecords(wmsProductPutRecords);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品生产入库记录报
|
||||
*
|
||||
* @param wmsProductPutRecords 成品生产入库记录报
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateWmsProductPutRecords(WmsProductPutRecords wmsProductPutRecords) {
|
||||
wmsProductPutRecords.setUpdateTime(DateUtils.getNowDate());
|
||||
return wmsProductPutRecordsMapper.updateWmsProductPutRecords(wmsProductPutRecords);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除成品生产入库记录报
|
||||
*
|
||||
* @param ids 需要删除的成品生产入库记录报主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutRecordsByIds(String[] ids) {
|
||||
return wmsProductPutRecordsMapper.deleteWmsProductPutRecordsByIds(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品生产入库记录报信息
|
||||
*
|
||||
* @param id 成品生产入库记录报主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutRecordsById(String id) {
|
||||
return wmsProductPutRecordsMapper.deleteWmsProductPutRecordsById(id);
|
||||
}
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
package com.op.wms.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.wms.mapper.WmsProductPutTrayCodeMapper;
|
||||
import com.op.wms.domain.WmsProductPutTrayCode;
|
||||
import com.op.wms.service.IWmsProductPutTrayCodeService;
|
||||
|
||||
/**
|
||||
* 托盘关联箱码Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
@Service
|
||||
public class WmsProductPutTrayCodeServiceImpl implements IWmsProductPutTrayCodeService {
|
||||
@Autowired
|
||||
private WmsProductPutTrayCodeMapper wmsProductPutTrayCodeMapper;
|
||||
|
||||
/**
|
||||
* 查询托盘关联箱码
|
||||
*
|
||||
* @param storageId 托盘关联箱码主键
|
||||
* @return 托盘关联箱码
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public WmsProductPutTrayCode selectWmsProductPutTrayCodeByStorageId(String storageId) {
|
||||
return wmsProductPutTrayCodeMapper.selectWmsProductPutTrayCodeByStorageId(storageId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询托盘关联箱码列表
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 托盘关联箱码
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<WmsProductPutTrayCode> selectWmsProductPutTrayCodeList(WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
return wmsProductPutTrayCodeMapper.selectWmsProductPutTrayCodeList(wmsProductPutTrayCode);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增托盘关联箱码
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertWmsProductPutTrayCode(WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
return wmsProductPutTrayCodeMapper.insertWmsProductPutTrayCode(wmsProductPutTrayCode);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改托盘关联箱码
|
||||
*
|
||||
* @param wmsProductPutTrayCode 托盘关联箱码
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateWmsProductPutTrayCode(WmsProductPutTrayCode wmsProductPutTrayCode) {
|
||||
return wmsProductPutTrayCodeMapper.updateWmsProductPutTrayCode(wmsProductPutTrayCode);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除托盘关联箱码
|
||||
*
|
||||
* @param storageIds 需要删除的托盘关联箱码主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutTrayCodeByStorageIds(String[] storageIds) {
|
||||
return wmsProductPutTrayCodeMapper.deleteWmsProductPutTrayCodeByStorageIds(storageIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除托盘关联箱码信息
|
||||
*
|
||||
* @param storageId 托盘关联箱码主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutTrayCodeByStorageId(String storageId) {
|
||||
return wmsProductPutTrayCodeMapper.deleteWmsProductPutTrayCodeByStorageId(storageId);
|
||||
}
|
||||
}
|
@ -0,0 +1,262 @@
|
||||
package com.op.wms.service.impl;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
|
||||
import com.alibaba.nacos.common.utils.UuidUtils;
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.op.common.core.context.SecurityContextHolder;
|
||||
import com.op.common.core.exception.ServiceException;
|
||||
import com.op.common.core.utils.uuid.IdUtils;
|
||||
import com.op.wms.domain.*;
|
||||
import com.op.wms.mapper.*;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.redis.core.RedisTemplate;
|
||||
import org.springframework.data.redis.core.ValueOperations;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.op.wms.service.IWmsProductPutTrayService;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
|
||||
/**
|
||||
* 成品生产入库关联托盘Service业务层处理
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-08-31
|
||||
*/
|
||||
@Service
|
||||
public class WmsProductPutTrayServiceImpl implements IWmsProductPutTrayService {
|
||||
@Autowired
|
||||
private WmsProductPutTrayMapper wmsProductPutTrayMapper;
|
||||
@Autowired
|
||||
private RedisTemplate<String,String> redisTemplate;
|
||||
@Autowired
|
||||
private WmsProductPutMapper wmsProductPutMapper;
|
||||
|
||||
@Autowired
|
||||
private WmsFpStorageNewsMapper wmsFpStorageNewsMapper;
|
||||
@Autowired
|
||||
private WmsFpStorageNewsSnMapper wmsFpStorageNewsSnMapper;
|
||||
@Autowired
|
||||
private WmsProductPutTrayCodeMapper wmsProductPutTrayCodeMapper;
|
||||
@Autowired
|
||||
private WmsProductPutRecordsMapper wmsProductPutRecordsMapper;
|
||||
/**
|
||||
* 查询成品生产入库关联托盘
|
||||
*
|
||||
* @param storageId 成品生产入库关联托盘主键
|
||||
* @return 成品生产入库关联托盘
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public WmsProductPutTray selectWmsProductPutTrayByStorageId(String storageId) {
|
||||
return wmsProductPutTrayMapper.selectWmsProductPutTrayByStorageId(storageId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询成品生产入库关联托盘列表
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 成品生产入库关联托盘
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public List<WmsProductPutTray> selectWmsProductPutTrayList(WmsProductPutTray wmsProductPutTray) {
|
||||
return wmsProductPutTrayMapper.selectWmsProductPutTrayList(wmsProductPutTray);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增成品生产入库关联托盘
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertWmsProductPutTray(WmsProductPutTray wmsProductPutTray) {
|
||||
WmsProductPutTrayCode wmsProductPutTrayCode = wmsProductPutTrayCodeMapper.selectWmsProductPutTrayCodeBySn(wmsProductPutTray.getSn());
|
||||
if (wmsProductPutTrayCode.getRelatStatus().equals("0")){
|
||||
ValueOperations<String, String> valueOperations = redisTemplate.opsForValue();
|
||||
String workOrder = valueOperations.get("workOrder");
|
||||
WmsProductPut wmsProductPut = wmsProductPutMapper.selectWmsProductPutByWorkOrder(workOrder);
|
||||
wmsProductPutTray.setStorageId(IdUtils.fastSimpleUUID());
|
||||
wmsProductPutTray.setWorkOrder(workOrder);
|
||||
wmsProductPutTray.setProductOrder(wmsProductPut.getProductOrder());
|
||||
wmsProductPutTray.setWhCode(wmsProductPut.getWhCode());
|
||||
wmsProductPutTray.setWaCode(wmsProductPut.getWaCode());
|
||||
wmsProductPutTray.setBatchNumber(wmsProductPut.getBatchNumber());
|
||||
}else {
|
||||
throw new ServiceException("该托盘已经被占用!");
|
||||
}
|
||||
return wmsProductPutTrayMapper.insertWmsProductPutTray(wmsProductPutTray);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改成品生产入库关联托盘
|
||||
*
|
||||
* @param wmsProductPutTray 成品生产入库关联托盘
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int updateWmsProductPutTray(WmsProductPutTray wmsProductPutTray) {
|
||||
return wmsProductPutTrayMapper.updateWmsProductPutTray(wmsProductPutTray);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除成品生产入库关联托盘
|
||||
*
|
||||
* @param storageIds 需要删除的成品生产入库关联托盘主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutTrayByStorageIds(String[] storageIds) {
|
||||
return wmsProductPutTrayMapper.deleteWmsProductPutTrayByStorageIds(storageIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除成品生产入库关联托盘信息
|
||||
*
|
||||
* @param storageId 成品生产入库关联托盘主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutTrayByStorageId(String storageId) {
|
||||
return wmsProductPutTrayMapper.deleteWmsProductPutTrayByStorageId(storageId);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 根据托盘号删除接口
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int deleteWmsProductPutTrayBySn(String sn, String workOrder) {
|
||||
return wmsProductPutTrayMapper.deleteWmsProductPutTrayBySn(sn,workOrder);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 手持确认入库批量添加
|
||||
*/
|
||||
@Override
|
||||
@DS("#header.poolName")
|
||||
public int insertWmsProductPutTrays(List<WmsProductPutTray> wmsProductPutTrays){
|
||||
ValueOperations<String,String> valueOperations = redisTemplate.opsForValue();
|
||||
String workOrder = valueOperations.get("workOrder");
|
||||
WmsProductPut wmsProductPut = wmsProductPutMapper.selectWmsProductPutByWorkOrder(workOrder);
|
||||
//加库存
|
||||
for (WmsProductPutTray wmsProductPutTray : wmsProductPutTrays) {
|
||||
WmsFpStorageNews wmsFpStorageNews = wmsFpStorageNewsMapper.selectWmsFpStorageNewsByProductCodeAndWlCode(wmsProductPut.getProductCode(), wmsProductPutTray.getWlCode());
|
||||
WmsFpStorageNews wmsFpStorageNews1 = new WmsFpStorageNews();
|
||||
if (ObjectUtils.isEmpty(wmsFpStorageNews)){
|
||||
// TODO 库存中没有此产品,添加
|
||||
wmsFpStorageNews1.setStorageId(IdUtils.fastSimpleUUID());
|
||||
wmsFpStorageNews1.setWhCode(wmsProductPut.getWhCode());
|
||||
wmsFpStorageNews1.setWaCode(wmsProductPut.getWaCode());
|
||||
wmsFpStorageNews1.setStorageType("成品");
|
||||
wmsFpStorageNews1.setWlCode(wmsProductPutTray.getWlCode());
|
||||
wmsFpStorageNews1.setProductCode(wmsProductPut.getProductCode());
|
||||
wmsFpStorageNews1.setProductName(wmsProductPut.getProductName());
|
||||
BigDecimal putQuantity = new BigDecimal(wmsProductPutTray.getNumber());
|
||||
wmsFpStorageNews1.setAmount(putQuantity);
|
||||
wmsFpStorageNews1.setCreateBy(SecurityContextHolder.getUserName());
|
||||
wmsFpStorageNews1.setCreateTime(new Date());
|
||||
wmsFpStorageNewsMapper.insertWmsFpStorageNews(wmsFpStorageNews1);
|
||||
}else {
|
||||
//加库存数量
|
||||
BigDecimal putQuantity = new BigDecimal(wmsProductPutTray.getNumber());
|
||||
wmsFpStorageNews.setAmount(wmsFpStorageNews.getAmount().add(putQuantity));
|
||||
wmsFpStorageNews.setUpdateBy(SecurityContextHolder.getUserName());
|
||||
wmsFpStorageNews.setUpdateTime(new Date());
|
||||
wmsFpStorageNewsMapper.updateWmsFpStorageNews(wmsFpStorageNews);
|
||||
}
|
||||
}
|
||||
// WmsFpStorageNews wmsFpStorageNews = wmsFpStorageNewsMapper.selectWmsFpStorageNewsByProductCode(wmsProductPut.getProductCode());
|
||||
// WmsFpStorageNews wmsFpStorageNews1 = new WmsFpStorageNews();
|
||||
// // TODO 库存中没有此产品,添加
|
||||
// if (ObjectUtils.isEmpty(wmsFpStorageNews)){
|
||||
// wmsFpStorageNews1.setStorageId(IdUtils.fastSimpleUUID());
|
||||
// wmsFpStorageNews1.setWhCode(wmsProductPut.getWhCode());
|
||||
// wmsFpStorageNews1.setWaCode(wmsProductPut.getWaCode());
|
||||
// wmsFpStorageNews1.setStorageType("成品");
|
||||
// wmsFpStorageNews1.setWlCode(wmsProductPut.getWlCode());
|
||||
// wmsFpStorageNews1.setProductCode(wmsProductPut.getProductCode());
|
||||
// wmsFpStorageNews1.setProductName(wmsProductPut.getProductName());
|
||||
// BigDecimal putQuantity = new BigDecimal(wmsProductPut.getPutQuantity());
|
||||
// wmsFpStorageNews1.setAmount(putQuantity);
|
||||
// wmsFpStorageNews1.setCreateBy(SecurityContextHolder.getUserName());
|
||||
// wmsFpStorageNews1.setCreateTime(new Date());
|
||||
// wmsFpStorageNewsMapper.insertWmsFpStorageNews(wmsFpStorageNews1);
|
||||
// }else {
|
||||
// //加库存数量
|
||||
// BigDecimal putQuantity = new BigDecimal(wmsProductPut.getPutQuantity());
|
||||
// wmsFpStorageNews.setAmount(wmsFpStorageNews.getAmount().add(putQuantity));
|
||||
// wmsFpStorageNews.setUpdateBy(SecurityContextHolder.getUserName());
|
||||
// wmsFpStorageNews.setUpdateTime(new Date());
|
||||
// wmsFpStorageNewsMapper.updateWmsFpStorageNews(wmsFpStorageNews);
|
||||
// }
|
||||
//生成库存明细
|
||||
|
||||
for (WmsProductPutTray wmsProductPutTray : wmsProductPutTrays) {
|
||||
WmsFpStorageNewsSn wmsFpStorageNewsSn1 = wmsFpStorageNewsSnMapper.selectWmsFpStorageNewsSnBySnAndProductCodeAndWlCode(wmsProductPut.getProductCode(), wmsProductPutTray.getSn(), wmsProductPutTray.getWlCode());
|
||||
WmsFpStorageNewsSn wmsFpStorageNewsSn = new WmsFpStorageNewsSn();
|
||||
if (ObjectUtils.isEmpty(wmsFpStorageNewsSn1)){
|
||||
wmsFpStorageNewsSn.setStorageId(IdUtils.fastSimpleUUID());
|
||||
wmsFpStorageNewsSn.setWhCode(wmsProductPut.getWhCode());
|
||||
wmsFpStorageNewsSn.setWaCode(wmsProductPut.getWaCode());
|
||||
wmsFpStorageNewsSn.setWlCode(wmsProductPutTray.getWlCode());
|
||||
wmsFpStorageNewsSn.setOrderNo(IdUtils.fastSimpleUUID());
|
||||
wmsFpStorageNewsSn.setProductName(wmsProductPut.getProductName());
|
||||
wmsFpStorageNewsSn.setProductCode(wmsProductPut.getProductCode());
|
||||
wmsFpStorageNewsSn.setSn(wmsProductPutTray.getSn());
|
||||
BigDecimal number = new BigDecimal(wmsProductPutTray.getNumber());
|
||||
wmsFpStorageNewsSn.setAmount(number);
|
||||
wmsFpStorageNewsSn.setCreateBy(SecurityContextHolder.getUserName());
|
||||
wmsFpStorageNewsSn.setCreateTime(new Date());
|
||||
wmsFpStorageNewsSnMapper.insertWmsFpStorageNewsSn(wmsFpStorageNewsSn);
|
||||
}else {
|
||||
//加库存数量
|
||||
BigDecimal putQuantity = new BigDecimal(wmsProductPutTray.getNumber());
|
||||
wmsFpStorageNewsSn1.setAmount(wmsFpStorageNewsSn1.getAmount().add(putQuantity));
|
||||
wmsFpStorageNewsSn1.setUpdateBy(SecurityContextHolder.getUserName());
|
||||
wmsFpStorageNewsSn1.setUpdateTime(new Date());
|
||||
wmsFpStorageNewsSnMapper.updateWmsFpStorageNewsSn(wmsFpStorageNewsSn1);
|
||||
}
|
||||
|
||||
}
|
||||
//todo 修改入库状态
|
||||
wmsProductPut.setStatus("1");
|
||||
wmsProductPutMapper.updateWmsProductPut(wmsProductPut);
|
||||
//todo 生成成品入库记录报表
|
||||
for (WmsProductPutTray wmsProductPutTray : wmsProductPutTrays) {
|
||||
WmsProductPutRecords wmsProductPutRecords = new WmsProductPutRecords();
|
||||
wmsProductPutRecords.setId(IdUtils.fastSimpleUUID());
|
||||
wmsProductPutRecords.setWorkOrder(workOrder);
|
||||
wmsProductPutRecords.setProductCode(wmsProductPut.getProductCode());
|
||||
wmsProductPutRecords.setProductName(wmsProductPut.getProductName());
|
||||
wmsProductPutRecords.setProductOrder(wmsProductPut.getProductOrder());
|
||||
wmsProductPutRecords.setWhCode(wmsProductPut.getWhCode());
|
||||
wmsProductPutRecords.setWaCode(wmsProductPut.getWaCode());
|
||||
wmsProductPutRecords.setWlCode(wmsProductPutTray.getWlCode());
|
||||
wmsProductPutRecords.setSn(wmsProductPutTray.getSn());
|
||||
wmsProductPutRecords.setNumber(wmsProductPutTray.getNumber());
|
||||
wmsProductPutRecords.setCreateBy(SecurityContextHolder.getUserName());
|
||||
wmsProductPutRecords.setCreateTime(new Date());
|
||||
wmsProductPutRecordsMapper.insertWmsProductPutRecords(wmsProductPutRecords);
|
||||
}
|
||||
//todo 增加托盘上的数量
|
||||
for (WmsProductPutTray wmsProductPutTray : wmsProductPutTrays) {
|
||||
WmsProductPutTrayCode wmsProductPutTrayCode = wmsProductPutTrayCodeMapper.selectWmsProductPutTrayCodeBySn(wmsProductPutTray.getSn());
|
||||
wmsProductPutTrayCode.setRelatStatus("1");
|
||||
wmsProductPutTrayCode.setNumber(wmsProductPutTrayCode.getNumber()+Integer.parseInt(wmsProductPutTray.getNumber()));
|
||||
wmsProductPutTrayCodeMapper.updateWmsProductPutTrayCode(wmsProductPutTrayCode);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
}
|
@ -0,0 +1,291 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.WmsFpStorageNewsMapper">
|
||||
|
||||
<resultMap type="WmsFpStorageNews" id="WmsFpStorageNewsResult">
|
||||
<result property="storageId" column="storage_id" />
|
||||
<result property="whCode" column="wh_code" />
|
||||
<result property="regionCode" column="region_code" />
|
||||
<result property="waCode" column="wa_code" />
|
||||
<result property="storageType" column="storage_type" />
|
||||
<result property="wlCode" column="wl_code" />
|
||||
<result property="productCode" column="product_code" />
|
||||
<result property="productName" column="product_name" />
|
||||
<result property="amount" column="amount" />
|
||||
<result property="storageAmount" column="storage_amount" />
|
||||
<result property="occupyAmount" column="occupy_amount" />
|
||||
<result property="lpn" column="lpn" />
|
||||
<result property="productBatch" column="product_batch" />
|
||||
<result property="receiveDate" column="receive_date" />
|
||||
<result property="productDate" column="product_date" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="userDefined4" column="user_defined4" />
|
||||
<result property="userDefined5" column="user_defined5" />
|
||||
<result property="userDefined6" column="user_defined6" />
|
||||
<result property="userDefined7" column="user_defined7" />
|
||||
<result property="userDefined8" column="user_defined8" />
|
||||
<result property="userDefined9" column="user_defined9" />
|
||||
<result property="userDefined10" column="user_defined10" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="gmtCreate" column="gmt_create" />
|
||||
<result property="lastModifiedBy" column="last_modified_by" />
|
||||
<result property="gmtModified" column="gmt_modified" />
|
||||
<result property="activeFlag" column="active_flag" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
<result property="sapFactoryCode" column="sap_factory_code" />
|
||||
<result property="wlName" column="wl_name" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectWmsFpStorageNewsVo">
|
||||
select storage_id, wh_code, region_code, wa_code, storage_type, wl_code, product_code, product_name, amount, storage_amount, occupy_amount, lpn, product_batch, receive_date, product_date, user_defined1, user_defined2, user_defined3, user_defined4, user_defined5, user_defined6, user_defined7, user_defined8, user_defined9, user_defined10, create_by, gmt_create, last_modified_by, gmt_modified, active_flag, factory_code, sap_factory_code, wl_name from wms_fp_storage_news
|
||||
</sql>
|
||||
|
||||
<select id="selectWmsFpStorageNewsList" parameterType="WmsFpStorageNews" resultMap="WmsFpStorageNewsResult">
|
||||
<include refid="selectWmsFpStorageNewsVo"/>
|
||||
<where>
|
||||
<if test="storageId != null and storageId != ''"> and storage_id = #{storageId}</if>
|
||||
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
|
||||
<if test="regionCode != null and regionCode != ''"> and region_code = #{regionCode}</if>
|
||||
<if test="waCode != null and waCode != ''"> and wa_code = #{waCode}</if>
|
||||
<if test="storageType != null and storageType != ''"> and storage_type = #{storageType}</if>
|
||||
<if test="wlCode != null and wlCode != ''"> and wl_code = #{wlCode}</if>
|
||||
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if>
|
||||
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
|
||||
<if test="amount != null "> and amount = #{amount}</if>
|
||||
<if test="storageAmount != null "> and storage_amount = #{storageAmount}</if>
|
||||
<if test="occupyAmount != null "> and occupy_amount = #{occupyAmount}</if>
|
||||
<if test="lpn != null and lpn != ''"> and lpn = #{lpn}</if>
|
||||
<if test="productBatch != null and productBatch != ''"> and product_batch = #{productBatch}</if>
|
||||
<if test="receiveDate != null "> and receive_date = #{receiveDate}</if>
|
||||
<if test="productDate != null "> and product_date = #{productDate}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="userDefined4 != null and userDefined4 != ''"> and user_defined4 = #{userDefined4}</if>
|
||||
<if test="userDefined5 != null and userDefined5 != ''"> and user_defined5 = #{userDefined5}</if>
|
||||
<if test="userDefined6 != null and userDefined6 != ''"> and user_defined6 = #{userDefined6}</if>
|
||||
<if test="userDefined7 != null and userDefined7 != ''"> and user_defined7 = #{userDefined7}</if>
|
||||
<if test="userDefined8 != null and userDefined8 != ''"> and user_defined8 = #{userDefined8}</if>
|
||||
<if test="userDefined9 != null and userDefined9 != ''"> and user_defined9 = #{userDefined9}</if>
|
||||
<if test="userDefined10 != null and userDefined10 != ''"> and user_defined10 = #{userDefined10}</if>
|
||||
<if test="gmtCreate != null "> and gmt_create = #{gmtCreate}</if>
|
||||
<if test="lastModifiedBy != null and lastModifiedBy != ''"> and last_modified_by = #{lastModifiedBy}</if>
|
||||
<if test="gmtModified != null "> and gmt_modified = #{gmtModified}</if>
|
||||
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
|
||||
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
||||
<if test="sapFactoryCode != null and sapFactoryCode != ''"> and sap_factory_code = #{sapFactoryCode}</if>
|
||||
<if test="wlName != null and wlName != ''"> and wl_name like concat('%', #{wlName}, '%')</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectWmsFpStorageNewsByStorageId" parameterType="String" resultMap="WmsFpStorageNewsResult">
|
||||
<include refid="selectWmsFpStorageNewsVo"/>
|
||||
where storage_id = #{storageId}
|
||||
</select>
|
||||
|
||||
<!-- 根据产品编码查询库存主表-->
|
||||
<select id="selectWmsFpStorageNewsByProductCode" resultMap="WmsFpStorageNewsResult">
|
||||
SELECT
|
||||
storage_id,
|
||||
wh_code,
|
||||
region_code,
|
||||
wa_code,
|
||||
storage_type,
|
||||
wl_code,
|
||||
product_name,
|
||||
amount,
|
||||
storage_amount,
|
||||
occupy_amount,
|
||||
lpn,
|
||||
product_batch,
|
||||
receive_date,
|
||||
product_date,
|
||||
user_defined1,
|
||||
user_defined2,
|
||||
user_defined3,
|
||||
user_defined4,
|
||||
user_defined5,
|
||||
user_defined6,
|
||||
user_defined7,
|
||||
user_defined8,
|
||||
user_defined9,
|
||||
user_defined10,
|
||||
create_by,
|
||||
gmt_create,
|
||||
last_modified_by,
|
||||
gmt_modified,
|
||||
active_flag,
|
||||
factory_code,
|
||||
sap_factory_code,
|
||||
wl_name
|
||||
FROM wms_fp_storage_news
|
||||
WHERE
|
||||
product_code = #{productCode}
|
||||
</select>
|
||||
<select id="selectWmsFpStorageNewsByProductCodeAndWlCode" resultMap="WmsFpStorageNewsResult">
|
||||
SELECT
|
||||
storage_id,
|
||||
wh_code,
|
||||
region_code,
|
||||
wa_code,
|
||||
storage_type,
|
||||
product_name,
|
||||
amount,
|
||||
storage_amount,
|
||||
occupy_amount,
|
||||
lpn,
|
||||
product_batch,
|
||||
receive_date,
|
||||
product_date,
|
||||
user_defined1,
|
||||
user_defined2,
|
||||
user_defined3,
|
||||
user_defined4,
|
||||
user_defined5,
|
||||
user_defined6,
|
||||
user_defined7,
|
||||
user_defined8,
|
||||
user_defined9,
|
||||
user_defined10,
|
||||
create_by,
|
||||
gmt_create,
|
||||
last_modified_by,
|
||||
gmt_modified,
|
||||
active_flag,
|
||||
factory_code,
|
||||
sap_factory_code,
|
||||
wl_name
|
||||
FROM wms_fp_storage_news
|
||||
WHERE
|
||||
product_code = #{productCode} and wl_code = #{wlCode}
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="insertWmsFpStorageNews" parameterType="WmsFpStorageNews">
|
||||
insert into wms_fp_storage_news
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null and storageId != ''">storage_id,</if>
|
||||
<if test="whCode != null">wh_code,</if>
|
||||
<if test="regionCode != null">region_code,</if>
|
||||
<if test="waCode != null">wa_code,</if>
|
||||
<if test="storageType != null">storage_type,</if>
|
||||
<if test="wlCode != null">wl_code,</if>
|
||||
<if test="productCode != null">product_code,</if>
|
||||
<if test="productName != null">product_name,</if>
|
||||
<if test="amount != null">amount,</if>
|
||||
<if test="storageAmount != null">storage_amount,</if>
|
||||
<if test="occupyAmount != null">occupy_amount,</if>
|
||||
<if test="lpn != null">lpn,</if>
|
||||
<if test="productBatch != null">product_batch,</if>
|
||||
<if test="receiveDate != null">receive_date,</if>
|
||||
<if test="productDate != null">product_date,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="userDefined4 != null">user_defined4,</if>
|
||||
<if test="userDefined5 != null">user_defined5,</if>
|
||||
<if test="userDefined6 != null">user_defined6,</if>
|
||||
<if test="userDefined7 != null">user_defined7,</if>
|
||||
<if test="userDefined8 != null">user_defined8,</if>
|
||||
<if test="userDefined9 != null">user_defined9,</if>
|
||||
<if test="userDefined10 != null">user_defined10,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="gmtCreate != null">gmt_create,</if>
|
||||
<if test="lastModifiedBy != null">last_modified_by,</if>
|
||||
<if test="gmtModified != null">gmt_modified,</if>
|
||||
<if test="activeFlag != null">active_flag,</if>
|
||||
<if test="factoryCode != null">factory_code,</if>
|
||||
<if test="sapFactoryCode != null">sap_factory_code,</if>
|
||||
<if test="wlName != null">wl_name,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null and storageId != ''">#{storageId},</if>
|
||||
<if test="whCode != null">#{whCode},</if>
|
||||
<if test="regionCode != null">#{regionCode},</if>
|
||||
<if test="waCode != null">#{waCode},</if>
|
||||
<if test="storageType != null">#{storageType},</if>
|
||||
<if test="wlCode != null">#{wlCode},</if>
|
||||
<if test="productCode != null">#{productCode},</if>
|
||||
<if test="productName != null">#{productName},</if>
|
||||
<if test="amount != null">#{amount},</if>
|
||||
<if test="storageAmount != null">#{storageAmount},</if>
|
||||
<if test="occupyAmount != null">#{occupyAmount},</if>
|
||||
<if test="lpn != null">#{lpn},</if>
|
||||
<if test="productBatch != null">#{productBatch},</if>
|
||||
<if test="receiveDate != null">#{receiveDate},</if>
|
||||
<if test="productDate != null">#{productDate},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="userDefined4 != null">#{userDefined4},</if>
|
||||
<if test="userDefined5 != null">#{userDefined5},</if>
|
||||
<if test="userDefined6 != null">#{userDefined6},</if>
|
||||
<if test="userDefined7 != null">#{userDefined7},</if>
|
||||
<if test="userDefined8 != null">#{userDefined8},</if>
|
||||
<if test="userDefined9 != null">#{userDefined9},</if>
|
||||
<if test="userDefined10 != null">#{userDefined10},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="gmtCreate != null">#{gmtCreate},</if>
|
||||
<if test="lastModifiedBy != null">#{lastModifiedBy},</if>
|
||||
<if test="gmtModified != null">#{gmtModified},</if>
|
||||
<if test="activeFlag != null">#{activeFlag},</if>
|
||||
<if test="factoryCode != null">#{factoryCode},</if>
|
||||
<if test="sapFactoryCode != null">#{sapFactoryCode},</if>
|
||||
<if test="wlName != null">#{wlName},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateWmsFpStorageNews" parameterType="WmsFpStorageNews">
|
||||
update wms_fp_storage_news
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="whCode != null">wh_code = #{whCode},</if>
|
||||
<if test="regionCode != null">region_code = #{regionCode},</if>
|
||||
<if test="waCode != null">wa_code = #{waCode},</if>
|
||||
<if test="storageType != null">storage_type = #{storageType},</if>
|
||||
<if test="wlCode != null">wl_code = #{wlCode},</if>
|
||||
<if test="productCode != null">product_code = #{productCode},</if>
|
||||
<if test="productName != null">product_name = #{productName},</if>
|
||||
<if test="amount != null">amount = #{amount},</if>
|
||||
<if test="storageAmount != null">storage_amount = #{storageAmount},</if>
|
||||
<if test="occupyAmount != null">occupy_amount = #{occupyAmount},</if>
|
||||
<if test="lpn != null">lpn = #{lpn},</if>
|
||||
<if test="productBatch != null">product_batch = #{productBatch},</if>
|
||||
<if test="receiveDate != null">receive_date = #{receiveDate},</if>
|
||||
<if test="productDate != null">product_date = #{productDate},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
|
||||
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
|
||||
<if test="userDefined6 != null">user_defined6 = #{userDefined6},</if>
|
||||
<if test="userDefined7 != null">user_defined7 = #{userDefined7},</if>
|
||||
<if test="userDefined8 != null">user_defined8 = #{userDefined8},</if>
|
||||
<if test="userDefined9 != null">user_defined9 = #{userDefined9},</if>
|
||||
<if test="userDefined10 != null">user_defined10 = #{userDefined10},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="gmtCreate != null">gmt_create = #{gmtCreate},</if>
|
||||
<if test="lastModifiedBy != null">last_modified_by = #{lastModifiedBy},</if>
|
||||
<if test="gmtModified != null">gmt_modified = #{gmtModified},</if>
|
||||
<if test="activeFlag != null">active_flag = #{activeFlag},</if>
|
||||
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
||||
<if test="sapFactoryCode != null">sap_factory_code = #{sapFactoryCode},</if>
|
||||
<if test="wlName != null">wl_name = #{wlName},</if>
|
||||
</trim>
|
||||
where storage_id = #{storageId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteWmsFpStorageNewsByStorageId" parameterType="String">
|
||||
delete from wms_fp_storage_news where storage_id = #{storageId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteWmsFpStorageNewsByStorageIds" parameterType="String">
|
||||
delete from wms_fp_storage_news where storage_id in
|
||||
<foreach item="storageId" collection="array" open="(" separator="," close=")">
|
||||
#{storageId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,215 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.WmsFpStorageNewsSnMapper">
|
||||
|
||||
<resultMap type="WmsFpStorageNewsSn" id="WmsFpStorageNewsSnResult">
|
||||
<result property="storageId" column="storage_id" />
|
||||
<result property="whCode" column="wh_code" />
|
||||
<result property="waCode" column="wa_code" />
|
||||
<result property="wlCode" column="wl_code" />
|
||||
<result property="orderNo" column="order_no" />
|
||||
<result property="productName" column="product_name" />
|
||||
<result property="productCode" column="product_code" />
|
||||
<result property="sn" column="sn" />
|
||||
<result property="barCode" column="bar_code" />
|
||||
<result property="amount" column="amount" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="userDefined4" column="user_defined4" />
|
||||
<result property="userDefined5" column="user_defined5" />
|
||||
<result property="userDefined6" column="user_defined6" />
|
||||
<result property="userDefined7" column="user_defined7" />
|
||||
<result property="userDefined8" column="user_defined8" />
|
||||
<result property="userDefined9" column="user_defined9" />
|
||||
<result property="userDefined10" column="user_defined10" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="gmtCreate" column="gmt_create" />
|
||||
<result property="lastModifiedBy" column="last_modified_by" />
|
||||
<result property="gmtModified" column="gmt_modified" />
|
||||
<result property="activeFlag" column="active_flag" />
|
||||
<result property="factoryCode" column="factory_code" />
|
||||
<result property="sapFactoryCode" column="sap_factory_code" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectWmsFpStorageNewsSnVo">
|
||||
select storage_id, wh_code, wa_code, wl_code, order_no, product_name, product_code, sn, bar_code, amount, user_defined1, user_defined2, user_defined3, user_defined4, user_defined5, user_defined6, user_defined7, user_defined8, user_defined9, user_defined10, create_by, gmt_create, last_modified_by, gmt_modified, active_flag, factory_code, sap_factory_code from wms_fp_storage_news_sn
|
||||
</sql>
|
||||
|
||||
<select id="selectWmsFpStorageNewsSnList" parameterType="WmsFpStorageNewsSn" resultMap="WmsFpStorageNewsSnResult">
|
||||
<include refid="selectWmsFpStorageNewsSnVo"/>
|
||||
<where>
|
||||
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
|
||||
<if test="waCode != null and waCode != ''"> and wa_code = #{waCode}</if>
|
||||
<if test="wlCode != null and wlCode != ''"> and wl_code = #{wlCode}</if>
|
||||
<if test="orderNo != null and orderNo != ''"> and order_no = #{orderNo}</if>
|
||||
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
|
||||
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if>
|
||||
<if test="sn != null and sn != ''"> and sn = #{sn}</if>
|
||||
<if test="barCode != null and barCode != ''"> and bar_code = #{barCode}</if>
|
||||
<if test="amount != null "> and amount = #{amount}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="userDefined4 != null and userDefined4 != ''"> and user_defined4 = #{userDefined4}</if>
|
||||
<if test="userDefined5 != null and userDefined5 != ''"> and user_defined5 = #{userDefined5}</if>
|
||||
<if test="userDefined6 != null and userDefined6 != ''"> and user_defined6 = #{userDefined6}</if>
|
||||
<if test="userDefined7 != null and userDefined7 != ''"> and user_defined7 = #{userDefined7}</if>
|
||||
<if test="userDefined8 != null and userDefined8 != ''"> and user_defined8 = #{userDefined8}</if>
|
||||
<if test="userDefined9 != null and userDefined9 != ''"> and user_defined9 = #{userDefined9}</if>
|
||||
<if test="userDefined10 != null and userDefined10 != ''"> and user_defined10 = #{userDefined10}</if>
|
||||
<if test="gmtCreate != null "> and gmt_create = #{gmtCreate}</if>
|
||||
<if test="lastModifiedBy != null and lastModifiedBy != ''"> and last_modified_by = #{lastModifiedBy}</if>
|
||||
<if test="gmtModified != null "> and gmt_modified = #{gmtModified}</if>
|
||||
<if test="activeFlag != null and activeFlag != ''"> and active_flag = #{activeFlag}</if>
|
||||
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
||||
<if test="sapFactoryCode != null and sapFactoryCode != ''"> and sap_factory_code = #{sapFactoryCode}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectWmsFpStorageNewsSnByStorageId" parameterType="String" resultMap="WmsFpStorageNewsSnResult">
|
||||
<include refid="selectWmsFpStorageNewsSnVo"/>
|
||||
where storage_id = #{storageId}
|
||||
</select>
|
||||
<!-- 根据库位,托盘号,产品编码查询库存主表-->
|
||||
<select id="selectWmsFpStorageNewsSnBySnAndProductCodeAndWlCode" resultMap="WmsFpStorageNewsSnResult">
|
||||
SELECT
|
||||
active_flag,
|
||||
amount,
|
||||
bar_code,
|
||||
create_by,
|
||||
factory_code,
|
||||
gmt_create,
|
||||
gmt_modified,
|
||||
last_modified_by,
|
||||
order_no,
|
||||
product_name,
|
||||
sap_factory_code,
|
||||
storage_id,
|
||||
user_defined1,
|
||||
user_defined10,
|
||||
user_defined2,
|
||||
user_defined3,
|
||||
user_defined4,
|
||||
user_defined5,
|
||||
user_defined6,
|
||||
user_defined7,
|
||||
user_defined8,
|
||||
user_defined9,
|
||||
wa_code,
|
||||
wh_code
|
||||
FROM
|
||||
wms_fp_storage_news_sn
|
||||
WHERE
|
||||
product_code = #{productCode} AND
|
||||
sn = #{sn} and wl_code = #{wlCode}
|
||||
</select>
|
||||
|
||||
<insert id="insertWmsFpStorageNewsSn" parameterType="WmsFpStorageNewsSn">
|
||||
insert into wms_fp_storage_news_sn
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null">storage_id,</if>
|
||||
<if test="whCode != null">wh_code,</if>
|
||||
<if test="waCode != null">wa_code,</if>
|
||||
<if test="wlCode != null">wl_code,</if>
|
||||
<if test="orderNo != null">order_no,</if>
|
||||
<if test="productName != null">product_name,</if>
|
||||
<if test="productCode != null">product_code,</if>
|
||||
<if test="sn != null">sn,</if>
|
||||
<if test="barCode != null">bar_code,</if>
|
||||
<if test="amount != null">amount,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="userDefined4 != null">user_defined4,</if>
|
||||
<if test="userDefined5 != null">user_defined5,</if>
|
||||
<if test="userDefined6 != null">user_defined6,</if>
|
||||
<if test="userDefined7 != null">user_defined7,</if>
|
||||
<if test="userDefined8 != null">user_defined8,</if>
|
||||
<if test="userDefined9 != null">user_defined9,</if>
|
||||
<if test="userDefined10 != null">user_defined10,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="gmtCreate != null">gmt_create,</if>
|
||||
<if test="lastModifiedBy != null">last_modified_by,</if>
|
||||
<if test="gmtModified != null">gmt_modified,</if>
|
||||
<if test="activeFlag != null">active_flag,</if>
|
||||
<if test="factoryCode != null">factory_code,</if>
|
||||
<if test="sapFactoryCode != null">sap_factory_code,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null">#{storageId},</if>
|
||||
<if test="whCode != null">#{whCode},</if>
|
||||
<if test="waCode != null">#{waCode},</if>
|
||||
<if test="wlCode != null">#{wlCode},</if>
|
||||
<if test="orderNo != null">#{orderNo},</if>
|
||||
<if test="productName != null">#{productName},</if>
|
||||
<if test="productCode != null">#{productCode},</if>
|
||||
<if test="sn != null">#{sn},</if>
|
||||
<if test="barCode != null">#{barCode},</if>
|
||||
<if test="amount != null">#{amount},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="userDefined4 != null">#{userDefined4},</if>
|
||||
<if test="userDefined5 != null">#{userDefined5},</if>
|
||||
<if test="userDefined6 != null">#{userDefined6},</if>
|
||||
<if test="userDefined7 != null">#{userDefined7},</if>
|
||||
<if test="userDefined8 != null">#{userDefined8},</if>
|
||||
<if test="userDefined9 != null">#{userDefined9},</if>
|
||||
<if test="userDefined10 != null">#{userDefined10},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="gmtCreate != null">#{gmtCreate},</if>
|
||||
<if test="lastModifiedBy != null">#{lastModifiedBy},</if>
|
||||
<if test="gmtModified != null">#{gmtModified},</if>
|
||||
<if test="activeFlag != null">#{activeFlag},</if>
|
||||
<if test="factoryCode != null">#{factoryCode},</if>
|
||||
<if test="sapFactoryCode != null">#{sapFactoryCode},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateWmsFpStorageNewsSn" parameterType="WmsFpStorageNewsSn">
|
||||
update wms_fp_storage_news_sn
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="whCode != null">wh_code = #{whCode},</if>
|
||||
<if test="waCode != null">wa_code = #{waCode},</if>
|
||||
<if test="wlCode != null">wl_code = #{wlCode},</if>
|
||||
<if test="orderNo != null">order_no = #{orderNo},</if>
|
||||
<if test="productName != null">product_name = #{productName},</if>
|
||||
<if test="productCode != null">product_code = #{productCode},</if>
|
||||
<if test="sn != null">sn = #{sn},</if>
|
||||
<if test="barCode != null">bar_code = #{barCode},</if>
|
||||
<if test="amount != null">amount = #{amount},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
|
||||
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
|
||||
<if test="userDefined6 != null">user_defined6 = #{userDefined6},</if>
|
||||
<if test="userDefined7 != null">user_defined7 = #{userDefined7},</if>
|
||||
<if test="userDefined8 != null">user_defined8 = #{userDefined8},</if>
|
||||
<if test="userDefined9 != null">user_defined9 = #{userDefined9},</if>
|
||||
<if test="userDefined10 != null">user_defined10 = #{userDefined10},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="gmtCreate != null">gmt_create = #{gmtCreate},</if>
|
||||
<if test="lastModifiedBy != null">last_modified_by = #{lastModifiedBy},</if>
|
||||
<if test="gmtModified != null">gmt_modified = #{gmtModified},</if>
|
||||
<if test="activeFlag != null">active_flag = #{activeFlag},</if>
|
||||
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
||||
<if test="sapFactoryCode != null">sap_factory_code = #{sapFactoryCode},</if>
|
||||
</trim>
|
||||
where storage_id = #{storageId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteWmsFpStorageNewsSnByStorageId" parameterType="String">
|
||||
delete from wms_fp_storage_news_sn where storage_id = #{storageId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteWmsFpStorageNewsSnByStorageIds" parameterType="String">
|
||||
delete from wms_fp_storage_news_sn where storage_id in
|
||||
<foreach item="storageId" collection="array" open="(" separator="," close=")">
|
||||
#{storageId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,139 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.WmsProductPutRecordsMapper">
|
||||
|
||||
<resultMap type="WmsProductPutRecords" id="WmsProductPutRecordsResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="workOrder" column="work_order" />
|
||||
<result property="productOrder" column="product_order" />
|
||||
<result property="productName" column="product_name" />
|
||||
<result property="productCode" column="product_code" />
|
||||
<result property="whCode" column="wh_code" />
|
||||
<result property="waCode" column="wa_code" />
|
||||
<result property="wlCode" column="wl_code" />
|
||||
<result property="sn" column="sn" />
|
||||
<result property="number" column="number" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="userDefined4" column="user_defined4" />
|
||||
<result property="userDefined5" column="user_defined5" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectWmsProductPutRecordsVo">
|
||||
select id, work_order, product_order, product_name, product_code, wh_code, wa_code, wl_code, sn, number, user_defined1, user_defined2, user_defined3, user_defined4, user_defined5, create_by, create_time, update_by, update_time from wms_product_put_records
|
||||
</sql>
|
||||
|
||||
<select id="selectWmsProductPutRecordsList" parameterType="WmsProductPutRecords" resultMap="WmsProductPutRecordsResult">
|
||||
<include refid="selectWmsProductPutRecordsVo"/>
|
||||
<where>
|
||||
<if test="workOrder != null and workOrder != ''"> and work_order = #{workOrder}</if>
|
||||
<if test="productOrder != null and productOrder != ''"> and product_order = #{productOrder}</if>
|
||||
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
|
||||
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if>
|
||||
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
|
||||
<if test="waCode != null and waCode != ''"> and wa_code = #{waCode}</if>
|
||||
<if test="wlCode != null and wlCode != ''"> and wl_code = #{wlCode}</if>
|
||||
<if test="sn != null and sn != ''"> and sn = #{sn}</if>
|
||||
<if test="number != null and number != ''"> and number = #{number}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="userDefined4 != null and userDefined4 != ''"> and user_defined4 = #{userDefined4}</if>
|
||||
<if test="userDefined5 != null and userDefined5 != ''"> and user_defined5 = #{userDefined5}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectWmsProductPutRecordsById" parameterType="String" resultMap="WmsProductPutRecordsResult">
|
||||
<include refid="selectWmsProductPutRecordsVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertWmsProductPutRecords" parameterType="WmsProductPutRecords">
|
||||
insert into wms_product_put_records
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">id,</if>
|
||||
<if test="workOrder != null">work_order,</if>
|
||||
<if test="productOrder != null">product_order,</if>
|
||||
<if test="productName != null">product_name,</if>
|
||||
<if test="productCode != null">product_code,</if>
|
||||
<if test="whCode != null">wh_code,</if>
|
||||
<if test="waCode != null">wa_code,</if>
|
||||
<if test="wlCode != null">wl_code,</if>
|
||||
<if test="sn != null">sn,</if>
|
||||
<if test="number != null">number,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="userDefined4 != null">user_defined4,</if>
|
||||
<if test="userDefined5 != null">user_defined5,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},</if>
|
||||
<if test="workOrder != null">#{workOrder},</if>
|
||||
<if test="productOrder != null">#{productOrder},</if>
|
||||
<if test="productName != null">#{productName},</if>
|
||||
<if test="productCode != null">#{productCode},</if>
|
||||
<if test="whCode != null">#{whCode},</if>
|
||||
<if test="waCode != null">#{waCode},</if>
|
||||
<if test="wlCode != null">#{wlCode},</if>
|
||||
<if test="sn != null">#{sn},</if>
|
||||
<if test="number != null">#{number},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="userDefined4 != null">#{userDefined4},</if>
|
||||
<if test="userDefined5 != null">#{userDefined5},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateWmsProductPutRecords" parameterType="WmsProductPutRecords">
|
||||
update wms_product_put_records
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="workOrder != null">work_order = #{workOrder},</if>
|
||||
<if test="productOrder != null">product_order = #{productOrder},</if>
|
||||
<if test="productName != null">product_name = #{productName},</if>
|
||||
<if test="productCode != null">product_code = #{productCode},</if>
|
||||
<if test="whCode != null">wh_code = #{whCode},</if>
|
||||
<if test="waCode != null">wa_code = #{waCode},</if>
|
||||
<if test="wlCode != null">wl_code = #{wlCode},</if>
|
||||
<if test="sn != null">sn = #{sn},</if>
|
||||
<if test="number != null">number = #{number},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
|
||||
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteWmsProductPutRecordsById" parameterType="String">
|
||||
delete from wms_product_put_records where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteWmsProductPutRecordsByIds" parameterType="String">
|
||||
delete from wms_product_put_records where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,118 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.WmsProductPutTrayCodeMapper">
|
||||
|
||||
<resultMap type="WmsProductPutTrayCode" id="WmsProductPutTrayCodeResult">
|
||||
<result property="storageId" column="storage_id" />
|
||||
<result property="sn" column="sn" />
|
||||
<result property="barcode" column="barcode" />
|
||||
<result property="number" column="number" />
|
||||
<result property="relatStatus" column="relat_status" />
|
||||
<result property="userDefined1" column="user_defined1" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="userDefined4" column="user_defined4" />
|
||||
<result property="userDefined5" column="user_defined5" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectWmsProductPutTrayCodeVo">
|
||||
select storage_id, sn, barcode, number, relat_status, user_defined1, user_defined2, user_defined3, user_defined4, user_defined5 from wms_product_put_tray_code
|
||||
</sql>
|
||||
|
||||
<select id="selectWmsProductPutTrayCodeList" parameterType="WmsProductPutTrayCode" resultMap="WmsProductPutTrayCodeResult">
|
||||
<include refid="selectWmsProductPutTrayCodeVo"/>
|
||||
<where>
|
||||
<if test="sn != null and sn != ''"> and sn = #{sn}</if>
|
||||
<if test="barcode != null and barcode != ''"> and barcode = #{barcode}</if>
|
||||
<if test="number != null and number != ''"> and number = #{number}</if>
|
||||
<if test="relatStatus != null and relatStatus != ''"> and relat_status = #{relatStatus}</if>
|
||||
<if test="userDefined1 != null and userDefined1 != ''"> and user_defined1 = #{userDefined1}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="userDefined4 != null and userDefined4 != ''"> and user_defined4 = #{userDefined4}</if>
|
||||
<if test="userDefined5 != null and userDefined5 != ''"> and user_defined5 = #{userDefined5}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectWmsProductPutTrayCodeByStorageId" parameterType="String" resultMap="WmsProductPutTrayCodeResult">
|
||||
<include refid="selectWmsProductPutTrayCodeVo"/>
|
||||
where storage_id = #{storageId}
|
||||
</select>
|
||||
<!-- 根据托盘号查询关联状态-->
|
||||
<select id="selectWmsProductPutTrayCodeBySn" resultMap="WmsProductPutTrayCodeResult">
|
||||
SELECT
|
||||
storage_id,barcode,number,relat_status,storage_id,user_defined1,user_defined2,user_defined3,user_defined4,user_defined5
|
||||
FROM
|
||||
wms_product_put_tray_code
|
||||
WHERE
|
||||
sn = #{sn}
|
||||
</select>
|
||||
|
||||
<!-- 根据箱码查询托盘号-->
|
||||
<select id="selectWmsProductPutTrayCodeByBarcode" resultMap="WmsProductPutTrayCodeResult">
|
||||
SELECT
|
||||
storage_id,sn,number,relat_status,storage_id,user_defined1,user_defined2,user_defined3,user_defined4,user_defined5
|
||||
FROM
|
||||
wms_product_put_tray_code
|
||||
WHERE
|
||||
barcode = #{barcode}
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="insertWmsProductPutTrayCode" parameterType="WmsProductPutTrayCode">
|
||||
insert into wms_product_put_tray_code
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null">storage_id,</if>
|
||||
<if test="sn != null">sn,</if>
|
||||
<if test="barcode != null">barcode,</if>
|
||||
<if test="number != null">number,</if>
|
||||
<if test="relatStatus != null">relat_status,</if>
|
||||
<if test="userDefined1 != null">user_defined1,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="userDefined4 != null">user_defined4,</if>
|
||||
<if test="userDefined5 != null">user_defined5,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null">#{storageId},</if>
|
||||
<if test="sn != null">#{sn},</if>
|
||||
<if test="barcode != null">#{barcode},</if>
|
||||
<if test="number != null">#{number},</if>
|
||||
<if test="relatStatus != null">#{relatStatus},</if>
|
||||
<if test="userDefined1 != null">#{userDefined1},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="userDefined4 != null">#{userDefined4},</if>
|
||||
<if test="userDefined5 != null">#{userDefined5},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateWmsProductPutTrayCode" parameterType="WmsProductPutTrayCode">
|
||||
update wms_product_put_tray_code
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="sn != null">sn = #{sn},</if>
|
||||
<if test="barcode != null">barcode = #{barcode},</if>
|
||||
<if test="number != null">number = #{number},</if>
|
||||
<if test="relatStatus != null">relat_status = #{relatStatus},</if>
|
||||
<if test="userDefined1 != null">user_defined1 = #{userDefined1},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
|
||||
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
|
||||
</trim>
|
||||
where storage_id = #{storageId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteWmsProductPutTrayCodeByStorageId" parameterType="String">
|
||||
delete from wms_product_put_tray_code where storage_id = #{storageId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteWmsProductPutTrayCodeByStorageIds" parameterType="String">
|
||||
delete from wms_product_put_tray_code where storage_id in
|
||||
<foreach item="storageId" collection="array" open="(" separator="," close=")">
|
||||
#{storageId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
@ -0,0 +1,127 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.op.wms.mapper.WmsProductPutTrayMapper">
|
||||
|
||||
<resultMap type="WmsProductPutTray" id="WmsProductPutTrayResult">
|
||||
<result property="storageId" column="storage_id" />
|
||||
<result property="workOrder" column="work_order" />
|
||||
<result property="productOrder" column="product_order" />
|
||||
<result property="whCode" column="wh_code" />
|
||||
<result property="waCode" column="wa_code" />
|
||||
<result property="wlCode" column="wl_code" />
|
||||
<result property="sn" column="sn" />
|
||||
<result property="number" column="number" />
|
||||
<result property="batchNumber" column="batch_number" />
|
||||
<result property="userDefined2" column="user_defined2" />
|
||||
<result property="userDefined3" column="user_defined3" />
|
||||
<result property="userDefined4" column="user_defined4" />
|
||||
<result property="userDefined5" column="user_defined5" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectWmsProductPutTrayVo">
|
||||
select storage_id, work_order, product_order, wh_code, wa_code, wl_code, sn, number, batch_number, user_defined2, user_defined3, user_defined4, user_defined5 from wms_product_put_tray
|
||||
</sql>
|
||||
|
||||
<select id="selectWmsProductPutTrayList" parameterType="WmsProductPutTray" resultMap="WmsProductPutTrayResult">
|
||||
<include refid="selectWmsProductPutTrayVo"/>
|
||||
<where>
|
||||
<if test="workOrder != null and workOrder != ''"> and work_order = #{workOrder}</if>
|
||||
<if test="productOrder != null and productOrder != ''"> and product_order = #{productOrder}</if>
|
||||
<if test="whCode != null and whCode != ''"> and wh_code = #{whCode}</if>
|
||||
<if test="waCode != null and waCode != ''"> and wa_code = #{waCode}</if>
|
||||
<if test="wlCode != null and wlCode != ''"> and wl_code = #{wlCode}</if>
|
||||
<if test="sn != null and sn != ''"> and sn = #{sn}</if>
|
||||
<if test="number != null and number != ''"> and number = #{number}</if>
|
||||
<if test="batchNumber != null and batchNumber != ''"> and batch_number = #{batchNumber}</if>
|
||||
<if test="userDefined2 != null and userDefined2 != ''"> and user_defined2 = #{userDefined2}</if>
|
||||
<if test="userDefined3 != null and userDefined3 != ''"> and user_defined3 = #{userDefined3}</if>
|
||||
<if test="userDefined4 != null and userDefined4 != ''"> and user_defined4 = #{userDefined4}</if>
|
||||
<if test="userDefined5 != null and userDefined5 != ''"> and user_defined5 = #{userDefined5}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectWmsProductPutTrayByStorageId" parameterType="String" resultMap="WmsProductPutTrayResult">
|
||||
<include refid="selectWmsProductPutTrayVo"/>
|
||||
where storage_id = #{storageId}
|
||||
</select>
|
||||
<!-- 手持接口:根据报工单号查询所有托盘信息-->
|
||||
<select id="selectWmsProductPutTrayByWorkOrder" resultMap="WmsProductPutTrayResult">
|
||||
SELECT
|
||||
product_order,wh_code,wa_code,wl_code,sn,number,batch_number,user_defined2,
|
||||
user_defined3,user_defined4,user_defined5
|
||||
FROM
|
||||
wms_product_put_tray
|
||||
WHERE
|
||||
work_order =#{workOrder}
|
||||
</select>
|
||||
|
||||
<insert id="insertWmsProductPutTray" parameterType="WmsProductPutTray">
|
||||
insert into wms_product_put_tray
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null">storage_id,</if>
|
||||
<if test="workOrder != null">work_order,</if>
|
||||
<if test="productOrder != null">product_order,</if>
|
||||
<if test="whCode != null">wh_code,</if>
|
||||
<if test="waCode != null">wa_code,</if>
|
||||
<if test="wlCode != null">wl_code,</if>
|
||||
<if test="sn != null">sn,</if>
|
||||
<if test="number != null">number,</if>
|
||||
<if test="batchNumber != null">batch_number,</if>
|
||||
<if test="userDefined2 != null">user_defined2,</if>
|
||||
<if test="userDefined3 != null">user_defined3,</if>
|
||||
<if test="userDefined4 != null">user_defined4,</if>
|
||||
<if test="userDefined5 != null">user_defined5,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="storageId != null">#{storageId},</if>
|
||||
<if test="workOrder != null">#{workOrder},</if>
|
||||
<if test="productOrder != null">#{productOrder},</if>
|
||||
<if test="whCode != null">#{whCode},</if>
|
||||
<if test="waCode != null">#{waCode},</if>
|
||||
<if test="wlCode != null">#{wlCode},</if>
|
||||
<if test="sn != null">#{sn},</if>
|
||||
<if test="number != null">#{number},</if>
|
||||
<if test="batchNumber != null">#{batch_number},</if>
|
||||
<if test="userDefined2 != null">#{userDefined2},</if>
|
||||
<if test="userDefined3 != null">#{userDefined3},</if>
|
||||
<if test="userDefined4 != null">#{userDefined4},</if>
|
||||
<if test="userDefined5 != null">#{userDefined5},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateWmsProductPutTray" parameterType="WmsProductPutTray">
|
||||
update wms_product_put_tray
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="workOrder != null">work_order = #{workOrder},</if>
|
||||
<if test="productOrder != null">product_order = #{productOrder},</if>
|
||||
<if test="whCode != null">wh_code = #{whCode},</if>
|
||||
<if test="waCode != null">wa_code = #{waCode},</if>
|
||||
<if test="wlCode != null">wl_code = #{wlCode},</if>
|
||||
<if test="sn != null">sn = #{sn},</if>
|
||||
<if test="number != null">number = #{number},</if>
|
||||
<if test="batchNumber != null">batch_number = #{batchNumber},</if>
|
||||
<if test="userDefined2 != null">user_defined2 = #{userDefined2},</if>
|
||||
<if test="userDefined3 != null">user_defined3 = #{userDefined3},</if>
|
||||
<if test="userDefined4 != null">user_defined4 = #{userDefined4},</if>
|
||||
<if test="userDefined5 != null">user_defined5 = #{userDefined5},</if>
|
||||
</trim>
|
||||
where storage_id = #{storageId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteWmsProductPutTrayByStorageId" parameterType="String">
|
||||
delete from wms_product_put_tray where storage_id = #{storageId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteWmsProductPutTrayByStorageIds" parameterType="String">
|
||||
delete from wms_product_put_tray where storage_id in
|
||||
<foreach item="storageId" collection="array" open="(" separator="," close=")">
|
||||
#{storageId}
|
||||
</foreach>
|
||||
</delete>
|
||||
<!-- 根据托盘号删除-->
|
||||
<delete id="deleteWmsProductPutTrayBySn">
|
||||
delete from wms_product_put_tray where sn = #{sn} and work_order = #{workOrder}
|
||||
</delete>
|
||||
</mapper>
|
Loading…
Reference in New Issue