Commit 15a10532 by qwmqiuwenmin

Merge branch 'developer' of http://115.159.76.241/haoban3.0/haoban-manage3.0.git into developer

parents e987cdcc b987c597
......@@ -202,6 +202,8 @@ public class AuditController extends WebBaseController{
Integer sex = json.getInteger("sex")==null?0:json.getInteger("sex");
String phoneNumber = json.getString("phoneNumber")==null?"":json.get("phoneNumber").toString();
String nationCode = json.getString("nationCode")==null?"":json.get("nationCode").toString();
String auditStaffId = json.getString("staffId")==null?"":json.get("staffId").toString();
String storeId = audit.getCommitStoreId();
if(auditStatus == 1){
//审核同意
......@@ -222,7 +224,7 @@ public class AuditController extends WebBaseController{
staffClerkRelation.setStoreId(storeId);
staffClerkRelation.setWxEnterpriseId(wxEnterpriseId);
staffClerkRelation.setWxUserId(wxUserId);
staffClerkRelation.setStaffId(staffId);
staffClerkRelation.setStaffId(auditStaffId);
staffClerkRelationApiService.insertOrUpdate(staffClerkRelation);
audit.setAuditStatus(1);
//发送消息
......
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