using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Mesnac.Action.Base; namespace Mesnac.Action.ChemicalWeighing.Product.PptPlan { public class FrmProPlanViewAction : ChemicalWeighingAction, IAction { public void Run(RuntimeParameter runtime) { base.RunIni(runtime); //必须调用 ICSharpCode.Core.LoggingService.Debug("打开生产计划窗口"); //初始化料仓设置窗口 FrmProPlan frmSVBSForm = new FrmProPlan(); frmSVBSForm.ShowDialog(); } } }