/// <summary> /// 新增VDS_PUR_PICK_CONTROL_CHK,鎖定編輯 /// </summary> /// <param name="newTime">建立時間</param> private void InsertControlChk(DateTime newTime) { try { ParameterList.Clear(); ParameterList.Add(txtPLAN_ACCEPT_DATE.Text); ParameterList.Add(txtPICK_BATCH.Text); ParameterList.Add(Session["UID"].ToString()); ParameterList.Add(newTime); PURModel.MaintainPurchaseDeliveryGoods BCO = new PURModel.MaintainPurchaseDeliveryGoods(ConnectionDB); BCO.InsertControlChk(ParameterList, null); } catch(Exception ex) { throw ex; } }