md
This commit is contained in:
parent
ada0aaf330
commit
db66fbf903
@ -43,7 +43,7 @@ public class EmisProblemType extends BaseEntity
|
||||
private String typeNameEn;
|
||||
/* 是否发送短信 */
|
||||
private Integer isSendSms;
|
||||
/* 对象类型 all-全部 in-内部 out-外部 */
|
||||
/* 对象类型 0-全部 1-内部 2-外部 */
|
||||
private String objectType;
|
||||
/* 顺延天数 */
|
||||
private Integer delayDay;
|
||||
|
||||
@ -737,10 +737,17 @@ public class EmisBaseService {
|
||||
|
||||
EmisWaybill waybill = getWaybillByBillCode(scanRecord.getMainBillCode());
|
||||
|
||||
content="问题件 "+waybill.getProblemTypeName()+"("+waybill.getProblemCause()+")";
|
||||
if(isInner){
|
||||
content=scanRecord.getScanSite()+","+scanRecord.getScanMan()+",问题件,"+scanDateStr+","+content;
|
||||
// 判断问题件类型,外部可以查看,内部不能查看 1-内部
|
||||
EmisProblemType promType=getEmisProblemTypeByType(waybill.getProblemType());
|
||||
if("1".equals(promType.getObjectType()) ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
content = "问题件 " + waybill.getProblemTypeName() + "(" + waybill.getProblemCause() + ")";
|
||||
if (isInner) {
|
||||
content = scanRecord.getScanSite() + "," + scanRecord.getScanMan() + ",问题件," + scanDateStr + "," + content;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// 合包
|
||||
|
||||
Loading…
Reference in New Issue
Block a user