You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.9 KiB
C#

1 year ago
using System;
using System.Linq;
using System.Windows.Forms;
using Mesnac.Action.Base;
using Mesnac.Action.ChemicalWeighing.LjMaterial;
using Mesnac.Action.ChemicalWeighing.LjWeight;
namespace Mesnac.Action.ChemicalWeighing.LjProportional
{
public class UpAction:ChemicalWeighingAction, IAction
{
private RuntimeParameter _runtime;
public static event EventHandler OnHandler;
public void Run(RuntimeParameter runtime)
{
base.RunIni(runtime); //必须调用
this._runtime = runtime;
DbMCControl materialGridControl =
this.GetDbMCControlByKey(Mesnac.Basic.DataSourceFactory.MCDbType.Local, "ProportionalSetting")
.FirstOrDefault(); //获取物料数据控件
if (MessageBox.Show("确定上传到数据库?","提示",MessageBoxButtons.OKCancel,MessageBoxIcon.Information) == DialogResult.OK)
{
1 year ago
LoadingHelper.ShowLoadingScreen();
var watchDog = LjHelp.WatchDog;
if (watchDog == 0)
{
LoadingHelper.CloseForm();
MessageBox.Show("PLC通讯失败");
return;
}
1 year ago
DoWord();
1 year ago
LoadingHelper.CloseForm();
1 year ago
};
}
private void DoWord()
{
1 year ago
1 year ago
var views = ProportionalPlc.UpFromPlc();
foreach (var v in views)
{
string sql =
1 year ago
$"update ProportionalSetting set SV={v.SV},PV={v.PV} where Id={v.Id}";
1 year ago
DBHelp.ExecuteNonQuery(sql);
}
if (OnHandler != null)
{
OnHandler(this._runtime.BaseControl.MCRoot, System.EventArgs.Empty);
}
}
}
}