Authored by qianjun

Update purchase_allocation.md

1 --------------------- 1 ---------------------
2 -## 对外接口需要通过portal-gateway透传到服务,公共参数 client_type和client_secret 2 +## 说明:对外接口需要通过portal-gateway透传到服务,公共参数 client_type和client_secret
3 ### 1.portal-gateway统一入参为key为params,value为按接口文档入参要求封装一个java对象,用fastjson转一下,post方式提交,转换为json格式字符串。例如: params={"productSkns":[50000074,50000076],"warehouseId":12}) 3 ### 1.portal-gateway统一入参为key为params,value为按接口文档入参要求封装一个java对象,用fastjson转一下,post方式提交,转换为json格式字符串。例如: params={"productSkns":[50000074,50000076],"warehouseId":12})
4 ### 2.北京服务调用南京服务client_type是yoho(android客户端,client_type是android),client_secret 是md5加密字符串。例如:params=json格式字符串和client_type=yoho对应盐值(fd4ad5fcsa0de589af23234ks1923ks)的md5加密字符串 4 ### 2.北京服务调用南京服务client_type是yoho(android客户端,client_type是android),client_secret 是md5加密字符串。例如:params=json格式字符串和client_type=yoho对应盐值(fd4ad5fcsa0de589af23234ks1923ks)的md5加密字符串
5 ### 3.形式为:params=json格式字符串&client_type=yoho&client_secret=md5加密字符串。例如:params={"productSkns":[50000074,50000076],"warehouseId":12}&client_type=yoho&client_secret=d488c0b90a68f881598253f75d0005ff) 5 ### 3.形式为:params=json格式字符串&client_type=yoho&client_secret=md5加密字符串。例如:params={"productSkns":[50000074,50000076],"warehouseId":12}&client_type=yoho&client_secret=d488c0b90a68f881598253f75d0005ff)
@@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
13 - [4.更新商品的自动补货开关](#4.更新商品的自动补货开关) 13 - [4.更新商品的自动补货开关](#4.更新商品的自动补货开关)
14 - [5.线下门店可售的品牌列表](5.线下门店可售的品牌列表) 14 - [5.线下门店可售的品牌列表](5.线下门店可售的品牌列表)
15 - [6.通过仓库ID获取门店ID](#6.通过仓库ID获取门店ID) 15 - [6.通过仓库ID获取门店ID](#6.通过仓库ID获取门店ID)
16 ---------------------- 16 +
17 17
18 ## 1.门店可卖上架商品列表 ## 18 ## 1.门店可卖上架商品列表 ##
19 19
@@ -75,7 +75,7 @@ @@ -75,7 +75,7 @@
75 } 75 }
76 ``` 76 ```
77 77
78 -## 2.判读一个或多个SKN,是否是某个门店可卖的上架商品 78 +## 2.判读一个或多个SKN,是否是某个门店可卖的上架商品 ##
79 79
80 > 接口名: `/PurchaseAllocationController/storeSaleProducts` 80 > 接口名: `/PurchaseAllocationController/storeSaleProducts`
81 81
@@ -106,7 +106,7 @@ @@ -106,7 +106,7 @@
106 } 106 }
107 ``` 107 ```
108 108
109 -## 3.查询商品的自动补货开关 109 +## 3.查询商品的自动补货开关 ##
110 110
111 > 接口名: `/PurchaseAllocationController/queryProductReplenishSwitches ` 111 > 接口名: `/PurchaseAllocationController/queryProductReplenishSwitches `
112 ### 入参 112 ### 入参
@@ -136,7 +136,7 @@ @@ -136,7 +136,7 @@
136 } 136 }
137 ``` 137 ```
138 138
139 -## 4.更新商品的自动补货开关 139 +## 4.更新商品的自动补货开关 ##
140 140
141 > 接口名: `/PurchaseAllocationController/updateProductReplenishSwitches` 141 > 接口名: `/PurchaseAllocationController/updateProductReplenishSwitches`
142 142
@@ -162,7 +162,7 @@ @@ -162,7 +162,7 @@
162 } 162 }
163 ``` 163 ```
164 164
165 -## 5.线下门店可售的品牌列表 165 +## 5.线下门店可售的品牌列表 ##
166 166
167 > 接口名: `/PurchaseAllocationController/storeSaleBrandList` 167 > 接口名: `/PurchaseAllocationController/storeSaleBrandList`
168 168
@@ -189,7 +189,7 @@ @@ -189,7 +189,7 @@
189 "message": "操作成功" 189 "message": "操作成功"
190 } 190 }
191 ``` 191 ```
192 -## 6.通过仓库ID获取门店ID 192 +## 6.通过仓库ID获取门店ID ##
193 193
194 > 接口名: `/StoreController/getStoreId` 194 > 接口名: `/StoreController/getStoreId`
195 195