541 lines
37 KiB
541 lines
37 KiB
2 months ago
|
��using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Data;
|
||
|
using System.Xml;
|
||
|
using System.ServiceModel;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
|
||
|
namespace SiaSun.LMS.Implement
|
||
|
{
|
||
|
[ServiceBehavior(IncludeExceptionDetailInFaults = true,
|
||
|
InstanceContextMode = InstanceContextMode.Single,
|
||
|
ConcurrencyMode = ConcurrencyMode.Multiple,
|
||
|
MaxItemsInObjectGraph = int.MaxValue)]
|
||
|
public partial class S_PlanService : SiaSun.LMS.Implement.S_BaseService, SiaSun.LMS.Interface.I_PlanService
|
||
|
{
|
||
|
|
||
|
public S_PlanService()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
public bool Invoke(string sPlanType, string sMethod, object[] inParams, out string sResult)
|
||
|
{
|
||
|
bool bResult = true;
|
||
|
|
||
|
sResult = string.Empty;
|
||
|
|
||
|
string sClassFullName = string.Format("SiaSun.LMS.Implement.{0}", sPlanType);
|
||
|
|
||
|
List<object> oPara = inParams.ToList<object>();
|
||
|
|
||
|
oPara.Add(sResult);
|
||
|
|
||
|
Type t = this.GetType();
|
||
|
|
||
|
Assembly complierAssembly = t.Assembly;
|
||
|
|
||
|
object complierInstance = complierAssembly.CreateInstance(sClassFullName);
|
||
|
|
||
|
Type type = complierInstance.GetType();
|
||
|
|
||
|
object[] obj = oPara.ToArray();
|
||
|
|
||
|
object oResult = null;
|
||
|
|
||
|
//R�^�S\�v@b glQ(u�e�l
|
||
|
MethodInfo[] lsMethodInfo = type.GetMethods();
|
||
|
|
||
|
foreach (MethodInfo methodInfo in lsMethodInfo)
|
||
|
{
|
||
|
if (methodInfo.Name.Equals(sMethod) && oPara.Count.Equals(methodInfo.GetParameters().Length))
|
||
|
{
|
||
|
oResult = methodInfo.Invoke(complierInstance, obj);
|
||
|
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bResult = Convert.ToBoolean(oResult);
|
||
|
|
||
|
sResult = obj[oPara.Count - 1].ToString();
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
|
||
|
public bool Invoke(string sPlanType, string sMethod, object[] inParams, out object[] outParams)
|
||
|
{
|
||
|
bool bResult = true;
|
||
|
|
||
|
string sClassFullName = string.Format("SiaSun.LMS.Implement.{0}", sPlanType);
|
||
|
|
||
|
List<object> oPara = inParams.ToList<object>();
|
||
|
|
||
|
Type t = this.GetType();
|
||
|
|
||
|
Assembly complierAssembly = t.Assembly;
|
||
|
|
||
|
object complierInstance = complierAssembly.CreateInstance(sClassFullName);
|
||
|
|
||
|
Type type = complierInstance.GetType();
|
||
|
|
||
|
outParams = oPara.ToArray();
|
||
|
|
||
|
object oResult = null;
|
||
|
|
||
|
//R�^�S\�v@b glQ(u�e�l
|
||
|
MethodInfo[] lsMethodInfo = type.GetMethods();
|
||
|
|
||
|
foreach (MethodInfo methodInfo in lsMethodInfo)
|
||
|
{
|
||
|
if (methodInfo.Name.Equals(sMethod) && oPara.Count.Equals(methodInfo.GetParameters().Length))
|
||
|
{
|
||
|
oResult = methodInfo.Invoke(complierInstance, outParams);
|
||
|
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bResult = Convert.ToBoolean(oResult);
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
|
||
|
#region ------PLAN_TYPE
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// ���_@b gRh�
|
||
|
/// </summary>
|
||
|
public DataTable PlanTypeGetData()
|
||
|
{
|
||
|
return this.GetList("");
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// ���_PLAN_TYPE!j�W
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
public SiaSun.LMS.Model.PLAN_TYPE PlanTypeGetModel(string PLAN_TYPE_CODE)
|
||
|
{
|
||
|
return this._P_PLAN_TYPE.GetModel(1);
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ------PLAN_MAIN
|
||
|
|
||
|
/// <summary>
|
||
|
/// ���_PLAN!j�W
|
||
|
/// </summary>
|
||
|
public SiaSun.LMS.Model.PLAN_MAIN PlanGetModel(int PLAN_ID)
|
||
|
{
|
||
|
return this._P_PLAN_MAIN.GetModel(PLAN_ID);
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// ���_PLAN!j�W
|
||
|
/// </summary>
|
||
|
public SiaSun.LMS.Model.PLAN_DETAIL PlanDetailGetModel(int PLAN_DETAIL_ID)
|
||
|
{
|
||
|
return this._P_PLAN_DETAIL.GetModel(PLAN_DETAIL_ID);
|
||
|
}
|
||
|
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region -------PLAN_LIST
|
||
|
|
||
|
/// <summary>
|
||
|
/// ���_PLANLIST!j�W
|
||
|
/// </summary>
|
||
|
public SiaSun.LMS.Model.PLAN_LIST PlanListGetModel(int PLAN_LIST_ID)
|
||
|
{
|
||
|
return this._P_PLAN_LIST.GetModel(PLAN_LIST_ID);
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
public bool PlanDownLoad(int PLAN_ID, out string sResult)
|
||
|
{
|
||
|
bool bResult = true;
|
||
|
|
||
|
sResult = string.Empty;
|
||
|
|
||
|
//Model.PLAN_MAIN mPLAN_MAIN = this._P_PLAN_MAIN.GetModel(PLAN_ID);
|
||
|
|
||
|
//bResult = mPLAN_MAIN != null;
|
||
|
|
||
|
//if (!bResult)
|
||
|
//{
|
||
|
// sResult = string.Format("*g~b0R��R{0}", PLAN_ID.ToString());
|
||
|
|
||
|
// return bResult;
|
||
|
//}
|
||
|
|
||
|
//IList<SiaSun.LMS.Model.PLAN_LIST> lsPLAN_LIST = this._P_PLAN_LIST.GetListPlanID(PLAN_ID);
|
||
|
|
||
|
//List<int> lsEND_CELL_ID = new List<int>();
|
||
|
|
||
|
//Model.WH_CELL mWH_CELL_END = null;
|
||
|
|
||
|
//IList<SiaSun.LMS.Model.WH_CELL> lsEND_CELL = null;
|
||
|
|
||
|
//bResult = !string.IsNullOrEmpty(mPLAN_MAIN.PLAN_INOUT_STATION);
|
||
|
|
||
|
//if (!bResult)
|
||
|
//{
|
||
|
// sResult = string.Format(" OeQ�z�S:Nzz-�N�R�S:N{0}", mPLAN_MAIN.PLAN_CODE);
|
||
|
|
||
|
// return bResult;
|
||
|
//}
|
||
|
|
||
|
//mWH_CELL_END = this._P_WH_CELL.GetModel(mPLAN_MAIN.PLAN_INOUT_STATION);
|
||
|
|
||
|
//bResult = null != mWH_CELL_END;
|
||
|
|
||
|
//if (!bResult)
|
||
|
//{
|
||
|
// sResult = string.Format("*g~b0R�z�S{0}-�N�R�S:N{1}", mPLAN_MAIN.PLAN_INOUT_STATION, mPLAN_MAIN.PLAN_CODE);
|
||
|
|
||
|
// return bResult;
|
||
|
//}
|
||
|
|
||
|
//if (!mWH_CELL_END.LANE_WAY.Equals(0))
|
||
|
//{
|
||
|
// lsEND_CELL = this._P_WH_CELL.GetList_LANEWAY(mWH_CELL_END.LANE_WAY);
|
||
|
//}
|
||
|
|
||
|
//if (lsEND_CELL != null && lsEND_CELL.Count > 0)
|
||
|
//{
|
||
|
// foreach (WH_CELL mWH_CELL in lsEND_CELL)
|
||
|
// {
|
||
|
// lsEND_CELL_ID.Add(mWH_CELL.CELL_ID);
|
||
|
// }
|
||
|
|
||
|
// lsEND_CELL_ID.Remove(mWH_CELL_END.CELL_ID);
|
||
|
|
||
|
// lsEND_CELL_ID.Insert(0, mWH_CELL_END.CELL_ID);
|
||
|
//}
|
||
|
//else
|
||
|
//{
|
||
|
// lsEND_CELL_ID.Add(mWH_CELL_END.CELL_ID);
|
||
|
//}
|
||
|
|
||
|
//try
|
||
|
//{
|
||
|
// this._P_Base_House.BeginTransaction();
|
||
|
|
||
|
// foreach (Model.PLAN_LIST mPLAN_LIST in lsPLAN_LIST)
|
||
|
// {
|
||
|
|
||
|
// bResult = this.PlanListDownLoad( mPLAN_LIST.PLAN_LIST_ID, out sResult);
|
||
|
|
||
|
// if (!bResult)
|
||
|
// {
|
||
|
// return bResult;
|
||
|
// }
|
||
|
// }
|
||
|
|
||
|
// //�f�e��R�r`
|
||
|
// mPLAN_MAIN.PLAN_STATUS = Enum.PLAN_STATUS.Executing.ToString();
|
||
|
|
||
|
// this._P_PLAN_MAIN.Update(mPLAN_MAIN);
|
||
|
//}
|
||
|
//catch (Exception ex)
|
||
|
//{
|
||
|
// bResult = false;
|
||
|
|
||
|
// sResult = ex.ToString();
|
||
|
//}
|
||
|
//finally
|
||
|
//{
|
||
|
// if (bResult)
|
||
|
// {
|
||
|
// this._P_Base_House.CommitTransaction();
|
||
|
// }
|
||
|
// else
|
||
|
// {
|
||
|
// this._P_Base_House.RollBackTransaction();
|
||
|
// }
|
||
|
//}
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
|
||
|
public bool PlanListDownLoad(Model.SYS_USER mSYS_USER ,int PLAN_LIST_ID, int END_CELL_ID, bool bTrans, out string sResult)
|
||
|
{
|
||
|
bool bResult = true;
|
||
|
|
||
|
sResult = string.Empty;
|
||
|
|
||
|
string sMsg = string.Empty;
|
||
|
|
||
|
SiaSun.LMS.Model.PLAN_LIST mPLAN_LIST = this._P_PLAN_LIST.GetModel(PLAN_LIST_ID);
|
||
|
|
||
|
SiaSun.LMS.Model.PLAN_MAIN mPLAN_MAIN = this._P_PLAN_MAIN.GetModel(mPLAN_LIST.PLAN_ID);
|
||
|
|
||
|
SiaSun.LMS.Model.PLAN_TYPE mPLAN_TYPE = this._P_PLAN_TYPE.GetModelPlanTypeCode(mPLAN_MAIN.PLAN_TYPE_CODE);
|
||
|
|
||
|
int iSTART_CELL_ID = 0;
|
||
|
|
||
|
string STOCK_BARCODE = string.Empty;
|
||
|
|
||
|
decimal MANAGE_ORDERED_QUANTITY = 0;
|
||
|
|
||
|
System.Data.DataTable dtLANEWAY = null;
|
||
|
|
||
|
bResult = this._S_CellService.LaneWayGetList(END_CELL_ID, mPLAN_LIST.GOODS_ID, string.Empty, out dtLANEWAY, out sResult);
|
||
|
|
||
|
if (!bResult)
|
||
|
{
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
int iSumQuantity = 0;
|
||
|
|
||
|
foreach (DataRow drLANEWAY in dtLANEWAY.Rows)
|
||
|
{
|
||
|
iSumQuantity += Convert.ToInt32(drLANEWAY["LANEWAY_QUANTITY"]);
|
||
|
}
|
||
|
|
||
|
bResult = iSumQuantity >= Convert.ToInt32(mPLAN_LIST.PLAN_LIST_QUANTITY) - Convert.ToInt32(mPLAN_LIST.PLAN_LIST_ORDERED_QUANTITY);
|
||
|
|
||
|
if (!bResult)
|
||
|
{
|
||
|
sResult = string.Format("��RgbL�1Y%�0��R�Q�^peϑ:N{1},S_MR�S(u�^X[:N{0},", iSumQuantity, mPLAN_LIST.PLAN_LIST_QUANTITY.ToString());
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
try
|
||
|
{
|
||
|
this._P_Base_House.BeginTransaction(bTrans);
|
||
|
|
||
|
while (mPLAN_LIST.PLAN_LIST_QUANTITY > mPLAN_LIST.PLAN_LIST_ORDERED_QUANTITY)
|
||
|
{
|
||
|
|
||
|
decimal MANAGE_LIST_QUANTITY = mPLAN_LIST.PLAN_LIST_QUANTITY - mPLAN_LIST.PLAN_LIST_ORDERED_QUANTITY;
|
||
|
|
||
|
//$R�e��R/f&T�]�~hQ��N��
|
||
|
if (MANAGE_LIST_QUANTITY <= 0)
|
||
|
{
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
DataView dvLANEWAY = dtLANEWAY.DefaultView;
|
||
|
|
||
|
dvLANEWAY.RowFilter = "LANEWAY_QUANTITY > 0";
|
||
|
|
||
|
dvLANEWAY.Sort = "MANAGE_QUANTITY asc,LANEWAY_QUANTITY desc";
|
||
|
|
||
|
bResult = dvLANEWAY.Count > 0;
|
||
|
|
||
|
if (!bResult)
|
||
|
{
|
||
|
sResult = "�n��ag�N�v�^X[peϑ
N����laꁨR!hh��~�S���Q�n�W�24�S �";
|
||
|
|
||
|
this._P_Base_House.RollBackTransaction(bTrans);
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
int iLANEWAY = Convert.ToInt32(dvLANEWAY[0]["LANE_WAY"]);
|
||
|
|
||
|
bResult = this._S_CellService.CellOutAllocate(iLANEWAY, END_CELL_ID, mPLAN_LIST.GOODS_ID, string.Empty, MANAGE_LIST_QUANTITY, out iSTART_CELL_ID, out STOCK_BARCODE, out MANAGE_ORDERED_QUANTITY, out sResult);
|
||
|
|
||
|
if (!bResult)
|
||
|
{
|
||
|
dvLANEWAY[0]["LANEWAY_QUANTITY"] = 0;
|
||
|
|
||
|
break;
|
||
|
|
||
|
}
|
||
|
|
||
|
bResult = new SiaSun.LMS.Implement.ManageBase().ManageCreate(mSYS_USER, PLAN_LIST_ID, mPLAN_TYPE.MANAGE_TYPE_CODE,STOCK_BARCODE, iSTART_CELL_ID, END_CELL_ID, false, true, false, out sResult);
|
||
|
|
||
|
if (!bResult)
|
||
|
{
|
||
|
sResult += sMsg;
|
||
|
|
||
|
this._P_Base_House.RollBackTransaction(bTrans);
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
decimal dLANEWAY_QUANTITY_SUB = Convert.ToDecimal(dvLANEWAY[0].Row["LANEWAY_QUANTITY"]) - MANAGE_ORDERED_QUANTITY;
|
||
|
|
||
|
dvLANEWAY[0].Row["LANEWAY_QUANTITY"] = dLANEWAY_QUANTITY_SUB;
|
||
|
|
||
|
if (dLANEWAY_QUANTITY_SUB > 0)
|
||
|
{
|
||
|
dvLANEWAY[0].Row["MANAGE_QUANTITY"] = Convert.ToDecimal(dvLANEWAY[0].Row["MANAGE_QUANTITY"]) + 1;
|
||
|
}
|
||
|
|
||
|
mPLAN_LIST = this._P_PLAN_LIST.GetModel(PLAN_LIST_ID);
|
||
|
|
||
|
}
|
||
|
|
||
|
this._P_Base_House.CommitTransaction(bTrans);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
this._P_Base_House.RollBackTransaction(bTrans);
|
||
|
|
||
|
bResult = false;
|
||
|
|
||
|
sResult = ex.Message;
|
||
|
}
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
|
||
|
public bool PlanDetailDownLoad(int PLAN_ID, out string sResult)
|
||
|
{
|
||
|
bool bResult = true;
|
||
|
|
||
|
sResult = string.Empty;
|
||
|
|
||
|
return bResult;
|
||
|
}
|
||
|
|
||
|
|
||
|
#region ------9hnc[{ �ag�N ��b�Q�^
|
||
|
|
||
|
///// <summary>
|
||
|
///// 9hnc�Q�^ĉR��^X[�R�^�Q�^�N�R
|
||
|
///// </summary>
|
||
|
//public bool CreateOutTask_Rule(SYS_USER mUSER, int PLAN_ID, string PLAN_TYPE_CODE, decimal SumQuantity, string BoxNo_Start, string BoxNo_End, string Where, out string strResult)
|
||
|
//{
|
||
|
// bool boolResult = true;
|
||
|
// strResult = null;
|
||
|
// string strWhere = null;
|
||
|
|
||
|
// //!h���Spe/f&TT�l
|
||
|
// if (SumQuantity < 0 && (string.IsNullOrEmpty(BoxNo_Start) || string.IsNullOrEmpty(BoxNo_End)))
|
||
|
// {
|
||
|
// boolResult = false;
|
||
|
// strResult = string.Format("���h�g OeQ�Spe/f&TT�l�");
|
||
|
// return boolResult;
|
||
|
// }
|
||
|
|
||
|
// //$R�e�Q�^ĉR
|
||
|
// if (!string.IsNullOrEmpty(BoxNo_Start) && !string.IsNullOrEmpty(BoxNo_End))
|
||
|
// {
|
||
|
// strWhere = string.Format("{0} AND (BOX_NO BETWEEN '{1}' AND '{2}')", string.IsNullOrEmpty(Where) ? "1=1" : Where, BoxNo_Start, BoxNo_End);
|
||
|
// }
|
||
|
// else
|
||
|
// {
|
||
|
// strWhere = string.Format("{0}", string.IsNullOrEmpty(Where) ? "1=1" : Where);
|
||
|
// }
|
||
|
// try
|
||
|
// {
|
||
|
// //���_�n��ag�N�v�^X[
|
||
|
// using (DataTable tableStorageList = this.GetTable(string.Format("SELECT * FROM V_STORAGE_LIST WHERE {0}", strWhere)))
|
||
|
// {
|
||
|
// if (tableStorageList.Rows.Count <= 0)
|
||
|
// {
|
||
|
// boolResult = false;
|
||
|
// strResult = string.Format("�^X[
NX[(W����h�g�^X[�");
|
||
|
// return boolResult;
|
||
|
// }
|
||
|
// decimal delSum = 0;
|
||
|
// List<string> listStockBarCode = new List<string>();
|
||
|
|
||
|
// //���_pe�~
|
||
|
// DataRow[] arStorageList = tableStorageList.Rows.Cast<DataRow>().ToArray();
|
||
|
// // cgq�{�^�S0u�N�eg�c�^v^R�~
|
||
|
// var groupStock = from ar in arStorageList orderby ar["BATCH_NO"].ToString(), ar["BOX_NO"] group ar by ar["STOCK_BARCODE"].ToString() into a select a;
|
||
|
// //M��S@b gXb�v��[�kpeϑ
|
||
|
// foreach (var stock in groupStock)
|
||
|
// {
|
||
|
// //���{peϑ
|
||
|
// if (SumQuantity <= 0 || (SumQuantity > 0 && delSum <= SumQuantity))
|
||
|
// {
|
||
|
// //���_Xb�vagx
|
||
|
// string strStockBarCode = stock.Key;
|
||
|
// //���_��Xb�v�Qir�e;`pe
|
||
|
// var queryStock = from ar in arStorageList where ar["STOCK_BARCODE"].ToString() == strStockBarCode select ar;
|
||
|
// delSum += queryStock.Sum(r => Convert.ToDecimal(r["STORAGE_LIST_QUANTITY"]));
|
||
|
// //�ReQRh�
|
||
|
// listStockBarCode.Add(strStockBarCode);
|
||
|
// }
|
||
|
// }
|
||
|
|
||
|
// //\@b gXb�v�Q�^
|
||
|
// boolResult = this.CreateOutTask_List(mUSER, PLAN_ID, PLAN_TYPE_CODE, listStockBarCode, out strResult);
|
||
|
// }
|
||
|
// }
|
||
|
// catch (Exception ex)
|
||
|
// {
|
||
|
// boolResult = false;
|
||
|
// strResult = ex.Message;
|
||
|
// }
|
||
|
// return boolResult;
|
||
|
//}
|
||
|
|
||
|
///// <summary>
|
||
|
///// R�^�Q�^�N�R
|
||
|
///// </summary>
|
||
|
//public bool CreateOutTask_List(SYS_USER mUSER, int PLAN_ID, string PLAN_TYPE_CODE, List<string> StockBarCodeList, out string strResult)
|
||
|
//{
|
||
|
// bool boolResult = true;
|
||
|
// strResult = null;
|
||
|
|
||
|
// //���_�^:SRh�
|
||
|
// IList<WH_AREA> listWH_AREA = this._P_WH_AREA.GetList();
|
||
|
// //���_�vh�^:S
|
||
|
// int intEndAreaID = listWH_AREA.First(r => r.AREA_TYPE == Enum.AREA_TYPE.XuNiKu.ToString()).AREA_ID;
|
||
|
|
||
|
// //M��S@b gXb�v
|
||
|
// foreach (string strStockBarCode in StockBarCodeList)
|
||
|
// {
|
||
|
// //���_�^X[
|
||
|
// STORAGE_MAIN mSTORAGE_MAIN = this._P_STORAGE_MAIN.GetModel_STOCK_BARCODE(strStockBarCode);
|
||
|
// if (mSTORAGE_MAIN != null)
|
||
|
// {
|
||
|
// //���_�^X[MOn
|
||
|
// WH_CELL mWH_CELL_Start = this._P_WH_CELL.GetModel(mSTORAGE_MAIN.CELL_ID);
|
||
|
// if (mWH_CELL_Start != null)
|
||
|
// {
|
||
|
// //���_�~�v�[�O
|
||
|
// Model.Stack mStack = this._S_StorageService.GetStack_CellID_Storage(PLAN_ID, mWH_CELL_Start.CELL_ID);
|
||
|
// //�N�R�Spe
|
||
|
// ManageCreateParam mParam = new ManageCreateParam(true,
|
||
|
// mUSER,
|
||
|
// PLAN_ID,
|
||
|
// null,
|
||
|
// 0,
|
||
|
// PLAN_TYPE_CODE,
|
||
|
// null,
|
||
|
// mWH_CELL_Start.AREA_ID,
|
||
|
// mWH_CELL_Start.CELL_ID,
|
||
|
// intEndAreaID,
|
||
|
// 0,
|
||
|
// mStack);
|
||
|
// //R�^�Q�^�N�R
|
||
|
// int intManageID = 0;
|
||
|
// boolResult = this._S_TaskService.MANAGE_Create_Task(mParam, out intManageID, out strResult);
|
||
|
// }
|
||
|
// }
|
||
|
// }
|
||
|
|
||
|
// return boolResult;
|
||
|
//}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|