diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/controller/DeliveryGoodsDetailController.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/controller/DeliveryGoodsDetailController.java deleted file mode 100644 index 222838d3..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/controller/DeliveryGoodsDetailController.java +++ /dev/null @@ -1,165 +0,0 @@ -package com.ruoyi.manufacture.controller; - -import com.alibaba.fastjson.JSONObject; -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.manufacture.domain.DeliveryGoodsDetail; -import com.ruoyi.manufacture.service.IDeliveryGoodsDetailService; -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.Arrays; -import java.util.List; -import java.util.Objects; - -import static com.ruoyi.common.core.domain.AjaxResult.Type.SUCCESS; - -/** - * 发货通知单详情Controller - * - * @author ruoyi - * @date 2023-04-12 - */ -@Controller -@RequestMapping("/manufacture/deliveryGoodsDetail") -public class DeliveryGoodsDetailController extends BaseController -{ - private String prefix = "manufacture/deliveryGoodsDetail"; - - @Autowired - private IDeliveryGoodsDetailService deliveryGoodsDetailService; - - @RequiresPermissions("manufacture:deliveryGoodsDetail:view") - @GetMapping() - public String deliveryGoodsDetail() - { - return prefix + "/deliveryGoodsDetail"; - } - - /** - * 查询发货通知单详情列表 - */ - @RequiresPermissions("manufacture:deliveryGoodsDetail:list") - @PostMapping("/list") - @ResponseBody - public TableDataInfo list(DeliveryGoodsDetail deliveryGoodsDetail) - { - startPage(); - List list = deliveryGoodsDetailService.selectDeliveryGoodsDetailList(deliveryGoodsDetail); - return getDataTable(list); - } - - /** - * 导出发货通知单详情列表 - */ - @RequiresPermissions("manufacture:deliveryGoodsDetail:export") - @Log(title = "发货通知单详情", businessType = BusinessType.EXPORT) - @PostMapping("/export") - @ResponseBody - public AjaxResult export(DeliveryGoodsDetail deliveryGoodsDetail) - { - List list = deliveryGoodsDetailService.selectDeliveryGoodsDetailList(deliveryGoodsDetail); - ExcelUtil util = new ExcelUtil(DeliveryGoodsDetail.class); - return util.exportExcel(list, "发货通知单详情数据"); - } - - /** - * 新增发货通知单详情 - */ - @GetMapping("/add") - public String add() - { - return prefix + "/add"; - } - - /** - * 新增保存发货通知单详情 - */ - @RequiresPermissions("manufacture:deliveryGoodsDetail:add") - @Log(title = "发货通知单详情", businessType = BusinessType.INSERT) - @PostMapping("/add") - @ResponseBody - public AjaxResult addSave(DeliveryGoodsDetail deliveryGoodsDetail) - { - return toAjax(deliveryGoodsDetailService.insertDeliveryGoodsDetail(deliveryGoodsDetail)); - } - - /** - * 修改发货通知单详情 - */ - @GetMapping("/edit/{deliveryGoodsDetailId}") - public String edit(@PathVariable("deliveryGoodsDetailId") Long deliveryGoodsDetailId, ModelMap mmap) - { - DeliveryGoodsDetail deliveryGoodsDetail = deliveryGoodsDetailService.selectDeliveryGoodsDetailById(deliveryGoodsDetailId); - mmap.put("deliveryGoodsDetail", deliveryGoodsDetail); - return prefix + "/edit"; - } - - /** - * 修改保存发货通知单详情 - */ - @RequiresPermissions("manufacture:deliveryGoodsDetail:edit") - @Log(title = "发货通知单详情", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - @ResponseBody - public AjaxResult editSave(DeliveryGoodsDetail deliveryGoodsDetail) - { - return toAjax(deliveryGoodsDetailService.updateDeliveryGoodsDetail(deliveryGoodsDetail)); - } - - /** - * 删除发货通知单详情 - */ - @RequiresPermissions("manufacture:deliveryGoodsDetail:remove") - @Log(title = "发货通知单详情", businessType = BusinessType.DELETE) - @PostMapping( "/remove") - @ResponseBody - public AjaxResult remove(String ids) - { - return toAjax(deliveryGoodsDetailService.deleteDeliveryGoodsDetailByIds(ids)); - } - - - @RequiresPermissions("manufacture:deliveryGoodsDetail:add") - @Log(title = "发货通知单详情", businessType = BusinessType.INSERT) - @PostMapping("/addEditSave") - @ResponseBody - public AjaxResult addEditSave(@RequestParam(value = "data") String data) - { - // 反序列化 - List deliveryGoodsDetailList = JSONObject.parseArray(data, DeliveryGoodsDetail.class); - - - for (int i=0;i idList = Arrays.asList(ids.split(",")); - for (int i=0;i list = deliveryGoodsNoticeService.selectDeliveryGoodsNoticeList(deliveryGoodsNotice); - return getDataTable(list); - } - - /** - * 导出发货通知单列表 - */ - @RequiresPermissions("manufacture:deliveryGoodsNotice:export") - @Log(title = "发货通知单", businessType = BusinessType.EXPORT) - @PostMapping("/export") - @ResponseBody - public AjaxResult export(DeliveryGoodsNotice deliveryGoodsNotice) - { - List list = deliveryGoodsNoticeService.selectDeliveryGoodsNoticeList(deliveryGoodsNotice); - ExcelUtil util = new ExcelUtil(DeliveryGoodsNotice.class); - return util.exportExcel(list, "发货通知单数据"); - } - - - /** - * 新增发货通知单 - */ - @GetMapping("/add") - public String add() - { - return prefix + "/add"; - } - - /** - * 新增保存发货通知单 - */ - @RequiresPermissions("manufacture:deliveryGoodsNotice:add") - @Log(title = "发货通知单", businessType = BusinessType.INSERT) - @PostMapping("/add") - @ResponseBody - public AjaxResult addSave(DeliveryGoodsNotice deliveryGoodsNotice) - { - return toAjax(deliveryGoodsNoticeService.insertDeliveryGoodsNotice(deliveryGoodsNotice)); - } - - /** - * 修改发货通知单 - */ - @GetMapping("/edit/{deliveryGoodsNoticeId}") - public String edit(@PathVariable("deliveryGoodsNoticeId") Long deliveryGoodsNoticeId, ModelMap mmap) - { - DeliveryGoodsNotice deliveryGoodsNotice = deliveryGoodsNoticeService.selectDeliveryGoodsNoticeById(deliveryGoodsNoticeId); - mmap.put("deliveryGoodsNotice", deliveryGoodsNotice); - return prefix + "/edit"; - } - - /** - * 修改保存发货通知单 - */ - @RequiresPermissions("manufacture:deliveryGoodsNotice:edit") - @Log(title = "发货通知单", businessType = BusinessType.UPDATE) - @PostMapping("/edit") - @ResponseBody - public AjaxResult editSave(DeliveryGoodsNotice deliveryGoodsNotice) - { - return toAjax(deliveryGoodsNoticeService.updateDeliveryGoodsNotice(deliveryGoodsNotice)); - } - - /** - * 删除发货通知单 - */ - @RequiresPermissions("manufacture:deliveryGoodsNotice:remove") - @Log(title = "发货通知单", businessType = BusinessType.DELETE) - @PostMapping( "/remove") - @ResponseBody - public AjaxResult remove(String ids) - { - return toAjax(deliveryGoodsNoticeService.deleteDeliveryGoodsNoticeByIds(ids)); - } - - @RequiresPermissions("manufacture:deliveryGoodsNotice:remove") - @Log(title = "发货通知单", businessType = BusinessType.DELETE) - @RequestMapping( "/removeSelected") - @ResponseBody - public String removeSelected(@RequestParam(value = "ids") String ids) { - System.out.println(ids); - String[] idsStr = ids.split(","); - for (int i = 0; i< idsStr.length; i++) { - DeliveryGoodsNotice deliveryGoodsNotice = deliveryGoodsNoticeService.selectDeliveryGoodsNoticeById(Long.valueOf(idsStr[i])); - DeliveryGoodsDetail deliveryGoodsDetail = new DeliveryGoodsDetail(); - deliveryGoodsDetail.setNoticeOrderNumber(deliveryGoodsNotice.getNoticeOrderNumber()); - List list = deliveryGoodsDetailService.selectDeliveryGoodsDetailList(deliveryGoodsDetail); - if (list.size()>0) { - for (int j=0;j deliveryGoodsDetailList = deliveryGoodsDetailService.selectDeliveryGoodsDetailList(deliveryGoodsDetail); - List deliveryGoodsDetailDtoList = new ArrayList<>(); - double total = 0.00; - try { - int number = 0; - Iterator values= deliveryGoodsDetailList.iterator(); - while(values.hasNext()) { - Object source = values.next(); - DeliveryGoodsDetailDto target = DeliveryGoodsDetailDto.class.newInstance(); - BeanUtils.copyProperties(source, target); - mergePrevColUtils.add(number+4,1,1); - mergePrevColUtils.add(number+4,3,1); - total = total + Double.parseDouble(target.getProductQuantity()); - target.setNumber(++number); - deliveryGoodsDetailDtoList.add(target); - } - }catch (Exception e) { - log.error(">>>>>>异常<<<<<<", e); - } - System.out.println(deliveryGoodsDetailDtoList); - - SysCustomer sysCustomer = new SysCustomer(); - sysCustomer.setEnterpriseCode(deliveryGoodsNoticeDto.getEnterpriseCode()); - sysCustomer.setEnterpriseName(deliveryGoodsNoticeDto.getEnterpriseName()); - List sysCustomer1 = sysCustomerService.selectSysCustomerToList(); - String contactNumber = sysCustomer1.get(0).getContactNumber(); - String customerFax = sysCustomer1.get(0).getCustomerFax(); - - response.setCharacterEncoding("utf-8"); - String fileName = URLEncoder.encode("发货通知单", "UTF-8").replaceAll("\\+", "%20"); - response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx"); - String templateFileName = "C:\\exportTemplates\\exportDeliveryGoodsNotice.xlsx"; - try (ExcelWriter excelWriter = EasyExcel - .write(response.getOutputStream(), PurchaseMaterialDto.class) - .withTemplate(templateFileName) - .registerWriteHandler(mergePrevColUtils) - //样式注册 - .registerWriteHandler(horizontalCellStyleStrategyBuilder()) - .build()) { - WriteSheet writeSheet = EasyExcel.writerSheet().build(); - FillConfig fillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build(); - excelWriter.fill(deliveryGoodsDetailDtoList, fillConfig, writeSheet); - Map map = MapUtils.newHashMap(); -// map.put("date", DateTimeFormatter.ofPattern("yyyy/MM/dd").format(LocalDateTime.now())); - map.put("enterpriseName", deliveryGoodsNoticeDto.getEnterpriseName()); - map.put("deliveryAddress", deliveryGoodsNoticeDto.getDeliveryAddress()); - map.put("noticeOrderNumber", deliveryGoodsNoticeDto.getNoticeOrderNumber()); - map.put("deliveryDate", deliveryGoodsNoticeDto.getDeliveryDate()); - map.put("contactNumber", contactNumber); - map.put("customerFax", customerFax); - map.put("total", total); - excelWriter.fill(map, writeSheet); - } - } - - - public CellStyleStrategy horizontalCellStyleStrategyBuilder() { - WriteCellStyle headWriteCellStyle = new WriteCellStyle(); - //设置头字体 - WriteFont headWriteFont = new WriteFont(); - headWriteFont.setFontHeightInPoints((short) 13); - headWriteFont.setBold(true); - headWriteCellStyle.setWriteFont(headWriteFont); - //设置头居中 - headWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER); - //内容策略 - WriteCellStyle contentWriteCellStyle = new WriteCellStyle(); - //设置 水平居中 - contentWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER); - //垂直居中 - contentWriteCellStyle.setVerticalAlignment(VerticalAlignment.CENTER); - //单元格边框 - contentWriteCellStyle.setBorderTop(BorderStyle.DASHED); - contentWriteCellStyle.setBorderLeft(BorderStyle.DASHED); - contentWriteCellStyle.setBorderRight(BorderStyle.DASHED); - contentWriteCellStyle.setBorderBottom(BorderStyle.DASHED); - - return new CellStyleStrategy(headWriteCellStyle, contentWriteCellStyle); - } - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/DeliveryGoodsDetail.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/DeliveryGoodsDetail.java deleted file mode 100644 index b6fa105a..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/DeliveryGoodsDetail.java +++ /dev/null @@ -1,485 +0,0 @@ -package com.ruoyi.manufacture.domain; - -import com.fasterxml.jackson.annotation.JsonFormat; -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; - -import java.math.BigDecimal; -import java.util.Date; - -/** - * 发货通知单详情对象 delivery_goods_detail - * - * @author ruoyi - * @date 2023-04-12 - */ -public class DeliveryGoodsDetail extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 发货通知单详情id */ - private Long deliveryGoodsDetailId; - - /** 出库单号 */ - @Excel(name = "出库单号") - private String noticeOrderNumber; - - @Excel(name = "出库状态") - private String deliverStatus; - - /** 业务员 */ - @Excel(name = "业务员") - private String finishProductName; - - /** 关联销售单号 */ - @Excel(name = "关联销售单号") - private String salesOrderNumber; - - /** 出库类型 */ - @Excel(name = "出库类型") - private String outboundType; - - /** 订单类型 */ - @Excel(name = "订单类型") - private String orderType; - - /** 客户代码/ID */ - @Excel(name = "客户ID") - private String enterpriseCode; - - /** 客户公司名称 */ - @Excel(name = "客户公司名称") - private String enterpriseName; - - /** 客户订单 */ - @Excel(name = "客户订单号") - private String customerNumber; - - - /** 数量 */ - @Excel(name = "物料总量") - private String productQuantity; - - /** 数量合计 */ - @Excel(name = "数量合计") - private String amountMoney; - - /** 不含税总价(RMB) */ - @Excel(name = "不含税总价") - private BigDecimal allPriceExcludingTaxRmb; - - /** 含税总价(RMB) */ - @Excel(name = "含税总价") - private BigDecimal allPriceIncludesTax; - - /** 不含税总价(美元) */ - @Excel(name = "不含税总价") - private BigDecimal allPriceExcludingTaxDollar; - - - /** 计划交付时间 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "计划交付时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date plannedDeliveryTime; - - /** 客户验收时间 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "客户验收时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date acceptanceTime; - - /** 付款条件 */ - @Excel(name = "付款条件") - private String paymentCondition; - - /** 交付条件 */ - @Excel(name = "交付条件") - private String deliveryCondition; - - /** 收货联系人 */ - @Excel(name = "收货联系人") - private String customerContact; - - /** 联系电话 */ - @Excel(name = "联系电话") - private String contactNumber; - - /** 收货地址 */ - @Excel(name = "收货地址") - private String contactAddress; - - /** 送货日期*/ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "送货日期", width = 30, dateFormat = "yyyy-MM-dd") - private Date deliverTime; - - - - /** 成品代码 */ - private String finishProductCode; - - - - /** 规格型号 */ - private String specificationModel; - - - - - - - - - /** 机种 */ - private String typeMachine; - - /** 单位 */ - private String inventoryUnit; - - /** 币别 */ - private String commonCurrency; - - /** 单价 */ - private String processPrice; - - - - /** Line# */ - private String line; - - /** 版本号 */ - private String versionNumber; - - /** 说明 */ - private String salesExplain; - - /** 备用一 */ - private String standbyOne; - - /** 备用二 */ - private String standbyTwo; - - - - - - public void setDeliveryGoodsDetailId(Long deliveryGoodsDetailId) - { - this.deliveryGoodsDetailId = deliveryGoodsDetailId; - } - - public Long getDeliveryGoodsDetailId() - { - return deliveryGoodsDetailId; - } - public void setNoticeOrderNumber(String noticeOrderNumber) - { - this.noticeOrderNumber = noticeOrderNumber; - } - - public String getNoticeOrderNumber() - { - return noticeOrderNumber; - } - public void setSalesOrderNumber(String salesOrderNumber) - { - this.salesOrderNumber = salesOrderNumber; - } - - public String getSalesOrderNumber() - { - return salesOrderNumber; - } - 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 setFinishProductCode(String finishProductCode) - { - this.finishProductCode = finishProductCode; - } - - public String getFinishProductCode() - { - return finishProductCode; - } - public void setFinishProductName(String finishProductName) - { - this.finishProductName = finishProductName; - } - - public String getFinishProductName() - { - return finishProductName; - } - public void setSpecificationModel(String specificationModel) - { - this.specificationModel = specificationModel; - } - - public String getSpecificationModel() - { - return specificationModel; - } - public void setCustomerNumber(String customerNumber) - { - this.customerNumber = customerNumber; - } - - public String getCustomerNumber() - { - return customerNumber; - } - 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 void setCommonCurrency(String commonCurrency) - { - this.commonCurrency = commonCurrency; - } - - public String getCommonCurrency() - { - return commonCurrency; - } - public void setProcessPrice(String processPrice) - { - this.processPrice = processPrice; - } - - public String getProcessPrice() - { - return processPrice; - } - public void setProductQuantity(String productQuantity) - { - this.productQuantity = productQuantity; - } - - public String getProductQuantity() - { - return productQuantity; - } - public void setAmountMoney(String amountMoney) - { - this.amountMoney = amountMoney; - } - - public String getAmountMoney() - { - return amountMoney; - } - public void setLine(String line) - { - this.line = line; - } - - public String getLine() - { - return line; - } - public void setVersionNumber(String versionNumber) - { - this.versionNumber = versionNumber; - } - - public String getVersionNumber() - { - return versionNumber; - } - public void setSalesExplain(String salesExplain) - { - this.salesExplain = salesExplain; - } - - public String getSalesExplain() - { - return salesExplain; - } - public void setStandbyOne(String standbyOne) - { - this.standbyOne = standbyOne; - } - - public String getStandbyOne() - { - return standbyOne; - } - public void setStandbyTwo(String standbyTwo) - { - this.standbyTwo = standbyTwo; - } - - public String getStandbyTwo() - { - return standbyTwo; - } - - public String getDeliverStatus() { - return deliverStatus; - } - - public void setDeliverStatus(String deliverStatus) { - this.deliverStatus = deliverStatus; - } - - public String getOutboundType() { - return outboundType; - } - - public void setOutboundType(String outboundType) { - this.outboundType = outboundType; - } - - public String getOrderType() { - return orderType; - } - - public void setOrderType(String orderType) { - this.orderType = orderType; - } - - public BigDecimal getAllPriceExcludingTaxRmb() { - return allPriceExcludingTaxRmb; - } - - public void setAllPriceExcludingTaxRmb(BigDecimal allPriceExcludingTaxRmb) { - this.allPriceExcludingTaxRmb = allPriceExcludingTaxRmb; - } - - public BigDecimal getAllPriceIncludesTax() { - return allPriceIncludesTax; - } - - public void setAllPriceIncludesTax(BigDecimal allPriceIncludesTax) { - this.allPriceIncludesTax = allPriceIncludesTax; - } - - public BigDecimal getAllPriceExcludingTaxDollar() { - return allPriceExcludingTaxDollar; - } - - public void setAllPriceExcludingTaxDollar(BigDecimal allPriceExcludingTaxDollar) { - this.allPriceExcludingTaxDollar = allPriceExcludingTaxDollar; - } - - public Date getPlannedDeliveryTime() { - return plannedDeliveryTime; - } - - public void setPlannedDeliveryTime(Date plannedDeliveryTime) { - this.plannedDeliveryTime = plannedDeliveryTime; - } - - public Date getAcceptanceTime() { - return acceptanceTime; - } - - public void setAcceptanceTime(Date acceptanceTime) { - this.acceptanceTime = acceptanceTime; - } - - public String getPaymentCondition() { - return paymentCondition; - } - - public void setPaymentCondition(String paymentCondition) { - this.paymentCondition = paymentCondition; - } - - public String getDeliveryCondition() { - return deliveryCondition; - } - - public void setDeliveryCondition(String deliveryCondition) { - this.deliveryCondition = deliveryCondition; - } - - public String getCustomerContact() { - return customerContact; - } - - public void setCustomerContact(String customerContact) { - this.customerContact = customerContact; - } - - public String getContactNumber() { - return contactNumber; - } - - public void setContactNumber(String contactNumber) { - this.contactNumber = contactNumber; - } - - public String getContactAddress() { - return contactAddress; - } - - public void setContactAddress(String contactAddress) { - this.contactAddress = contactAddress; - } - - public Date getDeliverTime() { - return deliverTime; - } - - public void setDeliverTime(Date deliverTime) { - this.deliverTime = deliverTime; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("deliveryGoodsDetailId", getDeliveryGoodsDetailId()) - .append("noticeOrderNumber", getNoticeOrderNumber()) - .append("salesOrderNumber", getSalesOrderNumber()) - .append("enterpriseCode", getEnterpriseCode()) - .append("enterpriseName", getEnterpriseName()) - .append("finishProductCode", getFinishProductCode()) - .append("finishProductName", getFinishProductName()) - .append("specificationModel", getSpecificationModel()) - .append("customerNumber", getCustomerNumber()) - .append("typeMachine", getTypeMachine()) - .append("inventoryUnit", getInventoryUnit()) - .append("commonCurrency", getCommonCurrency()) - .append("processPrice", getProcessPrice()) - .append("productQuantity", getProductQuantity()) - .append("amountMoney", getAmountMoney()) - .append("line", getLine()) - .append("versionNumber", getVersionNumber()) - .append("salesExplain", getSalesExplain()) - .append("standbyOne", getStandbyOne()) - .append("standbyTwo", getStandbyTwo()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/DeliveryGoodsNotice.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/DeliveryGoodsNotice.java deleted file mode 100644 index d7c9113e..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/DeliveryGoodsNotice.java +++ /dev/null @@ -1,482 +0,0 @@ -package com.ruoyi.manufacture.domain; - -import com.fasterxml.jackson.annotation.JsonFormat; -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; - -import java.math.BigDecimal; -import java.util.Date; - -/** - * 出货资料 delivery_goods_notice - * - * @author ruoyi - * @date 2023-04-11 - */ -public class DeliveryGoodsNotice extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 发货通知单id */ - private Long deliveryGoodsNoticeId; - - /** 出货资料单号 */ - @Excel(name = "出货资料单号") - private String noticeOrderNumber; - - /** 发货日期 */ - @Excel(name = "发货日期") - private String deliveryDate; - - /** 资料类型 */ - @Excel(name = "资料类型") - private String informationType; - - /** 模板类型 */ - @Excel(name = "模板类型") - private String templateType; - - /** 业务人员 */ - @Excel(name = "业务人员") - private String businessMembers; - - /** 关联出库单号 */ - @Excel(name = "关联出库单号") - private String relatedDeliveryNumber; - - /** 订单类型 */ - @Excel(name = "订单类型") - private String orderType; - - /** 客户代码 */ - @Excel(name = "客户ID") - private String enterpriseCode; - - /** 客户名称 */ - @Excel(name = "客户公司名称") - private String enterpriseName; - - /** 客户订单号 */ - @Excel(name = "客户订单号") - private String customerNumber; - - - /** 物料数量 */ - @Excel(name = "物料总量") - private String productQuantity; - - /** 物料合计 */ - @Excel(name = "物料合计") - private String amountMoney; - - /** 不含税总价(RMB) */ - @Excel(name = "不含税总价") - private BigDecimal allPriceExcludingTaxRmb; - - /** 含税总价(RMB) */ - @Excel(name = "含税总价") - private BigDecimal allPriceIncludesTax; - - /** 不含税总价(美元) */ - @Excel(name = "不含税总价") - private BigDecimal allPriceExcludingTaxDollar; - - - /** 计划交付时间 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "计划交付时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date plannedDeliveryTime; - - /** 客户验收时间 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "客户验收时间", width = 30, dateFormat = "yyyy-MM-dd") - private Date acceptanceTime; - - /** 付款条件 */ - @Excel(name = "付款条件") - private String paymentCondition; - - /** 交付条件 */ - @Excel(name = "交付条件") - private String deliveryCondition; - - /** 联系人 */ - @Excel(name = "联系人") - private String customerContact; - - - /** 联系电话 */ - @Excel(name = "联系电话") - private String contactNumber; - - /** 收货 */ - @Excel(name = "收货地址") - private String deliveryAddress; - - /** 送货日期 */ - @JsonFormat(pattern = "yyyy-MM-dd") - @Excel(name = "送货日期", width = 30, dateFormat = "yyyy-MM-dd") - private Date deliverTime; - - - /** 客户厂区 */ - - private String customerFactory; - - /** 内外销 */ - private String exportSales; - - /** 仓库编号 */ - private String stockNumber; - - /** 仓库名称 */ - private String stockName; - - /** 备注 */ - private String remarks; - - /** 制单人 */ - private String voucherPreparation; - - /** 发货否 */ - private String deliveryGoodsFlag; - - /** 录入时间 */ - @Excel(name = "录入时间") - private String firstAddTime; - - /** 修改时间 */ - @Excel(name = "修改时间") - private String updateInfoTime; - - /** 备用一 */ - private String standbyOne; - - /** 备用二 */ - private String standbyTwo; - - public void setDeliveryGoodsNoticeId(Long deliveryGoodsNoticeId) - { - this.deliveryGoodsNoticeId = deliveryGoodsNoticeId; - } - - public Long getDeliveryGoodsNoticeId() - { - return deliveryGoodsNoticeId; - } - public void setNoticeOrderNumber(String noticeOrderNumber) - { - this.noticeOrderNumber = noticeOrderNumber; - } - - public String getNoticeOrderNumber() - { - return noticeOrderNumber; - } - public void setDeliveryDate(String deliveryDate) - { - this.deliveryDate = deliveryDate; - } - - public String getDeliveryDate() - { - return deliveryDate; - } - 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 setCustomerContact(String customerContact) - { - this.customerContact = customerContact; - } - - public String getCustomerContact() - { - return customerContact; - } - public void setCustomerFactory(String customerFactory) - { - this.customerFactory = customerFactory; - } - - public String getCustomerFactory() - { - return customerFactory; - } - public void setDeliveryAddress(String deliveryAddress) - { - this.deliveryAddress = deliveryAddress; - } - - public String getDeliveryAddress() - { - return deliveryAddress; - } - public void setExportSales(String exportSales) - { - this.exportSales = exportSales; - } - - public String getExportSales() - { - return exportSales; - } - 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 setRemarks(String remarks) - { - this.remarks = remarks; - } - - public String getRemarks() - { - return remarks; - } - public void setVoucherPreparation(String voucherPreparation) - { - this.voucherPreparation = voucherPreparation; - } - - public String getVoucherPreparation() - { - return voucherPreparation; - } - public void setDeliveryGoodsFlag(String deliveryGoodsFlag) - { - this.deliveryGoodsFlag = deliveryGoodsFlag; - } - - public String getDeliveryGoodsFlag() - { - return deliveryGoodsFlag; - } - public void setFirstAddTime(String firstAddTime) - { - this.firstAddTime = firstAddTime; - } - - public String getFirstAddTime() - { - return firstAddTime; - } - public void setUpdateInfoTime(String updateInfoTime) - { - this.updateInfoTime = updateInfoTime; - } - - public String getUpdateInfoTime() - { - return updateInfoTime; - } - public void setStandbyOne(String standbyOne) - { - this.standbyOne = standbyOne; - } - - public String getStandbyOne() - { - return standbyOne; - } - public void setStandbyTwo(String standbyTwo) - { - this.standbyTwo = standbyTwo; - } - - public String getStandbyTwo() - { - return standbyTwo; - } - - public String getInformationType() { - return informationType; - } - - public void setInformationType(String informationType) { - this.informationType = informationType; - } - - public String getTemplateType() { - return templateType; - } - - public void setTemplateType(String templateType) { - this.templateType = templateType; - } - - public String getBusinessMembers() { - return businessMembers; - } - - public void setBusinessMembers(String businessMembers) { - this.businessMembers = businessMembers; - } - - public String getRelatedDeliveryNumber() { - return relatedDeliveryNumber; - } - - public void setRelatedDeliveryNumber(String relatedDeliveryNumber) { - this.relatedDeliveryNumber = relatedDeliveryNumber; - } - - public String getOrderType() { - return orderType; - } - - public void setOrderType(String orderType) { - this.orderType = orderType; - } - - public String getProductQuantity() { - return productQuantity; - } - - public void setProductQuantity(String productQuantity) { - this.productQuantity = productQuantity; - } - - public String getAmountMoney() { - return amountMoney; - } - - public void setAmountMoney(String amountMoney) { - this.amountMoney = amountMoney; - } - - public BigDecimal getAllPriceExcludingTaxRmb() { - return allPriceExcludingTaxRmb; - } - - public void setAllPriceExcludingTaxRmb(BigDecimal allPriceExcludingTaxRmb) { - this.allPriceExcludingTaxRmb = allPriceExcludingTaxRmb; - } - - public BigDecimal getAllPriceIncludesTax() { - return allPriceIncludesTax; - } - - public void setAllPriceIncludesTax(BigDecimal allPriceIncludesTax) { - this.allPriceIncludesTax = allPriceIncludesTax; - } - - public BigDecimal getAllPriceExcludingTaxDollar() { - return allPriceExcludingTaxDollar; - } - - public void setAllPriceExcludingTaxDollar(BigDecimal allPriceExcludingTaxDollar) { - this.allPriceExcludingTaxDollar = allPriceExcludingTaxDollar; - } - - public Date getPlannedDeliveryTime() { - return plannedDeliveryTime; - } - - public void setPlannedDeliveryTime(Date plannedDeliveryTime) { - this.plannedDeliveryTime = plannedDeliveryTime; - } - - public Date getAcceptanceTime() { - return acceptanceTime; - } - - public void setAcceptanceTime(Date acceptanceTime) { - this.acceptanceTime = acceptanceTime; - } - - public String getPaymentCondition() { - return paymentCondition; - } - - public void setPaymentCondition(String paymentCondition) { - this.paymentCondition = paymentCondition; - } - - public String getDeliveryCondition() { - return deliveryCondition; - } - - public void setDeliveryCondition(String deliveryCondition) { - this.deliveryCondition = deliveryCondition; - } - - public String getCustomerNumber() { - return customerNumber; - } - - public void setCustomerNumber(String customerNumber) { - this.customerNumber = customerNumber; - } - - public Date getDeliverTime() { - return deliverTime; - } - - public void setDeliverTime(Date deliverTime) { - this.deliverTime = deliverTime; - } - - public String getContactNumber() { - return contactNumber; - } - - public void setContactNumber(String contactNumber) { - this.contactNumber = contactNumber; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("deliveryGoodsNoticeId", getDeliveryGoodsNoticeId()) - .append("noticeOrderNumber", getNoticeOrderNumber()) - .append("deliveryDate", getDeliveryDate()) - .append("enterpriseCode", getEnterpriseCode()) - .append("enterpriseName", getEnterpriseName()) - .append("customerContact", getCustomerContact()) - .append("customerFactory", getCustomerFactory()) - .append("deliveryAddress", getDeliveryAddress()) - .append("exportSales", getExportSales()) - .append("stockNumber", getStockNumber()) - .append("stockName", getStockName()) - .append("remarks", getRemarks()) - .append("voucherPreparation", getVoucherPreparation()) - .append("deliveryGoodsFlag", getDeliveryGoodsFlag()) - .append("firstAddTime", getFirstAddTime()) - .append("updateInfoTime", getUpdateInfoTime()) - .append("standbyOne", getStandbyOne()) - .append("standbyTwo", getStandbyTwo()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/exportDto/DeliveryGoodsDetailDto.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/exportDto/DeliveryGoodsDetailDto.java deleted file mode 100644 index 86c3a942..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/exportDto/DeliveryGoodsDetailDto.java +++ /dev/null @@ -1,312 +0,0 @@ -package com.ruoyi.manufacture.domain.exportDto; - -import com.alibaba.excel.annotation.ExcelProperty; -import com.ruoyi.common.core.domain.BaseEntity; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 发货通知单详情对象 delivery_goods_detail - * - * @author ruoyi - * @date 2023-04-12 - */ -public class DeliveryGoodsDetailDto extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - private Integer number; - - /** 发货通知单详情id */ - private Long deliveryGoodsDetailId; - - /** 通知单号 */ - @ExcelProperty("通知单号") - private String noticeOrderNumber; - - /** 订单号码 */ - @ExcelProperty("订单号码") - private String salesOrderNumber; - - /** 客户代码 */ - @ExcelProperty("客户代码") - private String enterpriseCode; - - /** 客户名称 */ - @ExcelProperty("客户名称") - private String enterpriseName; - - /** 成品代码 */ - @ExcelProperty("成品代码") - private String finishProductCode; - - /** 成品名称 */ - @ExcelProperty("成品名称") - private String finishProductName; - - /** 规格型号 */ - @ExcelProperty("规格型号") - private String specificationModel; - - /** 客户料号 */ - @ExcelProperty("客户料号") - private String customerNumber; - - /** 机种 */ - @ExcelProperty("机种") - private String typeMachine; - - /** 单位 */ - @ExcelProperty("单位") - private String inventoryUnit; - - /** 币别 */ - @ExcelProperty("币别") - private String commonCurrency; - - /** 单价 */ - @ExcelProperty("单价") - private String processPrice; - - /** 数量 */ - @ExcelProperty("数量") - private String productQuantity; - - /** 金额 */ - @ExcelProperty("金额") - private String amountMoney; - - /** Line# */ - @ExcelProperty("Line#") - private String line; - - /** 版本号 */ - @ExcelProperty("版本号") - private String versionNumber; - - /** 说明 */ - @ExcelProperty("说明") - private String salesExplain; - - /** 备用一 */ - private String standbyOne; - - /** 备用二 */ - private String standbyTwo; - - public Integer getNumber() { - return number; - } - - public void setNumber(Integer number) { - this.number = number; - } - - public void setDeliveryGoodsDetailId(Long deliveryGoodsDetailId) - { - this.deliveryGoodsDetailId = deliveryGoodsDetailId; - } - - public Long getDeliveryGoodsDetailId() - { - return deliveryGoodsDetailId; - } - public void setNoticeOrderNumber(String noticeOrderNumber) - { - this.noticeOrderNumber = noticeOrderNumber; - } - - public String getNoticeOrderNumber() - { - return noticeOrderNumber; - } - public void setSalesOrderNumber(String salesOrderNumber) - { - this.salesOrderNumber = salesOrderNumber; - } - - public String getSalesOrderNumber() - { - return salesOrderNumber; - } - 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 setFinishProductCode(String finishProductCode) - { - this.finishProductCode = finishProductCode; - } - - public String getFinishProductCode() - { - return finishProductCode; - } - public void setFinishProductName(String finishProductName) - { - this.finishProductName = finishProductName; - } - - public String getFinishProductName() - { - return finishProductName; - } - public void setSpecificationModel(String specificationModel) - { - this.specificationModel = specificationModel; - } - - public String getSpecificationModel() - { - return specificationModel; - } - public void setCustomerNumber(String customerNumber) - { - this.customerNumber = customerNumber; - } - - public String getCustomerNumber() - { - return customerNumber; - } - 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 void setCommonCurrency(String commonCurrency) - { - this.commonCurrency = commonCurrency; - } - - public String getCommonCurrency() - { - return commonCurrency; - } - public void setProcessPrice(String processPrice) - { - this.processPrice = processPrice; - } - - public String getProcessPrice() - { - return processPrice; - } - public void setProductQuantity(String productQuantity) - { - this.productQuantity = productQuantity; - } - - public String getProductQuantity() - { - return productQuantity; - } - public void setAmountMoney(String amountMoney) - { - this.amountMoney = amountMoney; - } - - public String getAmountMoney() - { - return amountMoney; - } - public void setLine(String line) - { - this.line = line; - } - - public String getLine() - { - return line; - } - public void setVersionNumber(String versionNumber) - { - this.versionNumber = versionNumber; - } - - public String getVersionNumber() - { - return versionNumber; - } - public void setSalesExplain(String salesExplain) - { - this.salesExplain = salesExplain; - } - - public String getSalesExplain() - { - return salesExplain; - } - public void setStandbyOne(String standbyOne) - { - this.standbyOne = standbyOne; - } - - public String getStandbyOne() - { - return standbyOne; - } - public void setStandbyTwo(String standbyTwo) - { - this.standbyTwo = standbyTwo; - } - - public String getStandbyTwo() - { - return standbyTwo; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("number", getNumber()) - .append("deliveryGoodsDetailId", getDeliveryGoodsDetailId()) - .append("noticeOrderNumber", getNoticeOrderNumber()) - .append("salesOrderNumber", getSalesOrderNumber()) - .append("enterpriseCode", getEnterpriseCode()) - .append("enterpriseName", getEnterpriseName()) - .append("finishProductCode", getFinishProductCode()) - .append("finishProductName", getFinishProductName()) - .append("specificationModel", getSpecificationModel()) - .append("customerNumber", getCustomerNumber()) - .append("typeMachine", getTypeMachine()) - .append("inventoryUnit", getInventoryUnit()) - .append("commonCurrency", getCommonCurrency()) - .append("processPrice", getProcessPrice()) - .append("productQuantity", getProductQuantity()) - .append("amountMoney", getAmountMoney()) - .append("line", getLine()) - .append("versionNumber", getVersionNumber()) - .append("salesExplain", getSalesExplain()) - .append("standbyOne", getStandbyOne()) - .append("standbyTwo", getStandbyTwo()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/exportDto/DeliveryGoodsNoticeDto.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/exportDto/DeliveryGoodsNoticeDto.java deleted file mode 100644 index e130a9dc..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/domain/exportDto/DeliveryGoodsNoticeDto.java +++ /dev/null @@ -1,273 +0,0 @@ -package com.ruoyi.manufacture.domain.exportDto; - -import com.alibaba.excel.annotation.ExcelProperty; -import com.ruoyi.common.core.domain.BaseEntity; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; - -/** - * 发货通知单对象 delivery_goods_notice - * - * @author ruoyi - * @date 2023-04-11 - */ -public class DeliveryGoodsNoticeDto extends BaseEntity -{ - private static final long serialVersionUID = 1L; - - /** 发货通知单id */ - private Long deliveryGoodsNoticeId; - - /** 通知单号 */ - @ExcelProperty("通知单号") - private String noticeOrderNumber; - - /** 发货日期 */ - @ExcelProperty("发货日期") - private String deliveryDate; - - /** 客户代码 */ - @ExcelProperty("客户代码") - private String enterpriseCode; - - /** 客户名称 */ - @ExcelProperty("客户名称") - private String enterpriseName; - - /** 联系人 */ - @ExcelProperty("联系人") - private String customerContact; - - /** 客户厂区 */ - @ExcelProperty("客户厂区") - private String customerFactory; - - /** 送货地址 */ - @ExcelProperty("送货地址") - private String deliveryAddress; - - /** 内外销 */ - @ExcelProperty("内外销") - private String exportSales; - - /** 仓库编号 */ - @ExcelProperty("仓库编号") - private String stockNumber; - - /** 仓库名称 */ - @ExcelProperty("仓库名称") - private String stockName; - - /** 备注 */ - @ExcelProperty("备注") - private String remarks; - - /** 制单人 */ - @ExcelProperty("制单人") - private String voucherPreparation; - - /** 发货否 */ - @ExcelProperty("发货否") - private String deliveryGoodsFlag; - - /** 录入时间 */ - @ExcelProperty("录入时间") - private String firstAddTime; - - /** 修改时间 */ - @ExcelProperty("修改时间") - private String updateInfoTime; - - /** 备用一 */ - private String standbyOne; - - /** 备用二 */ - private String standbyTwo; - - public void setDeliveryGoodsNoticeId(Long deliveryGoodsNoticeId) - { - this.deliveryGoodsNoticeId = deliveryGoodsNoticeId; - } - - public Long getDeliveryGoodsNoticeId() - { - return deliveryGoodsNoticeId; - } - public void setNoticeOrderNumber(String noticeOrderNumber) - { - this.noticeOrderNumber = noticeOrderNumber; - } - - public String getNoticeOrderNumber() - { - return noticeOrderNumber; - } - public void setDeliveryDate(String deliveryDate) - { - this.deliveryDate = deliveryDate; - } - - public String getDeliveryDate() - { - return deliveryDate; - } - 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 setCustomerContact(String customerContact) - { - this.customerContact = customerContact; - } - - public String getCustomerContact() - { - return customerContact; - } - public void setCustomerFactory(String customerFactory) - { - this.customerFactory = customerFactory; - } - - public String getCustomerFactory() - { - return customerFactory; - } - public void setDeliveryAddress(String deliveryAddress) - { - this.deliveryAddress = deliveryAddress; - } - - public String getDeliveryAddress() - { - return deliveryAddress; - } - public void setExportSales(String exportSales) - { - this.exportSales = exportSales; - } - - public String getExportSales() - { - return exportSales; - } - 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 setRemarks(String remarks) - { - this.remarks = remarks; - } - - public String getRemarks() - { - return remarks; - } - public void setVoucherPreparation(String voucherPreparation) - { - this.voucherPreparation = voucherPreparation; - } - - public String getVoucherPreparation() - { - return voucherPreparation; - } - public void setDeliveryGoodsFlag(String deliveryGoodsFlag) - { - this.deliveryGoodsFlag = deliveryGoodsFlag; - } - - public String getDeliveryGoodsFlag() - { - return deliveryGoodsFlag; - } - public void setFirstAddTime(String firstAddTime) - { - this.firstAddTime = firstAddTime; - } - - public String getFirstAddTime() - { - return firstAddTime; - } - public void setUpdateInfoTime(String updateInfoTime) - { - this.updateInfoTime = updateInfoTime; - } - - public String getUpdateInfoTime() - { - return updateInfoTime; - } - public void setStandbyOne(String standbyOne) - { - this.standbyOne = standbyOne; - } - - public String getStandbyOne() - { - return standbyOne; - } - public void setStandbyTwo(String standbyTwo) - { - this.standbyTwo = standbyTwo; - } - - public String getStandbyTwo() - { - return standbyTwo; - } - - @Override - public String toString() { - return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("deliveryGoodsNoticeId", getDeliveryGoodsNoticeId()) - .append("noticeOrderNumber", getNoticeOrderNumber()) - .append("deliveryDate", getDeliveryDate()) - .append("enterpriseCode", getEnterpriseCode()) - .append("enterpriseName", getEnterpriseName()) - .append("customerContact", getCustomerContact()) - .append("customerFactory", getCustomerFactory()) - .append("deliveryAddress", getDeliveryAddress()) - .append("exportSales", getExportSales()) - .append("stockNumber", getStockNumber()) - .append("stockName", getStockName()) - .append("remarks", getRemarks()) - .append("voucherPreparation", getVoucherPreparation()) - .append("deliveryGoodsFlag", getDeliveryGoodsFlag()) - .append("firstAddTime", getFirstAddTime()) - .append("updateInfoTime", getUpdateInfoTime()) - .append("standbyOne", getStandbyOne()) - .append("standbyTwo", getStandbyTwo()) - .toString(); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/mapper/DeliveryGoodsDetailMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/mapper/DeliveryGoodsDetailMapper.java deleted file mode 100644 index 64b53713..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/mapper/DeliveryGoodsDetailMapper.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.manufacture.mapper; - -import java.util.List; -import com.ruoyi.manufacture.domain.DeliveryGoodsDetail; - -/** - * 发货通知单详情Mapper接口 - * - * @author ruoyi - * @date 2023-04-12 - */ -public interface DeliveryGoodsDetailMapper -{ - /** - * 查询发货通知单详情 - * - * @param deliveryGoodsDetailId 发货通知单详情ID - * @return 发货通知单详情 - */ - public DeliveryGoodsDetail selectDeliveryGoodsDetailById(Long deliveryGoodsDetailId); - - /** - * 查询发货通知单详情列表 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 发货通知单详情集合 - */ - public List selectDeliveryGoodsDetailList(DeliveryGoodsDetail deliveryGoodsDetail); - - /** - * 新增发货通知单详情 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 结果 - */ - public int insertDeliveryGoodsDetail(DeliveryGoodsDetail deliveryGoodsDetail); - - /** - * 修改发货通知单详情 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 结果 - */ - public int updateDeliveryGoodsDetail(DeliveryGoodsDetail deliveryGoodsDetail); - - /** - * 删除发货通知单详情 - * - * @param deliveryGoodsDetailId 发货通知单详情ID - * @return 结果 - */ - public int deleteDeliveryGoodsDetailById(Long deliveryGoodsDetailId); - - /** - * 批量删除发货通知单详情 - * - * @param deliveryGoodsDetailIds 需要删除的数据ID - * @return 结果 - */ - public int deleteDeliveryGoodsDetailByIds(String[] deliveryGoodsDetailIds); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/mapper/DeliveryGoodsNoticeMapper.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/mapper/DeliveryGoodsNoticeMapper.java deleted file mode 100644 index ad2e59e7..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/mapper/DeliveryGoodsNoticeMapper.java +++ /dev/null @@ -1,63 +0,0 @@ -package com.ruoyi.manufacture.mapper; - -import com.ruoyi.manufacture.domain.DeliveryGoodsNotice; - -import java.util.List; - -/** - * 发货通知单Mapper接口 - * - * @author ruoyi - * @date 2023-04-11 - */ -public interface DeliveryGoodsNoticeMapper -{ - /** - * 查询发货通知单 - * - * @param deliveryGoodsNoticeId 发货通知单ID - * @return 发货通知单 - */ - public DeliveryGoodsNotice selectDeliveryGoodsNoticeById(Long deliveryGoodsNoticeId); - - /** - * 查询发货通知单列表 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 发货通知单集合 - */ - public List selectDeliveryGoodsNoticeList(DeliveryGoodsNotice deliveryGoodsNotice); - - /** - * 新增发货通知单 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 结果 - */ - public int insertDeliveryGoodsNotice(DeliveryGoodsNotice deliveryGoodsNotice); - - /** - * 修改发货通知单 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 结果 - */ - public int updateDeliveryGoodsNotice(DeliveryGoodsNotice deliveryGoodsNotice); - - /** - * 删除发货通知单 - * - * @param deliveryGoodsNoticeId 发货通知单ID - * @return 结果 - */ - public int deleteDeliveryGoodsNoticeById(Long deliveryGoodsNoticeId); - - /** - * 批量删除发货通知单 - * - * @param deliveryGoodsNoticeIds 需要删除的数据ID - * @return 结果 - */ - public int deleteDeliveryGoodsNoticeByIds(String[] deliveryGoodsNoticeIds); - -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/IDeliveryGoodsDetailService.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/IDeliveryGoodsDetailService.java deleted file mode 100644 index d3fc621d..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/IDeliveryGoodsDetailService.java +++ /dev/null @@ -1,61 +0,0 @@ -package com.ruoyi.manufacture.service; - -import java.util.List; -import com.ruoyi.manufacture.domain.DeliveryGoodsDetail; - -/** - * 发货通知单详情Service接口 - * - * @author ruoyi - * @date 2023-04-12 - */ -public interface IDeliveryGoodsDetailService -{ - /** - * 查询发货通知单详情 - * - * @param deliveryGoodsDetailId 发货通知单详情ID - * @return 发货通知单详情 - */ - public DeliveryGoodsDetail selectDeliveryGoodsDetailById(Long deliveryGoodsDetailId); - - /** - * 查询发货通知单详情列表 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 发货通知单详情集合 - */ - public List selectDeliveryGoodsDetailList(DeliveryGoodsDetail deliveryGoodsDetail); - - /** - * 新增发货通知单详情 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 结果 - */ - public int insertDeliveryGoodsDetail(DeliveryGoodsDetail deliveryGoodsDetail); - - /** - * 修改发货通知单详情 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 结果 - */ - public int updateDeliveryGoodsDetail(DeliveryGoodsDetail deliveryGoodsDetail); - - /** - * 批量删除发货通知单详情 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - public int deleteDeliveryGoodsDetailByIds(String ids); - - /** - * 删除发货通知单详情信息 - * - * @param deliveryGoodsDetailId 发货通知单详情ID - * @return 结果 - */ - public int deleteDeliveryGoodsDetailById(Long deliveryGoodsDetailId); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/IDeliveryGoodsNoticeService.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/IDeliveryGoodsNoticeService.java deleted file mode 100644 index d89accc1..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/IDeliveryGoodsNoticeService.java +++ /dev/null @@ -1,64 +0,0 @@ -package com.ruoyi.manufacture.service; - -import com.ruoyi.manufacture.domain.DeliveryGoodsNotice; - -import java.util.List; - -/** - * 发货通知单Service接口 - * - * @author ruoyi - * @date 2023-04-11 - */ -public interface IDeliveryGoodsNoticeService -{ - /** - * 查询发货通知单 - * - * @param deliveryGoodsNoticeId 发货通知单ID - * @return 发货通知单 - */ - public DeliveryGoodsNotice selectDeliveryGoodsNoticeById(Long deliveryGoodsNoticeId); - - /** - * 查询发货通知单列表 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 发货通知单集合 - */ - public List selectDeliveryGoodsNoticeList(DeliveryGoodsNotice deliveryGoodsNotice); - - /** - * 新增发货通知单 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 结果 - */ - public int insertDeliveryGoodsNotice(DeliveryGoodsNotice deliveryGoodsNotice); - - /** - * 修改发货通知单 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 结果 - */ - public int updateDeliveryGoodsNotice(DeliveryGoodsNotice deliveryGoodsNotice); - - /** - * 批量删除发货通知单 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - public int deleteDeliveryGoodsNoticeByIds(String ids); - - /** - * 删除发货通知单信息 - * - * @param deliveryGoodsNoticeId 发货通知单ID - * @return 结果 - */ - public int deleteDeliveryGoodsNoticeById(Long deliveryGoodsNoticeId); - - public String getId(); -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/impl/DeliveryGoodsDetailServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/impl/DeliveryGoodsDetailServiceImpl.java deleted file mode 100644 index 3d8395b3..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/impl/DeliveryGoodsDetailServiceImpl.java +++ /dev/null @@ -1,94 +0,0 @@ -package com.ruoyi.manufacture.service.impl; - -import java.util.List; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import com.ruoyi.manufacture.mapper.DeliveryGoodsDetailMapper; -import com.ruoyi.manufacture.domain.DeliveryGoodsDetail; -import com.ruoyi.manufacture.service.IDeliveryGoodsDetailService; -import com.ruoyi.common.core.text.Convert; - -/** - * 发货通知单详情Service业务层处理 - * - * @author ruoyi - * @date 2023-04-12 - */ -@Service -public class DeliveryGoodsDetailServiceImpl implements IDeliveryGoodsDetailService -{ - @Autowired - private DeliveryGoodsDetailMapper deliveryGoodsDetailMapper; - - /** - * 查询发货通知单详情 - * - * @param deliveryGoodsDetailId 发货通知单详情ID - * @return 发货通知单详情 - */ - @Override - public DeliveryGoodsDetail selectDeliveryGoodsDetailById(Long deliveryGoodsDetailId) - { - return deliveryGoodsDetailMapper.selectDeliveryGoodsDetailById(deliveryGoodsDetailId); - } - - /** - * 查询发货通知单详情列表 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 发货通知单详情 - */ - @Override - public List selectDeliveryGoodsDetailList(DeliveryGoodsDetail deliveryGoodsDetail) - { - return deliveryGoodsDetailMapper.selectDeliveryGoodsDetailList(deliveryGoodsDetail); - } - - /** - * 新增发货通知单详情 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 结果 - */ - @Override - public int insertDeliveryGoodsDetail(DeliveryGoodsDetail deliveryGoodsDetail) - { - return deliveryGoodsDetailMapper.insertDeliveryGoodsDetail(deliveryGoodsDetail); - } - - /** - * 修改发货通知单详情 - * - * @param deliveryGoodsDetail 发货通知单详情 - * @return 结果 - */ - @Override - public int updateDeliveryGoodsDetail(DeliveryGoodsDetail deliveryGoodsDetail) - { - return deliveryGoodsDetailMapper.updateDeliveryGoodsDetail(deliveryGoodsDetail); - } - - /** - * 删除发货通知单详情对象 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - @Override - public int deleteDeliveryGoodsDetailByIds(String ids) - { - return deliveryGoodsDetailMapper.deleteDeliveryGoodsDetailByIds(Convert.toStrArray(ids)); - } - - /** - * 删除发货通知单详情信息 - * - * @param deliveryGoodsDetailId 发货通知单详情ID - * @return 结果 - */ - @Override - public int deleteDeliveryGoodsDetailById(Long deliveryGoodsDetailId) - { - return deliveryGoodsDetailMapper.deleteDeliveryGoodsDetailById(deliveryGoodsDetailId); - } -} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/impl/DeliveryGoodsNoticeServiceImpl.java b/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/impl/DeliveryGoodsNoticeServiceImpl.java deleted file mode 100644 index 4d34e3e6..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/manufacture/service/impl/DeliveryGoodsNoticeServiceImpl.java +++ /dev/null @@ -1,102 +0,0 @@ -package com.ruoyi.manufacture.service.impl; - -import com.ruoyi.common.core.text.Convert; -import com.ruoyi.manufacture.domain.DeliveryGoodsNotice; -import com.ruoyi.manufacture.mapper.DeliveryGoodsNoticeMapper; -import com.ruoyi.manufacture.service.IDeliveryGoodsNoticeService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.text.SimpleDateFormat; -import java.util.List; - -/** - * 发货通知单Service业务层处理 - * - * @author ruoyi - * @date 2023-04-11 - */ -@Service -public class DeliveryGoodsNoticeServiceImpl implements IDeliveryGoodsNoticeService -{ - @Autowired - private DeliveryGoodsNoticeMapper deliveryGoodsNoticeMapper; - - /** - * 查询发货通知单 - * - * @param deliveryGoodsNoticeId 发货通知单ID - * @return 发货通知单 - */ - @Override - public DeliveryGoodsNotice selectDeliveryGoodsNoticeById(Long deliveryGoodsNoticeId) - { - return deliveryGoodsNoticeMapper.selectDeliveryGoodsNoticeById(deliveryGoodsNoticeId); - } - - /** - * 查询发货通知单列表 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 发货通知单 - */ - @Override - public List selectDeliveryGoodsNoticeList(DeliveryGoodsNotice deliveryGoodsNotice) - { - return deliveryGoodsNoticeMapper.selectDeliveryGoodsNoticeList(deliveryGoodsNotice); - } - - /** - * 新增发货通知单 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 结果 - */ - @Override - public int insertDeliveryGoodsNotice(DeliveryGoodsNotice deliveryGoodsNotice) - { - return deliveryGoodsNoticeMapper.insertDeliveryGoodsNotice(deliveryGoodsNotice); - } - - /** - * 修改发货通知单 - * - * @param deliveryGoodsNotice 发货通知单 - * @return 结果 - */ - @Override - public int updateDeliveryGoodsNotice(DeliveryGoodsNotice deliveryGoodsNotice) - { - return deliveryGoodsNoticeMapper.updateDeliveryGoodsNotice(deliveryGoodsNotice); - } - - /** - * 删除发货通知单对象 - * - * @param ids 需要删除的数据ID - * @return 结果 - */ - @Override - public int deleteDeliveryGoodsNoticeByIds(String ids) - { - return deliveryGoodsNoticeMapper.deleteDeliveryGoodsNoticeByIds(Convert.toStrArray(ids)); - } - - /** - * 删除发货通知单信息 - * - * @param deliveryGoodsNoticeId 发货通知单ID - * @return 结果 - */ - @Override - public int deleteDeliveryGoodsNoticeById(Long deliveryGoodsNoticeId) - { - return deliveryGoodsNoticeMapper.deleteDeliveryGoodsNoticeById(deliveryGoodsNoticeId); - } - - @Override - public String getId() { - String time = new SimpleDateFormat("yyyyMMddHHmmssSSS").format(System.currentTimeMillis()); - return "SCP" + time.substring(2); - } -} diff --git a/ruoyi-admin/src/main/resources/mapper/manufacture/DeliveryGoodsDetailMapper.xml b/ruoyi-admin/src/main/resources/mapper/manufacture/DeliveryGoodsDetailMapper.xml deleted file mode 100644 index 916ed7da..00000000 --- a/ruoyi-admin/src/main/resources/mapper/manufacture/DeliveryGoodsDetailMapper.xml +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select delivery_goods_detail_id, deliver_status,deliver_time,notice_order_number, sales_order_number, enterprise_code, enterprise_name, outbound_type, order_type, finish_product_code, finish_product_name, specification_model, customer_number, type_machine, inventory_unit, common_currency, process_price, product_quantity, amount_money, line, sales_explain, contact_address, customer_contact, contact_number, create_time, create_by, update_by, update_time, remark, all_price_excluding_tax_rmb, all_price_excluding_tax_dollar, all_price_includes_tax, planned_delivery_time, acceptance_time, payment_condition, delivery_condition from delivery_goods_detail - - - - - - - insert into delivery_goods_detail - - delivery_goods_detail_id, - notice_order_number, - sales_order_number, - enterprise_code, - enterprise_name, - finish_product_code, - finish_product_name, - specification_model, - customer_number, - type_machine, - inventory_unit, - common_currency, - process_price, - product_quantity, - amount_money, - line, - version_number, - sales_explain, - standby_one, - standby_two, - create_by, - create_time - - - #{deliveryGoodsDetailId}, - #{noticeOrderNumber}, - #{salesOrderNumber}, - #{enterpriseCode}, - #{enterpriseName}, - #{finishProductCode}, - #{finishProductName}, - #{specificationModel}, - #{customerNumber}, - #{typeMachine}, - #{inventoryUnit}, - #{commonCurrency}, - #{processPrice}, - #{productQuantity}, - #{amountMoney}, - #{line}, - #{versionNumber}, - #{salesExplain}, - #{standbyOne}, - #{standbyTwo}, - #{createBy}, - now() - - - - - update delivery_goods_detail - - notice_order_number = #{noticeOrderNumber}, - sales_order_number = #{salesOrderNumber}, - enterprise_code = #{enterpriseCode}, - enterprise_name = #{enterpriseName}, - finish_product_code = #{finishProductCode}, - finish_product_name = #{finishProductName}, - specification_model = #{specificationModel}, - customer_number = #{customerNumber}, - type_machine = #{typeMachine}, - inventory_unit = #{inventoryUnit}, - common_currency = #{commonCurrency}, - process_price = #{processPrice}, - product_quantity = #{productQuantity}, - amount_money = #{amountMoney}, - line = #{line}, - version_number = #{versionNumber}, - sales_explain = #{salesExplain}, - standby_one = #{standbyOne}, - standby_two = #{standbyTwo}, - update_by = #{updateBy}, - update_time = CONCAT_WS(',',NOW(),update_time), - - where delivery_goods_detail_id = #{deliveryGoodsDetailId} - - - - delete from delivery_goods_detail where delivery_goods_detail_id = #{deliveryGoodsDetailId} - - - - delete from delivery_goods_detail where delivery_goods_detail_id in - - #{deliveryGoodsDetailId} - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/mapper/manufacture/DeliveryGoodsNoticeMapper.xml b/ruoyi-admin/src/main/resources/mapper/manufacture/DeliveryGoodsNoticeMapper.xml deleted file mode 100644 index 49727d9b..00000000 --- a/ruoyi-admin/src/main/resources/mapper/manufacture/DeliveryGoodsNoticeMapper.xml +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - select delivery_goods_notice_id, notice_order_number, delivery_date, information_type, template_type, enterprise_code, enterprise_name, business_members, related_delivery_number, customer_contact, customer_factory, order_type, delivery_address, export_sales, stock_number, customer_number, contact_number,stock_name, remarks, product_quantity, voucher_preparation, amount_money, delivery_goods_flag, all_price_excluding_tax_rmb, first_add_time, all_price_excluding_tax_dollar, update_info_time, all_price_includes_tax, planned_delivery_time, acceptance_time, payment_condition, delivery_condition, deliver_time, create_time, create_by, update_by, update_time from delivery_goods_notice - - - - - - - - insert into delivery_goods_notice - - notice_order_number, - delivery_date, - enterprise_code, - enterprise_name, - customer_contact, - customer_factory, - delivery_address, - export_sales, - stock_number, - stock_name, - remarks, - voucher_preparation, - delivery_goods_flag, - standby_one, - standby_two, - create_by, - first_add_time, - create_time, - - - #{noticeOrderNumber}, - #{deliveryDate}, - #{enterpriseCode}, - #{enterpriseName}, - #{customerContact}, - #{customerFactory}, - #{deliveryAddress}, - #{exportSales}, - #{stockNumber}, - #{stockName}, - #{remarks}, - #{voucherPreparation}, - #{deliveryGoodsFlag}, - #{standbyOne}, - #{standbyTwo}, - #{createBy}, - NOW(), - NOW(), - - - - - update delivery_goods_notice - - notice_order_number = #{noticeOrderNumber}, - delivery_date = #{deliveryDate}, - enterprise_code = #{enterpriseCode}, - enterprise_name = #{enterpriseName}, - customer_contact = #{customerContact}, - customer_factory = #{customerFactory}, - delivery_address = #{deliveryAddress}, - export_sales = #{exportSales}, - stock_number = #{stockNumber}, - stock_name = #{stockName}, - remarks = #{remarks}, - voucher_preparation = #{voucherPreparation}, - delivery_goods_flag = #{deliveryGoodsFlag}, - standby_one = #{standbyOne}, - standby_two = #{standbyTwo}, - update_info_time = CONCAT_WS(',',NOW(),update_info_time), - update_time = CONCAT_WS(',',NOW(),update_time), - - where delivery_goods_notice_id = #{deliveryGoodsNoticeId} - - - - delete from delivery_goods_notice where delivery_goods_notice_id = #{deliveryGoodsNoticeId} - - - - delete from delivery_goods_notice where delivery_goods_notice_id in - - #{deliveryGoodsNoticeId} - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/add.html b/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/add.html deleted file mode 100644 index f548679d..00000000 --- a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/add.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/deliveryGoodsDetail.html b/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/deliveryGoodsDetail.html deleted file mode 100644 index d08d774f..00000000 --- a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/deliveryGoodsDetail.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
- - -
-
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/edit.html b/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/edit.html deleted file mode 100644 index cba3c4e7..00000000 --- a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsDetail/edit.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - -
-
- -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/add.html b/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/add.html deleted file mode 100644 index dd9153ba..00000000 --- a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/add.html +++ /dev/null @@ -1,698 +0,0 @@ - - - - - - - - - - - -
-
-
- -
- -
-
-
- -
- -
- - -
-
-
-
- -
- - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - -
-
-
- -
- -
-
- -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - -
-
- - -
-
-
-
-

-

订单信息

-  订单信息 -
-
-
-
- -
- - - - - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/deliveryGoodsNotice.html b/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/deliveryGoodsNotice.html deleted file mode 100644 index 3971990f..00000000 --- a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/deliveryGoodsNotice.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - - - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
- - -
-
-
-
-
- - - - \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/edit.html b/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/edit.html deleted file mode 100644 index 87d3187f..00000000 --- a/ruoyi-admin/src/main/resources/templates/manufacture/deliveryGoodsNotice/edit.html +++ /dev/null @@ -1,713 +0,0 @@ - - - - - - - - - - - -
-
- -
- -
- -
-
-
- -
- -
- - -
-
-
-
- -
- - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - -
-
-
- -
- -
-
- -
- -
- - -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - -
-
- - -
-
- -
-
-

-

订单信息

-  订单信息 -  删除订单 -
-
-
-
- -
- - - - - - - - \ No newline at end of file