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

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