17 changed files with 455 additions and 34 deletions
@ -1,78 +1,212 @@ |
|||||
using System; |
using System; |
||||
using WinIn.FasterZ.Wms.Z_Business.StoreTransferNote.Dtos; |
using System.ComponentModel; |
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business.StoreTransferNoteDetail.Dtos; |
namespace WinIn.FasterZ.Wms.Z_Business.StoreTransferNoteDetail.Dtos; |
||||
|
|
||||
[Serializable] |
[Serializable] |
||||
public class CreateUpdateStoreTransferNoteDetailDto |
public class CreateUpdateStoreTransferNoteDetailDto |
||||
{ |
{ |
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailArriveDate")] |
||||
public DateTime ArriveDate { get; set; } |
public DateTime ArriveDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailExpireDate")] |
||||
public DateTime ExpireDate { get; set; } |
public DateTime ExpireDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromContainerCode")] |
||||
public string? FromContainerCode { get; set; } |
public string? FromContainerCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromLocationArea")] |
||||
public string? FromLocationArea { get; set; } |
public string? FromLocationArea { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromLocationCode")] |
||||
public string FromLocationCode { get; set; } |
public string FromLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromLocationErpCode")] |
||||
public string FromLocationErpCode { get; set; } |
public string FromLocationErpCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromLocationGroup")] |
||||
public string? FromLocationGroup { get; set; } |
public string? FromLocationGroup { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromLot")] |
||||
public string? FromLot { get; set; } |
public string? FromLot { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromPackingCode")] |
||||
public string? FromPackingCode { get; set; } |
public string? FromPackingCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromStatus")] |
||||
public string FromStatus { get; set; } |
public string FromStatus { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailFromWarehouseCode")] |
||||
public string FromWarehouseCode { get; set; } |
public string FromWarehouseCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailItemCode")] |
||||
public string ItemCode { get; set; } |
public string ItemCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailItemDesc1")] |
||||
public string? ItemDesc1 { get; set; } |
public string? ItemDesc1 { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailItemDesc2")] |
||||
public string? ItemDesc2 { get; set; } |
public string? ItemDesc2 { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailItemName")] |
||||
public string? ItemName { get; set; } |
public string? ItemName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailMasterId")] |
||||
public Guid MasterId { get; set; } |
public Guid MasterId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailNumber")] |
||||
public string Number { get; set; } |
public string Number { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailOnTheWayLocationCode")] |
||||
public string? OnTheWayLocationCode { get; set; } |
public string? OnTheWayLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailProduceDate")] |
||||
public DateTime ProduceDate { get; set; } |
public DateTime ProduceDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailQty")] |
||||
public decimal Qty { get; set; } |
public decimal Qty { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailReason")] |
||||
public string? Reason { get; set; } |
public string? Reason { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailRemark")] |
||||
public string? Remark { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailStdPackQty")] |
||||
public decimal StdPackQty { get; set; } |
public decimal StdPackQty { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailSupplierBatch")] |
||||
public string? SupplierBatch { get; set; } |
public string? SupplierBatch { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToContainerCode")] |
||||
public string? ToContainerCode { get; set; } |
public string? ToContainerCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToLocationArea")] |
||||
public string? ToLocationArea { get; set; } |
public string? ToLocationArea { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToLocationCode")] |
||||
public string ToLocationCode { get; set; } |
public string ToLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToLocationErpCode")] |
||||
public string ToLocationErpCode { get; set; } |
public string ToLocationErpCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToLocationGroup")] |
||||
public string? ToLocationGroup { get; set; } |
public string? ToLocationGroup { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToLot")] |
||||
public string? ToLot { get; set; } |
public string? ToLot { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToPackingCode")] |
||||
public string? ToPackingCode { get; set; } |
public string? ToPackingCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToStatus")] |
||||
public string ToStatus { get; set; } |
public string ToStatus { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailToWarehouseCode")] |
||||
public string ToWarehouseCode { get; set; } |
public string ToWarehouseCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
[DisplayName("StoreTransferNoteDetailUom")] |
||||
public string Uom { get; set; } |
public string Uom { get; set; } |
||||
} |
} |
@ -1,79 +1,181 @@ |
|||||
using System; |
using System; |
||||
using Volo.Abp.Application.Dtos; |
using Volo.Abp.Application.Dtos; |
||||
using WinIn.FasterZ.Wms.Z_Business.StoreTransferNote.Dtos; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business.StoreTransferNoteDetail.Dtos; |
namespace WinIn.FasterZ.Wms.Z_Business.StoreTransferNoteDetail.Dtos; |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
[Serializable] |
[Serializable] |
||||
public class StoreTransferNoteDetailDto : AuditedEntityDto<Guid> |
public class StoreTransferNoteDetailDto : AuditedEntityDto<Guid> |
||||
{ |
{ |
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public DateTime ArriveDate { get; set; } |
public DateTime ArriveDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public DateTime ExpireDate { get; set; } |
public DateTime ExpireDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? FromContainerCode { get; set; } |
public string? FromContainerCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? FromLocationArea { get; set; } |
public string? FromLocationArea { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string FromLocationCode { get; set; } |
public string FromLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string FromLocationErpCode { get; set; } |
public string FromLocationErpCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? FromLocationGroup { get; set; } |
public string? FromLocationGroup { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? FromLot { get; set; } |
public string? FromLot { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? FromPackingCode { get; set; } |
public string? FromPackingCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string FromStatus { get; set; } |
public string FromStatus { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string FromWarehouseCode { get; set; } |
public string FromWarehouseCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string ItemCode { get; set; } |
public string ItemCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ItemDesc1 { get; set; } |
public string? ItemDesc1 { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ItemDesc2 { get; set; } |
public string? ItemDesc2 { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ItemName { get; set; } |
public string? ItemName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public Guid MasterId { get; set; } |
public Guid MasterId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string Number { get; set; } |
public string Number { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? OnTheWayLocationCode { get; set; } |
public string? OnTheWayLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public DateTime ProduceDate { get; set; } |
public DateTime ProduceDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public decimal Qty { get; set; } |
public decimal Qty { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? Reason { get; set; } |
public string? Reason { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? Remark { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public decimal StdPackQty { get; set; } |
public decimal StdPackQty { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? SupplierBatch { get; set; } |
public string? SupplierBatch { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ToContainerCode { get; set; } |
public string? ToContainerCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ToLocationArea { get; set; } |
public string? ToLocationArea { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string ToLocationCode { get; set; } |
public string ToLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string ToLocationErpCode { get; set; } |
public string ToLocationErpCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ToLocationGroup { get; set; } |
public string? ToLocationGroup { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ToLot { get; set; } |
public string? ToLot { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string? ToPackingCode { get; set; } |
public string? ToPackingCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string ToStatus { get; set; } |
public string ToStatus { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string ToWarehouseCode { get; set; } |
public string ToWarehouseCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
public string Uom { get; set; } |
public string Uom { get; set; } |
||||
} |
} |
3
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNote/StoreTransferNoteEfCoreQueryableExtensions.cs → WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNote/StoreTransferNoteEfCoreQuerableExtensions.cs
3
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNote/StoreTransferNoteEfCoreQueryableExtensions.cs → WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNote/StoreTransferNoteEfCoreQuerableExtensions.cs
3
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNoteDetail/StoreTransferNoteDetailEfCoreQueryableExtensions.cs → WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNoteDetail/StoreTransferNoteDetailEfCoreQuerableExtensions.cs
3
WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNoteDetail/StoreTransferNoteDetailEfCoreQueryableExtensions.cs → WinIn.FasterZ.Wms.Be/WinIn.FasterZ.Wms/WinIn.FasterZ.Wms/src/WinIn.FasterZ.Wms.EntityFrameworkCore/Z_Business/StoreTransferNoteDetail/StoreTransferNoteDetailEfCoreQuerableExtensions.cs
Loading…
Reference in new issue