饮用日期格式修改;
This commit is contained in:
@@ -35,7 +35,7 @@ public interface OmsServiceFeign {
|
|||||||
|
|
||||||
@ApiOperation("编辑物料库存")
|
@ApiOperation("编辑物料库存")
|
||||||
@PostMapping("/reservationMaterialInventoryApi/omsEdit")
|
@PostMapping("/reservationMaterialInventoryApi/omsEdit")
|
||||||
public AjaxResult omsEdit(@RequestBody MaterialInventoryOmsParamDO materialInventoryOmsParamDO);
|
public void omsEdit(@RequestBody MaterialInventoryOmsParamDO materialInventoryOmsParamDO);
|
||||||
|
|
||||||
@ApiOperation("查询企业单位列表-新增物料时显示下拉框数据")
|
@ApiOperation("查询企业单位列表-新增物料时显示下拉框数据")
|
||||||
@GetMapping("/erpEnterpriseUnitApi/unitList")
|
@GetMapping("/erpEnterpriseUnitApi/unitList")
|
||||||
|
|||||||
+2
-2
@@ -373,7 +373,7 @@ public class InMaterialDetail extends BaseVOEntity {
|
|||||||
private String omsInMaterialDetail;
|
private String omsInMaterialDetail;
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -368,7 +368,7 @@ public class ReservationInMaterialDetail extends BaseVOEntity {
|
|||||||
@Excel(name = "lot编号")
|
@Excel(name = "lot编号")
|
||||||
private String lotNo;
|
private String lotNo;
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -469,7 +469,7 @@ public class ReservationInMaterialDetailPO extends ReservationStockInOrderBasePO
|
|||||||
@Excel(name = "调整后面积")
|
@Excel(name = "调整后面积")
|
||||||
private BigDecimal adjustedArea;
|
private BigDecimal adjustedArea;
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -433,8 +433,8 @@ public class ReservationInMaterialDetailDO extends ReservationStockInOrderBaseDO
|
|||||||
private BigDecimal adjustedArea;
|
private BigDecimal adjustedArea;
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
|
|
||||||
}
|
}
|
||||||
+2
-2
@@ -444,7 +444,7 @@ public class ReservationInMaterialDetailDTO extends BaseVOEntity {
|
|||||||
private BigDecimal adjustedArea;
|
private BigDecimal adjustedArea;
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+1
-2
@@ -185,10 +185,9 @@ public class ReservationMaterialInventoryApi extends BaseController {
|
|||||||
*/
|
*/
|
||||||
@ApiOperation("编辑物料库存")
|
@ApiOperation("编辑物料库存")
|
||||||
@PostMapping("/omsEdit")
|
@PostMapping("/omsEdit")
|
||||||
public AjaxResult omsEdit(@RequestBody MaterialInventoryOmsParamDO materialInventoryOmsParamDO)
|
public void omsEdit(@RequestBody MaterialInventoryOmsParamDO materialInventoryOmsParamDO)
|
||||||
{
|
{
|
||||||
materialInventoryApplicationService.omsEdit(materialInventoryOmsParamDO);
|
materialInventoryApplicationService.omsEdit(materialInventoryOmsParamDO);
|
||||||
return AjaxResult.success();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
+2
-2
@@ -378,7 +378,7 @@ public class InMaterialDetail extends BaseVOEntity {
|
|||||||
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -420,7 +420,7 @@ public class InMaterialDetailPO extends StockInOrderBasePO {
|
|||||||
private String omsInMaterialDetail;
|
private String omsInMaterialDetail;
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -386,7 +386,7 @@ public class InMaterialDetailDO extends StockInOrderBaseDO {
|
|||||||
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -369,8 +369,8 @@ public class ReceiptMaterialDetail extends BaseVOEntity {
|
|||||||
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
|
|
||||||
}
|
}
|
||||||
+2
-2
@@ -367,7 +367,7 @@ public class ReceiptMaterialDetailPO extends BaseVOEntity {
|
|||||||
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -361,7 +361,7 @@ public class ReceiptMaterialDetailDO extends BaseVOEntity {
|
|||||||
private String omsInMaterialDetail;
|
private String omsInMaterialDetail;
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -384,7 +384,7 @@ public class InMaterialDetailDTO extends BaseVOEntity {
|
|||||||
private String lotNo;
|
private String lotNo;
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
+2
-2
@@ -313,7 +313,7 @@ public class ReceiptMaterialDetailDTO extends BaseVOEntity {
|
|||||||
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "饮用时间")
|
@ApiModelProperty(value = "饮用时间")
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||||
private Date drinkDate;
|
private Date drinkDate;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user