md
This commit is contained in:
parent
8836fe091a
commit
dd0187465c
@ -11,6 +11,10 @@
|
||||
package com.xdadan.erp.emis.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.xdadan.erp.emis.domain.EmisWaybill;
|
||||
import com.xdadan.erp.emis.domain.enumtype.WaybillAttachType;
|
||||
import com.xdadan.erp.emis.mapper.EmisWaybillMapper;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.xdadan.erp.emis.domain.EmisWaybillAttachment;
|
||||
@ -29,6 +33,9 @@ public class EmisWaybillAttachmentServiceImpl implements IEmisWaybillAttachmentS
|
||||
@Autowired
|
||||
private EmisWaybillAttachmentMapper emisWaybillAttachmentMapper;
|
||||
|
||||
@Autowired
|
||||
private EmisWaybillMapper emisWaybillMapper;
|
||||
|
||||
/**
|
||||
* 查询运单附件
|
||||
*
|
||||
@ -62,7 +69,18 @@ public class EmisWaybillAttachmentServiceImpl implements IEmisWaybillAttachmentS
|
||||
@Override
|
||||
public int insertEmisWaybillAttachment(EmisWaybillAttachment emisWaybillAttachment)
|
||||
{
|
||||
return emisWaybillAttachmentMapper.insertEmisWaybillAttachment(emisWaybillAttachment);
|
||||
|
||||
// 插入货物图片
|
||||
emisWaybillAttachmentMapper.insertEmisWaybillAttachment(emisWaybillAttachment);
|
||||
// 如果是货物图片,需要给运单加上货物图片标识
|
||||
if(WaybillAttachType.GOODS_PIC.typeCode.equals(emisWaybillAttachment.getAttachType())){
|
||||
EmisWaybill emisWaybill = new EmisWaybill();
|
||||
emisWaybill.setId(emisWaybillAttachment.getWaybillId());
|
||||
emisWaybill.setGoodsPics("1");
|
||||
emisWaybillMapper.updateEmisWaybill(emisWaybill);
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user