Commit 3f5f0216 by songyinghui

feature: 订单纬度审核素材字段

parent bb8d9b7b
...@@ -74,6 +74,8 @@ public class MemberOrderHoloBo implements Serializable { ...@@ -74,6 +74,8 @@ public class MemberOrderHoloBo implements Serializable {
private Long contentMaterialId; private Long contentMaterialId;
private Long auditMaterialId;
/** /**
* 分享导购id * 分享导购id
*/ */
...@@ -273,4 +275,12 @@ public class MemberOrderHoloBo implements Serializable { ...@@ -273,4 +275,12 @@ public class MemberOrderHoloBo implements Serializable {
public void setDeleteFlag(Integer deleteFlag) { public void setDeleteFlag(Integer deleteFlag) {
this.deleteFlag = deleteFlag; this.deleteFlag = deleteFlag;
} }
public Long getAuditMaterialId() {
return auditMaterialId;
}
public void setAuditMaterialId(Long auditMaterialId) {
this.auditMaterialId = auditMaterialId;
}
} }
...@@ -482,6 +482,8 @@ public class QywxGroupMsgTaskApiServiceImpl implements QywxGroupMsgTaskApiServic ...@@ -482,6 +482,8 @@ public class QywxGroupMsgTaskApiServiceImpl implements QywxGroupMsgTaskApiServic
MaterialDataAdaptor.MaterialBizInfo materialBizInfo = materialDataAdaptor.queryMaterialBizInfo(eorderDTO.getEnterpriseId(), eorderDTO.getMemberId(), eorderDTO.getOrderCreateTime(), null); MaterialDataAdaptor.MaterialBizInfo materialBizInfo = materialDataAdaptor.queryMaterialBizInfo(eorderDTO.getEnterpriseId(), eorderDTO.getMemberId(), eorderDTO.getOrderCreateTime(), null);
if (materialBizInfo != null) { if (materialBizInfo != null) {
orderHoloBo.setContentMaterialId(Long.parseLong(materialBizInfo.getBizId())); orderHoloBo.setContentMaterialId(Long.parseLong(materialBizInfo.getBizId()));
Long materialBaseId = materialDataAdaptor.queryMaterialBaseId(eorderDTO.getEnterpriseId(), orderHoloBo.getContentMaterialId());
orderHoloBo.setAuditMaterialId(materialBaseId);
orderHoloBo.setShareClerkId(materialBizInfo.getClerkId()); orderHoloBo.setShareClerkId(materialBizInfo.getClerkId());
orderHoloBo.setShareStoreId(materialBizInfo.getStoreId()); orderHoloBo.setShareStoreId(materialBizInfo.getStoreId());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment