test_add_org.py 2.09 KB
# 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,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,
            "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)