1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Data.SqlClient;
- namespace SinochemInternetPlusApp.Communicator
- {
- class InitSiteCommunicator : ICommunicator
- {
- static NLog.Logger debugLogger = NLog.LogManager.LoadConfiguration("nlog.config").GetLogger("PumpHandler");
- public bool IsStarted
- {
- get { throw new NotImplementedException(); }
- }
- public bool Start()
- {
- debugLogger.Info("InitSiteCommunicator start");
- foreach (var siteLevelNozzleId in SiteConfigUtility.Default.GetAllSiteLevelNozzleIds())
- {
- using (
- var posSqlConnection =
- new SqlConnection(GenericSinochemEpsApp.PosDatabaseConnString))
- {
- try
- {
- var gradeFriendlyName = Translator.GetFriendlyGradeName(SiteConfigUtility.Default.GetGradeName(siteLevelNozzleId));
- var totalizer = SiteConfigUtility.Default.GetTotalizer(siteLevelNozzleId);
- var setPumpOnStartingCommand =
- new SqlCommand(string.Format("if not exists(select * from jy_info where jihao={0})" +
- " BEGIN" +
- " insert jy_info (jihao, [status], youpin, qty, amount, fzqty, fzamount) values({0}, '{1}', N'{2}', 0, 0, '{3}', {4})" +
- " END", siteLevelNozzleId, 'F', gradeFriendlyName,
- totalizer.Item1, totalizer.Item2), posSqlConnection);
- debugLogger.Debug("initTable_jy_info_Command: " + setPumpOnStartingCommand.CommandText);
- posSqlConnection.Open();
- setPumpOnStartingCommand.ExecuteNonQuery();
- }
- catch (Exception ex)
- {
- debugLogger.Error("executing initTable_jy_info_Command failed for siteLevelNozzleId: " + siteLevelNozzleId + ", exception detail: " + ex);
- throw;
- }
- }
- }
- return true;
- }
- }
- }
|