public static bool dellNewCCashBack(string id, string cid, ref string a_strErr) { if (SalesPro.dellCCashBack(id, cid, ref a_strErr) >= 1) { return(true); } else { return(false); } }
public static bool InsertBiddingNew(tk_CFile fileUp, HttpFileCollection Filedata, ref string strErr) { if (SalesPro.InsertBiddingNew(fileUp, Filedata, ref strErr) > 0) { return(true); } else { return(false); } }
public static bool UpdateNewCCashBack(CCashBack Cash, ref string a_strErr) { if (SalesPro.UpdateCCashBack(Cash, ref a_strErr) >= 1) { return(true); } else { return(false); } }
public static bool EXUpdateNewApproval(string IsPass, string Opinion, string Remark, string PID, string webkey, string folderBack, string RelevanceID, ref string a_strErr) { if (SalesPro.EXUpdateApproval(IsPass, Opinion, Remark, PID, webkey, folderBack, RelevanceID, ref a_strErr) >= 1) { return(true); } else { return(false); } }
public static bool InsertNewFile(string id, byte[] fileByte, string FileName, ref string a_strErr) { if (SalesPro.InsertFile(id, fileByte, FileName, ref a_strErr) >= 1) { return(true); } else { return(false); } }
public static bool EXInsertNewApproval(string PID, string RelevanceID, string webkey, string folderBack, ref string a_strErr) { if (SalesPro.EXInsertApproval(PID, RelevanceID, webkey, folderBack, ref a_strErr) >= 1) { return(true); } else { return(false); } }
public static bool DellNewFile(string ID, ref string a_strErr) { if (SalesPro.DeleteFile(ID, ref a_strErr) >= 1) { return(true); } else { return(false); } }
//获取未回款的订单 public static List <SelectListItem> GetOrderID() { List <SelectListItem> ListItem = new List <SelectListItem>(); DataTable dt = SalesPro.GetOrderID(); if (dt == null) { return(ListItem); } SelectListItem SelListItem = new SelectListItem(); for (int i = 0; i < dt.Rows.Count; i++) { SelListItem = new SelectListItem(); SelListItem.Value = dt.Rows[i]["OrderID"].ToString(); SelListItem.Text = dt.Rows[i]["OrderID"].ToString(); ListItem.Add(SelListItem); } return(ListItem); }
public static List <SelectListItem> GetUM_USER(string DeptID) { List <SelectListItem> ListItem = new List <SelectListItem>(); DataTable dt = SalesPro.GetUM_USER(DeptID); if (dt == null) { return(ListItem); } SelectListItem SelListItem = new SelectListItem(); SelListItem.Value = ""; SelListItem.Text = ""; ListItem.Add(SelListItem); for (int i = 0; i < dt.Rows.Count; i++) { SelListItem = new SelectListItem(); SelListItem.Value = dt.Rows[i]["UserName"].ToString();//UserId SelListItem.Text = dt.Rows[i]["UserName"].ToString(); ListItem.Add(SelListItem); } return(ListItem); }
public static DataTable GetOrderStaticalGrid(string where) { return(SalesPro.GetOrderStaticalGrid(where)); }
public static string GetOrderStatistical(string where) { return(SalesPro.GetOrderStaticstical(where)); }
public static string getNewCountDebt(string where) { return(SalesPro.getCountDebt(where)); }
public static UIDataTable GetOrdersInfoStatisticalGrid(int a_intPageSize, int a_intPageIndex, string where) { return(SalesPro.GetOrdersInfoStatisticalGrid(a_intPageSize, a_intPageIndex, where)); }
public static string GetContractID(string OrderID) { return(SalesPro.GetContractID(OrderID)); }
public static DataTable GetStatisticsManageTable(string where) { return(SalesPro.GetStatisticsManageTable(where)); }
public static bool InsertProFinish(ProFinish profinish, ref string strErr) { return(SalesPro.InsertProFinish(profinish, ref strErr)); }
public static UIDataTable GetEXOrderApprovalGrid(int a_intPageSize, int a_intPageIndex, string where) { return(SalesPro.GetEXOrderApprovalGrid(a_intPageSize, a_intPageIndex, where)); }
//调压箱统计 public static DataTable GetPressureRegulatingBoxTable(string StartDate, string EndDate) { return(SalesPro.GetPressureRegulatingBoxTable(StartDate, EndDate)); }
public static int ExJudgeNewLoginUser(string userid, string webkey, string folderBack, string SPID) { return(SalesPro.ExjudgeLoginUser(userid, webkey, folderBack, SPID)); }
//本月累计汇总 public static DataTable GetMonthsSalesSummaryTable(string where) { return(SalesPro.GetMonthsSalesSummaryTable(where)); }
public static DataTable EXGetContractSPID(string CID) { return(SalesPro.EXGetContractSPID(CID)); }
public static UIDataTable GetUserLogGrid(int a_intPageSize, int a_intPageIndex, string ReleVanceID) { return(SalesPro.GetUserLogGrid(a_intPageSize, a_intPageIndex, ReleVanceID)); }
//人员统计分析 public static DataTable SalesSummaryTable(string where) { return(SalesPro.SalesSummaryTable(where)); }
public static decimal getNewDebtAmount(string OrderID) { return(SalesPro.getDebtAmount(OrderID)); }
public static string GetSalesSummary(string where) { return(SalesPro.GetSalesSummary(where)); }
public static UIDataTable EXGetProjectBasApprovalGrid(int a_intPageSize, int a_intPageIndex, string where) { return(SalesPro.EXGetProjectBasApprovalGrid(a_intPageSize, a_intPageIndex, where)); }
//设备统计 public static DataTable GetEquipmentSalesSummaryTable(string StartDate, string EndDate) { return(SalesPro.GetEquipmentSalesSummaryTable(StartDate, EndDate)); }
public static UIDataTable EXgetNewConditionGrid(int a_intPageSize, int a_intPageIndex, string where, string folderBack) { return(SalesPro.EXgetConditionGrid(a_intPageSize, a_intPageIndex, where, folderBack)); }
//高压箱统计 public static DataTable GetHighVoltageCompartmentTable(string StartDate, string EndDate) { return(SalesPro.GetHighVoltageCompartmentTable(StartDate, EndDate)); }
//public static int JudgeNewLoginUser(string userid, string webkey, string folderBack, string SPID) //{ // return SalesPro.judgeLoginUser(userid, webkey, folderBack, SPID); //} #endregion #region [结算] public static string getNewFinishID() { return(SalesPro.getNewFinishID()); }