/// <summary> /// 插入红冲入库和红冲入库明细 /// </summary> /// <param name="model"></param> /// <param name="modelList"></param> /// <returns></returns> public static bool InsertStorageInRed(StorageInRedModel model, List <StorageInRedDetailModel> modelList, Hashtable htExtAttr, out int IndexIDentity) { IndexIDentity = 0; //获取登陆用户信息 UserInfoUtil userInfo = (UserInfoUtil)SessionUtil.Session["UserInfo"]; //设置公司代码 model.CompanyCD = userInfo.CompanyCD; //定义返回变量 bool isSucc = false; /* * 定义日志内容变量 * 增删改相关的日志,需要输出操作日志,该类型日志插入到数据库 * 其他的 如出现异常时,需要输出系统日志,该类型日志保存到日志文件 */ //获取公司代码 string companyCD = ((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD; //执行删除操作 try { //执行更新 isSucc = StorageInRedDBHelper.InsertStorageInRed(model, modelList, out IndexIDentity, htExtAttr); } catch (Exception ex) { //输出日志 WriteSystemLog(userInfo, ex); } //定义变量 string remark; //成功时 if (isSucc) { //设置操作成功标识 remark = ConstUtil.LOG_PROCESS_SUCCESS; } else { //设置操作成功标识 remark = ConstUtil.LOG_PROCESS_FAILED; } //操作日志 LogInfoModel logModel = InitLogInfo(model.InNo); //涉及关键元素 这个需要根据每个页面具体设置,本页面暂时设置为空 logModel.Element = ConstUtil.LOG_PROCESS_INSERT; //设置操作成功标识 logModel.Remark = remark; //登陆日志 LogDBHelper.InsertLog(logModel); return(isSucc); }
public static bool CancelCloseBill(StorageInRedModel model) { //获取登陆用户信息 UserInfoUtil userInfo = (UserInfoUtil)SessionUtil.Session["UserInfo"]; //设置公司代码 model.CompanyCD = userInfo.CompanyCD; //定义返回变量 bool isSucc = false; /* * 定义日志内容变量 * 增删改相关的日志,需要输出操作日志,该类型日志插入到数据库 * 其他的 如出现异常时,需要输出系统日志,该类型日志保存到日志文件 */ //获取公司代码 string companyCD = ((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD; //执行删除操作 try { //执行更新 isSucc = StorageInRedDBHelper.CancelCloseBill(model); } catch (Exception ex) { //输出日志 WriteSystemLog(userInfo, ex); } //定义变量 string remark; //成功时 if (isSucc) { //设置操作成功标识 remark = ConstUtil.LOG_PROCESS_SUCCESS; } else { //设置操作成功标识 remark = ConstUtil.LOG_PROCESS_FAILED; } //操作日志 LogInfoModel logModel = InitLogInfo(model.ID); //涉及关键元素 这个需要根据每个页面具体设置,本页面暂时设置为空 logModel.Element = "取消结单"; //设置操作成功标识 logModel.Remark = remark; //登陆日志 LogDBHelper.InsertLog(logModel); return(isSucc); }
protected void btnImport_Click(object sender, ImageClickEventArgs e) { StorageInRedModel model = new StorageInRedModel(); model.CompanyCD = ((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD; string EnterDateStart = string.Empty; string EnterDateEnd = string.Empty; model.InNo = txtInNo.Value; model.Title = txtTitle.Value; model.ReasonType = ddlReasonType.SelectedValue; if (hidFromBillID.Value == "undefined") { hidFromBillID.Value = ""; } model.FromBillID = hidFromBillID.Value; model.DeptID = txtDeptID.Value; model.BillStatus = sltBillStatus.Value; model.Executor = txtExecutorID.Value; model.FromType = sltFromType.Value; EnterDateStart = txtEnterDateStart.Value; EnterDateEnd = txtEnterDateEnd.Value; string BatchNo = txtBatchNo.Value; string orderBy = txtorderBy.Value; if (!string.IsNullOrEmpty(orderBy)) { if (orderBy.Split('_')[1] == "a") { orderBy = orderBy.Split('_')[0] + " asc"; } else { orderBy = orderBy.Split('_')[0] + " desc"; } } DataTable dt = StorageInRedBus.GetStorageInRedTableBycondition(BatchNo, model, EnterDateStart, EnterDateEnd, orderBy); if (((UserInfoUtil)SessionUtil.Session["UserInfo"]).IsDisplayPrice) { OutputToExecl.ExportToTableFormat(this, dt, new string[] { "单据编号", "单据主题", "源单类型", "源单编号", "入库部门", "入库人", "入库时间", "入库原因", "红冲数量", "红冲金额", "摘要", "单据状态" }, new string[] { "InNo", "Title", "FromType", "FromInNo", "DeptName", "ExecutorName", "EnterDate", "CodeName", "CountTotal", "TotalPrice", "Summary", "BillStatusName" }, "红冲入库列表"); } else { OutputToExecl.ExportToTableFormat(this, dt, new string[] { "单据编号", "单据主题", "源单类型", "源单编号", "入库部门", "入库人", "入库时间", "入库原因", "红冲数量", "摘要", "单据状态" }, new string[] { "InNo", "Title", "FromType", "FromInNo", "DeptName", "ExecutorName", "EnterDate", "CodeName", "CountTotal", "Summary", "BillStatusName" }, "红冲入库列表"); } }
protected void LoadPrintInfo() { PrintParameterSettingModel model = new PrintParameterSettingModel(); model.CompanyCD = ((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD; model.BillTypeFlag = int.Parse(ConstUtil.BILL_TYPEFLAG_STORAGE); model.PrintTypeFlag = ConstUtil.PRINTBILL_TYPEFLAG_INRED; StorageInRedModel InRedM_ = new StorageInRedModel(); InRedM_.CompanyCD = ((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD; InRedM_.ID = this.BillID.ToString(); #region 初始化 取基本信息及明细信息的字段以及对应的标题 /*此处需注意在模板设置表里的字段和取基本信息的字段是否一致*/ string[,] aBase; string[,] aDetail; if (GetIsDisplayPrice() != "none") { aBase = new string[, ] { { "{ExtField1}", "ExtField1" }, { "{ExtField2}", "ExtField2" }, { "{ExtField3}", "ExtField3" }, { "{ExtField4}", "ExtField4" }, { "{ExtField5}", "ExtField5" }, { "{ExtField6}", "ExtField6" }, { "{ExtField7}", "ExtField7" }, { "{ExtField8}", "ExtField8" }, { "{ExtField9}", "ExtField9" }, { "{ExtField10}", "ExtField10" }, { "入库单编号", "InNo" }, { "入库单主题", "Title" }, { "源单类型", "FromType" }, { "原始入库单", "FromInNo" }, { "原始入库人", "FromExecutor" }, { "原始入库时间", "FromEnterDate" }, { "原始入库部门", "DeptName" }, { "入库人", "ExecutorName" }, { "入库时间", "EnterDate" }, { "入库原因", "ReasonTypeName" }, { "原始摘要", "FromSummary" }, { "摘要", "Summary" }, { "批次", "BatchNo" }, { "数量合计", "CountTotal" }, { "金额合计", "A_TotalPrice" }, { "制单人", "CreatorName" }, { "制单日期", "CreateDate" }, { "确认人", "ConfirmorName" }, { "确认日期", "ConfirmDate" }, { "结单人", "CloserName" }, { "结单日期", "CloseDate" }, { "最后更新人", "ModifiedUserName" }, { "最后更新日期", "ModifiedDate" }, { "单据状态", "BillStatus" }, { "备注", "Remark" }, }; if (HiddenMoreUnit.Value == "true") { aDetail = new string[, ] { { "序号", "SortNo" }, { "物品编号", "ProductNo" }, { "物品名称", "ProductName" }, { "规格", "Specification" }, { "基本单位", "UnitID" }, { "单位", "UsedUnitName" }, //++ { "仓库", "StorageName" }, { "原始入库量", "FromBillCount" }, { "基本数量", "ProductCount" }, { "数量", "UsedUnitCount" }, //++ { "红冲单价", "UnitPrice" }, { "红冲金额", "B_TotalPrice" }, }; } else { aDetail = new string[, ] { { "序号", "SortNo" }, { "物品编号", "ProductNo" }, { "物品名称", "ProductName" }, { "规格", "Specification" }, { "单位", "UnitID" }, { "仓库", "StorageName" }, { "原始入库量", "FromBillCount" }, { "红冲数量", "ProductCount" }, { "红冲单价", "UnitPrice" }, { "红冲金额", "B_TotalPrice" }, }; } } else { aBase = new string[, ] { { "{ExtField1}", "ExtField1" }, { "{ExtField2}", "ExtField2" }, { "{ExtField3}", "ExtField3" }, { "{ExtField4}", "ExtField4" }, { "{ExtField5}", "ExtField5" }, { "{ExtField6}", "ExtField6" }, { "{ExtField7}", "ExtField7" }, { "{ExtField8}", "ExtField8" }, { "{ExtField9}", "ExtField9" }, { "{ExtField10}", "ExtField10" }, { "入库单编号", "InNo" }, { "入库单主题", "Title" }, { "源单类型", "FromType" }, { "原始入库单", "FromInNo" }, { "原始入库人", "FromExecutor" }, { "原始入库时间", "FromEnterDate" }, { "原始入库部门", "DeptName" }, { "入库人", "ExecutorName" }, { "入库时间", "EnterDate" }, { "入库原因", "ReasonTypeName" }, { "原始摘要", "FromSummary" }, { "摘要", "Summary" }, { "批次", "BatchNo" }, { "数量合计", "CountTotal" }, { "制单人", "CreatorName" }, { "制单日期", "CreateDate" }, { "确认人", "ConfirmorName" }, { "确认日期", "ConfirmDate" }, { "结单人", "CloserName" }, { "结单日期", "CloseDate" }, { "最后更新人", "ModifiedUserName" }, { "最后更新日期", "ModifiedDate" }, { "单据状态", "BillStatus" }, { "备注", "Remark" }, }; if (HiddenMoreUnit.Value == "true") { aDetail = new string[, ] { { "序号", "SortNo" }, { "物品编号", "ProductNo" }, { "物品名称", "ProductName" }, { "规格", "Specification" }, { "基本单位", "UnitID" }, { "单位", "UsedUnitName" }, //++ { "仓库", "StorageName" }, { "原始入库量", "FromBillCount" }, { "基本数量", "ProductCount" }, { "数量", "UsedUnitCount" }, //++ }; } else { aDetail = new string[, ] { { "序号", "SortNo" }, { "物品编号", "ProductNo" }, { "物品名称", "ProductName" }, { "规格", "Specification" }, { "单位", "UnitID" }, { "仓库", "StorageName" }, { "原始入库量", "FromBillCount" }, { "红冲数量", "ProductCount" }, }; } } #endregion #region 1.扩展属性 int countExt = 0; DataTable dtExtTable = XBase.Business.Office.SupplyChain.TableExtFieldsBus.GetAllList(((UserInfoUtil)SessionUtil.Session["UserInfo"]).CompanyCD, "", "officedba.StorageInRed"); if (dtExtTable.Rows.Count > 0) { for (int i = 0; i < dtExtTable.Rows.Count; i++) { for (int x = 0; x < (aBase.Length / 2) - 15; x++) { if (x == i) { aBase[x, 0] = dtExtTable.Rows[i]["EFDesc"].ToString(); countExt++; } } } } #endregion #region 2.所设的打印模板设置 DataTable dbPrint = XBase.Business.Common.PrintParameterSettingBus.GetPrintParameterSettingInfo(model); DataTable dtDetail = StorageInRedBus.GetStorageInRedDetailInfo(InRedM_.ID, InRedM_.CompanyCD); DataTable dtMain = StorageInRedBus.GetStorageInRedInfo(InRedM_.ID, InRedM_.CompanyCD); string strBaseFields = ""; string strDetailFields = ""; if (dbPrint.Rows.Count > 0) { #region 设置过打印模板设置时 直接取出表里设置的值 isSeted.Value = "1"; strBaseFields = dbPrint.Rows[0]["BaseFields"].ToString(); strDetailFields = dbPrint.Rows[0]["DetailFields"].ToString(); #endregion } else { #region 未设置过打印模板设置 默认显示所有的 isSeted.Value = "0"; /*未设置过打印模板设置时,默认显示的字段 基本信息字段*/ for (int m = 10; m < aBase.Length / 2; m++) { strBaseFields = strBaseFields + aBase[m, 1] + "|"; } /*未设置过打印模板设置时,默认显示的字段 基本信息字段+扩展信息字段*/ if (countExt > 0) { for (int i = 0; i < countExt; i++) { strBaseFields = strBaseFields + "ExtField" + (i + 1) + "|"; } } /*未设置过打印模板设置时,默认显示的字段 明细信息字段*/ for (int n = 0; n < aDetail.Length / 2; n++) { strDetailFields = strDetailFields + aDetail[n, 1] + "|"; } #endregion /*两种都可以*/ } #endregion #region 3.输出主表信息 if (!string.IsNullOrEmpty(strBaseFields)) { tableBase.InnerHtml = WritePrintPageTable("红冲入库单", strBaseFields.TrimEnd('|'), strDetailFields.TrimEnd('|'), aBase, aDetail, dtMain, dtDetail, true); } #endregion #region 4.输出明细信息 if (!string.IsNullOrEmpty(strDetailFields)) { tableDetail.InnerHtml = WritePrintPageTable("红冲入库单", strBaseFields.TrimEnd('|'), strDetailFields.TrimEnd('|'), aBase, aDetail, dtMain, dtDetail, false); } #endregion }
public static string ISBigUseCountWhenCant(StorageInRedModel model) { return(StorageInRedDBHelper.ISBigUseCountWhenCant(model)); }
/// <summary> /// 获取红冲入库详细信息(加载页面的时候) /// </summary> /// <returns>DataTable</returns> public static DataTable GetStorageInRedDetailInfo(StorageInRedModel model) { return(StorageInRedDBHelper.GetStorageInRedDetailInfo(model)); }
/// <summary> /// 获取入库单列表 /// </summary> /// <param name="companycd"></param> /// <returns></returns> public static DataTable GetStorageInList(StorageInRedModel model, string InType) { return(StorageInRedDBHelper.GetStorageInList(model, InType)); }
public static DataTable GetStorageInRedTableBycondition(string BatchNo, StorageInRedModel model, string timeStart, string timeEnd, string orderby) { return(StorageInRedDBHelper.GetStorageInRedTableBycondition(BatchNo, model, timeStart, timeEnd, orderby)); }
/// <summary> /// 查询其他入库单 /// </summary> /// <returns>DataTable</returns> public static DataTable GetStorageInRedTableBycondition(string BatchNo, StorageInRedModel model, string timeStart, string timeEnd, int pageIndex, int pageCount, string ord, ref int TotalCount) { return(StorageInRedDBHelper.GetStorageInRedTableBycondition(BatchNo, model, timeStart, timeEnd, pageIndex, pageCount, ord, ref TotalCount)); }