frmWageStatisticsViewList.cs 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. using LYFZ.BLL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.FinancialManagement
  10. {
  11. public class frmWageStatisticsViewList : LYFZ.Software.UI.FinancialManagement.frmWageStatisticsViewList
  12. {
  13. public frmWageStatisticsViewList() {
  14. this.Load += frmWageStatisticsViewList_Load;
  15. this.btnClosed.Click += btnClosed_Click;
  16. this.btnQuery.Click += btnQuery_Click;
  17. this.btnExport.Click += btnExport_Click;
  18. this.cmbItemCategory.SelectedIndexChanged += cmbItemCategory_SelectedIndexChanged;
  19. this.dgvStatisticsList.EraseCell = true;
  20. }
  21. void cmbItemCategory_SelectedIndexChanged(object sender, EventArgs e)
  22. {
  23. BindUserWageStatisticsPerformanceCommissionList(this.cmbItemCategory.SelectedIndex);
  24. }
  25. /// <summary>
  26. /// 导出
  27. /// </summary>
  28. /// <param name="sender"></param>
  29. /// <param name="e"></param>
  30. void btnExport_Click(object sender, EventArgs e)
  31. {
  32. this.dgvStatisticsList.ExportDataTable();
  33. }
  34. /// <summary>
  35. /// 开始时间
  36. /// </summary>
  37. public DateTime StartDateTime;
  38. /// <summary>
  39. /// 结束时间
  40. /// </summary>
  41. public DateTime EndDateTime;
  42. /// <summary>
  43. /// 绑定业绩明细
  44. /// </summary>
  45. /// <param name="WSQueryItem"></param>
  46. void BindUserWageStatisticsPerformanceCommissionList(int WSQueryItem)
  47. {
  48. DataGridViewRow dgRow = null;
  49. this.dgvStatisticsList.Rows.Clear();
  50. foreach (UserWageStatisticsPerformanceCommission userWSPC in this.UserWageStatisticsPerformanceCommissionList)
  51. {
  52. dgRow = new DataGridViewRow();
  53. dgRow.CreateCells(this.dgvStatisticsList);
  54. SetDataGridViewRowCellStyle(dgRow, Color.LightCyan,fStyle:FontStyle.Bold,size:12f);
  55. dgRow.Cells[0].Value = userWSPC.User_DividedShopName;
  56. dgRow.Cells[1].Value = userWSPC.Dt_Name;
  57. dgRow.Cells[2].Value = userWSPC.User_Name;
  58. dgRow.Cells[3].Value = userWSPC.BasicWage;//基本工资
  59. dgRow.Cells[4].Value = userWSPC.Bonus;//奖金
  60. dgRow.Cells[5].Value = userWSPC.FineMoney;//罚金
  61. dgRow.Cells[7].Value = "合计";
  62. dgRow.Cells[8].Value = "";
  63. userWSPC.SumComputePerformanceCommission(WSQueryItem);
  64. dgRow.Cells[9].Value = "";
  65. dgRow.Cells[10].Value = GetToDecimal(userWSPC.SumPerformance);//总业绩
  66. dgRow.Cells[11].Value = GetToDecimal(userWSPC.SumCommission);//总提成金额;
  67. //总工资=基本工资+奖金+(-罚金)+总提成金额
  68. dgRow.Cells[6].Value = GetToDecimal(userWSPC.BasicWage + userWSPC.Bonus + userWSPC.FineMoney + userWSPC.SumCommission);
  69. this.dgvStatisticsList.Rows.Add(dgRow);
  70. for (int i = 0; i < userWSPC.PerformanceCommissionList.Count; i++)
  71. {
  72. PerformanceCommissionInfo pcInfo = userWSPC.PerformanceCommissionList[i];
  73. if (WSQueryItem == 0 || pcInfo.WageQueryProgram.WQC_StatisticalItems == WSQueryItem)
  74. {
  75. bool isEndRow = false;
  76. if (i == userWSPC.PerformanceCommissionList.Count - 1)
  77. {
  78. isEndRow = true;
  79. }
  80. if (pcInfo.WageDataRowObjList.Count > 0)
  81. {
  82. this.dgvStatisticsList.Rows.Add(GetSubDataGridViewRow(pcInfo, null, false, true));
  83. }
  84. for (int j = 0; j < pcInfo.WageDataRowObjList.Count; j++)
  85. {
  86. WageDataRowObj wageRowObj = pcInfo.WageDataRowObjList[j];
  87. if (j == pcInfo.WageDataRowObjList.Count - 1&&isEndRow)
  88. {
  89. this.dgvStatisticsList.Rows.Add(GetSubDataGridViewRow(pcInfo, wageRowObj,true));
  90. }
  91. else
  92. {
  93. this.dgvStatisticsList.Rows.Add(GetSubDataGridViewRow(pcInfo, wageRowObj));
  94. }
  95. }
  96. }
  97. }
  98. }
  99. // MessageBoxCustom.Show(WSQueryItem.ToString());
  100. }
  101. /// <summary>
  102. ///
  103. /// </summary>
  104. /// <param name="wqcRow">统计查询方案</param>
  105. /// <param name="uEmployeeID"></param>
  106. /// <param name="isEndRow"></param>
  107. /// <returns></returns>
  108. DataGridViewRow GetSubDataGridViewRow(PerformanceCommissionInfo pcInfo, WageDataRowObj wageRowObj, bool isEndRow = false, bool isSumRow = false)
  109. {
  110. LYFZ.Model.WageStatisticsQueryItem wItem = (LYFZ.Model.WageStatisticsQueryItem)Convert.ToInt32(pcInfo.WageQueryProgram.WQC_StatisticalItems);
  111. DataGridViewRow dgRow = new DataGridViewRow();
  112. dgRow.CreateCells(this.dgvStatisticsList);
  113. SetDataGridViewRowCellStyle(dgRow, Color.White);
  114. if (isEndRow)
  115. {
  116. dgRow.Cells[0].Tag = this.dgvStatisticsList.EraseCellDrawLineHEnd;
  117. dgRow.Cells[1].Tag = this.dgvStatisticsList.EraseCellDrawLineHEnd;
  118. dgRow.Cells[2].Tag = this.dgvStatisticsList.EraseCellDrawLineHEnd;
  119. dgRow.Cells[3].Tag = this.dgvStatisticsList.EraseCellDrawLineHEnd;
  120. dgRow.Cells[4].Tag = this.dgvStatisticsList.EraseCellDrawLineHEnd;
  121. dgRow.Cells[5].Tag = this.dgvStatisticsList.EraseCellDrawLineHEnd;
  122. dgRow.Cells[6].Tag = this.dgvStatisticsList.EraseCellDrawLineVHEnd;
  123. }
  124. else
  125. {
  126. dgRow.Cells[0].Tag = this.dgvStatisticsList.EraseCellDrawLine;
  127. dgRow.Cells[1].Tag = this.dgvStatisticsList.EraseCellDrawLine;
  128. dgRow.Cells[2].Tag = this.dgvStatisticsList.EraseCellDrawLine;
  129. dgRow.Cells[3].Tag = this.dgvStatisticsList.EraseCellDrawLine;
  130. dgRow.Cells[4].Tag = this.dgvStatisticsList.EraseCellDrawLine;
  131. dgRow.Cells[5].Tag = this.dgvStatisticsList.EraseCellDrawLine;
  132. dgRow.Cells[6].Tag = this.dgvStatisticsList.EraseCellDrawLineVEnd;
  133. }
  134. if (isSumRow)
  135. {
  136. SetDataGridViewRowCellStyle(dgRow, Color.LightCoral,bgStarIndex: 7,fStyle:FontStyle.Bold);
  137. dgRow.Tag = "FontStyle.Bold";
  138. dgRow.Cells[7].Value = "小计";
  139. // dgRow.Cells[8].Value = "【" + wItem.ToString() + "】" + pcInfo.WageQueryProgram.WQC_QueryName;
  140. dgRow.Cells[9].Value = "";
  141. dgRow.Cells[10].Value = GetToDecimal(pcInfo.Performance);
  142. dgRow.Cells[11].Value = GetToDecimal(pcInfo.Commission);
  143. }
  144. else
  145. {
  146. dgRow.Cells[7].Value = wItem.ToString();
  147. dgRow.Cells[8].Value = pcInfo.WageQueryProgram.WQC_QueryName;
  148. try
  149. {
  150. dgRow.Cells[9].Value = wageRowObj.ResponsiblePosition;//
  151. dgRow.Cells[10].Value = GetToDecimal(wageRowObj.CurrentPerformance);//业绩
  152. if (wItem == Model.WageStatisticsQueryItem.计件提成)
  153. {
  154. dgRow.Cells[11].Value = GetToDecimal(wageRowObj.CurrentPerformance);
  155. }
  156. else {
  157. dgRow.Cells[11].Value = "";
  158. }
  159. //明细内容
  160. switch (wItem)
  161. {
  162. case Model.WageStatisticsQueryItem.订单前期:
  163. case Model.WageStatisticsQueryItem.订单后期:
  164. case Model.WageStatisticsQueryItem.服务前期:
  165. case Model.WageStatisticsQueryItem.服务后期:
  166. //订单类型 0:为婚纱套系 1:为成长套系 2:为写真套系 3:服务套系 4:婚庆套系
  167. if (wageRowObj.ReceiptRow != null)
  168. {
  169. dgRow.Cells[12].Value = GetToDecimal(wageRowObj.ReceiptRow["PaidAmount"]);
  170. dgRow.Cells[13].Value = GetRowValueToString(wageRowObj.ReceiptRow["Pay_Category"]);
  171. dgRow.Cells[14].Value =GetsCollectionCategoryType(wItem,wageRowObj.ReceiptRow["Pay_TwoPinsCategory"]);
  172. dgRow.Cells[15 + 1].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Pay_PaymentMethod"]);
  173. dgRow.Cells[16 + 1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.ReceiptRow["Pay_OpenSingle"])); ;
  174. dgRow.Cells[17 + 1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Pay_CreateDatetime"]);
  175. }
  176. if (wageRowObj.OrderCustomer != null)
  177. {
  178. string orderNumber = GetRowValueToString(wageRowObj.OrderCustomer["Ord_SinceOrderNumber"]);
  179. if (String.IsNullOrEmpty(orderNumber))
  180. {
  181. orderNumber = GetRowValueToString(wageRowObj.OrderCustomer["Ord_Number"]);
  182. }
  183. dgRow.Cells[18+1].Value = orderNumber;
  184. dgRow.Cells[19+1].Value = GetRowValueToString(wageRowObj.OrderCustomer["Cus_Name"]);
  185. dgRow.Cells[20+1].Value = ((EnumPublic.OrderType)Convert.ToInt32(wageRowObj.OrderCustomer["Ord_Type"].ToString())).ToString();
  186. dgRow.Cells[21+1].Value = GetRowValueToString(wageRowObj.OrderCustomer["Ord_SeriesName"]);
  187. dgRow.Cells[22+1].Value = GetToDecimal(wageRowObj.OrderCustomer["Ord_SeriesPrice"]);
  188. dgRow.Cells[23+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["Ord_CreateDateTime"]);
  189. dgRow.Cells[24+1].Value = GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_Sights"]);
  190. dgRow.Cells[25+1].Value = GetPhotographyStatus(wageRowObj.OrderCustomer["PhotographyStatus"], GetDateTimeString(wageRowObj.OrderCustomer["Ordpg_PhotographyTime"]));
  191. dgRow.Cells[26+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["Ordpg_PhotographyTime"]);
  192. dgRow.Cells[27+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_Photographer"]));
  193. dgRow.Cells[28+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_PhotographyAssistant"]));
  194. dgRow.Cells[29+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_MakeupArtist"]));
  195. dgRow.Cells[30+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_MakeupAssistant"]));
  196. dgRow.Cells[31+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_BootDivision"]));
  197. dgRow.Cells[32+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordpg_BootDivisionAssistant"]));
  198. dgRow.Cells[33+1].Value = GetProcessStatus(wageRowObj.OrderCustomer["ordv_EarlyRepairStatus"], "初修");
  199. dgRow.Cells[34+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordv_EarlyRepairName"]));
  200. dgRow.Cells[35+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["Ordv_EarlyRepairTime"]);
  201. dgRow.Cells[36+1].Value = GetProcessFilmSelectionStatus(wageRowObj.OrderCustomer["Ordv_FilmSelectionStatus"]);
  202. dgRow.Cells[37+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordv_FilmSelectionName"]));
  203. dgRow.Cells[38+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["Ordv_FilmSelectionTime"]);
  204. dgRow.Cells[39+1].Value = GetProcessStatus(wageRowObj.OrderCustomer["Ordv_RefinementStatus"], "精修");
  205. dgRow.Cells[40+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordv_RefinementName"]));
  206. dgRow.Cells[41+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["Ordv_RefinementTime"]);
  207. dgRow.Cells[42+1].Value = GetProcessStatus(wageRowObj.OrderCustomer["Ordv_DesignerStatus"], "设计");
  208. dgRow.Cells[43+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.OrderCustomer["Ordv_DesignerName"]));
  209. dgRow.Cells[44+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["Ordv_DesignerTime"]);
  210. dgRow.Cells[45+1].Value = GetRowValueToString(wageRowObj.OrderCustomer["PickupStatus"]);
  211. dgRow.Cells[46+1].Value = GetDateTimeString(wageRowObj.OrderCustomer["OPlist_PickupTime"]);
  212. dgRow.Cells[47 + 1].Value = WageStatisticsSatisfactionScore(wageRowObj.SatisfactionScore);
  213. }
  214. break;
  215. case Model.WageStatisticsQueryItem.散客消费:
  216. if (wageRowObj.ReceiptRow != null)
  217. {
  218. dgRow.Cells[12].Value = GetToDecimal(wageRowObj.ReceiptRow["PaidAmount"]);
  219. dgRow.Cells[13].Value = GetRowValueToString(wageRowObj.ReceiptRow["Pay_Category"]);//收款类型
  220. dgRow.Cells[14].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Tsorder_Category"]);//销售类别
  221. dgRow.Cells[15+1].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Pay_PaymentMethod"]);
  222. dgRow.Cells[16+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.ReceiptRow["Pay_OpenSingle"]));
  223. dgRow.Cells[17+1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Pay_CreateDatetime"]);
  224. dgRow.Cells[18+1].Value = wageRowObj.ReceiptRow["Tsorder_Number"].ToString();
  225. dgRow.Cells[19+1].Value = wageRowObj.ReceiptRow["Cus_Name"].ToString();
  226. dgRow.Cells[20+1].Value = wItem.ToString();
  227. dgRow.Cells[21+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Tsorder_Name"]);
  228. dgRow.Cells[22+1].Value = GetToDecimal(wageRowObj.ReceiptRow["Tsorder_Money"]);
  229. dgRow.Cells[23 + 1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Tsorder_CreateDatetime"]);
  230. }
  231. break;
  232. case Model.WageStatisticsQueryItem.计件提成:
  233. if (wageRowObj.ReceiptRow != null)
  234. {
  235. dgRow.Cells[12].Value = "";//GetToDecimal(wageRowObj.ReceiptRow["sum_Percentage"]);
  236. dgRow.Cells[13].Value = wItem.ToString();//收款类型
  237. dgRow.Cells[14].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Pcr_CompletionContents"]);//销售类别 工作内容
  238. dgRow.Cells[15].Value =wageRowObj.ReceiptRow["Pcr_Quantity"].ToString();
  239. dgRow.Cells[15+1].Value = GetPcr_Type(wageRowObj.ReceiptRow["Pcr_Type"]);
  240. dgRow.Cells[16+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.ReceiptRow["Pcr_DigitalDivision"]));
  241. dgRow.Cells[17+1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Pcr_Date"]);
  242. dgRow.Cells[18 + 1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Pcr_OrderNumber"]);
  243. }
  244. if (wageRowObj.OrderCustomer != null)
  245. {
  246. dgRow.Cells[18 + 1].Value = GetRowValueToString(wageRowObj.OrderCustomer["订单号"]);
  247. dgRow.Cells[19 + 1].Value = GetRowValueToString(wageRowObj.OrderCustomer["客户姓名"]);
  248. string orderTypeString = GetRowValueToString(wageRowObj.OrderCustomer["订单类型"]);
  249. if (orderTypeString.Trim().Length > 0 && orderTypeString != "散客消费")
  250. {
  251. dgRow.Cells[20 + 1].Value = Enum.ToObject(typeof(LYFZ.EnumPublic.OrderType), Convert.ToInt32(orderTypeString)).ToString();
  252. }
  253. else
  254. {
  255. dgRow.Cells[20 + 1].Value = orderTypeString;
  256. }
  257. dgRow.Cells[21 + 1].Value = GetRowValueToString(wageRowObj.OrderCustomer["套系名称"]);
  258. dgRow.Cells[22 + 1].Value = GetRowValueToString(wageRowObj.OrderCustomer["套系价格"]);
  259. dgRow.Cells[23 + 1].Value = GetDateTimeString(wageRowObj.OrderCustomer["录入日期"]);
  260. }
  261. break;
  262. case Model.WageStatisticsQueryItem.礼服租售:
  263. if (wageRowObj.ReceiptRow != null)
  264. {
  265. dgRow.Cells[12].Value = GetToDecimal(wageRowObj.ReceiptRow["PaidAmount"]);
  266. dgRow.Cells[13].Value = "礼服租售收款";//收款类型
  267. dgRow.Cells[14].Value = GetRowValueToString(wageRowObj.ReceiptRow["Pay_ReceivableProject"]);//销售类别
  268. dgRow.Cells[15+1].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Pay_PaymentMethod"]);
  269. dgRow.Cells[16+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.ReceiptRow["Pay_OpenSingle"]));
  270. dgRow.Cells[17+1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Pay_CreateDatetime"]);
  271. dgRow.Cells[18+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Dsro_Number"]);
  272. dgRow.Cells[19+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Cus_Name"]);
  273. dgRow.Cells[20+1].Value = wItem.ToString();
  274. dgRow.Cells[21+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Pay_ReceivableProject"]);
  275. dgRow.Cells[22+1].Value = GetToDecimal(wageRowObj.ReceiptRow["Dsro_Amount"]);
  276. dgRow.Cells[23 + 1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Dsro_CreateDateTime"]);
  277. }
  278. break;
  279. case Model.WageStatisticsQueryItem.会员充值:
  280. if (wageRowObj.ReceiptRow != null)
  281. {
  282. dgRow.Cells[12].Value = GetToDecimal(wageRowObj.ReceiptRow["Mcrr_RechargeAmount"]);
  283. dgRow.Cells[13].Value = "会员充值收款";//收款类型
  284. dgRow.Cells[14].Value = GetRowValueToString(wageRowObj.ReceiptRow["Mcrr_RechargeName"]);//销售类别
  285. dgRow.Cells[15+1].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Mcrr_PaymentMethod"]);
  286. dgRow.Cells[16+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.ReceiptRow["Mcrr_OrderPerson"]));
  287. dgRow.Cells[17+1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Mcrr_CreateDatetime"]);
  288. dgRow.Cells[18+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Mcrr_RechargeNumber"]);
  289. dgRow.Cells[19+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Cus_Name"]) + "【" + GetRowValueToString(wageRowObj.ReceiptRow["Mc_CradNumber"]) + "】";
  290. dgRow.Cells[20+1].Value = wItem.ToString();
  291. dgRow.Cells[21+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Mcrr_RechargeName"]);
  292. dgRow.Cells[22+1].Value = GetToDecimal(wageRowObj.ReceiptRow["Mcrr_RechargeAmount"]);
  293. dgRow.Cells[23 + 1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Mcrr_CreateDatetime"]);
  294. }
  295. break;
  296. case Model.WageStatisticsQueryItem.服务卡充值:
  297. if (wageRowObj.ReceiptRow != null)
  298. {
  299. dgRow.Cells[12].Value = GetToDecimal(wageRowObj.ReceiptRow["Mcpt_PaymentAmount"]);
  300. dgRow.Cells[13].Value = "会员服务卡充值收款";//收款类型
  301. dgRow.Cells[14].Value = GetRowValueToString(wageRowObj.ReceiptRow["Mcpt_PaymentType"]);//销售类别
  302. dgRow.Cells[15+1].Value = GetClassCodeToCalssName(wageRowObj.ReceiptRow["Mcpt_PaymentMethod"]);
  303. dgRow.Cells[16+1].Value = GetUserIDToUserName(GetRowValueToString(wageRowObj.ReceiptRow["Mcpt_OrderPerson"]));
  304. dgRow.Cells[17+1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Mcpt_CreateDatetime"]);
  305. dgRow.Cells[18+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Mcpt_PaymentNumber"]);
  306. dgRow.Cells[19+1].Value = GetRowValueToString(wageRowObj.ReceiptRow["Cus_Name"]) + "【" + GetRowValueToString(wageRowObj.ReceiptRow["Mc_CradNumber"]) + "】";
  307. dgRow.Cells[20+1].Value = wItem.ToString();
  308. dgRow.Cells[21+1].Value = "会员服务卡充值";
  309. dgRow.Cells[22+1].Value = GetToDecimal(wageRowObj.ReceiptRow["Mcpt_PaymentAmount"]);
  310. dgRow.Cells[23 + 1].Value = GetDateTimeString(wageRowObj.ReceiptRow["Mcpt_CreateDatetime"]);
  311. }
  312. break;
  313. }
  314. }
  315. catch (Exception ex){
  316. MessageBoxCustom.Show(ex.Message);
  317. this.Close();
  318. }
  319. }
  320. return dgRow;
  321. }
  322. string GetPcr_Type(object obj)
  323. {
  324. int type = 0;
  325. //类别(0:直接录入、1:预约服务录入、2:拍照导片录入、3:初修导片录入、4:设计导片录入)
  326. if (obj != null && obj.ToString().Trim().Length > 0)
  327. {
  328. type = Convert.ToInt32(obj.ToString());
  329. }
  330. switch (type)
  331. {
  332. case 0:return "直接录入";
  333. case 1: return "预约服务录入";
  334. case 2: return "拍照导片录入";
  335. case 3: return "初修导片录入";
  336. case 4: return "设计导片录入";
  337. }
  338. return "直接录入";
  339. }
  340. /// <summary>
  341. /// 收款类型
  342. /// </summary>
  343. /// <param name="witem"></param>
  344. /// <returns></returns>
  345. string GetsCollectionCategoryType(Model.WageStatisticsQueryItem witem,object obj)
  346. {
  347. string rettype = "未知";
  348. switch (witem)
  349. {
  350. case Model.WageStatisticsQueryItem.订单前期:
  351. rettype = "订单前期收款";
  352. break;
  353. case Model.WageStatisticsQueryItem.订单后期:
  354. case Model.WageStatisticsQueryItem.服务前期:
  355. case Model.WageStatisticsQueryItem.服务后期:
  356. rettype = GetClassCodeToCalssName(obj);
  357. break;
  358. }
  359. return rettype;
  360. }
  361. string GetClassCodeToCalssName(object obj)
  362. {
  363. if (obj != null && obj.ToString().Length>0)
  364. {
  365. return LYFZ.BLL.WageStatisticsProcess.GetClassCodeToCalssName(obj.ToString());
  366. }
  367. return "";
  368. }
  369. string WageStatisticsSatisfactionScore(DataRow row)
  370. {
  371. if (row != null&&row["sumScores"]!=null)
  372. {
  373. return row["sumScores"].ToString();
  374. }
  375. return "";
  376. }
  377. string GetProcessFilmSelectionStatus(object obj)
  378. {
  379. if (obj != null)
  380. {
  381. if (obj.ToString() == "1")
  382. {
  383. return "选片OK";
  384. }
  385. }
  386. return "未选";
  387. }
  388. /// <summary>
  389. /// 获取流程状态
  390. /// </summary>
  391. /// <param name="obj"></param>
  392. /// <returns></returns>
  393. string GetProcessStatus(object obj,string text="初修")
  394. {
  395. if (obj != null)
  396. {
  397. if (obj.ToString() == "2")
  398. {
  399. return text+"OK";
  400. }
  401. else if (obj.ToString() == "1")
  402. {
  403. return text + "中";
  404. }
  405. }
  406. return "未"+text;
  407. }
  408. /// <summary>
  409. /// 获取拍照状态
  410. /// </summary>
  411. /// <param name="status"></param>
  412. /// <param name="time"></param>
  413. /// <returns></returns>
  414. string GetPhotographyStatus(object status, string time)
  415. {
  416. if (status != null && status.ToString() == "1")
  417. {
  418. return "拍照OK";
  419. }
  420. else if (time.Trim().Length > 1)
  421. {
  422. return "拍照中";
  423. }
  424. else {
  425. return "未拍";
  426. }
  427. }
  428. /// <summary>
  429. /// 获取字符串类型的值
  430. /// </summary>
  431. /// <param name="obj"></param>
  432. /// <returns></returns>
  433. string GetRowValueToString(object obj)
  434. {
  435. if (obj != null)
  436. {
  437. return obj.ToString();
  438. }
  439. return "";
  440. }
  441. /// <summary>
  442. /// 根据用户ID获取用户名
  443. /// </summary>
  444. /// <param name="userIDs"></param>
  445. /// <returns></returns>
  446. string GetUserIDToUserName(string userIDs)
  447. {
  448. return LYFZ.DAL.DAL_ErpUser.GetUserIDToUserName(userIDs);
  449. //string retUserNames = "";
  450. //string[] tempIDs = userIDs.Trim(',').Split(',');
  451. //foreach (string uid in tempIDs)
  452. //{
  453. // if (!string.IsNullOrEmpty(uid))
  454. // {
  455. // foreach (DataRow user in LYFZ.DAL.DAL_ErpUser.SimpleUserDataTable.Rows)
  456. // {
  457. // string tempUserName = user["User_Name"].ToString().Trim() + "/";
  458. // if (user["User_EmployeeID"].ToString().ToLower().Trim() == uid.Trim().ToLower() && !retUserNames.Contains(tempUserName))
  459. // {
  460. // retUserNames += tempUserName;
  461. // break;
  462. // }
  463. // }
  464. // }
  465. //}
  466. //return retUserNames.Trim('/');
  467. }
  468. string GetToDecimal(object number)
  469. {
  470. if (number != null && number.ToString().Trim().Length > 0)
  471. {
  472. return Convert.ToDecimal(number).ToString("n2");
  473. }
  474. return "0";
  475. }
  476. string GetDateTimeString(object time)
  477. {
  478. if (time != null && time.ToString().Trim().Length>0)
  479. {
  480. return Convert.ToDateTime(time.ToString()).ToString("yyyy-MM-dd HH:mm");
  481. }
  482. return "";
  483. }
  484. /// <summary>
  485. /// 设置行样式
  486. /// </summary>
  487. /// <param name="row"></param>
  488. /// <param name="bgcolor"></param>
  489. /// <param name="fStyle"></param>
  490. /// <param name="size"></param>
  491. /// <param name="alignment"></param>
  492. void SetDataGridViewRowCellStyle(DataGridViewRow row, System.Drawing.Color bgcolor,int bgStarIndex=0, System.Drawing.FontStyle fStyle= System.Drawing.FontStyle.Regular,float size=10.5f,System.Windows.Forms.DataGridViewContentAlignment alignment = DataGridViewContentAlignment.MiddleCenter)
  493. {
  494. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  495. dataGridViewCellStyle2.Alignment = alignment;
  496. dataGridViewCellStyle2.BackColor = bgcolor;//System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(108)))), ((int)(((byte)(150)))));
  497. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", size, fStyle, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  498. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
  499. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  500. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  501. for (int i = 0; i < row.Cells.Count;i++ )
  502. {
  503. if (i >= bgStarIndex)
  504. {
  505. DataGridViewCell cell = row.Cells[i];
  506. cell.Style = dataGridViewCellStyle2;
  507. }
  508. }
  509. }
  510. void btnQuery_Click(object sender, EventArgs e)
  511. {
  512. }
  513. void btnClosed_Click(object sender, EventArgs e)
  514. {
  515. this.Close();
  516. }
  517. List<UserWageStatisticsPerformanceCommission> _UserWageStatisticsPerformanceCommissionList = new List<UserWageStatisticsPerformanceCommission>();
  518. /// <summary>
  519. /// 用户工资计算结果集合
  520. /// </summary>
  521. public List<UserWageStatisticsPerformanceCommission> UserWageStatisticsPerformanceCommissionList
  522. {
  523. get { return _UserWageStatisticsPerformanceCommissionList; }
  524. set { _UserWageStatisticsPerformanceCommissionList = value; }
  525. }
  526. void frmWageStatisticsViewList_Load(object sender, EventArgs e)
  527. {
  528. this.btnExport.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StatisticalInquiryAllWagesCompetence, CustomAttributes.OperatingAuthority.DataExport);
  529. this.dgvStatisticsList.Columns[0].Visible = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsGroupEdition;
  530. // 部门人员绑定
  531. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbEmployeeName, IsFirstNodeNull: true, IsFirstNodeName: "全部", IsShowResign: false, IsShowAdmin: true, tb_User: LYFZ.DAL.DAL_ErpUser.SimpleUserDataTable);
  532. BindItemCategory();
  533. }
  534. /// <summary>
  535. /// 绑定统计项目
  536. /// </summary>
  537. void BindItemCategory()
  538. {
  539. this.cmbItemCategory.Items.Clear();
  540. this.cmbItemCategory.Items.Add("所有项目");
  541. string[] WageStatisticsQueryItems = Enum.GetNames(typeof(LYFZ.Model.WageStatisticsQueryItem));
  542. foreach (string qItem in WageStatisticsQueryItems)
  543. {
  544. this.cmbItemCategory.Items.Add(qItem);
  545. }
  546. this.cmbItemCategory.SelectedIndex = 0;
  547. }
  548. }
  549. /* /// <summary>
  550. /// 工资统计明细表字段名
  551. /// </summary>
  552. enum PDFieldName
  553. {
  554. 所属门店,
  555. 所属部门,
  556. 员工姓名,
  557. 基本工资,
  558. 奖金,
  559. 罚金,
  560. 合计总工资,
  561. 统计项目,
  562. 统计名称,
  563. 岗位职责,
  564. 业绩,
  565. 提成金额,
  566. 收款金额,
  567. 收款类型,
  568. 销售类别,
  569. 支付方式,
  570. 接单人,
  571. 收款时间,
  572. 订单号,
  573. 客户名称,
  574. 订单类型,
  575. 订单套系名称,
  576. 订单金额,
  577. 订单时间,
  578. 拍摄名称,
  579. 拍摄状态,
  580. 拍摄时间,
  581. 摄影师,
  582. 摄影助理,
  583. 化妆师,
  584. 化妆助理,
  585. 引导师,
  586. 引导助理,
  587. 初修状态,
  588. 初修师,
  589. 初修时间,
  590. 选片状态,
  591. 选片师,
  592. 选片时间,
  593. 精修状态,
  594. 精修时间,
  595. 精修师,
  596. 设计状态,
  597. 设计时间,
  598. 设计师,
  599. 取件状态,
  600. 取件时间,
  601. 满意度分值
  602. }*/
  603. }