From 813a650daf60286de38d4dbcb727e30ee9e3c97b Mon Sep 17 00:00:00 2001 From: Zheng Date: Mon, 13 Nov 2023 23:16:27 +0800 Subject: [PATCH] 232 --- ...ateEditStoreRecycledMaterialReceiptNote.cs | 82 +++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Web/Pages/Z_Business/StoreRecycledMaterialReceiptNoteDetail/StoreRecycledMaterialReceiptNoteDetail/ViewModels/CreateEditStoreRecycledMaterialReceiptNote.cs diff --git a/WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Web/Pages/Z_Business/StoreRecycledMaterialReceiptNoteDetail/StoreRecycledMaterialReceiptNoteDetail/ViewModels/CreateEditStoreRecycledMaterialReceiptNote.cs b/WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Web/Pages/Z_Business/StoreRecycledMaterialReceiptNoteDetail/StoreRecycledMaterialReceiptNoteDetail/ViewModels/CreateEditStoreRecycledMaterialReceiptNote.cs new file mode 100644 index 000000000..b9846f73d --- /dev/null +++ b/WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.Web/Pages/Z_Business/StoreRecycledMaterialReceiptNoteDetail/StoreRecycledMaterialReceiptNoteDetail/ViewModels/CreateEditStoreRecycledMaterialReceiptNote.cs @@ -0,0 +1,82 @@ +using System; +using System.ComponentModel.DataAnnotations; + +namespace WinIn.FasterZ.Wms.Web.Pages.Z_Business.StoreRecycledMaterialReceiptNoteDetail.StoreRecycledMaterialReceiptNoteDetail.ViewModels; + +public class CreateEditStoreRecycledMaterialReceiptNoteDetailViewModel +{ + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailArriveDate")] + public DateTime ArriveDate { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailContainerCode")] + public string? ContainerCode { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailExpireDate")] + public DateTime ExpireDate { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemCode")] + public string ItemCode { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemDesc1")] + public string? ItemDesc1 { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemDesc2")] + public string? ItemDesc2 { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailItemName")] + public string? ItemName { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationArea")] + public string? LocationArea { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationCode")] + public string LocationCode { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationErpCode")] + public string LocationErpCode { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailLocationGroup")] + public string? LocationGroup { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailLot")] + public string? Lot { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailMaster")] + public StoreRecycledMaterialReceiptNote Master { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailMasterId")] + public Guid MasterId { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailNumber")] + public string Number { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailPackingCode")] + public string PackingCode { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailProduceDate")] + public DateTime ProduceDate { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailQty")] + public decimal Qty { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailReasonCode")] + public string? ReasonCode { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailRemark")] + public string? Remark { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailStatus")] + public string Status { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailStdPackQty")] + public decimal StdPackQty { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailSupplierBatch")] + public string? SupplierBatch { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailUom")] + public string Uom { get; set; } + + [Display(Name = "StoreRecycledMaterialReceiptNoteDetailWarehouseCode")] + public string WarehouseCode { get; set; } +}