| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using CoreFS.CA06;
- using System.Data;
- using System.Collections;
- using Core.Mes.Client.Comm.Server;
- namespace Core.StlMes.Client.PlnSaleOrd.BLL
- {
- class ComOrdExportBLL
- {
- public OpeBase _ob;
- public ComOrdExportBLL(OpeBase ob)
- {
- _ob = ob;
- }
- /// <summary>
- /// 查询
- /// </summary>
- /// <param name="param"></param>
- /// <param name="notCraft"></param>
- /// <param name="isImportOrd"></param>
- /// <returns></returns>
- public DataTable Query(ArrayList param,string strFinish,bool notCraft,bool isImportOrd)
- {
- DataTable dt = ServerHelper.GetData("com.steering.pss.plnsaleord.order.CoreOrderCraftInfo.queryExportSaleOrder",
- new object[] { param, strFinish, notCraft, isImportOrd }, _ob);
- return dt;
- }
- /// <summary>
- /// 查看监制文件
- /// </summary>
- /// <param name="listPIC"></param>
- public void DoLookMon(ArrayList listPIC)
- {
- dlgOrderAskLook orderAsk = new dlgOrderAskLook(_ob, listPIC);
- orderAsk.Text = "查看监制文件";
- orderAsk.Show();
- }
- }
- }
|