Commit 3e874082 authored by 张永's avatar 张永

加参数

parent 7c0167e8
...@@ -240,6 +240,8 @@ public class BrandController { ...@@ -240,6 +240,8 @@ public class BrandController {
@ApiImplicitParam(paramType = "query", name = "shopNo", dataType = "String", required = true, value = "店用编号", defaultValue = ""), @ApiImplicitParam(paramType = "query", name = "shopNo", dataType = "String", required = true, value = "店用编号", defaultValue = ""),
@ApiImplicitParam(paramType = "query", name = "custNo", dataType = "String", required = true, value = "用户编号", defaultValue = ""), @ApiImplicitParam(paramType = "query", name = "custNo", dataType = "String", required = true, value = "用户编号", defaultValue = ""),
@ApiImplicitParam(paramType = "query", name = "brandId", dataType = "String", required = true, value = "品牌ID", defaultValue = ""), @ApiImplicitParam(paramType = "query", name = "brandId", dataType = "String", required = true, value = "品牌ID", defaultValue = ""),
@ApiImplicitParam(paramType = "query", name = "email", dataType = "String", required = false, value = "email", defaultValue = ""),
@ApiImplicitParam(paramType = "query", name = "contact", dataType = "String", required = false, value = "contact", defaultValue = ""),
}) })
@RequestMapping(value = "/saveAuthorizationIP",method=RequestMethod.POST) @RequestMapping(value = "/saveAuthorizationIP",method=RequestMethod.POST)
public String authorizationIP(HttpServletRequest request) { public String authorizationIP(HttpServletRequest request) {
...@@ -248,6 +250,8 @@ public class BrandController { ...@@ -248,6 +250,8 @@ public class BrandController {
String shopNo = request.getParameter("shopNo"); String shopNo = request.getParameter("shopNo");
String custNo = request.getParameter("custNo"); String custNo = request.getParameter("custNo");
String brandId = request.getParameter("brandId"); String brandId = request.getParameter("brandId");
String email = request.getParameter("email");
String contact = request.getParameter("contact");
if(!StringUtil.isNotEmpty(orgNO,ipId,shopNo,custNo,brandId)) { if(!StringUtil.isNotEmpty(orgNO,ipId,shopNo,custNo,brandId)) {
return Rjx.json().setCode(-1).setMessage(I18NUtils.getMessage(orgNO,ipId,brandId,shopNo,custNo, "Msg_Parameter_empty")).toJson(); return Rjx.json().setCode(-1).setMessage(I18NUtils.getMessage(orgNO,ipId,brandId,shopNo,custNo, "Msg_Parameter_empty")).toJson();
} }
...@@ -257,7 +261,8 @@ public class BrandController { ...@@ -257,7 +261,8 @@ public class BrandController {
params.put("shopNo", shopNo); params.put("shopNo", shopNo);
params.put("custNo", custNo); params.put("custNo", custNo);
params.put("brandId", brandId); params.put("brandId", brandId);
params.put("email", email);
params.put("contact", contact);
return brandService.saveAuthorizationIP(params); return brandService.saveAuthorizationIP(params);
} }
......
...@@ -178,7 +178,8 @@ public class BrandServiceImpl implements BrandService { ...@@ -178,7 +178,8 @@ public class BrandServiceImpl implements BrandService {
String custNo = params.get("custNo")+""; String custNo = params.get("custNo")+"";
String shopNo = params.get("shopNo")+""; String shopNo = params.get("shopNo")+"";
String brandId = params.get("brandId")+""; String brandId = params.get("brandId")+"";
String contact = params.get("contact")+"";
String email = params.get("email")+"";
TCustomer customer = userService.getCustomer(custNo, shopNo); TCustomer customer = userService.getCustomer(custNo, shopNo);
if(customer != null) { if(customer != null) {
List<TShop> shops= customer.gettShops(); List<TShop> shops= customer.gettShops();
...@@ -191,6 +192,8 @@ public class BrandServiceImpl implements BrandService { ...@@ -191,6 +192,8 @@ public class BrandServiceImpl implements BrandService {
TIPBrandAuthorize auth = new TIPBrandAuthorize(); TIPBrandAuthorize auth = new TIPBrandAuthorize();
auth.setsIPID(ipId); auth.setsIPID(ipId);
auth.setsOrgNO(orgNO); auth.setsOrgNO(orgNO);
auth.setsEmail(email);
auth.setsContact(contact);
auth.setsBrandID(brandId); auth.setsBrandID(brandId);
auth.setsCompanyName(shop.getsShopName()); auth.setsCompanyName(shop.getsShopName());
auth.setsAddress(shop.getsProvince()+""+shop.getsCity()+""+shop.getsDistrict()+""+shop.getsAddress()); auth.setsAddress(shop.getsProvince()+""+shop.getsCity()+""+shop.getsDistrict()+""+shop.getsAddress());
......
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