|
|
|
@ -391,18 +391,21 @@ public class LoginController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/spms/sub/inv/warehouse/addOrder")
|
|
|
|
|
public BaseResponse addOrder(@RequestBody ioUploadOrderResponse ioUploadOrderRespons) {
|
|
|
|
|
String billNo = ioOrderUtilsService.getIoder(ioUploadOrderRespons);
|
|
|
|
|
String billNo = ioOrderUtilsService.getIoder(ioUploadOrderRespons);
|
|
|
|
|
return ResultVOUtils.success(billNo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Value("${WEB_TITLE}")
|
|
|
|
|
private String WEB_TITLE;
|
|
|
|
|
@Value("${WEB_SUB_TITLE}")
|
|
|
|
|
private String WEB_SUB_TITLE;
|
|
|
|
|
|
|
|
|
|
@GetMapping("/spms/getTitleConfig")
|
|
|
|
|
public BaseResponse getTitleConfig() {
|
|
|
|
|
WebTitleResponse webTitleResponse = new WebTitleResponse();
|
|
|
|
|
webTitleResponse.setTitle(WEB_TITLE);
|
|
|
|
|
webTitleResponse.setSubTitle(WEB_SUB_TITLE);
|
|
|
|
|
return ResultVOUtils.success(webTitleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|