using Kingdee.BOS.Core.Bill.PlugIn; using Kingdee.BOS.ServiceHelper; using Kingdee.BOS.Util; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Demo.BillView.PRD { [HotUpdate] [Description("提料计划配置")] public class Pro_TlPlanConfigure : AbstractBillPlugIn { public override void AfterBindData(EventArgs e) { base.AfterBindData(e); var FLot = this.View.Model.GetValue("FSystemColor"); this.View.ShowMessage(FLot.ToString()); ; } } }