test_add_org.py
2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Author: jipeihong 2017年11月7日14:52:52
from atdd.PcPost import PcPost
from tests.Staff_Management.Organization.public_org import PulbicOrg
import random
class AddOrg(PcPost):
interfaceUrl = "/contact/Apicp/Department/Save"
def setUp(self):
self.do_login(self.host, self.mobile, self.psw, self.domain)
# 添加非门店
def test_add_org(self):
x = random.randint(0,10000)
top_dpId = PulbicOrg().get_top_org()
data = {
"department_id": None,
"parent_id": top_dpId, # 顶级部门
"dp_name": "总部组织"+ str(x),
"is_all": 1,
"is_dept": 0,
"dpt_id": "755DD9820A69039F18591A29AC42531A", # 组织类型
"dp_serial_num": 1,
"dp_leader_uids[0]": self.jipeihong_uid
}
result = self.PcPost(self.interfaceUrl,data)
print(result)
return result
# 新增门店
def test_add_mendian(self):
x = random.randint(0,1000)
top_dpId = PulbicOrg().get_top_org()
data = {
"department_id": None,
"parent_id": top_dpId, # 顶级部门
"dp_name": "门店"+ str(x),
"is_all": 1,
"is_dept": 0,
"extList[755DD98A0A69039F18591A29234CC182]": 1,
"extList[755DD98B0A69039F18591A29737749E6]": 2,
"extList[755DD98C0A69039F18591A295933D690]": 1,
"extList[755DD98D0A69039F18591A2959748F91][province]": "山西省",
"extList[755DD98D0A69039F18591A2959748F91][city]": "晋城市",
"extList[755DD98D0A69039F18591A2959748F91][town]": "泽州县",
"extList[755DD98E0A69039F18591A2935DC27D1]": 222,
"extList[755DD98F0A69039F18591A2929431878]": 222,
"extList[755DD9900A69039F18591A298A2C8C20]": 22222,
"extList[755DD9920A69039F18591A29EFFCB47E]": 222,
"dpt_id": "755DD9880A69039F18591A294E089AC7",
"dp_serial_num": 33,
"dp_leader_uids[0]": self.jipeihong_uid
}
result = self.PcPost(self.interfaceUrl,data)
print(result)