委托加工添加发货工厂字段和明细添加金属元素字段

This commit is contained in:
潘荣晟
2026-02-09 16:52:56 +08:00
parent c8302e4d23
commit 356e330c7c

View File

@@ -1,34 +1,34 @@
//package com.zt.plat.module.base.service.plandate; package com.zt.plat.module.base.service.plandate;
//
//import com.zt.plat.framework.common.pojo.CommonResult; import com.zt.plat.framework.common.pojo.CommonResult;
//import com.zt.plat.module.base.controller.admin.plandate.vo.PlanDatePageReqVO; import com.zt.plat.module.base.controller.admin.plandate.vo.PlanDatePageReqVO;
//import com.zt.plat.module.base.controller.admin.plandate.vo.PlanDateRespVO; import com.zt.plat.module.base.controller.admin.plandate.vo.PlanDateRespVO;
//import com.zt.plat.module.base.controller.admin.plandate.vo.RealTimeReportsTreeRespVO; import com.zt.plat.module.base.controller.admin.plandate.vo.RealTimeReportsTreeRespVO;
//import com.zt.plat.module.receivedeliver.api.bill.BillMainApi; import com.zt.plat.module.receivedeliver.api.bill.BillMainApi;
//import com.zt.plat.module.receivedeliver.api.bill.dto.billMain.BillMainExecutionVolumeReqDTO; import com.zt.plat.module.receivedeliver.api.bill.dto.billMain.BillMainExecutionVolumeReqDTO;
//import com.zt.plat.module.receivedeliver.api.bill.dto.billMain.BillMainExecutionVolumeStatisticsRespDTO; import com.zt.plat.module.receivedeliver.api.bill.dto.billMain.BillMainExecutionVolumeStatisticsRespDTO;
//import jakarta.annotation.Resource; import jakarta.annotation.Resource;
//import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
//import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
//
//import java.util.ArrayList; import java.util.ArrayList;
//import java.util.List; import java.util.List;
//
//@Service @Service
//@Validated @Validated
//public class RealTimeReportsServiceImpl implements RealTimeReportsService{ public class RealTimeReportsServiceImpl implements RealTimeReportsService{
//
// @Resource @Resource
// private PlanDateService planDateService; private PlanDateService planDateService;
// @Resource @Resource
// private PlanOrderService planOrderService; private PlanOrderService planOrderService;
// @Resource @Resource
// private BillMainApi billMainApi; private BillMainApi billMainApi;
// @Override @Override
// public List<RealTimeReportsTreeRespVO> tree(PlanDatePageReqVO reqVO) { public List<RealTimeReportsTreeRespVO> tree(PlanDatePageReqVO reqVO) {
// List<PlanDateRespVO> planDate = planDateService.listPlanDateTree(reqVO); List<PlanDateRespVO> planDate = planDateService.listPlanDateTree(reqVO);
// BillMainExecutionVolumeReqDTO billMainExecutionVolumeReqDTO=new BillMainExecutionVolumeReqDTO(); BillMainExecutionVolumeReqDTO billMainExecutionVolumeReqDTO=new BillMainExecutionVolumeReqDTO();
// CommonResult<List<BillMainExecutionVolumeStatisticsRespDTO>> billMainExecutionVolumeList = billMainApi.getBillMainExecutionVolumeList(billMainExecutionVolumeReqDTO); CommonResult<List<BillMainExecutionVolumeStatisticsRespDTO>> billMainExecutionVolumeList = billMainApi.getBillMainExecutionVolumeList(billMainExecutionVolumeReqDTO);
// return new ArrayList<>(); return new ArrayList<>();
// } }
//} }