using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using CoreFS.CA06; using Core.Mes.Client.Comm.Tool; namespace Core.StlMes.Client.SaleOrder.Control { public partial class OrderPrice : UserControl { public OrderPrice() { InitializeComponent(); } public void DoQuery(String ordPk,OpeBase ob) { List listSource = EntityHelper.GetData( "com.steering.pss.sale.order.CoreOrderReviewLaw.queryLineAPrice", new object[] { ordPk }, ob); orderLineAPriceEntityBindingSource.DataSource = listSource; } private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { EntityHelper.ShowGridCaption(ultraGridOrderAPrice.DisplayLayout.Bands[0]); } } }