WMS入库单bug修改
This commit is contained in:
@@ -310,15 +310,15 @@ public class StockInOrderDTO extends StockInOrderBaseDTO {
|
||||
|
||||
@ApiModelProperty("海关是否查验货物(默认:否)")
|
||||
@Excel(name = "海关是否查验货物")
|
||||
private String customsInspection;
|
||||
private Integer customsInspection;
|
||||
|
||||
@ApiModelProperty("是否需要报关(默认:是)")
|
||||
@Excel(name = "是否需要报关")
|
||||
private String needCustomsDeclaration;
|
||||
private Integer needCustomsDeclaration;
|
||||
|
||||
@ApiModelProperty("是否需要运输(默认:否)")
|
||||
@Excel(name = "是否需要运输")
|
||||
private String needTransport;
|
||||
private Integer needTransport;
|
||||
|
||||
@ApiModelProperty("入仓日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
|
||||
+1
-2
@@ -87,13 +87,12 @@ public class StockInOrderApi extends BaseController {
|
||||
* 导入入库单
|
||||
*/
|
||||
@ApiOperation("导入入库单")
|
||||
@PostMapping("/importData")
|
||||
@PostMapping(value = "/importData")
|
||||
public AjaxResult importData(MultipartFile file)
|
||||
{
|
||||
return AjaxResult.success(stockInOrderApplicationService.importData(file));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 审核入库单
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user