Commit 36ae2380 by ilal

提交

parent 8c6b4b0c
......@@ -1481,13 +1481,14 @@ public class CrmController {
Integer cid = crmClientData.getId();
if(linkname != null && linkcellphone != null) {
CrmClientContacts contacts = new CrmClientContacts();
contacts.setName(linkname);
contacts.setCellphone(linkcellphone);
contacts.setCompany(linkcompany);
if (linkgender == "女")
if (("女").equals(linkgender))
contacts.setGender(0);
else if (linkgender == "男")
else if (("男").equals(linkgender))
contacts.setGender(1);
else
contacts.setGender(null);
......@@ -1501,6 +1502,10 @@ public class CrmController {
contacts.insert();
}
}
}
return ResultUtil.success("导入成功");
}
......
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