• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# CoreClientParam类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中CoreClientParam的典型用法代码示例。如果您正苦于以下问题:C# CoreClientParam类的具体用法?C# CoreClientParam怎么用?C# CoreClientParam使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



CoreClientParam类属于命名空间,在下文中一共展示了CoreClientParam类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: DoAdd

        private void DoAdd()
        {
            string strDeviceNo = this.tbDeviceNo.Text.Trim();
            string strCompareDate = this.dtCompareDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
            string strSpecType = this.tbSpecType.Text.Trim();
            string strAllowDiff = this.tbAllowDiff.Text.Trim();
            string strWeight = this.tbWeight.Text.Trim();
            string strShowWeight = this.tbShowWeight.Text.Trim();
            string strDiffWeight = this.tbDiffWeight.Text.Trim();
            string strJudgeResult = this.tbJudgeResult.Text.Trim();
            string strOperator = this.tbOperator.Text.Trim();
            string strShift = this.tbShift.Text.Trim();
            string strTerm = this.tbTerm.Text.Trim();
            string strMemo = this.tbMemo.Text.Trim();
            string strGuid = Guid.NewGuid().ToString();

            string sql  = "insert into DT_COMPAREBALANCE (FS_DEVICENO,FD_COMPAREDATE,FS_SPECTYPE,FS_NUMBER,FN_ALLOWDIFF,";
            sql += "FN_WEIGHT,FN_SHOWWEIGHT,FN_DIFFWEIGHT,FS_JUDGERESULT,FS_OPERATOR,FS_SHIFT,FS_TERM,FS_MEMO) values(";
            sql += "'" + strDeviceNo + "',to_date('" + strCompareDate + "','yyyy-MM-dd hh24:mi:ss'),'" + strSpecType + "',";
            sql += "'" + strGuid + "','" + strAllowDiff + "','" + strWeight + "','" + strShowWeight + "','" + strDiffWeight + "',";
            sql += "'" + strJudgeResult + "','" + strOperator + "','" + strShift + "','" + strTerm + "','" + strMemo + "')";

            CoreClientParam ccp = new CoreClientParam();

            ccp.ServerName = "ygjzjl.basedatamanage.OtherBaseInfo";
            ccp.MethodName = "ExcuteNonQuery";
            ccp.ServerParams = new object[] { sql };
            ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:29,代码来源:CompareBalanceInfo11.cs


示例2: btnDel_Click

        private void btnDel_Click(object sender, EventArgs e)
        {
            if (!chkSelectData()) return;

            string strTmpTable, strTmpWhere;
            lstHint1.Items.Clear();

            strTmpTable = "DT_SAP261";
            strTmpWhere = getSelectNo();
            CoreClientParam ccpDel = new CoreClientParam();
            ccpDel.ServerName = "ygjzjl.base.QueryData";
            ccpDel.MethodName = "DeleteData";

            ccpDel.ServerParams = new object[] { strTmpTable, strTmpWhere };

            this.ExecuteNonQuery(ccpDel, CoreInvokeType.Internal);
            if (ccpDel.ReturnCode == 0)
            {
                lstHint1.Items.Add("信息删除成功!");
            }
            else
            {
                lstHint1.Items.Add("信息删除失败!");
            }
            showGridInfo();
        }
开发者ID:Strongc,项目名称:sencond,代码行数:26,代码来源:RzjSap.cs


示例3: PointQuery

        /// <summary>
        /// 计量点查询
        /// </summary>
        private void PointQuery()
        {
            string strSQL = "select 'False' XZ,t.FS_POINTCODE,t.FS_POINTNAME,decode(t.FN_POINTFLAG,0,'未接管',1,'已接管') FN_POINTFLAG,t.FS_IP";
            strSQL += " from bt_pointflag t";
            CoreClientParam ccp = new CoreClientParam();
            this.dataTable1.Rows.Clear();
            ccp.ServerName = "ygjzjl.car.CarCard";
            ccp.MethodName = "queryByClientSql";
            ccp.ServerParams = new object[] { strSQL };
            ccp.SourceDataTable = dataTable1;
            this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);

            try
            {

                foreach (UltraGridRow ugr in ultraGrid1.Rows)
                {
                    if (ugr.Cells["FN_POINTFLAG"].Text.ToString() == "已接管")
                    {
                        ugr.Appearance.ForeColor = Color.Red;
                    }
                }

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
开发者ID:Strongc,项目名称:sencond,代码行数:32,代码来源:PointState.cs


示例4: GetBMJBData

        //从数据库获取磅房对应表面级别
        public void GetBMJBData(ComboBox cb, string PointID)
        {
            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "ygjzjl.basedatamanage.QueryPointInfo";
            ccp.MethodName = "QueryBMJBData";
            ccp.ServerParams = new object[] { PointID };

            System.Data.DataTable dt = new System.Data.DataTable();

            ccp.SourceDataTable = dt;
            this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);

            if (dt.Rows.Count > 0)
            {
                DataRow dr = dt.NewRow();
                dt.Rows.InsertAt(dr, 0);

                cb.DataSource = dt;
                cb.DisplayMember = "FS_FACELEVEL";
                cb.ValueMember = "FS_FACELEVEL";

                cb.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
                cb.AutoCompleteSource = AutoCompleteSource.ListItems;
            }
            else
            {
                cb.DataSource = dt;
            }
        }
开发者ID:Strongc,项目名称:sencond,代码行数:30,代码来源:GetBaseInfo.cs


示例5: GetPoints

        /// <summary>
        /// 获取计量点信息
        /// </summary>
        /// <param name="pointType">计量点类型</param>
        /// <returns>计量点数组</returns>
        public BT_POINT[] GetPoints(string pointType)
        {
            BT_POINT[] points = null;
            DataTable dt = new DataTable();
            ArrayList param = new ArrayList();
            param.Add(pointType);
            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "com.dbComm.DBComm";
            ccp.MethodName = "query";
            ccp.ServerParams = new object[] { "WEIGHPOINT_02.SELECT", param };
            ccp.SourceDataTable = dt;
            this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
            if (dt.Rows.Count > 0)
            {
                points = new BT_POINT[dt.Rows.Count];
                BT_POINT point = null;
                DataRow dr = null;
                for (int i = 0;i < dt.Rows.Count;i++)
                {
                    dr = dt.Rows[i];
                    points[i] = ConvertDataRowToPointObject(dr);
                }

            }
            return points;
        }
开发者ID:Strongc,项目名称:sencond,代码行数:31,代码来源:WeighPointForQC.cs


示例6: ShowGridInfo

        /// <summary>
        ///查询完整的数据
        /// </summary>
        private void ShowGridInfo()
        {
            TimeSpan ts = new TimeSpan(qDteBegin.Value.Hour, qDteBegin.Value.Minute, qDteBegin.Value.Second);
            qDteBegin.Value = qDteBegin.Value.Add(-ts);//默认当天的0时0分0秒为开始时间
            string beginTime = qDteBegin.Value.ToString("yyyyMMddHHmmss");
            string endTime = qDteBegin.Value.AddMinutes(Convert.ToDouble(1439)).ToString("yyyyMMddHHmmss");
            string stovno = txtLh.Text.Trim();
            string potno = txtGh.Text.Trim();

            ArrayList list = new ArrayList();
            dataSet1.Tables[0].Clear();
            list.Add(beginTime);
            list.Add(endTime);
            list.Add(beginTime);
            list.Add(endTime);
            txtLh.Text = "";
            txtGh.Text = "";
            CoreClientParam ccp = new CoreClientParam();
            if (stovno != string.Empty&&potno!=string.Empty)
            {
                list.Add(stovno);
                list.Add(potno);

                ccp.ServerName = "com.dbComm.DBComm";
                ccp.MethodName = "query";
                ccp.ServerParams = new object[] { "DATAMANAGE_01.SELECT", list };
                ccp.SourceDataTable = dataSet1.Tables[0];
                this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
                return;
            }
            if(stovno==string.Empty&&potno!=string.Empty)
            {
                list.Add(potno);

                ccp.ServerName = "com.dbComm.DBComm";
                ccp.MethodName = "query";
                ccp.ServerParams = new object[] { "DATAMANAGE_01_01.SELECT", list };
                ccp.SourceDataTable = dataSet1.Tables[0];
                this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
                return;
            }
            if (stovno!=string.Empty&&potno == string.Empty)
            {
                list.Add(stovno);

                ccp.ServerName = "com.dbComm.DBComm";
                ccp.MethodName = "query";
                ccp.ServerParams = new object[] { "DATAMANAGE_01_02.SELECT", list };
                ccp.SourceDataTable = dataSet1.Tables[0];
                this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
                return;
            }
            ccp.ServerName = "com.dbComm.DBComm";
            ccp.MethodName = "query";
            ccp.ServerParams = new object[] { "DATAMANAGE_01_03.SELECT", list };
            ccp.SourceDataTable = dataSet1.Tables[0];
            this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:61,代码来源:DataManage.cs


示例7: AddRecord

        private void AddRecord()
        {
            if (!checkItems())
            {
                return;
            }
            string strweightno = Guid.NewGuid().ToString();
            string strStoveSeatNo = (ultraOptionSet1.CheckedIndex + 1).ToString();
            string strStoveNo = txtStoveNo1.Text.Trim().Replace("'", "''");
            string strPotNo = txtPotNo.Text.Trim().Replace("'", "''");
            string strGrossWeight = txtGrossWeight.Text.Trim().Replace("'", "''");
            //string strTearWeight = txtTearWeight.Text.Trim().Replace("'", "''");
            //string strNetWeight = txtNetWeight.Text.Trim().Replace("'", "''");
            string strReceiveFac = (ultraOptionSet2.CheckedIndex + 1).ToString();
            //string strAddRecorder = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserName();
            string strAddRecorder = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserName() + "手动新增";
            string strShift = Table_CA02_UserOrder.Static_T_CA02_UserOrder.GetUserOrderName(CoreFS.SA06.CoreUserInfo.UserInfo.GetUserOrder()).ToString();//班次
            string strGroup = Table_CA02_UserGroup.Static_T_CA02_UserGroup.GetUserGroupName(CoreFS.SA06.CoreUserInfo.UserInfo.GetUserGroup()).ToString();//班组
            ArrayList list = new ArrayList();
            list.Add(strStoveSeatNo);
            list.Add(strStoveNo);
            list.Add(strPotNo);
            list.Add(strGrossWeight);
            //list.Add(strTearWeight);
            //list.Add(strNetWeight);
            list.Add(strReceiveFac);
            list.Add(strAddRecorder);
            list.Add(strAddRecorder);
            list.Add(strShift);

            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "ygjzjl.basedatamanage.OtherBaseInfo";
            ccp.MethodName = "ExcuteNonQuery";

            string sql = " INSERT INTO dt_statictrackfirstweight (FS_WEIGHTNO,FS_STOVESEATNO,FS_STOVENO,FS_POTNO,"
                              + "FN_WEIGHT,FS_WEIGHTTYPE,FS_WEIGHTPERSON"
                              + ",FD_WEIGHTTIME,FS_SHIFT,FS_GROUP,fs_weightpoint) VALUES ('"
                              + strweightno + " ','" + strStoveSeatNo + "','" + strStoveNo + "','" + strPotNo + "','" +
                              strGrossWeight + "','" + strReceiveFac + "','" +
                              strAddRecorder + "',sysdate,'" + strShift + "','" + strGroup + "','K38')";

            ccp.ServerParams = new object[] { sql };
            this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
            if (ccp.ReturnCode == 0)
            {
                MessageBox.Show("新增记录成功!");
                string strLog = "罐号=" + strPotNo + ",炉座号="//卡号、车号
            + strStoveSeatNo + ",炉号=" + strStoveNo + ",毛重="//物料、发货单位
            + strGrossWeight + ",流向=" + strReceiveFac + ",";
                this.objBi.WriteOperationLog("DT_STATICTRACKFIRSTWEIGHT", strDepartMent, strUserName, "增加", strLog, "数据修改", "静态铁水衡一次数据表", "静态铁水衡");//调用写操作日志方法

            }

            QueryData();
        }
开发者ID:Strongc,项目名称:sencond,代码行数:55,代码来源:FirstDataModifyForIron.cs


示例8: downOrderInfo

 /// <summary>
 /// 根据订单号从SAP下载订单信息
 /// </summary>
 private void downOrderInfo(string sDdh)
 {
     DataTable dtOrder = new DataTable();
     CoreClientParam ccpProductNo = new CoreClientParam();
     ccpProductNo.ServerName = "ygjzjl.base.SapOperation";
     ccpProductNo.MethodName = "queryProductNo";
     ccpProductNo.ServerParams = new object[] { sDdh };
     dtOrder.Clear();
     ccpProductNo.SourceDataTable = dtOrder;
     this.ExecuteQueryToDataTable(ccpProductNo, CoreInvokeType.Internal);
 }
开发者ID:Strongc,项目名称:sencond,代码行数:14,代码来源:AddMaterialNo.cs


示例9: Query

        private void Query()
        {
            string strQuerySql = "select FS_POINTCODE,FS_POINTNAME,FN_USEDPRINTPAPER FROM BT_POINT t where t.FS_POINTTYPE='QC' order by T.FS_POINTCODE ASC ";

            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "ygjzjl.basedatamanage.OtherBaseInfo";
            ccp.MethodName = "ExcuteQuery";
            ccp.ServerParams = new object[] { strQuerySql };
            ccp.SourceDataTable = this.dataSet1.Tables[0];
            this.dataSet1.Tables[0].Clear();
            ccp = this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:12,代码来源:ChangePaper.cs


示例10: getWeightInfo

 private void getWeightInfo(string strEnterFacNo)
 {
     string strSelectSql = "select FS_WEIGHTNO,FN_GROSSWEIGHT,to_char(FD_GROSSDATETIME,'YYYY-MM-DD HH24:MI:SS') FD_GROSSDATETIME,FN_TAREWEIGHT,to_char(FD_TAREDATETIME,'YYYY-MM-DD HH24:MI:SS') FD_TAREDATETIME,FN_NETWEIGHT ";
     strSelectSql += "from DT_CARWEIGHT_WEIGHT where FS_ENTERFACNO='" + strEnterFacNo + "'";
     CoreClientParam selectccp = new CoreClientParam();
     selectccp.ServerName = "ygjzjl.carcard";
     selectccp.MethodName = "queryByClientSql";
     selectccp.ServerParams = new object[] { strSelectSql };
     dataSet1.Tables["车辆称重信息"].Clear();
     selectccp.SourceDataTable = dataSet1.Tables["车辆称重信息"];
     this.ExecuteQueryToDataTable(selectccp, CoreInvokeType.Internal);
 }
开发者ID:Strongc,项目名称:sencond,代码行数:12,代码来源:CarEnterFactoryQuery.cs


示例11: BAPI_GOODSMVT_CREATE

        //调用SAP的BAPI_GOODSMVT_CREATE
        public string BAPI_GOODSMVT_CREATE(string sCode, string[] sArrayHeader, ArrayList listSubItem)
        {
            ArrayList listItem = new ArrayList();
            CoreClientParam ccp = new CoreClientParam();

            strSapError = "";
            Array.Clear(strArrayUpload, 0, strArrayUpload.Length);
            listItem.Clear();
            listItem.Add(listSubItem);

            strArrayUpload[0] = listSubItem[0].ToString();

            if (sCode == "02")
            {
                strArrayUpload[3] = listSubItem[10].ToString();
                strArrayUpload[1] = "101";
                strArrayUpload[9] = listSubItem[9].ToString();
            }
            if (sCode == "03")
            {
                strArrayUpload[1] = "261";
                strArrayUpload[3] = listSubItem[7].ToString();
                strArrayUpload[9] = "0001";
            }
            strArrayUpload[4] = listSubItem[3].ToString();
            strArrayUpload[5] = Convert.ToDateTime(objBi.GetServerTime()).ToString("yyyy-MM-dd HH:mm:ss");
            strArrayUpload[7] = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserName();
            strArrayUpload[8] = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserID();

            strArrayUpload[10] = strArrayUpload[5];

            ccp.ServerName = "ygjzjl.sap.UploadSapRfc";

            if (sCode == "02")
                ccp.MethodName = "up_Product";
            if (sCode == "03")
                ccp.MethodName = "fl_Product";
            if (sCode == "04")
                ccp.MethodName = "up_BatchSplit";

            ccp.ServerParams = new object[] { "BAPI_GOODSMVT_CREATE", sArrayHeader, sCode, listItem };
            this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);

            if (ccp.ReturnCode == 0)
            {
                return ccp.ReturnObject.ToString();
            }
            else
            {
                return "";
            }
        }
开发者ID:Strongc,项目名称:sencond,代码行数:53,代码来源:SapClass.cs


示例12: AddSubRecord

        private void AddSubRecord(string strStoveNo, int i,string strTheorySingleWeight)
        {
            string strPerson = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserName() +" 新增";
            string strSql = "insert into DT_STEELWEIGHTDETAILROLL (FS_WEIGHTNO,FS_STOVENO,FN_BILLETINDEX,FN_NETWEIGHT,FS_PERSON,FD_WEIGHTTIME) ";
            strSql += "values('" +Guid.NewGuid().ToString() + "','" + strStoveNo + "'," + i + "," + strTheorySingleWeight + ",'" + strPerson + "',";
            strSql+="sysdate)";

            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "ygjzjl.basedatamanage.OtherBaseInfo";
            ccp.MethodName = "ExcuteNonQuery";
            ccp.ServerParams = new object[] { strSql };
            this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:13,代码来源:SteelWeightUpdate_BC.cs


示例13: excuteProcedure2

 /// <summary>
 /// 执行存储过程2
 /// </summary>
 /// <param name="sql"></param>
 /// <param name="param"></param>
 /// <returns></returns>
 protected CoreClientParam excuteProcedure2(string sql, Hashtable param)
 {
     if (param == null)
     {
         param = new Hashtable();
     }
     CoreClientParam ccp = new CoreClientParam();
     ccp.ServerName = "com.dbComm.DBComm";
     ccp.MethodName = "executeProcedureBySql2";
     ccp.ServerParams = new object[] { sql, param };
     ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
     return ccp;
 }
开发者ID:Strongc,项目名称:sencond,代码行数:19,代码来源:StandardInfo.cs


示例14: BindData2Grid

        public void BindData2Grid()
        {
            //由卡号带出绑定的车号
            string strCardIsExist = "select t.fs_sequenceno,t.FS_BINDCARNO from BT_CARDMANAGE t where t.fs_sequenceno='" + m_Reader.CardNo + "'";

            DataTable testdatatable = new DataTable();
            CoreClientParam selectccp = new CoreClientParam();
            selectccp.ServerName = "ygjzjl.carcard";
            selectccp.MethodName = "queryByClientSql";
            selectccp.ServerParams = new object[] { strCardIsExist };
            selectccp.SourceDataTable = testdatatable;
            this.ExecuteQueryToDataTable(selectccp, CoreInvokeType.Internal);
            if (testdatatable.Rows.Count == 0)
            {
                MessageBox.Show("该还未注册,不能使用!");
                return;
            }
            else
            {
                tbCardNo.Text = m_Reader.CardNo;
                tbCarNo.Text = testdatatable.Rows[0]["FS_BINDCARNO"].ToString();
            }

            if (isEnterFac(m_Reader.CardNo))
            {
                //出厂显示计量数据
                if (m_enterFacNo == string.Empty)
                {
                    MessageBox.Show("入厂流水号为空!");
                    return;
                }
                else
                {
                    showWeightInfo(m_enterFacNo);
                }
            }
            else
            {
                //进厂显示预报数据
                if (tbCarNo.Text == string.Empty)
                {
                    this.ultraGroupBox4.Visible = true;
                    this.ultraGroupBox3.Visible = false;
                }
                else
                {
                    showProdictInfo(tbCarNo.Text.Trim());
                }
            }
        }
开发者ID:Strongc,项目名称:sencond,代码行数:50,代码来源:CarEnterFactory.cs


示例15: QueryFirstData

        private void QueryFirstData()
        {
            string beginDate = dateTimePicker1.Value.ToString("yyyyMMdd0000");
            string endData = dateTimePicker4.Value.ToString("yyyyMMdd2359");

            //DataTable dt = new DataTable();
            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "com.dbComm.DBComm";
            ccp.MethodName = "query";
            ArrayList list = new ArrayList();
            list.Add(beginDate);
            list.Add(endData);
            if (!uce1.Checked && !uce2.Checked && !uce3.Checked)
            {
                list.Add("1");
                list.Add("2");
                list.Add("3");
            }
            else
            {
                string strStoveSeat1 = string.Empty;
                string strStoveSeat2 = string.Empty;
                string strStoveSeat3 = string.Empty;

                if (uce1.Checked)
                {
                    strStoveSeat1 = "1";
                }

                if (uce2.Checked)
                {
                    strStoveSeat2 = "2";
                }

                if (uce3.Checked)
                {
                    strStoveSeat3 = "3";
                }

                list.Add(strStoveSeat1);
                list.Add(strStoveSeat2);
                list.Add(strStoveSeat3);
            }
            dataSet1.Tables[2].Clear();
            ccp.ServerParams = new object[] { "FIRSTDATAQUERY_01.SELECT", list };
            ccp.SourceDataTable = dataSet1.Tables[2];
            this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:48,代码来源:FirstDataQuery.cs


示例16: AddRecord

        private void AddRecord()
        {
            if (!checkItems())
            {
                return;
            }

            string strStoveSeatNo = (ultraOptionSet1.CheckedIndex + 1).ToString();
            string strStoveNo = txtStoveNo1.Text.Trim().Replace("'", "''");
            string strPotNo = txtPotNo.Text.Trim().Replace("'", "''");
            string strGrossWeight = txtGrossWeight.Text.Trim().Replace("'", "''");
            string strTearWeight = txtTearWeight.Text.Trim().Replace("'", "''");
            string strNetWeight = txtNetWeight.Text.Trim().Replace("'", "''");
            string strReceiveFac = (ultraOptionSet2.CheckedIndex + 1).ToString();
            //string strAddRecorder = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserName();
            string strAddRecorder = CoreFS.SA06.CoreUserInfo.UserInfo.GetUserName() + "手动新增";
            string strShift = Table_CA02_UserOrder.Static_T_CA02_UserOrder.GetUserOrderName(CoreFS.SA06.CoreUserInfo.UserInfo.GetUserOrder()).ToString();//班次

            ArrayList list = new ArrayList();
            list.Add(strStoveSeatNo);
            list.Add(strStoveNo);
            list.Add(strPotNo);
            list.Add(strGrossWeight);
            list.Add(strTearWeight);
            list.Add(strNetWeight);
            list.Add(strReceiveFac);
            list.Add(strAddRecorder);
            list.Add(strAddRecorder);
            list.Add(strShift);

            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "com.dbComm.DBComm";
            ccp.MethodName = "save";
            ccp.ServerParams = new object[] { "DATAMODIFY_01.ADD", list };
            this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
            if (ccp.ReturnCode == 0)
            {
                MessageBox.Show("新增记录成功!");
                string strLog = "罐号=" + strPotNo + ",炉座号="//卡号、车号
            + strStoveSeatNo + ",炉号=" + strStoveNo + ",毛重="//物料、发货单位
            + strGrossWeight + ",皮重=" + strTearWeight + ",净重="//卸货地点、承运单位
            + strNetWeight + ",流向=" + strReceiveFac + ",";
                this.objBi.WriteOperationLog("DT_IRONWEIGHT", strDepartMent, strUserName, "增加", strLog, "数据修改", "动态轨道衡二次数据表", "动态轨道衡");//调用写操作日志方法

            }

            QueryData();
        }
开发者ID:Strongc,项目名称:sencond,代码行数:48,代码来源:DataModify.cs


示例17: DoAdd

        private void DoAdd()
        {
            if (DoCheck())
            {
                string p_PondTypeNo = tbPondTypeNo.Text.Trim();
                string p_PondTypeName = tbPondTypeName.Text.Trim();

                CoreClientParam ccp = new CoreClientParam();
                ccp.ServerName = "ygjzjl.basedatamanage.PondTypeBaseInfo";
                ccp.MethodName = "add";
                ccp.ServerParams = new object[] { p_PondTypeNo, p_PondTypeName };
                this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
                this.DoClear();
                this.DoQuery();
            }
        }
开发者ID:Strongc,项目名称:sencond,代码行数:16,代码来源:PondTypeBaseInfo.cs


示例18: Query

        private void Query()
        {
            string strBeginTime = this.dateTimePicker1.Value.ToString("yyyy-MM-dd HH:mm:ss");
            string strEndTime = this.dateTimePicker2.Value.ToString("yyyy-MM-dd HH:mm:ss");
            string strQuery = "select t.fs_batchno,t.fs_productno,t.fs_materialno,to_char(t.fd_starttime,'yyyy-MM-dd hh24:mi:ss') as fd_starttime"
                              + " from dt_productweightmain t where t.fs_uploadflag='1' and t.fs_materialno is null "
                              + "and (t.fd_starttime between to_date('" + strBeginTime + "','yyyy-MM-dd hh24:mi:ss') and to_date('" + strEndTime + "','yyyy-MM-dd hh24:mi:ss')) order by t.fd_starttime desc";
            string strTmpTable, strTmpField, strTmpOrder;
            this.dataSet1.Tables[0].Clear();
            CoreClientParam ccp = new CoreClientParam();
            ccp.ServerName = "ygjzjl.basedatamanage.OtherBaseInfo";
            ccp.MethodName = "ExcuteQuery";
            ccp.ServerParams = new object[] { strQuery };
            ccp.SourceDataTable = dataSet1.Tables[0];

            this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:17,代码来源:AddMaterialNo.cs


示例19: DoAdd

        private void DoAdd()
        {
            if (DoCheck())
            {
                string p_Shift = tbShift.Text.Trim();
                string p_StartTime = dateTimePicker1.Value.ToString("HH:mm:ss");
                string p_EndTime = dateTimePicker2.Value.ToString("HH:mm:ss");

                CoreClientParam ccp = new CoreClientParam();
                ccp.ServerName = "ygjzjl.basedatamanage.ShiftBaseInfo";
                ccp.MethodName = "add";
                ccp.ServerParams = new object[] { p_Shift, p_StartTime, p_EndTime };
                this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
                this.DoClear();
                this.DoQuery();
            }
        }
开发者ID:Strongc,项目名称:sencond,代码行数:17,代码来源:ShiftBaseInfo.cs


示例20: DoDelete

        private void DoDelete()
        {
            if (strNumber == "")
            {
                MessageBox.Show("请先选择需要删除的记录");
                return;
            }

            string sql = "delete DT_COMPAREBALANCE where FS_NUMBER = '" + strNumber + "'";

            CoreClientParam ccp = new CoreClientParam();

            ccp.ServerName = "ygjzjl.basedatamanage.OtherBaseInfo";
            ccp.MethodName = "ExcuteNonQuery";
            ccp.ServerParams = new object[] { sql };
            ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
        }
开发者ID:Strongc,项目名称:sencond,代码行数:17,代码来源:CompareBalanceInfo11.cs



注:本文中的CoreClientParam类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Corner类代码示例发布时间:2022-05-24
下一篇:
C# Core类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap