| 1234567891011121314151617181920212223242526272829 |
- namespace Admin.NET.Plugin.AiDOP.MaterialWarehouse.InventoryPosting.Receipt;
- /// <summary>C6 采购收货回写命令(写入 DOP shadow `ado_purchase_receipt_writeback`,不写旧 PurOrd*)。</summary>
- public sealed class PurchaseReceiptWriteback
- {
- public long TenantId { get; set; }
- public string DomainCode { get; set; }
- public long PostingId { get; set; }
- public string RctNbr { get; set; }
- public string PurOrd { get; set; }
- public int PurLine { get; set; }
- public string Potype { get; set; }
- public decimal AcceptedQty { get; set; }
- public decimal SampleQty { get; set; }
- public string QcNbr { get; set; }
- public string Receiver { get; set; }
- public string FbillNo { get; set; }
- public string QcStatus { get; set; }
- public string User { get; set; }
- // L4 对账(由 PurchaseReceiptWritebackCalculator 计算填充)
- public decimal QtyOrdered { get; set; }
- public decimal ReturnedQty { get; set; }
- public decimal BeforeReceivedQty { get; set; }
- public decimal AfterReceivedQty { get; set; }
- public decimal BeforeOutstandingQty { get; set; }
- public decimal AfterOutstandingQty { get; set; }
- public bool DetailCompleted { get; set; }
- }
|