From d8888c2aa6981f84b07788c3d159f95fd383bae6 Mon Sep 17 00:00:00 2001 From: hefengkai <958118178@qq.com> Date: Sat, 19 Oct 2024 18:22:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B0=E8=B4=A7=E5=8D=95=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E5=90=8E=E5=9B=9E=E5=86=99=E8=B4=A8=E6=A3=80=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../itf/pu/dhjyd/dhjydmaster/IArriveToDhjyd.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pu/src/public/nc/itf/pu/dhjyd/dhjydmaster/IArriveToDhjyd.java b/pu/src/public/nc/itf/pu/dhjyd/dhjydmaster/IArriveToDhjyd.java index 8ec3716..b4a68c1 100644 --- a/pu/src/public/nc/itf/pu/dhjyd/dhjydmaster/IArriveToDhjyd.java +++ b/pu/src/public/nc/itf/pu/dhjyd/dhjydmaster/IArriveToDhjyd.java @@ -2,6 +2,7 @@ package nc.itf.pu.dhjyd.dhjydmaster; import java.util.Map; +import nc.vo.pu.dhjyd.AggDhjydMasterVO; import nc.vo.pu.m23.entity.ArriveVO; import nc.vo.pub.BusinessException; @@ -17,5 +18,19 @@ public interface IArriveToDhjyd { * @return */ public Map createDhjyd_RequiresNew(ArriveVO arriveVO) throws BusinessException; + + /*** + *到货检验单审批完成回写到货单的质检明细 + * @param AggDhjydMasterVO + * @return + */ + public Map writeBackQc(AggDhjydMasterVO aggDhjydMasterVO) throws BusinessException; + + /*** + *到货检验审批收回时删除对应质量信息 + * @param AggDhjydMasterVO + * @return + */ + public Map deleteQc(AggDhjydMasterVO aggDhjydMasterVO) throws BusinessException; }