From 6c91056b1e538344fe64baa50df20cef78809f2a Mon Sep 17 00:00:00 2001 From: liuxiaoxu <1793812695@qq.com> Date: Fri, 18 Oct 2024 10:30:36 +0800 Subject: [PATCH] =?UTF-8?q?[delete]=20=E5=88=A0=E9=99=A4=E6=97=A7=E7=89=88?= =?UTF-8?q?=E6=97=A0=E7=94=A8=E7=9A=84=E5=85=A5=E5=BA=93=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?warehousing=5Fin=5Fsearch=E5=92=8C=E7=B3=BB=E7=BB=9F=E4=B8=AD?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E7=9A=84=E5=89=8D=E7=AB=AF=E6=89=80=E6=9C=89?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=92=8C=E5=90=8E=E7=AB=AF=E6=89=80=E6=9C=89?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=20=E5=92=8C=E5=AF=B9=E5=BA=94=E7=9A=84?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E8=8F=9C=E5=8D=95=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WarehousingInSearchController.java | 123 ---- .../domain/WarehousingInSearch.java | 527 ------------------ .../mapper/WarehousingInSearchMapper.java | 61 -- .../service/IWarehousingInSearchService.java | 61 -- .../impl/WarehousingInSearchServiceImpl.java | 94 ---- .../storehouse/WarehousingInSearchMapper.xml | 246 -------- .../storehouse/warehousingInSearch/add.html | 250 --------- .../storehouse/warehousingInSearch/edit.html | 251 --------- .../warehousingInSearch.html | 311 ----------- 9 files changed, 1924 deletions(-) delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/storehouse/controller/WarehousingInSearchController.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/storehouse/domain/WarehousingInSearch.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/storehouse/mapper/WarehousingInSearchMapper.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/IWarehousingInSearchService.java delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/impl/WarehousingInSearchServiceImpl.java delete mode 100644 ruoyi-admin/src/main/resources/mapper/storehouse/WarehousingInSearchMapper.xml delete mode 100644 ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/add.html delete mode 100644 ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/edit.html delete mode 100644 ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/warehousingInSearch.html diff --git a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/controller/WarehousingInSearchController.java b/ruoyi-admin/src/main/java/com/ruoyi/storehouse/controller/WarehousingInSearchController.java deleted file mode 100644 index 3cffdc3c..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/controller/WarehousingInSearchController.java +++ /dev/null @@ -1,123 +0,0 @@ -package com.ruoyi.storehouse.controller; - -import com.ruoyi.common.annotation.Log; -import com.ruoyi.common.core.controller.BaseController; -import com.ruoyi.common.core.domain.AjaxResult; -import com.ruoyi.common.core.page.TableDataInfo; -import com.ruoyi.common.enums.BusinessType; -import com.ruoyi.common.utils.poi.ExcelUtil; -import com.ruoyi.storehouse.domain.WarehousingInSearch; -import com.ruoyi.storehouse.service.IWarehousingInSearchService; -import org.apache.shiro.authz.annotation.RequiresPermissions; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.ui.ModelMap; -import org.springframework.web.bind.annotation.*; - -import java.util.List; - -/** - * 入库查询Controller - * - * @author ruoyi - * @date 2023-05-05 - */ -@Controller -@RequestMapping("/storehouse/warehousingInSearch") -public class WarehousingInSearchController extends BaseController -{ - private String prefix = "storehouse/warehousingInSearch"; - - @Autowired - private IWarehousingInSearchService warehousingInSearchService; - - @RequiresPermissions("storehouse:warehousingInSearch:view") - @GetMapping() - public String warehousingInSearch() - { - return prefix + "/warehousingInSearch"; - } - - /** - * 查询入库查询列表 - */ - @RequiresPermissions("storehouse:warehousingInSearch:list") - @PostMapping("/list") - @ResponseBody - public TableDataInfo list(WarehousingInSearch warehousingInSearch) - { - startPage(); - List list = warehousingInSearchService.selectWarehousingInSearchList(warehousingInSearch); - return getDataTable(list); - } - - /** - * 导出入库查询列表 - */ - @RequiresPermissions("storehouse:warehousingInSearch:export") - @Log(title = "入库查询", businessType = BusinessType.EXPORT) - @PostMapping("/export") - @ResponseBody - public AjaxResult export(WarehousingInSearch warehousingInSearch) - { - List list = warehousingInSearchService.selectWarehousingInSearchList(warehousingInSearch); - ExcelUtil util = new ExcelUtil(WarehousingInSearch.class); - return util.exportExcel(list, "入库查询数据"); - } - - /** - * 新增入库查询 - */ - @GetMapping("/add") - public String add() - { - return prefix + "/add"; - } - - /** - * 新增保存入库查询 - */ - @RequiresPermissions("storehouse:warehousingInSearch:add") - @Log(title = "入库查询", businessType = BusinessType.INSERT) - @PostMapping("/add") - @ResponseBody - public AjaxResult addSave(WarehousingInSearch warehousingInSearch) - { - return toAjax(warehousingInSearchService.insertWarehousingInSearch(warehousingInSearch)); - } - - /** - * 修改入库查询 - */ - @GetMapping("/edit/{warehousingDetailId}") - public String edit(@PathVariable("warehousingDetailId") Long warehousingDetailId, ModelMap mmap) - { - WarehousingInSearch warehousingInSearch = warehousingInSearchService.selectWarehousingInSearchById(warehousingDetailId); - mmap.put("warehousingInSearch", warehousingInSearch); - return prefix + "/edit"; - } - - /** - * 修改保存入库查询 - */ - @RequiresPermissions("storehouse:warehousingInSearch:edit") - @Log(title = "入库查询", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - @ResponseBody - public AjaxResult editSave(WarehousingInSearch warehousingInSearch) - { - return toAjax(warehousingInSearchService.updateWarehousingInSearch(warehousingInSearch)); - } - - /** - * 删除入库查询 - */ - @RequiresPermissions("storehouse:warehousingInSearch:remove") - @Log(title = "入库查询", businessType = BusinessType.DELETE) - @PostMapping( "/remove") - @ResponseBody - public AjaxResult remove(String ids) - { - return toAjax(warehousingInSearchService.deleteWarehousingInSearchByIds(ids)); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/domain/WarehousingInSearch.java b/ruoyi-admin/src/main/java/com/ruoyi/storehouse/domain/WarehousingInSearch.java deleted file mode 100644 index ff2bc3ee..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/domain/WarehousingInSearch.java +++ /dev/null @@ -1,527 +0,0 @@ -package com.ruoyi.storehouse.domain; - -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; -import com.ruoyi.common.annotation.Excel; -import com.ruoyi.common.core.domain.BaseEntity; - -/** - * 入库查询对象 warehousing_in_search - * - * @author ruoyi - * @date 2023-05-05 - */ -public class WarehousingInSearch extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 入库物料id */ - private Long warehousingDetailId; - - /** 入库单号 */ - @Excel(name = "入库单号") - private String warehousingNumber; - - /** 物料代码 */ - @Excel(name = "物料代码") - private String materialCode; - - /** 物料名称 */ - @Excel(name = "物料名称") - private String materialName; - - /** 物料类型 */ - @Excel(name = "物料类型") - private String materialType; - - /** 规格型号 */ - @Excel(name = "规格型号") - private String specificationModel; - - /** 机种 */ - @Excel(name = "机种") - private String typeMachine; - - /** 单位 */ - @Excel(name = "单位") - private String inventoryUnit; - - /** 数量 */ - @Excel(name = "数量") - private String warehousingQuantity; - - /** 单价 */ - @Excel(name = "单价") - private String unitPrice; - - /** 金额 */ - @Excel(name = "金额") - private String amountMoney; - - /** 说明 */ - @Excel(name = "说明") - private String description; - - /** 批号 */ - @Excel(name = "批号") - private String batchNumber; - - /** 厂商批号 */ - @Excel(name = "厂商批号") - private String manufacturerBatchNumber; - - /** 存放地址 */ - @Excel(name = "存放地址") - private String storageLocation; - - /** 暂收单号 */ - @Excel(name = "暂收单号") - private String inNoticeNumber; - - /** 入库类型 */ - @Excel(name = "入库类型") - private String warehousingCategory; - - /** 采购订单号 */ - @Excel(name = "采购订单号") - private String purchaseOrderNumber; - - /** 联系人 */ - @Excel(name = "联系人") - private String contacts; - - /** 入库日期 */ - @Excel(name = "入库日期") - private String warehousingDate; - - /** 供应商代码 */ - @Excel(name = "供应商代码") - private String supplierCode; - - /** 供应商名称 */ - @Excel(name = "供应商名称") - private String supplierName; - - /** 制单人员 */ - @Excel(name = "制单人员") - private String documentPreparationPersonnel; - - /** 仓库号 */ - @Excel(name = "仓库号") - private String stockNumber; - - /** 仓库名称 */ - @Excel(name = "仓库名称") - private String stockName; - - /** 仓库管理员 */ - @Excel(name = "仓库管理员") - private String stockManager; - - /** 内外销 */ - @Excel(name = "内外销") - private String exportSales; - - /** 备注 */ - @Excel(name = "备注") - private String remarks; - - /** 送货人 */ - @Excel(name = "送货人") - private String deliveryMan; - - /** 退货单号 */ - @Excel(name = "退货单号") - private String returnGoodsNumber; - - /** 企业代码 */ - @Excel(name = "企业代码") - private String enterpriseCode; - - /** 企业名称 */ - @Excel(name = "企业名称") - private String enterpriseName; - - /** 入库通知单号 */ - @Excel(name = "入库通知单号") - private String notificationNumber; - - /** 工单号 */ - @Excel(name = "工单号") - private String workOrderNumber; - - /** 部门编号 */ - @Excel(name = "部门编号") - private String deptCode; - - /** 部门名称 */ - @Excel(name = "部门名称") - private String deptName; - - public void setWarehousingDetailId(Long warehousingDetailId) - { - this.warehousingDetailId = warehousingDetailId; - } - - public Long getWarehousingDetailId() - { - return warehousingDetailId; - } - public void setWarehousingNumber(String warehousingNumber) - { - this.warehousingNumber = warehousingNumber; - } - - public String getWarehousingNumber() - { - return warehousingNumber; - } - public void setMaterialCode(String materialCode) - { - this.materialCode = materialCode; - } - - public String getMaterialCode() - { - return materialCode; - } - public void setMaterialName(String materialName) - { - this.materialName = materialName; - } - - public String getMaterialName() - { - return materialName; - } - public void setMaterialType(String materialType) - { - this.materialType = materialType; - } - - public String getMaterialType() - { - return materialType; - } - public void setSpecificationModel(String specificationModel) - { - this.specificationModel = specificationModel; - } - - public String getSpecificationModel() - { - return specificationModel; - } - public void setTypeMachine(String typeMachine) - { - this.typeMachine = typeMachine; - } - - public String getTypeMachine() - { - return typeMachine; - } - public void setInventoryUnit(String inventoryUnit) - { - this.inventoryUnit = inventoryUnit; - } - - public String getInventoryUnit() - { - return inventoryUnit; - } - - public String getWarehousingQuantity() { - return warehousingQuantity; - } - - public void setWarehousingQuantity(String warehousingQuantity) { - this.warehousingQuantity = warehousingQuantity; - } - - public void setUnitPrice(String unitPrice) - { - this.unitPrice = unitPrice; - } - - public String getUnitPrice() - { - return unitPrice; - } - public void setAmountMoney(String amountMoney) - { - this.amountMoney = amountMoney; - } - - public String getAmountMoney() - { - return amountMoney; - } - public void setDescription(String description) - { - this.description = description; - } - - public String getDescription() - { - return description; - } - public void setBatchNumber(String batchNumber) - { - this.batchNumber = batchNumber; - } - - public String getBatchNumber() - { - return batchNumber; - } - public void setManufacturerBatchNumber(String manufacturerBatchNumber) - { - this.manufacturerBatchNumber = manufacturerBatchNumber; - } - - public String getManufacturerBatchNumber() - { - return manufacturerBatchNumber; - } - public void setStorageLocation(String storageLocation) - { - this.storageLocation = storageLocation; - } - - public String getStorageLocation() - { - return storageLocation; - } - public void setInNoticeNumber(String inNoticeNumber) - { - this.inNoticeNumber = inNoticeNumber; - } - - public String getInNoticeNumber() - { - return inNoticeNumber; - } - public void setWarehousingCategory(String warehousingCategory) - { - this.warehousingCategory = warehousingCategory; - } - - public String getWarehousingCategory() - { - return warehousingCategory; - } - public void setPurchaseOrderNumber(String purchaseOrderNumber) - { - this.purchaseOrderNumber = purchaseOrderNumber; - } - - public String getPurchaseOrderNumber() - { - return purchaseOrderNumber; - } - public void setContacts(String contacts) - { - this.contacts = contacts; - } - - public String getContacts() - { - return contacts; - } - public void setWarehousingDate(String warehousingDate) - { - this.warehousingDate = warehousingDate; - } - - public String getWarehousingDate() - { - return warehousingDate; - } - public void setSupplierCode(String supplierCode) - { - this.supplierCode = supplierCode; - } - - public String getSupplierCode() - { - return supplierCode; - } - public void setSupplierName(String supplierName) - { - this.supplierName = supplierName; - } - - public String getSupplierName() - { - return supplierName; - } - public void setDocumentPreparationPersonnel(String documentPreparationPersonnel) - { - this.documentPreparationPersonnel = documentPreparationPersonnel; - } - - public String getDocumentPreparationPersonnel() - { - return documentPreparationPersonnel; - } - public void setStockNumber(String stockNumber) - { - this.stockNumber = stockNumber; - } - - public String getStockNumber() - { - return stockNumber; - } - public void setStockName(String stockName) - { - this.stockName = stockName; - } - - public String getStockName() - { - return stockName; - } - public void setStockManager(String stockManager) - { - this.stockManager = stockManager; - } - - public String getStockManager() - { - return stockManager; - } - public void setExportSales(String exportSales) - { - this.exportSales = exportSales; - } - - public String getExportSales() - { - return exportSales; - } - public void setRemarks(String remarks) - { - this.remarks = remarks; - } - - public String getRemarks() - { - return remarks; - } - public void setDeliveryMan(String deliveryMan) - { - this.deliveryMan = deliveryMan; - } - - public String getDeliveryMan() - { - return deliveryMan; - } - public void setReturnGoodsNumber(String returnGoodsNumber) - { - this.returnGoodsNumber = returnGoodsNumber; - } - - public String getReturnGoodsNumber() - { - return returnGoodsNumber; - } - public void setEnterpriseCode(String enterpriseCode) - { - this.enterpriseCode = enterpriseCode; - } - - public String getEnterpriseCode() - { - return enterpriseCode; - } - public void setEnterpriseName(String enterpriseName) - { - this.enterpriseName = enterpriseName; - } - - public String getEnterpriseName() - { - return enterpriseName; - } - public void setNotificationNumber(String notificationNumber) - { - this.notificationNumber = notificationNumber; - } - - public String getNotificationNumber() - { - return notificationNumber; - } - public void setWorkOrderNumber(String workOrderNumber) - { - this.workOrderNumber = workOrderNumber; - } - - public String getWorkOrderNumber() - { - return workOrderNumber; - } - public void setDeptCode(String deptCode) - { - this.deptCode = deptCode; - } - - public String getDeptCode() - { - return deptCode; - } - public void setDeptName(String deptName) - { - this.deptName = deptName; - } - - public String getDeptName() - { - return deptName; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("warehousingDetailId", getWarehousingDetailId()) - .append("warehousingNumber", getWarehousingNumber()) - .append("materialCode", getMaterialCode()) - .append("materialName", getMaterialName()) - .append("materialType", getMaterialType()) - .append("specificationModel", getSpecificationModel()) - .append("typeMachine", getTypeMachine()) - .append("inventoryUnit", getInventoryUnit()) - .append("warehousingQuantity", getWarehousingQuantity()) - .append("unitPrice", getUnitPrice()) - .append("amountMoney", getAmountMoney()) - .append("description", getDescription()) - .append("batchNumber", getBatchNumber()) - .append("manufacturerBatchNumber", getManufacturerBatchNumber()) - .append("storageLocation", getStorageLocation()) - .append("inNoticeNumber", getInNoticeNumber()) - .append("warehousingCategory", getWarehousingCategory()) - .append("purchaseOrderNumber", getPurchaseOrderNumber()) - .append("contacts", getContacts()) - .append("warehousingDate", getWarehousingDate()) - .append("supplierCode", getSupplierCode()) - .append("supplierName", getSupplierName()) - .append("documentPreparationPersonnel", getDocumentPreparationPersonnel()) - .append("stockNumber", getStockNumber()) - .append("stockName", getStockName()) - .append("stockManager", getStockManager()) - .append("exportSales", getExportSales()) - .append("remarks", getRemarks()) - .append("deliveryMan", getDeliveryMan()) - .append("returnGoodsNumber", getReturnGoodsNumber()) - .append("enterpriseCode", getEnterpriseCode()) - .append("enterpriseName", getEnterpriseName()) - .append("notificationNumber", getNotificationNumber()) - .append("workOrderNumber", getWorkOrderNumber()) - .append("deptCode", getDeptCode()) - .append("deptName", getDeptName()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/mapper/WarehousingInSearchMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/storehouse/mapper/WarehousingInSearchMapper.java deleted file mode 100644 index a1d5afb2..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/mapper/WarehousingInSearchMapper.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.storehouse.mapper; - -import java.util.List; -import com.ruoyi.storehouse.domain.WarehousingInSearch; - -/** - * 入库查询Mapper接口 - * - * @author ruoyi - * @date 2023-05-05 - */ -public interface WarehousingInSearchMapper -{ - /** - * 查询入库查询 - * - * @param warehousingDetailId 入库查询ID - * @return 入库查询 - */ - public WarehousingInSearch selectWarehousingInSearchById(Long warehousingDetailId); - - /** - * 查询入库查询列表 - * - * @param warehousingInSearch 入库查询 - * @return 入库查询集合 - */ - public List selectWarehousingInSearchList(WarehousingInSearch warehousingInSearch); - - /** - * 新增入库查询 - * - * @param warehousingInSearch 入库查询 - * @return 结果 - */ - public int insertWarehousingInSearch(WarehousingInSearch warehousingInSearch); - - /** - * 修改入库查询 - * - * @param warehousingInSearch 入库查询 - * @return 结果 - */ - public int updateWarehousingInSearch(WarehousingInSearch warehousingInSearch); - - /** - * 删除入库查询 - * - * @param warehousingDetailId 入库查询ID - * @return 结果 - */ - public int deleteWarehousingInSearchById(Long warehousingDetailId); - - /** - * 批量删除入库查询 - * - * @param warehousingDetailIds 需要删除的数据ID - * @return 结果 - */ - public int deleteWarehousingInSearchByIds(String[] warehousingDetailIds); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/IWarehousingInSearchService.java b/ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/IWarehousingInSearchService.java deleted file mode 100644 index 061f8aee..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/IWarehousingInSearchService.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.storehouse.service; - -import java.util.List; -import com.ruoyi.storehouse.domain.WarehousingInSearch; - -/** - * 入库查询Service接口 - * - * @author ruoyi - * @date 2023-05-05 - */ -public interface IWarehousingInSearchService -{ - /** - * 查询入库查询 - * - * @param warehousingDetailId 入库查询ID - * @return 入库查询 - */ - public WarehousingInSearch selectWarehousingInSearchById(Long warehousingDetailId); - - /** - * 查询入库查询列表 - * - * @param warehousingInSearch 入库查询 - * @return 入库查询集合 - */ - public List selectWarehousingInSearchList(WarehousingInSearch warehousingInSearch); - - /** - * 新增入库查询 - * - * @param warehousingInSearch 入库查询 - * @return 结果 - */ - public int insertWarehousingInSearch(WarehousingInSearch warehousingInSearch); - - /** - * 修改入库查询 - * - * @param warehousingInSearch 入库查询 - * @return 结果 - */ - public int updateWarehousingInSearch(WarehousingInSearch warehousingInSearch); - - /** - * 批量删除入库查询 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - public int deleteWarehousingInSearchByIds(String ids); - - /** - * 删除入库查询信息 - * - * @param warehousingDetailId 入库查询ID - * @return 结果 - */ - public int deleteWarehousingInSearchById(Long warehousingDetailId); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/impl/WarehousingInSearchServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/impl/WarehousingInSearchServiceImpl.java deleted file mode 100644 index 4ee94e2c..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/storehouse/service/impl/WarehousingInSearchServiceImpl.java +++ /dev/null @@ -1,94 +0,0 @@ -package com.ruoyi.storehouse.service.impl; - -import java.util.List; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import com.ruoyi.storehouse.mapper.WarehousingInSearchMapper; -import com.ruoyi.storehouse.domain.WarehousingInSearch; -import com.ruoyi.storehouse.service.IWarehousingInSearchService; -import com.ruoyi.common.core.text.Convert; - -/** - * 入库查询Service业务层处理 - * - * @author ruoyi - * @date 2023-05-05 - */ -@Service -public class WarehousingInSearchServiceImpl implements IWarehousingInSearchService -{ - @Autowired - private WarehousingInSearchMapper warehousingInSearchMapper; - - /** - * 查询入库查询 - * - * @param warehousingDetailId 入库查询ID - * @return 入库查询 - */ - @Override - public WarehousingInSearch selectWarehousingInSearchById(Long warehousingDetailId) - { - return warehousingInSearchMapper.selectWarehousingInSearchById(warehousingDetailId); - } - - /** - * 查询入库查询列表 - * - * @param warehousingInSearch 入库查询 - * @return 入库查询 - */ - @Override - public List selectWarehousingInSearchList(WarehousingInSearch warehousingInSearch) - { - return warehousingInSearchMapper.selectWarehousingInSearchList(warehousingInSearch); - } - - /** - * 新增入库查询 - * - * @param warehousingInSearch 入库查询 - * @return 结果 - */ - @Override - public int insertWarehousingInSearch(WarehousingInSearch warehousingInSearch) - { - return warehousingInSearchMapper.insertWarehousingInSearch(warehousingInSearch); - } - - /** - * 修改入库查询 - * - * @param warehousingInSearch 入库查询 - * @return 结果 - */ - @Override - public int updateWarehousingInSearch(WarehousingInSearch warehousingInSearch) - { - return warehousingInSearchMapper.updateWarehousingInSearch(warehousingInSearch); - } - - /** - * 删除入库查询对象 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - @Override - public int deleteWarehousingInSearchByIds(String ids) - { - return warehousingInSearchMapper.deleteWarehousingInSearchByIds(Convert.toStrArray(ids)); - } - - /** - * 删除入库查询信息 - * - * @param warehousingDetailId 入库查询ID - * @return 结果 - */ - @Override - public int deleteWarehousingInSearchById(Long warehousingDetailId) - { - return warehousingInSearchMapper.deleteWarehousingInSearchById(warehousingDetailId); - } -} diff --git a/ruoyi-admin/src/main/resources/mapper/storehouse/WarehousingInSearchMapper.xml b/ruoyi-admin/src/main/resources/mapper/storehouse/WarehousingInSearchMapper.xml deleted file mode 100644 index 56b18564..00000000 --- a/ruoyi-admin/src/main/resources/mapper/storehouse/WarehousingInSearchMapper.xml +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --- select warehousing_detail_id, warehousing_number, material_code, material_name, material_type, specification_model, type_machine, inventory_unit, warehousing_quantity, unit_price, amount_money, description, batch_number, manufacturer_batch_number, storage_location, return_goods_quantity, in_notice_number, warehousing_category, purchase_order_number, contacts, warehousing_date, supplier_code, supplier_name, document_preparation_personnel, stock_number, stock_name, stock_manager, export_sales, remarks, delivery_man, return_goods_number, enterprise_code, enterprise_name, notification_number, work_order_number, dept_code, dept_name from warehousing_in_search - SELECT - wid.warehousing_detail_id, - wid.warehousing_number, - wid.material_code, - wid.material_name, - wid.material_type, - wid.specification_model, - wid.type_machine, - wid.inventory_unit, - wid.warehousing_quantity, - wid.unit_price, - wid.amount_money, - wid.description, - wid.batch_number, - wid.manufacturer_batch_number, - wid.storage_location, - wii.in_notice_number, - wii.warehousing_category, - wii.purchase_order_number, - wii.contacts, - wii.warehousing_date, - wii.supplier_code, - wii.supplier_name, - wii.document_preparation_personnel, - wii.stock_number, - wii.stock_name, - wii.stock_manager, - wii.export_sales, - wii.remarks, - wii.delivery_man, - wii.return_goods_number, - wii.enterprise_code, - wii.enterprise_name, - wii.notification_number, - wii.work_order_number, - wii.dept_code, - wii.dept_name - FROM - warehousing_in_detail AS wid, - warehousing_in_info AS wii - WHERE - wid.warehousing_number = wii.warehousing_number - - - - - - - - insert into warehousing_in_search - - warehousing_number, - material_code, - material_name, - material_type, - specification_model, - type_machine, - inventory_unit, - warehousing_quantity, - unit_price, - amount_money, - description, - batch_number, - manufacturer_batch_number, - storage_location, - in_notice_number, - warehousing_category, - purchase_order_number, - contacts, - warehousing_date, - supplier_code, - supplier_name, - document_preparation_personnel, - stock_number, - stock_name, - stock_manager, - export_sales, - remarks, - delivery_man, - return_goods_number, - enterprise_code, - enterprise_name, - notification_number, - work_order_number, - dept_code, - dept_name, - - - #{warehousingNumber}, - #{materialCode}, - #{materialName}, - #{materialType}, - #{specificationModel}, - #{typeMachine}, - #{inventoryUnit}, - #{qualifiedQuantity}, - #{unitPrice}, - #{amountMoney}, - #{description}, - #{batchNumber}, - #{manufacturerBatchNumber}, - #{storageLocation}, - #{inNoticeNumber}, - #{warehousingCategory}, - #{purchaseOrderNumber}, - #{contacts}, - #{warehousingDate}, - #{supplierCode}, - #{supplierName}, - #{documentPreparationPersonnel}, - #{stockNumber}, - #{stockName}, - #{stockManager}, - #{exportSales}, - #{remarks}, - #{deliveryMan}, - #{returnGoodsNumber}, - #{enterpriseCode}, - #{enterpriseName}, - #{notificationNumber}, - #{workOrderNumber}, - #{deptCode}, - #{deptName}, - - - - - update warehousing_in_search - - warehousing_number = #{warehousingNumber}, - material_code = #{materialCode}, - material_name = #{materialName}, - material_type = #{materialType}, - specification_model = #{specificationModel}, - type_machine = #{typeMachine}, - inventory_unit = #{inventoryUnit}, - warehousing_quantity = #{qualifiedQuantity}, - unit_price = #{unitPrice}, - amount_money = #{amountMoney}, - description = #{description}, - batch_number = #{batchNumber}, - manufacturer_batch_number = #{manufacturerBatchNumber}, - storage_location = #{storageLocation}, - in_notice_number = #{inNoticeNumber}, - warehousing_category = #{warehousingCategory}, - purchase_order_number = #{purchaseOrderNumber}, - contacts = #{contacts}, - warehousing_date = #{warehousingDate}, - supplier_code = #{supplierCode}, - supplier_name = #{supplierName}, - document_preparation_personnel = #{documentPreparationPersonnel}, - stock_number = #{stockNumber}, - stock_name = #{stockName}, - stock_manager = #{stockManager}, - export_sales = #{exportSales}, - remarks = #{remarks}, - delivery_man = #{deliveryMan}, - return_goods_number = #{returnGoodsNumber}, - enterprise_code = #{enterpriseCode}, - enterprise_name = #{enterpriseName}, - notification_number = #{notificationNumber}, - work_order_number = #{workOrderNumber}, - dept_code = #{deptCode}, - dept_name = #{deptName}, - - where warehousing_detail_id = #{warehousingDetailId} - - - - delete from warehousing_in_search where warehousing_detail_id = #{warehousingDetailId} - - - - delete from warehousing_in_search where warehousing_detail_id in - - #{warehousingDetailId} - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/add.html b/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/add.html deleted file mode 100644 index eb420c47..00000000 --- a/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/add.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/edit.html b/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/edit.html deleted file mode 100644 index b963e099..00000000 --- a/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/edit.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - -
-
- -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
- - -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/warehousingInSearch.html b/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/warehousingInSearch.html deleted file mode 100644 index 7f6b2cea..00000000 --- a/ruoyi-admin/src/main/resources/templates/storehouse/warehousingInSearch/warehousingInSearch.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - - - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
- -
- - - - - - - - - - - - -
-
-
-
-
-
- - - - \ No newline at end of file