委托方导入
This commit is contained in:
@@ -352,8 +352,20 @@ public class UserShipperAPI extends BaseController {
|
||||
@PostMapping("/wxGetPhoneNumber")
|
||||
public AjaxResult wxGetPhoneNumber(@RequestBody com.mhd.user.interfaces.dto.wechat.WxPhoneNumberDTO dto) {
|
||||
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||
Long organizationId = (loginUser != null && loginUser.getUserPo() != null)
|
||||
Long organizationId = (loginUser != null && loginUser.getUserPo() != null)
|
||||
? loginUser.getUserPo().getOrganizationId() : null;
|
||||
return wechatMiniAppService.wxGetPhoneNumber(dto, organizationId);
|
||||
}
|
||||
|
||||
@Log(title = "托运人管理-导入", description = "从Excel导入委托方", businessType = BusinessType.IMPORT)
|
||||
@ApiOperation("导入委托方(Excel批量)")
|
||||
@PostMapping("/import")
|
||||
public AjaxResult importShipper(@RequestParam("file") org.springframework.web.multipart.MultipartFile file) {
|
||||
try {
|
||||
return userShipperApplicationService.importShipperFromExcel(file);
|
||||
} catch (Exception e) {
|
||||
log.error("导入委托方失败", e);
|
||||
return AjaxResult.error("导入失败:" + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user