|
@@ -1434,6 +1434,20 @@ class APIMgr():
|
|
|
}
|
|
|
response = self.s.post(f"{cfg.target_host}/front/wx_dataExport/searchExport", headers=hearders,data=data)
|
|
|
return response
|
|
|
+ #已购产品列表
|
|
|
+ def buy_productlist(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/entManageApplication/buyProductList", headers=hearders)
|
|
|
+ return response
|
|
|
+ #使用人员列表
|
|
|
+ def usepersonlist(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "wait_empower_id": 31142
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/entManageApplication/usePersonList", headers=hearders , json= json)
|
|
|
+ return response
|
|
|
+
|
|
|
|
|
|
#医械通我认领的经销商
|
|
|
def distributor(self):
|