diff --git a/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SelectStatPayDialog.cs b/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SelectStatPayDialog.cs index f564f5d..f0e5e65 100644 --- a/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SelectStatPayDialog.cs +++ b/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SelectStatPayDialog.cs @@ -59,8 +59,8 @@ namespace BWP.Web.Pages.B3SubstituteKill.Bills.SubKillGathering_ protected override void SetResultFromDFDataRow(SubKillGathering_Detail dmo, DFDataRow row) { dmo.StatPay_ID = (long?)row["ID"]; - dmo.Weigh_ID = (long?)row["Weigh_ID"]; - dmo.WeighTime = (DateTime?)row["WeighTime"]; + //dmo.Weigh_ID = (long?)row["Weigh_ID"]; + //dmo.WeighTime = (DateTime?)row["WeighTime"]; dmo.StatPay_Date = (DateTime?)row["Date"]; dmo.StatPay_ReceiveMoney = (Money<金额>?)row["ReceiveMoney"]; dmo.AlreadyReceiveMoney = (Money<金额>?)row["AlreadyReceiveMoney"]; diff --git a/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SubKillGatheringEdit.cs b/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SubKillGatheringEdit.cs index 94971cc..01d6dae 100644 --- a/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SubKillGatheringEdit.cs +++ b/B3SubstituteKill.Web/Pages/B3SubstituteKill/Bills/SubKillGathering_/SubKillGatheringEdit.cs @@ -98,8 +98,8 @@ __DFContainer.setValue('Supplier_Card_ID',''); _detail = vPanel.Add(new DFEditGrid(editor) { Width = Unit.Percentage(100) }); _detail.Columns.Add(new DFEditGridColumn("StatPay_ID")); _detail.Columns.Add(new DFEditGridColumn("StatPay_Date")); - _detail.Columns.Add(new DFEditGridColumn("Weigh_ID")); - _detail.Columns.EAdd(new DFEditGridColumn("WeighTime")); + //_detail.Columns.Add(new DFEditGridColumn("Weigh_ID")); + //_detail.Columns.EAdd(new DFEditGridColumn("WeighTime")); _detail.Columns.EAdd(new DFEditGridColumn("StatPay_ReceiveMoney")); _detail.Columns.EAdd(new DFEditGridColumn("AlreadyReceiveMoney")); _detail.Columns.EAdd(new DFEditGridColumn("ThisReceiveMoney")); diff --git a/B3SubstituteKill/BO/Bills/SubKillGathering/SubKillGathering_Detail.cs b/B3SubstituteKill/BO/Bills/SubKillGathering/SubKillGathering_Detail.cs index 5563583..cbb2396 100644 --- a/B3SubstituteKill/BO/Bills/SubKillGathering/SubKillGathering_Detail.cs +++ b/B3SubstituteKill/BO/Bills/SubKillGathering/SubKillGathering_Detail.cs @@ -20,22 +20,21 @@ namespace BWP.B3SubstituteKill.BO [LogicName("结算单")] public long? StatPay_ID { get; set; } - [LogicName("结算日期")] [ReferenceTo(typeof(StatPay), "Date")] [Join("StatPay_ID", "ID")] public DateTime? StatPay_Date { get; set; } - [LogicName("过磅时间")] - [ReferenceTo(typeof(StatPay), "WeighTime")] - [Join("StatPay_ID", "ID")] - public DateTime? WeighTime { get; set; } + //[LogicName("过磅时间")] + //[ReferenceTo(typeof(StatPay), "WeighTime")] + //[Join("StatPay_ID", "ID")] + //public DateTime? WeighTime { get; set; } - [LogicName("过磅单")] - [ReferenceTo(typeof(StatPay), "Weigh_ID")] - [Join("StatPay_ID", "ID")] - public long? Weigh_ID { get; set; } + //[LogicName("过磅单")] + //[ReferenceTo(typeof(StatPay), "Weigh_ID")] + //[Join("StatPay_ID", "ID")] + //public long? Weigh_ID { get; set; } [LogicName("应收金额")]