到货单审批后回写质检信息

This commit is contained in:
hefengkai 2024-10-19 18:22:01 +08:00
parent 6ce8314bf8
commit d8888c2aa6
1 changed files with 15 additions and 0 deletions

View File

@ -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<String,String> createDhjyd_RequiresNew(ArriveVO arriveVO) throws BusinessException;
/***
*到货检验单审批完成回写到货单的质检明细
* @param AggDhjydMasterVO
* @return
*/
public Map<String,String> writeBackQc(AggDhjydMasterVO aggDhjydMasterVO) throws BusinessException;
/***
*到货检验审批收回时删除对应质量信息
* @param AggDhjydMasterVO
* @return
*/
public Map<String,String> deleteQc(AggDhjydMasterVO aggDhjydMasterVO) throws BusinessException;
}