Commit e1e6e6e2 by huangZW

111

parent 6001798f
......@@ -43,10 +43,21 @@ public class AuditDTO implements Serializable {
private Integer statusFlag;
private String detail;
private String wxEnterpriseId;
private static final long serialVersionUID = 1L;
public String getCommitStoreName() {
public String getWxEnterpriseId() {
return wxEnterpriseId;
}
public void setWxEnterpriseId(String wxEnterpriseId) {
this.wxEnterpriseId = wxEnterpriseId;
}
public String getCommitStoreName() {
return commitStoreName;
}
......
......@@ -331,6 +331,9 @@ public class ClerkController extends WebBaseController{
audit.setCommitStoreId(storeId);
audit.setCommitStoreName(store.getStoreName());
audit.setAuditStatus(0);
audit.setWxEnterpriseId(wxEnterpriseId);
audit.setEnterpriseId(store.getEnterpriseId());
audit.setStatusFlag(1);
JSONObject json = new JSONObject();
json.put("clerkCode", clerkCode);
......@@ -375,6 +378,9 @@ public class ClerkController extends WebBaseController{
audit.setCommitStoreId(storeId);
audit.setCommitStoreName(store.getStoreName());
audit.setAuditStatus(0);
audit.setWxEnterpriseId(wxEnterpriseId);
audit.setEnterpriseId(store.getEnterpriseId());
audit.setStatusFlag(1);
JSONObject json = new JSONObject();
json.put("clerkId", clerkId);
......@@ -557,6 +563,9 @@ public class ClerkController extends WebBaseController{
audit.setCommitStoreId(clerk.getStoreId());
audit.setCommitStoreName(store.getStoreName());
audit.setAuditStatus(0);
audit.setWxEnterpriseId(wxEnterpriseId);
audit.setEnterpriseId(store.getEnterpriseId());
audit.setStatusFlag(1);
JSONObject json = new JSONObject();
json.put("clerkId", clerkId);
......@@ -601,6 +610,9 @@ public class ClerkController extends WebBaseController{
audit.setCommitStoreId(clerk.getStoreId());
audit.setCommitStoreName(store.getStoreName());
audit.setAuditStatus(1);
audit.setWxEnterpriseId(staffClerkRelation.getWxEnterpriseId());
audit.setEnterpriseId(store.getEnterpriseId());
audit.setStatusFlag(1);
JSONObject json = new JSONObject();
json.put("clerkId", clerkId);
......
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