md
This commit is contained in:
parent
738b48a739
commit
4c69ea078a
@ -109,10 +109,9 @@ public class Oms2cWarehouseInController extends BaseController
|
||||
*/
|
||||
@Log(title = "导出进仓单文件", businessType = BusinessType.EXPORT)
|
||||
@GetMapping("/exportWarehouseInTpl")
|
||||
public void exportWarehouseInTpl(HttpServletResponse servletResponse, String inNo) throws IOException {
|
||||
public void exportWarehouseInTpl(HttpServletResponse servletResponse, @RequestBody WaybillOrder waybillOrder) throws IOException {
|
||||
|
||||
|
||||
Response response = this.iRpcWarehouseInSvc.exportWarehouseInTpl(getLoginUser().getUser().getCustomerCode(),inNo);
|
||||
Response response = this.iRpcWarehouseInSvc.exportWarehouseInTpl(waybillOrder);
|
||||
Response.Body body = response.body();
|
||||
for (Object key : response.headers().keySet()) {
|
||||
List<String> kList = (List<String>) response.headers().get(key);
|
||||
|
||||
@ -39,7 +39,7 @@ public interface IRpcWarehouseInSvc {
|
||||
public AjaxResult getWarehouseInByInNo(@RequestParam("customerCode") String customerCode,@RequestParam("inNo")String inNo);
|
||||
|
||||
|
||||
@GetMapping(value = "/apiweb/emisWarehouseIn/exportWarehouseInTpl")
|
||||
public Response exportWarehouseInTpl(@RequestParam("customerCode") String customerCode,@RequestParam("inNo")String inNo);
|
||||
@PostMapping(value = "/apiweb/emisWarehouseIn/exportWarehouseInTpl")
|
||||
public Response exportWarehouseInTpl(@RequestBody WaybillOrder waybillOrder);
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user