FrmStatisticalInquiryAllWages.cs 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.StatisticalInquiry
  11. {
  12. public partial class FrmStatisticalInquiryAllWages : LYFZ.Software.UI.StatisticalInquiry.FrmStatisticalInquiryAllWages
  13. {
  14. public FrmStatisticalInquiryAllWages()
  15. {
  16. txtTimeStart.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().AddDays(1 - LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().Day)).ToString("yyyy-MM-dd");
  17. txtTimeEnd.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).AddDays(1 - LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().Day).AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd");
  18. bind();
  19. }
  20. #region 加载数据
  21. decimal Sum_1 = 0;
  22. decimal Sum_2 = 0;
  23. decimal Sum_3 = 0;
  24. decimal Sum_4 = 0;
  25. decimal Sum_5 = 0;
  26. protected override void FrmStatisticalInquiryAllWages_Shown(object sender, EventArgs e)
  27. {
  28. WaitForm wf = new WaitForm();
  29. wf.ShowForm(this);
  30. try
  31. {
  32. #region 权限设置
  33. #region 导出
  34. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StatisticalInquiryAllWagesCompetence, CustomAttributes.OperatingAuthority.DataExport))
  35. {
  36. btnExport.Enabled = true;
  37. }
  38. else
  39. {
  40. btnExport.Enabled = false;
  41. }
  42. #endregion
  43. #region 打印
  44. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.StatisticalInquiryAllWagesCompetence, CustomAttributes.OperatingAuthority.Print))
  45. {
  46. btnPrint.Enabled = true;
  47. }
  48. else
  49. {
  50. btnPrint.Enabled = false;
  51. }
  52. #endregion
  53. #endregion
  54. wf.CloseForm();
  55. wf = null;
  56. }
  57. catch
  58. {
  59. wf.CloseForm();
  60. wf = null;
  61. }
  62. }
  63. /// <summary>
  64. /// 绑定数据
  65. /// </summary>
  66. public void bind()
  67. {
  68. try
  69. {
  70. Sum_1 = 0;
  71. Sum_2 = 0;
  72. Sum_3 = 0;
  73. Sum_4 = 0;
  74. Sum_5 = 0;
  75. QQYJ_TC = 0;
  76. EXYJ_TC = 0;
  77. YJTC_TC = 0;
  78. Piece = 0;
  79. S_EXYJ_Tc = 0;
  80. QQSK_TC = 0;
  81. QQSK_SH_TC = 0;
  82. LYFZ.BLL.BLL_ErpWagesSet bll = new BLL.BLL_ErpWagesSet();
  83. DataTable dt = bll.GetView_WagesSet("").Tables[0];
  84. if (dt.Rows.Count > 0)
  85. {
  86. for (int t = 0; t < dt.Rows.Count; t++)
  87. {
  88. #region
  89. DataGridViewRow dgvr = new DataGridViewRow();
  90. DataGridViewCell cell = null;
  91. //员工编号
  92. cell = new DataGridViewTextBoxCell();
  93. cell.Value = dt.Rows[t]["User_EmployeeID"].ToString().Trim();
  94. dgvr.Cells.Add(cell);
  95. //姓名
  96. cell = new DataGridViewTextBoxCell();
  97. cell.Value = dt.Rows[t]["User_Name"].ToString().Trim();
  98. dgvr.Cells.Add(cell);
  99. //总工资
  100. cell = new DataGridViewTextBoxCell();
  101. cell.Value = "";
  102. dgvr.Cells.Add(cell);
  103. //基本工资
  104. cell = new DataGridViewTextBoxCell();
  105. cell.Value = dt.Rows[t]["Ws_BasicWage"].ToString() == "" ? "0.00" : dt.Rows[t]["Ws_BasicWage"].ToString();
  106. dgvr.Cells.Add(cell);
  107. Sum_1 += Convert.ToDecimal(dt.Rows[t]["Ws_BasicWage"].ToString() == "" ? "0.00" : dt.Rows[t]["Ws_BasicWage"].ToString());
  108. //前期业绩
  109. cell = new DataGridViewTextBoxCell();
  110. cell.Value = "";
  111. dgvr.Cells.Add(cell);
  112. //后期业绩
  113. cell = new DataGridViewTextBoxCell();
  114. cell.Value = "";
  115. dgvr.Cells.Add(cell);
  116. //计件提成
  117. cell = new DataGridViewTextBoxCell();
  118. cell.Value = "";
  119. dgvr.Cells.Add(cell);
  120. //部门
  121. cell = new DataGridViewTextBoxCell();
  122. LYFZ.BLL.BLL_ErpUser userbll = new BLL.BLL_ErpUser();
  123. cell.Value = userbll.GetView_tb_ErpUser("User_EmployeeID='" + dt.Rows[t]["User_EmployeeID"] + "'").Tables[0].Rows[0]["Dt_Name"].ToString();
  124. dgvr.Cells.Add(cell);
  125. //备注
  126. cell = new DataGridViewTextBoxCell();
  127. cell.Value = dt.Rows[t]["Ws_Remark"].ToString().Trim();
  128. dgvr.Cells.Add(cell);
  129. if (dgv.Columns.Count != 0)
  130. {
  131. this.dgv.Rows.Add(dgvr);
  132. }
  133. #endregion
  134. }
  135. }
  136. this.dgv.ClearSelection();
  137. #region 获取工资
  138. if (dgv.Rows.Count > 0)
  139. {
  140. for (int i = 0; i < dgv.Rows.Count; i++)
  141. {
  142. dgv1.Rows.Clear();
  143. dgv4.Rows.Clear();
  144. string Ws_BasicWage = dgv.Rows[i].Cells["Ws_BasicWage"].Value.ToString();
  145. string User_EmployeeID = dgv.Rows[i].Cells["User_EmployeeID"].Value.ToString();
  146. BindSalarylist(User_EmployeeID, Convert.ToDateTime(txtTimeStart.Text).ToString("yyyy-MM-dd"), Convert.ToDateTime(txtTimeEnd.Text).ToString("yyyy-MM-dd"));
  147. BindPiece(User_EmployeeID, Convert.ToDateTime(txtTimeStart.Text).ToString("yyyy-MM-dd"), Convert.ToDateTime(txtTimeEnd.Text).ToString("yyyy-MM-dd"));
  148. GetWages(User_EmployeeID);
  149. //前期业绩
  150. dgv.Rows[i].Cells["PreliminaryResults"].Value = QQYJ_TC.ToString("N2");
  151. Sum_2 += QQYJ_TC;
  152. //后期业绩
  153. dgv.Rows[i].Cells["LateResults"].Value = EXYJ_TC.ToString("N2");
  154. Sum_3 += EXYJ_TC;
  155. //计件提成
  156. dgv.Rows[i].Cells["PieceCommission"].Value = YJTC_TC.ToString("N2");
  157. Sum_4 += YJTC_TC;
  158. //string PieceCommission = dgv.Rows[i].Cells["PieceCommission"].Value.ToString();
  159. //总业绩
  160. dgv.Rows[i].Cells["TotalWages"].Value = Convert.ToDecimal(Convert.ToDecimal(Ws_BasicWage) + Convert.ToDecimal(QQSK_TC + QQSK_SH_TC) + Convert.ToDecimal(S_EXYJ_Tc) + Convert.ToDecimal(YJTC_TC)).ToString("N2");
  161. Sum_5 += Convert.ToDecimal(Convert.ToDecimal(Ws_BasicWage) + Convert.ToDecimal(QQSK_TC + QQSK_SH_TC) + Convert.ToDecimal(S_EXYJ_Tc) + Convert.ToDecimal(YJTC_TC));
  162. }
  163. }
  164. #region 增加最后一行
  165. int rows = dgv.Rows.Add();
  166. dgv.Rows[rows].Cells[1].Value = "统计:";
  167. dgv.Rows[rows].Cells[2].Value = Sum_5.ToString("N2");
  168. dgv.Rows[rows].Cells[3].Value = Sum_1.ToString("N2");
  169. dgv.Rows[rows].Cells[4].Value = Sum_2.ToString("N2");
  170. dgv.Rows[rows].Cells[5].Value = Sum_3.ToString("N2");
  171. dgv.Rows[rows].Cells[6].Value = Sum_4.ToString("N2");
  172. #endregion
  173. #endregion
  174. }
  175. catch
  176. {
  177. }
  178. }
  179. #endregion
  180. #region
  181. #region 订单,二销提成数据源绑定
  182. /// <summary>
  183. /// 订单,二销提成数据源绑定
  184. /// </summary>
  185. /// <param name="Tsorder_OpenSingle"></param>
  186. /// <param name="TimeStart"></param>
  187. /// <param name="TimeEnd"></param>
  188. public void BindSalarylist(string Tsorder_OpenSingle, string TimeStart, string TimeEnd)
  189. {
  190. try
  191. {
  192. LYFZ.BLL.BLL_ErpSystemConfigure SystemConfigureBll = new BLL.BLL_ErpSystemConfigure(); ;
  193. LYFZ.BLL.BLL_ErpWagesSet WagesSetBll = new BLL.BLL_ErpWagesSet();
  194. LYFZ.BLL.BLL_ErpOrdersPhotography OrdersPhotographyBll = new BLL.BLL_ErpOrdersPhotography();
  195. DataTable dt = new DataTable();
  196. StringBuilder sql = new StringBuilder();
  197. #region 查询人员是否有订单收款记录(前期,二销,其它消费)
  198. // or Ordpg_PhotographerId like '%" + Tsorder_OpenSingle + "%' or Ordpg_PhotographyAssistantId like '%" + Tsorder_OpenSingle + "%' or Ordpg_MakeupArtistId like '%" + Tsorder_OpenSingle + "%' or Ordpg_MakeupAssistantId like '%" + Tsorder_OpenSingle + "%' or Ordpg_BootDivisionId like '%" + Tsorder_OpenSingle + "%'
  199. sql.Append(" and (Pay_OpenSingle like '%" + Tsorder_OpenSingle + "%')");
  200. sql.Append(" and (Pay_CreateDatetime>='" + TimeStart + "' and Pay_CreateDatetime<='" + TimeEnd + " 23:59:59.000')");
  201. dt = WagesSetBll.Vw_OrdersWagePaymentRecords(sql.ToString()).Tables[0];
  202. if (dt.Rows.Count > 0)
  203. {
  204. //显示人员订单全部收款记录
  205. for (int t = 0; t < dt.Rows.Count; t++)
  206. {
  207. #region 获取订单 前期收款与后期收款 记录
  208. DataGridViewRow dgvr = new DataGridViewRow();
  209. DataGridViewCell cell = null;
  210. cell = new DataGridViewTextBoxCell();
  211. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  212. dgvr.Cells.Add(cell);
  213. cell = new DataGridViewTextBoxCell();
  214. cell.Value = dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "3" ? "服务订单" : "其它消费";
  215. dgvr.Cells.Add(cell);
  216. cell = new DataGridViewTextBoxCell();
  217. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  218. dgvr.Cells.Add(cell);
  219. cell = new DataGridViewTextBoxCell();
  220. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  221. dgvr.Cells.Add(cell);
  222. cell = new DataGridViewTextBoxCell();
  223. if (dt.Rows[t]["Pay_Category"].ToString().Trim() == "后期收款")
  224. {
  225. cell.Value = dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim();
  226. }
  227. else
  228. {
  229. cell.Value = "前期收款";
  230. }
  231. dgvr.Cells.Add(cell);
  232. cell = new DataGridViewTextBoxCell();
  233. if (string.IsNullOrEmpty(dt.Rows[t]["Ord_CustomerName1"].ToString().Trim()))
  234. {
  235. LYFZ.BLL.BLL_ErpTwoSalesOrder TwoSalesOrderbll = new BLL.BLL_ErpTwoSalesOrder();
  236. DataTable TwoSalesOrderdt = TwoSalesOrderbll.GetView_TwoSalesOrder(" Tsorder_Number='" + dt.Rows[t]["Pay_OrdNumber"].ToString().Trim() + "'").Tables[0];
  237. if (TwoSalesOrderdt.Rows.Count > 0)
  238. {
  239. cell.Value = TwoSalesOrderdt.Rows[0]["Tsorder_CustomerName"].ToString();
  240. }
  241. else { cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim(); }
  242. }
  243. else { cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim(); }
  244. dgvr.Cells.Add(cell);
  245. cell = new DataGridViewTextBoxCell();
  246. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  247. dgvr.Cells.Add(cell);
  248. cell = new DataGridViewTextBoxCell();
  249. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  250. dgvr.Cells.Add(cell);
  251. cell = new DataGridViewTextBoxCell();
  252. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  253. dgvr.Cells.Add(cell);
  254. //门市类型
  255. cell = new DataGridViewTextBoxCell();
  256. LYFZ.BLL.BLL_ErpOrdersPerson OrdersPersonbll = new BLL.BLL_ErpOrdersPerson();
  257. DataTable OrdersPersondt = OrdersPersonbll.GetList(" OrdPe_OrderNumber='" + dt.Rows[t]["Pay_OrdNumber"].ToString() + "' and OrdPe_OrdersPerson='" + Tsorder_OpenSingle + "'").Tables[0];
  258. if (OrdersPersondt.Rows.Count > 0)
  259. {
  260. if (dt.Rows[t]["Pay_Category"].ToString().Trim() != "后期收款")
  261. {
  262. cell.Value = OrdersPersondt.Rows[0]["OrdPe_Type"];
  263. }
  264. }
  265. dgvr.Cells.Add(cell);
  266. cell = new DataGridViewTextBoxCell();
  267. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  268. dgvr.Cells.Add(cell);
  269. this.dgv1.Rows.Add(dgvr);
  270. #endregion
  271. dgv1.ClearSelection();
  272. }
  273. }
  274. #endregion
  275. #region 婚纱版/写真版 检测是否有化妆/摄影工作前期/与二销后期
  276. #region 摄影
  277. dt = new DataTable();
  278. sql = new StringBuilder();
  279. sql.Append(" (Ordpg_PhotographerId like '%" + Tsorder_OpenSingle + "%' or Ordpg_PhotographyAssistantId like '%" + Tsorder_OpenSingle + "%') and OrdPg_PhotographyStatus='ok' ");
  280. sql.Append(" and (OrdPg_PhotographyTime>='" + TimeStart + "' and OrdPg_PhotographyTime<='" + TimeEnd + " 23:59:59.000')");
  281. dt = WagesSetBll.View_OrdersWagePaymentRecords_Wedding(sql.ToString()).Tables[0];
  282. if (dt.Rows.Count > 0)
  283. {
  284. for (int t = 0; t < dt.Rows.Count; t++)
  285. {
  286. #region 摄影
  287. if ((dt.Rows[t]["Pay_Category"].ToString().Trim() != "后期收款"))
  288. {
  289. #region 摄影师也有前期提成(无二销)
  290. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='PhotographerEarlyPinsPercentage'").Tables[0];
  291. if (dtSystemConfigure.Rows.Count > 0)
  292. {
  293. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  294. {
  295. DataGridViewRow dgvr = new DataGridViewRow();
  296. DataGridViewCell cell = null;
  297. cell = new DataGridViewTextBoxCell();
  298. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  299. dgvr.Cells.Add(cell);
  300. cell = new DataGridViewTextBoxCell();
  301. cell.Value = dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单";
  302. dgvr.Cells.Add(cell);
  303. cell = new DataGridViewTextBoxCell();
  304. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  305. dgvr.Cells.Add(cell);
  306. cell = new DataGridViewTextBoxCell();
  307. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  308. dgvr.Cells.Add(cell);
  309. cell = new DataGridViewTextBoxCell();
  310. cell.Value = "摄影前期";
  311. dgvr.Cells.Add(cell);
  312. cell = new DataGridViewTextBoxCell();
  313. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  314. dgvr.Cells.Add(cell);
  315. cell = new DataGridViewTextBoxCell();
  316. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  317. dgvr.Cells.Add(cell);
  318. cell = new DataGridViewTextBoxCell();
  319. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  320. dgvr.Cells.Add(cell);
  321. cell = new DataGridViewTextBoxCell();
  322. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  323. dgvr.Cells.Add(cell);
  324. cell = new DataGridViewTextBoxCell();
  325. cell.Value = "";
  326. dgvr.Cells.Add(cell);
  327. cell = new DataGridViewTextBoxCell();
  328. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  329. dgvr.Cells.Add(cell);
  330. this.dgv1.Rows.Add(dgvr);
  331. dgv1.ClearSelection();
  332. }
  333. }
  334. #endregion
  335. }
  336. if ((dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim() == "选片二销"))
  337. {
  338. #region 摄影师也有选片二销提成
  339. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='PhotographerTwoPinsPercentage'").Tables[0];
  340. if (dtSystemConfigure.Rows.Count > 0)
  341. {
  342. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  343. {
  344. DataGridViewRow dgvr = new DataGridViewRow();
  345. DataGridViewCell cell = null;
  346. cell = new DataGridViewTextBoxCell();
  347. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  348. dgvr.Cells.Add(cell);
  349. cell = new DataGridViewTextBoxCell();
  350. cell.Value = dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单";
  351. dgvr.Cells.Add(cell);
  352. cell = new DataGridViewTextBoxCell();
  353. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  354. dgvr.Cells.Add(cell);
  355. cell = new DataGridViewTextBoxCell();
  356. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  357. dgvr.Cells.Add(cell);
  358. cell = new DataGridViewTextBoxCell();
  359. cell.Value = "摄影选片二销";
  360. dgvr.Cells.Add(cell);
  361. cell = new DataGridViewTextBoxCell();
  362. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  363. dgvr.Cells.Add(cell);
  364. cell = new DataGridViewTextBoxCell();
  365. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  366. dgvr.Cells.Add(cell);
  367. cell = new DataGridViewTextBoxCell();
  368. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  369. dgvr.Cells.Add(cell);
  370. cell = new DataGridViewTextBoxCell();
  371. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  372. dgvr.Cells.Add(cell);
  373. cell = new DataGridViewTextBoxCell();
  374. cell.Value = "";
  375. dgvr.Cells.Add(cell);
  376. cell = new DataGridViewTextBoxCell();
  377. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  378. dgvr.Cells.Add(cell);
  379. this.dgv1.Rows.Add(dgvr);
  380. dgv1.ClearSelection();
  381. }
  382. }
  383. #endregion
  384. }
  385. #endregion
  386. }
  387. }
  388. #endregion
  389. #region 化妆
  390. dt = new DataTable();
  391. sql = new StringBuilder();
  392. sql.Append(" (Ordpg_MakeupArtistId like '%" + Tsorder_OpenSingle + "%' or Ordpg_MakeupAssistantId like '%" + Tsorder_OpenSingle + "%') and OrdPg_PhotographyStatus='ok' ");
  393. sql.Append(" and (OrdPg_PhotographyTime>='" + TimeStart + "' and OrdPg_PhotographyTime<='" + TimeEnd + " 23:59:59.000')");
  394. dt = WagesSetBll.View_OrdersWagePaymentRecords_Wedding(sql.ToString()).Tables[0];
  395. if (dt.Rows.Count > 0)
  396. {
  397. for (int t = 0; t < dt.Rows.Count; t++)
  398. {
  399. #region 化妆
  400. if ((dt.Rows[t]["Pay_Category"].ToString().Trim() != "后期收款"))
  401. {
  402. #region 化妆师也有前期提成(无二销)
  403. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='MakeupEarlyPinsPercentage'").Tables[0];
  404. if (dtSystemConfigure.Rows.Count > 0)
  405. {
  406. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  407. {
  408. DataGridViewRow dgvr = new DataGridViewRow();
  409. DataGridViewCell cell = null;
  410. cell = new DataGridViewTextBoxCell();
  411. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  412. dgvr.Cells.Add(cell);
  413. cell = new DataGridViewTextBoxCell();
  414. cell.Value = dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单";
  415. dgvr.Cells.Add(cell);
  416. cell = new DataGridViewTextBoxCell();
  417. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  418. dgvr.Cells.Add(cell);
  419. cell = new DataGridViewTextBoxCell();
  420. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  421. dgvr.Cells.Add(cell);
  422. cell = new DataGridViewTextBoxCell();
  423. cell.Value = "化妆前期";
  424. dgvr.Cells.Add(cell);
  425. cell = new DataGridViewTextBoxCell();
  426. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  427. dgvr.Cells.Add(cell);
  428. cell = new DataGridViewTextBoxCell();
  429. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  430. dgvr.Cells.Add(cell);
  431. cell = new DataGridViewTextBoxCell();
  432. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  433. dgvr.Cells.Add(cell);
  434. cell = new DataGridViewTextBoxCell();
  435. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  436. dgvr.Cells.Add(cell);
  437. cell = new DataGridViewTextBoxCell();
  438. cell.Value = "";
  439. dgvr.Cells.Add(cell);
  440. cell = new DataGridViewTextBoxCell();
  441. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  442. dgvr.Cells.Add(cell);
  443. this.dgv1.Rows.Add(dgvr);
  444. dgv1.ClearSelection();
  445. }
  446. }
  447. #endregion
  448. }
  449. if ((dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim() == "选片二销"))
  450. {
  451. #region 化妆师也有选片二销提成
  452. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='MakeupTwoPinsPercentage'").Tables[0];
  453. if (dtSystemConfigure.Rows.Count > 0)
  454. {
  455. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  456. {
  457. DataGridViewRow dgvr = new DataGridViewRow();
  458. DataGridViewCell cell = null;
  459. cell = new DataGridViewTextBoxCell();
  460. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  461. dgvr.Cells.Add(cell);
  462. cell = new DataGridViewTextBoxCell();
  463. cell.Value = dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单";
  464. dgvr.Cells.Add(cell);
  465. cell = new DataGridViewTextBoxCell();
  466. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  467. dgvr.Cells.Add(cell);
  468. cell = new DataGridViewTextBoxCell();
  469. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  470. dgvr.Cells.Add(cell);
  471. cell = new DataGridViewTextBoxCell();
  472. cell.Value = "化妆选片二销";
  473. dgvr.Cells.Add(cell);
  474. cell = new DataGridViewTextBoxCell();
  475. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  476. dgvr.Cells.Add(cell);
  477. cell = new DataGridViewTextBoxCell();
  478. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  479. dgvr.Cells.Add(cell);
  480. cell = new DataGridViewTextBoxCell();
  481. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  482. dgvr.Cells.Add(cell);
  483. cell = new DataGridViewTextBoxCell();
  484. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  485. dgvr.Cells.Add(cell);
  486. cell = new DataGridViewTextBoxCell();
  487. cell.Value = "";
  488. dgvr.Cells.Add(cell);
  489. cell = new DataGridViewTextBoxCell();
  490. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  491. dgvr.Cells.Add(cell);
  492. this.dgv1.Rows.Add(dgvr);
  493. dgv1.ClearSelection();
  494. }
  495. }
  496. #endregion
  497. }
  498. #endregion
  499. }
  500. }
  501. #endregion
  502. #endregion
  503. #region 儿童版 检测是否有化妆/摄影/引导工作前期/与二销后期
  504. #region 摄影
  505. dt = new DataTable();
  506. sql = new StringBuilder();
  507. sql.Append(" (Ordpg_Photographer like '%" + Tsorder_OpenSingle + "%' or Ordpg_PhotographyAssistant like '%" + Tsorder_OpenSingle + "%') ");
  508. sql.Append(" and (OrdPg_PhotographyTime>='" + TimeStart + "' and OrdPg_PhotographyTime<='" + TimeEnd + " 23:59:59.000')");
  509. dt = WagesSetBll.View_OrdersWagePaymentRecords_Child(sql.ToString()).Tables[0];
  510. if (dt.Rows.Count > 0)
  511. {
  512. for (int t = 0; t < dt.Rows.Count; t++)
  513. {
  514. #region 摄影
  515. if ((dt.Rows[t]["Pay_Category"].ToString().Trim() != "后期收款"))
  516. {
  517. #region 摄影师也有前期提成(无二销)
  518. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='PhotographerEarlyPinsPercentage'").Tables[0];
  519. if (dtSystemConfigure.Rows.Count > 0)
  520. {
  521. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  522. {
  523. DataGridViewRow dgvr = new DataGridViewRow();
  524. DataGridViewCell cell = null;
  525. cell = new DataGridViewTextBoxCell();
  526. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  527. dgvr.Cells.Add(cell);
  528. cell = new DataGridViewTextBoxCell();
  529. cell.Value = (dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单") + "(" + (dt.Rows[t]["Ordpg_Sights"].ToString().Trim()) + ")";
  530. dgvr.Cells.Add(cell);
  531. cell = new DataGridViewTextBoxCell();
  532. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  533. dgvr.Cells.Add(cell);
  534. cell = new DataGridViewTextBoxCell();
  535. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  536. dgvr.Cells.Add(cell);
  537. cell = new DataGridViewTextBoxCell();
  538. cell.Value = "摄影前期";
  539. dgvr.Cells.Add(cell);
  540. cell = new DataGridViewTextBoxCell();
  541. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  542. dgvr.Cells.Add(cell);
  543. cell = new DataGridViewTextBoxCell();
  544. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  545. dgvr.Cells.Add(cell);
  546. cell = new DataGridViewTextBoxCell();
  547. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  548. dgvr.Cells.Add(cell);
  549. cell = new DataGridViewTextBoxCell();
  550. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  551. dgvr.Cells.Add(cell);
  552. cell = new DataGridViewTextBoxCell();
  553. cell.Value = "";
  554. dgvr.Cells.Add(cell);
  555. cell = new DataGridViewTextBoxCell();
  556. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  557. dgvr.Cells.Add(cell);
  558. this.dgv1.Rows.Add(dgvr);
  559. dgv1.ClearSelection();
  560. }
  561. }
  562. #endregion
  563. }
  564. if ((dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim() == "选片二销"))
  565. {
  566. #region 摄影师也有选片二销提成
  567. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='PhotographerTwoPinsPercentage'").Tables[0];
  568. if (dtSystemConfigure.Rows.Count > 0)
  569. {
  570. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  571. {
  572. DataGridViewRow dgvr = new DataGridViewRow();
  573. DataGridViewCell cell = null;
  574. cell = new DataGridViewTextBoxCell();
  575. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  576. dgvr.Cells.Add(cell);
  577. cell = new DataGridViewTextBoxCell();
  578. cell.Value = (dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单") + "(" + (dt.Rows[t]["Ordpg_Sights"].ToString().Trim()) + ")";
  579. dgvr.Cells.Add(cell);
  580. cell = new DataGridViewTextBoxCell();
  581. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  582. dgvr.Cells.Add(cell);
  583. cell = new DataGridViewTextBoxCell();
  584. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  585. dgvr.Cells.Add(cell);
  586. cell = new DataGridViewTextBoxCell();
  587. cell.Value = "摄影选片二销";
  588. dgvr.Cells.Add(cell);
  589. cell = new DataGridViewTextBoxCell();
  590. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  591. dgvr.Cells.Add(cell);
  592. cell = new DataGridViewTextBoxCell();
  593. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  594. dgvr.Cells.Add(cell);
  595. cell = new DataGridViewTextBoxCell();
  596. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  597. dgvr.Cells.Add(cell);
  598. cell = new DataGridViewTextBoxCell();
  599. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  600. dgvr.Cells.Add(cell);
  601. cell = new DataGridViewTextBoxCell();
  602. cell.Value = "";
  603. dgvr.Cells.Add(cell);
  604. cell = new DataGridViewTextBoxCell();
  605. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  606. dgvr.Cells.Add(cell);
  607. this.dgv1.Rows.Add(dgvr);
  608. dgv1.ClearSelection();
  609. }
  610. }
  611. #endregion
  612. }
  613. #endregion
  614. }
  615. }
  616. #endregion
  617. #region 化妆
  618. dt = new DataTable();
  619. sql = new StringBuilder();
  620. sql.Append(" (Ordpg_MakeupArtist like '%" + Tsorder_OpenSingle + "%' or Ordpg_MakeupAssistant like '%" + Tsorder_OpenSingle + "%') ");
  621. sql.Append(" and (OrdPg_PhotographyTime>='" + TimeStart + "' and OrdPg_PhotographyTime<='" + TimeEnd + " 23:59:59.000')");
  622. dt = WagesSetBll.View_OrdersWagePaymentRecords_Child(sql.ToString()).Tables[0];
  623. if (dt.Rows.Count > 0)
  624. {
  625. for (int t = 0; t < dt.Rows.Count; t++)
  626. {
  627. #region 化妆
  628. if ((dt.Rows[t]["Pay_Category"].ToString().Trim() != "后期收款"))
  629. {
  630. #region 化妆师也有前期提成(无二销)
  631. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='MakeupEarlyPinsPercentage'").Tables[0];
  632. if (dtSystemConfigure.Rows.Count > 0)
  633. {
  634. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  635. {
  636. DataGridViewRow dgvr = new DataGridViewRow();
  637. DataGridViewCell cell = null;
  638. cell = new DataGridViewTextBoxCell();
  639. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  640. dgvr.Cells.Add(cell);
  641. cell = new DataGridViewTextBoxCell();
  642. cell.Value = (dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单") + "(" + (dt.Rows[t]["Ordpg_Sights"].ToString().Trim()) + ")";
  643. dgvr.Cells.Add(cell);
  644. cell = new DataGridViewTextBoxCell();
  645. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  646. dgvr.Cells.Add(cell);
  647. cell = new DataGridViewTextBoxCell();
  648. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  649. dgvr.Cells.Add(cell);
  650. cell = new DataGridViewTextBoxCell();
  651. cell.Value = "化妆前期";
  652. dgvr.Cells.Add(cell);
  653. cell = new DataGridViewTextBoxCell();
  654. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  655. dgvr.Cells.Add(cell);
  656. cell = new DataGridViewTextBoxCell();
  657. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  658. dgvr.Cells.Add(cell);
  659. cell = new DataGridViewTextBoxCell();
  660. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  661. dgvr.Cells.Add(cell);
  662. cell = new DataGridViewTextBoxCell();
  663. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  664. dgvr.Cells.Add(cell);
  665. cell = new DataGridViewTextBoxCell();
  666. cell.Value = "";
  667. dgvr.Cells.Add(cell);
  668. cell = new DataGridViewTextBoxCell();
  669. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  670. dgvr.Cells.Add(cell);
  671. this.dgv1.Rows.Add(dgvr);
  672. dgv1.ClearSelection();
  673. }
  674. }
  675. #endregion
  676. }
  677. if ((dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim() == "选片二销"))
  678. {
  679. #region 化妆师也有选片二销提成
  680. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='MakeupTwoPinsPercentage'").Tables[0];
  681. if (dtSystemConfigure.Rows.Count > 0)
  682. {
  683. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  684. {
  685. DataGridViewRow dgvr = new DataGridViewRow();
  686. DataGridViewCell cell = null;
  687. cell = new DataGridViewTextBoxCell();
  688. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  689. dgvr.Cells.Add(cell);
  690. cell = new DataGridViewTextBoxCell();
  691. cell.Value = (dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单") + "(" + (dt.Rows[t]["Ordpg_Sights"].ToString().Trim()) + ")";
  692. dgvr.Cells.Add(cell);
  693. cell = new DataGridViewTextBoxCell();
  694. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  695. dgvr.Cells.Add(cell);
  696. cell = new DataGridViewTextBoxCell();
  697. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  698. dgvr.Cells.Add(cell);
  699. cell = new DataGridViewTextBoxCell();
  700. cell.Value = "化妆选片二销";
  701. dgvr.Cells.Add(cell);
  702. cell = new DataGridViewTextBoxCell();
  703. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  704. dgvr.Cells.Add(cell);
  705. cell = new DataGridViewTextBoxCell();
  706. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  707. dgvr.Cells.Add(cell);
  708. cell = new DataGridViewTextBoxCell();
  709. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  710. dgvr.Cells.Add(cell);
  711. cell = new DataGridViewTextBoxCell();
  712. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  713. dgvr.Cells.Add(cell);
  714. cell = new DataGridViewTextBoxCell();
  715. cell.Value = "";
  716. dgvr.Cells.Add(cell);
  717. cell = new DataGridViewTextBoxCell();
  718. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  719. dgvr.Cells.Add(cell);
  720. this.dgv1.Rows.Add(dgvr);
  721. dgv1.ClearSelection();
  722. }
  723. }
  724. #endregion
  725. }
  726. #endregion
  727. }
  728. }
  729. #endregion
  730. #region 引导
  731. dt = new DataTable();
  732. sql = new StringBuilder();
  733. sql.Append(" Ordpg_BootDivision like '%" + Tsorder_OpenSingle + "%' ");
  734. sql.Append(" and (OrdPg_PhotographyTime>='" + TimeStart + "' and OrdPg_PhotographyTime<='" + TimeEnd + " 23:59:59.000')");
  735. dt = WagesSetBll.View_OrdersWagePaymentRecords_Child(sql.ToString()).Tables[0];
  736. if (dt.Rows.Count > 0)
  737. {
  738. for (int t = 0; t < dt.Rows.Count; t++)
  739. {
  740. #region 引导
  741. if ((dt.Rows[t]["Pay_Category"].ToString().Trim() != "后期收款"))
  742. {
  743. #region 引导师也有前期提成(无二销)
  744. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='MakeupEarlyPinsPercentage'").Tables[0];
  745. if (dtSystemConfigure.Rows.Count > 0)
  746. {
  747. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  748. {
  749. DataGridViewRow dgvr = new DataGridViewRow();
  750. DataGridViewCell cell = null;
  751. cell = new DataGridViewTextBoxCell();
  752. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  753. dgvr.Cells.Add(cell);
  754. cell = new DataGridViewTextBoxCell();
  755. cell.Value = (dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单") + "(" + (dt.Rows[t]["Ordpg_Sights"].ToString().Trim()) + ")";
  756. dgvr.Cells.Add(cell);
  757. cell = new DataGridViewTextBoxCell();
  758. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  759. dgvr.Cells.Add(cell);
  760. cell = new DataGridViewTextBoxCell();
  761. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  762. dgvr.Cells.Add(cell);
  763. cell = new DataGridViewTextBoxCell();
  764. cell.Value = "引导前期";
  765. dgvr.Cells.Add(cell);
  766. cell = new DataGridViewTextBoxCell();
  767. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  768. dgvr.Cells.Add(cell);
  769. cell = new DataGridViewTextBoxCell();
  770. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  771. dgvr.Cells.Add(cell);
  772. cell = new DataGridViewTextBoxCell();
  773. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  774. dgvr.Cells.Add(cell);
  775. cell = new DataGridViewTextBoxCell();
  776. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  777. dgvr.Cells.Add(cell);
  778. cell = new DataGridViewTextBoxCell();
  779. cell.Value = "";
  780. dgvr.Cells.Add(cell);
  781. cell = new DataGridViewTextBoxCell();
  782. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  783. dgvr.Cells.Add(cell);
  784. this.dgv1.Rows.Add(dgvr);
  785. dgv1.ClearSelection();
  786. }
  787. }
  788. #endregion
  789. }
  790. if ((dt.Rows[t]["Pay_TwoPinsCategoryName"].ToString().Trim() == "选片二销"))
  791. {
  792. #region 引导师也有选片二销提成
  793. DataTable dtSystemConfigure = SystemConfigureBll.GetList("Sconfig_Code='MakeupTwoPinsPercentage'").Tables[0];
  794. if (dtSystemConfigure.Rows.Count > 0)
  795. {
  796. if (Convert.ToBoolean(dtSystemConfigure.Rows[0]["Sconfig_IsEnabled"]) == true)
  797. {
  798. DataGridViewRow dgvr = new DataGridViewRow();
  799. DataGridViewCell cell = null;
  800. cell = new DataGridViewTextBoxCell();
  801. cell.Value = dt.Rows[t]["Pay_OrdNumber"].ToString().Trim();
  802. dgvr.Cells.Add(cell);
  803. cell = new DataGridViewTextBoxCell();
  804. cell.Value = (dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单") + "(" + (dt.Rows[t]["Ordpg_Sights"].ToString().Trim()) + ")";
  805. dgvr.Cells.Add(cell);
  806. cell = new DataGridViewTextBoxCell();
  807. cell.Value = Convert.ToDecimal(dt.Rows[t]["Pay_AmountOf"]).ToString("N0");
  808. dgvr.Cells.Add(cell);
  809. cell = new DataGridViewTextBoxCell();
  810. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pay_CreateDatetime"]).ToString("yyyy-MM-dd");
  811. dgvr.Cells.Add(cell);
  812. cell = new DataGridViewTextBoxCell();
  813. cell.Value = "引导选片二销";
  814. dgvr.Cells.Add(cell);
  815. cell = new DataGridViewTextBoxCell();
  816. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString().Trim();
  817. dgvr.Cells.Add(cell);
  818. cell = new DataGridViewTextBoxCell();
  819. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString().Trim();
  820. dgvr.Cells.Add(cell);
  821. cell = new DataGridViewTextBoxCell();
  822. cell.Value = dt.Rows[t]["Ord_SeriesName"].ToString().Trim();
  823. dgvr.Cells.Add(cell);
  824. cell = new DataGridViewTextBoxCell();
  825. cell.Value = dt.Rows[t]["Pay_PaymentMethodName"].ToString().Trim();
  826. dgvr.Cells.Add(cell);
  827. cell = new DataGridViewTextBoxCell();
  828. cell.Value = "";
  829. dgvr.Cells.Add(cell);
  830. cell = new DataGridViewTextBoxCell();
  831. cell.Value = dt.Rows[t]["Pay_CustomNumber"].ToString().Trim();
  832. dgvr.Cells.Add(cell);
  833. this.dgv1.Rows.Add(dgvr);
  834. dgv1.ClearSelection();
  835. }
  836. }
  837. #endregion
  838. }
  839. #endregion
  840. }
  841. }
  842. #endregion
  843. #endregion
  844. }
  845. catch (Exception ex)
  846. {
  847. MessageBoxCustom.Show(ex.Message);
  848. }
  849. }
  850. #endregion
  851. #region 计件提成
  852. public void BindPiece(string Tsorder_OpenSingle, string TimeStart, string TimeEnd)
  853. {
  854. try
  855. {
  856. dgv4.Rows.Clear();
  857. decimal Price = 0;
  858. LYFZ.BLL.BLL_ErpPieceCommissionRecords PieceCommissionRecordsBll = new BLL.BLL_ErpPieceCommissionRecords();
  859. DataTable dt = new DataTable();
  860. StringBuilder sql = new StringBuilder();
  861. sql.Append(" Pcr_DigitalDivision='" + Tsorder_OpenSingle + "'");
  862. sql.Append(" and (Pcr_Date>='" + TimeStart + "' and Pcr_Date<='" + TimeEnd + " 23:59:59.000')");
  863. dt = PieceCommissionRecordsBll.Vw_ErpPieceCommissionRecords(sql.ToString()).Tables[0];
  864. if (dt.Rows.Count > 0)
  865. {
  866. for (int t = 0; t < dt.Rows.Count; t++)
  867. {
  868. #region
  869. DataGridViewRow dgvr = new DataGridViewRow();
  870. DataGridViewCell cell = null;
  871. cell = new DataGridViewTextBoxCell();
  872. cell.Value = dt.Rows[t]["Pcr_OrderNumber"].ToString().Trim();
  873. dgvr.Cells.Add(cell);
  874. //订单类型
  875. cell = new DataGridViewTextBoxCell();
  876. cell.Value = dt.Rows[t]["Ord_Type"].ToString().Trim() == "0" ? "婚纱订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "1" ? "儿童订单" : dt.Rows[t]["Ord_Type"].ToString().Trim() == "2" ? "写真订单" : "服务订单";
  877. dgvr.Cells.Add(cell);
  878. cell = new DataGridViewTextBoxCell();
  879. cell.Value = dt.Rows[t]["Ord_CustomerName1"].ToString();
  880. dgvr.Cells.Add(cell);
  881. cell = new DataGridViewTextBoxCell();
  882. cell.Value = dt.Rows[t]["Ord_CustomerName2"].ToString();
  883. dgvr.Cells.Add(cell);
  884. //提成金额
  885. LYFZ.BLL.BLL_ErpWageCommissionSet WageCommissionSetbll = new BLL.BLL_ErpWageCommissionSet();
  886. DataTable dtWageCommissionSet = WageCommissionSetbll.GetList("Wcs_TypeCode='" + dt.Rows[t]["Pcr_CompletionContents"] + "'").Tables[0];
  887. string Wcs_Percentage = "0";
  888. if (dtWageCommissionSet.Rows.Count > 0)
  889. {
  890. Wcs_Percentage = dtWageCommissionSet.Rows[0]["Wcs_Percentage"].ToString() == "" ? "0" : dtWageCommissionSet.Rows[0]["Wcs_Percentage"].ToString();
  891. }
  892. cell = new DataGridViewTextBoxCell();
  893. cell.Value = Convert.ToDecimal(Convert.ToDecimal(dt.Rows[t]["Pcr_Quantity"]) * Convert.ToDecimal(Wcs_Percentage)).ToString("N2");
  894. dgvr.Cells.Add(cell);
  895. //部门
  896. cell = new DataGridViewTextBoxCell();
  897. cell.Value = "数码师";
  898. dgvr.Cells.Add(cell);
  899. //内容
  900. cell = new DataGridViewTextBoxCell();
  901. cell.Value = dt.Rows[t]["Pcr_CompletionContentsName"].ToString().Trim();
  902. dgvr.Cells.Add(cell);
  903. //数量
  904. cell = new DataGridViewTextBoxCell();
  905. cell.Value = dt.Rows[t]["Pcr_Quantity"].ToString().Trim();
  906. dgvr.Cells.Add(cell);
  907. //单价
  908. cell = new DataGridViewTextBoxCell();
  909. cell.Value = Wcs_Percentage;
  910. dgvr.Cells.Add(cell);
  911. //提成方式
  912. cell = new DataGridViewTextBoxCell();
  913. cell.Value = "单价*数量";
  914. dgvr.Cells.Add(cell);
  915. //套系价格
  916. cell = new DataGridViewTextBoxCell();
  917. cell.Value = dt.Rows[t]["Ord_SeriesPrice"].ToString().Trim();
  918. dgvr.Cells.Add(cell);
  919. //日期
  920. cell = new DataGridViewTextBoxCell();
  921. cell.Value = Convert.ToDateTime(dt.Rows[t]["Pcr_Date"]).ToString("yyyy-MM-dd");
  922. dgvr.Cells.Add(cell);
  923. //合计总和
  924. decimal ob = Convert.ToDecimal(Convert.ToDecimal(dt.Rows[t]["Pcr_Quantity"]) * Convert.ToDecimal(Wcs_Percentage));
  925. Price += Convert.ToDecimal(ob.ToString("N2"));
  926. this.dgv4.Rows.Add(dgvr);
  927. dgv4.ClearSelection();
  928. #endregion
  929. lblPrice.Text = "(总和:" + Price + ")";
  930. Piece = Price;
  931. }
  932. }
  933. else
  934. {
  935. lblPrice.Text = "(总和:0.00)";
  936. Piece = 0.00m;
  937. }
  938. }
  939. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  940. }
  941. #endregion
  942. decimal QQYJ_TC = 0;
  943. decimal EXYJ_TC = 0;
  944. decimal YJTC_TC = 0;
  945. decimal Piece = 0; //计件提成
  946. decimal S_EXYJ_Tc = 0;
  947. decimal QQSK_TC = 0;
  948. decimal QQSK_SH_TC = 0;
  949. #region 获取工资
  950. /// <summary>
  951. /// 获取工资
  952. /// </summary>
  953. /// <param name="Tsorder_OpenSingle"></param>
  954. public void GetWages(string Tsorder_OpenSingle)
  955. {
  956. try
  957. {
  958. LYFZ.BLL.BLL_ErpSystemCategory SystemCategorybll = new BLL.BLL_ErpSystemCategory();
  959. LYFZ.BLL.BLL_ErpWagesSet Wagebll = new BLL.BLL_ErpWagesSet();
  960. LYFZ.BLL.BLL_ErpCommissionPercentage CommissionPercentagebll = new BLL.BLL_ErpCommissionPercentage();
  961. LYFZ.BLL.BLL_ErpOrdersPhotography OrdersPhotographybll = new BLL.BLL_ErpOrdersPhotography();
  962. LYFZ.BLL.BLL_ErpWageCommissionSet WageCommissionSetbll = new BLL.BLL_ErpWageCommissionSet();
  963. LYFZ.BLL.BLL_ErpWagesSet WagesSetbll = new BLL.BLL_ErpWagesSet();
  964. LYFZ.BLL.BLL_ErpTwoPinsProjectCommissionProportion TwoPinsProjectCommissionProportion = new BLL.BLL_ErpTwoPinsProjectCommissionProportion();
  965. DataTable dt = new DataTable();
  966. if (dgv1.Rows.Count > 0)
  967. {
  968. for (int i = 0; i < dgv1.Rows.Count; i++)
  969. {
  970. string Pay_OrdNumber = dgv1.Rows[i].Cells["Pay_OrdNumber"].Value.ToString();
  971. decimal Pay_AmountOf = Convert.ToDecimal(dgv1.Rows[i].Cells["Pay_AmountOf"].Value);
  972. string Pay_Category = dgv1.Rows[i].Cells["Pay_Category"].Value.ToString();
  973. object OrdPe_Type = dgv1.Rows[i].Cells["OrdPe_Type"].Value;
  974. string Pay_CustomNumber = dgv1.Rows[i].Cells["Pay_CustomNumber"].Value.ToString();
  975. #region 获取前期业绩收款记录
  976. #region 先获取门市提成工资比重(只能在前期收款)
  977. if (Pay_Category == "前期收款")
  978. {
  979. if (OrdPe_Type != null)
  980. {
  981. #region
  982. //获取主门市个数
  983. decimal MainCount = Convert.ToDecimal(Wagebll.GetPersonCount(" OrdPe_OrderNumber='" + Pay_OrdNumber + "' and OrdPe_Type='0'").Tables[0].Rows[0]["count"]);
  984. //获取副门市个数
  985. decimal DeputyCount = Convert.ToDecimal(Wagebll.GetPersonCount(" OrdPe_OrderNumber='" + Pay_OrdNumber + "' and OrdPe_Type='1'").Tables[0].Rows[0]["count"]);
  986. //获取门市比重
  987. decimal MainProportion = 0;
  988. decimal DeputyProportion = 0;
  989. if (CommissionPercentagebll.GetList("Cp_ProportionCode='MainStoreProportion'").Tables[0].Rows.Count > 0)
  990. { MainProportion = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='MainStoreProportion'").Tables[0].Rows[0]["Cp_Proportion"]); }
  991. else { MainProportion = 0; }
  992. if (CommissionPercentagebll.GetList("Cp_ProportionCode='DeputyStoreProportion'").Tables[0].Rows.Count > 0)
  993. { DeputyProportion = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='DeputyStoreProportion'").Tables[0].Rows[0]["Cp_Proportion"]); }
  994. else { DeputyProportion = 0; }
  995. //如果主门市个数只有一个,则按100%比例分配
  996. if ((MainCount == 1 && DeputyCount == 0))
  997. {
  998. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = Pay_AmountOf.ToString("N0"); ;
  999. }
  1000. //如果主门市个数只有一个,副门市多个 则按比例分配
  1001. if ((MainCount == 1 && DeputyCount > 0))
  1002. {
  1003. //公式 金额=(总金额/总比例)*门市比重
  1004. if (Convert.ToInt32(OrdPe_Type) == 0) //主
  1005. {
  1006. decimal MsMoney = 0;
  1007. MsMoney = Pay_AmountOf / ((MainCount * MainProportion) + (DeputyCount * DeputyProportion)) * MainProportion;
  1008. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = MsMoney.ToString("N0");
  1009. }
  1010. if (Convert.ToInt32(OrdPe_Type) == 1) //副
  1011. {
  1012. decimal MsMoney = 0;
  1013. MsMoney = Pay_AmountOf / ((MainCount * MainProportion) + (DeputyCount * DeputyProportion)) * DeputyProportion;
  1014. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = MsMoney.ToString("N0");
  1015. }
  1016. }
  1017. #endregion
  1018. }
  1019. else { dgv1.Rows.RemoveAt(i); }
  1020. }
  1021. #endregion
  1022. #region 获取景点比重
  1023. #region 获取参数与定义参数
  1024. //获取等级级别比重
  1025. decimal OneLevel = 0;
  1026. decimal TwoLevel = 0;
  1027. decimal ThreeLevel = 0;
  1028. if (CommissionPercentagebll.GetList("Cp_ProportionCode='BEBBBCADDEBFJDFFC'").Tables[0].Rows.Count > 0)
  1029. { OneLevel = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='BEBBBCADDEBFJDFFC'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1030. else { OneLevel = 0; }
  1031. if (CommissionPercentagebll.GetList("Cp_ProportionCode='BEBBBCADEGBGAFFJC'").Tables[0].Rows.Count > 0)
  1032. { TwoLevel = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='BEBBBCADEGBGAFFJC'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1033. else { TwoLevel = 0; }
  1034. if (CommissionPercentagebll.GetList("Cp_ProportionCode='BEBBBCADAFBHBCHCI'").Tables[0].Rows.Count > 0)
  1035. { ThreeLevel = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='BEBBBCADAFBHBCHCI'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1036. else { ThreeLevel = 0; }
  1037. //获取等级级别个数
  1038. decimal OneLevelCount = Convert.ToDecimal(Wagebll.GetAttractionsRatingCount(" Ordpg_Number='" + Pay_OrdNumber + "' and Ordpg_SightsLevel='BEBBBCADDEBFJDFFC'").Tables[0].Rows[0]["count"]);
  1039. decimal TwoLevelCount = Convert.ToDecimal(Wagebll.GetAttractionsRatingCount(" Ordpg_Number='" + Pay_OrdNumber + "' and Ordpg_SightsLevel='BEBBBCADEGBGAFFJC'").Tables[0].Rows[0]["count"]);
  1040. decimal ThreeLevelCount = Convert.ToDecimal(Wagebll.GetAttractionsRatingCount(" Ordpg_Number='" + Pay_OrdNumber + "' and Ordpg_SightsLevel='BEBBBCADAFBHBCHCI'").Tables[0].Rows[0]["count"]);
  1041. #endregion
  1042. #region 摄影前期
  1043. if (Pay_Category == "摄影前期")
  1044. {
  1045. //获取摄影比重
  1046. decimal MainPhotography = 0;
  1047. decimal DeputyPhotography = 0;
  1048. if (CommissionPercentagebll.GetList("Cp_ProportionCode='MainPhotography'").Tables[0].Rows.Count > 0)
  1049. { MainPhotography = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='MainPhotography'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1050. else { MainPhotography = 0; }
  1051. if (CommissionPercentagebll.GetList("Cp_ProportionCode='DeputyPhotography'").Tables[0].Rows.Count > 0)
  1052. { DeputyPhotography = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='DeputyPhotography'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1053. else { DeputyPhotography = 0; }
  1054. //多种条件获取工资
  1055. #region 1.如果所以景点阶段都相同
  1056. if ((OneLevelCount >= 1 && TwoLevelCount == 0 && ThreeLevelCount == 0) || (OneLevelCount == 0 && TwoLevelCount >= 1 && ThreeLevelCount == 0) || (OneLevelCount == 0 && TwoLevelCount == 0 && ThreeLevelCount >= 1))
  1057. {
  1058. decimal Attractionswages = 0; //获取景点工资
  1059. //一级
  1060. if ((OneLevelCount >= 1 && TwoLevelCount == 0 && ThreeLevelCount == 0))
  1061. {
  1062. //获取景点工资
  1063. Attractionswages = Pay_AmountOf * (100 / 100 / OneLevelCount);
  1064. //获取摄影人员
  1065. dt = OrdersPhotographybll.GetList("OrdPg_Number='" + Pay_OrdNumber + "' and OrdPg_SightsLevel='BEBBBCADDEBFJDFFC'").Tables[0];
  1066. }
  1067. //二级
  1068. if ((OneLevelCount == 0 && TwoLevelCount >= 1 && ThreeLevelCount == 0))
  1069. {
  1070. //获取景点工资
  1071. Attractionswages = Pay_AmountOf * (100 / 100 / TwoLevelCount);
  1072. //获取摄影人员
  1073. dt = OrdersPhotographybll.GetList("OrdPg_Number='" + Pay_OrdNumber + "' and OrdPg_SightsLevel='BEBBBCADEGBGAFFJC'").Tables[0];
  1074. }
  1075. //三级
  1076. if ((OneLevelCount == 0 && TwoLevelCount == 0 && ThreeLevelCount >= 1))
  1077. {
  1078. //获取景点工资
  1079. Attractionswages = Pay_AmountOf * (100 / 100 / ThreeLevelCount);
  1080. //获取摄影人员
  1081. dt = OrdersPhotographybll.GetList("OrdPg_Number='" + Pay_OrdNumber + "' and OrdPg_SightsLevel='BEBBBCADAFBHBCHCI'").Tables[0];
  1082. }
  1083. if (dt.Rows.Count > 0)
  1084. {
  1085. decimal MainAttractionsPerWages = 0; //主摄影工资
  1086. decimal DeputyAttractionsPerWages = 0; //摄影助理工资
  1087. for (int y = 0; y < dt.Rows.Count; y++)
  1088. {
  1089. string OrdPg_Photographer = dt.Rows[y]["OrdPg_Photographer"].ToString();
  1090. string OrdPg_PhotographyAssistant = dt.Rows[y]["OrdPg_PhotographyAssistant"].ToString();
  1091. //主摄影工资
  1092. if (OrdPg_Photographer == Tsorder_OpenSingle)
  1093. {
  1094. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1095. {
  1096. MainAttractionsPerWages += Attractionswages * (MainPhotography / 100);
  1097. }
  1098. else
  1099. {
  1100. MainAttractionsPerWages += Attractionswages * 1;
  1101. }
  1102. }
  1103. //摄影助理工资
  1104. if (OrdPg_PhotographyAssistant == Tsorder_OpenSingle)
  1105. {
  1106. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1107. {
  1108. DeputyAttractionsPerWages += Attractionswages * (DeputyPhotography / 100);
  1109. }
  1110. else
  1111. {
  1112. DeputyAttractionsPerWages += Attractionswages * 1;
  1113. }
  1114. }
  1115. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = Convert.ToDecimal(MainAttractionsPerWages + DeputyAttractionsPerWages).ToString("N0");
  1116. }
  1117. }
  1118. }
  1119. #endregion
  1120. #region 2.如果等级不相同
  1121. // if ((OneLevelCount >= 1 && TwoLevelCount >= 1 && ThreeLevelCount >= 1))
  1122. else
  1123. {
  1124. decimal Onej = 0;//一级景点工资
  1125. decimal Twoj = 0; //二级景点工资
  1126. decimal Threej = 0; //三级景点工资
  1127. //获取景点等级总百分比
  1128. decimal AttractionsPercentage = (OneLevelCount * OneLevel) + (TwoLevelCount * TwoLevel) + (ThreeLevelCount * ThreeLevel);
  1129. Onej = Pay_AmountOf / AttractionsPercentage * OneLevel;
  1130. Twoj = Pay_AmountOf / AttractionsPercentage * TwoLevel;
  1131. Threej = Pay_AmountOf / AttractionsPercentage * ThreeLevel;
  1132. //按级别获取工资
  1133. //获取摄影人员
  1134. dt = OrdersPhotographybll.GetList("Ordpg_Number='" + Pay_OrdNumber + "'").Tables[0];
  1135. if (dt.Rows.Count > 0)
  1136. {
  1137. decimal MainAttractionsPerWages = 0; //主摄影工资
  1138. decimal DeputyAttractionsPerWages = 0; //摄影助理工资
  1139. for (int y = 0; y < dt.Rows.Count; y++)
  1140. {
  1141. string OrdPg_Photographer = dt.Rows[y]["OrdPg_Photographer"].ToString();
  1142. string OrdPg_PhotographyAssistant = dt.Rows[y]["OrdPg_PhotographyAssistant"].ToString();
  1143. string OrdPg_SightsLevel = dt.Rows[y]["OrdPg_SightsLevel"].ToString();
  1144. #region 主摄影工资
  1145. if (OrdPg_Photographer == Tsorder_OpenSingle)
  1146. {
  1147. //一级
  1148. if (OrdPg_SightsLevel == "BEBBBCADDEBFJDFFC")
  1149. {
  1150. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1151. {
  1152. MainAttractionsPerWages += Onej * (MainPhotography / 100);
  1153. }
  1154. else
  1155. {
  1156. MainAttractionsPerWages += Onej * 1;
  1157. }
  1158. }
  1159. //二级
  1160. if (OrdPg_SightsLevel == "BEBBBCADEGBGAFFJC")
  1161. {
  1162. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1163. {
  1164. MainAttractionsPerWages += Twoj * (MainPhotography / 100);
  1165. }
  1166. else
  1167. {
  1168. MainAttractionsPerWages += Twoj * 1;
  1169. }
  1170. }
  1171. //三级
  1172. if (OrdPg_SightsLevel == "BEBBBCADAFBHBCHCI")
  1173. {
  1174. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1175. {
  1176. MainAttractionsPerWages += Threej * (MainPhotography / 100);
  1177. }
  1178. else
  1179. {
  1180. MainAttractionsPerWages += Threej * 1;
  1181. }
  1182. }
  1183. }
  1184. #endregion
  1185. #region 摄影助理工资
  1186. if (OrdPg_PhotographyAssistant == Tsorder_OpenSingle)
  1187. {
  1188. //一级
  1189. if (OrdPg_SightsLevel == "BEBBBCADDEBFJDFFC")
  1190. {
  1191. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1192. {
  1193. DeputyAttractionsPerWages += Onej * (DeputyPhotography / 100);
  1194. }
  1195. else
  1196. {
  1197. DeputyAttractionsPerWages += Onej * 1;
  1198. }
  1199. }
  1200. //二级
  1201. if (OrdPg_SightsLevel == "BEBBBCADEGBGAFFJC")
  1202. {
  1203. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1204. {
  1205. DeputyAttractionsPerWages += Twoj * (DeputyPhotography / 100);
  1206. }
  1207. else
  1208. {
  1209. DeputyAttractionsPerWages += Twoj * 1;
  1210. }
  1211. }
  1212. //三级
  1213. if (OrdPg_SightsLevel == "BEBBBCADAFBHBCHCI")
  1214. {
  1215. if (!string.IsNullOrEmpty(OrdPg_Photographer) && !string.IsNullOrEmpty(OrdPg_PhotographyAssistant))
  1216. {
  1217. DeputyAttractionsPerWages += Threej * (DeputyPhotography / 100);
  1218. }
  1219. else
  1220. {
  1221. DeputyAttractionsPerWages += Threej * 1;
  1222. }
  1223. }
  1224. }
  1225. #endregion
  1226. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = Convert.ToDecimal(MainAttractionsPerWages + DeputyAttractionsPerWages).ToString("N0");
  1227. }
  1228. }
  1229. }
  1230. #endregion
  1231. }
  1232. #endregion
  1233. #region 化妆前期
  1234. if (Pay_Category == "化妆前期")
  1235. {
  1236. //获取化妆比重
  1237. decimal MainMake = 0;
  1238. decimal DeputyMake = 0;
  1239. if (CommissionPercentagebll.GetList("Cp_ProportionCode='MainMake'").Tables[0].Rows.Count > 0)
  1240. { MainMake = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='MainMake'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1241. else { MainMake = 0; }
  1242. if (CommissionPercentagebll.GetList("Cp_ProportionCode='DeputyMake'").Tables[0].Rows.Count > 0)
  1243. { DeputyMake = Convert.ToDecimal(CommissionPercentagebll.GetList("Cp_ProportionCode='DeputyMake'").Tables[0].Rows[0]["Cp_Proportion"]); }
  1244. else { DeputyMake = 0; }
  1245. //多种条件获取工资
  1246. #region 1.如果所以景点阶段都相同
  1247. if ((OneLevelCount >= 1 && TwoLevelCount == 0 && ThreeLevelCount == 0) || (OneLevelCount == 0 && TwoLevelCount >= 1 && ThreeLevelCount == 0) || (OneLevelCount == 0 && TwoLevelCount == 0 && ThreeLevelCount >= 1))
  1248. {
  1249. decimal Attractionswages = 0; //获取景点工资
  1250. //一级
  1251. if ((OneLevelCount >= 1 && TwoLevelCount == 0 && ThreeLevelCount == 0))
  1252. {
  1253. //获取景点工资
  1254. Attractionswages = Pay_AmountOf * (100 / 100 / OneLevelCount);
  1255. //获取化妆人员
  1256. dt = OrdersPhotographybll.GetList("Ordpg_Number='" + Pay_OrdNumber + "' and OrdPg_SightsLevel='BEBBBCADDEBFJDFFC'").Tables[0];
  1257. }
  1258. //二级
  1259. if ((OneLevelCount == 0 && TwoLevelCount >= 1 && ThreeLevelCount == 0))
  1260. {
  1261. //获取景点工资
  1262. Attractionswages = Pay_AmountOf * (100 / 100 / TwoLevelCount);
  1263. //获取化妆人员
  1264. dt = OrdersPhotographybll.GetList("Ordpg_Number='" + Pay_OrdNumber + "' and OrdPg_SightsLevel='BEBBBCADEGBGAFFJC'").Tables[0];
  1265. }
  1266. //三级
  1267. if ((OneLevelCount == 0 && TwoLevelCount == 0 && ThreeLevelCount >= 1))
  1268. {
  1269. //获取景点工资
  1270. Attractionswages = Pay_AmountOf * (100 / 100 / ThreeLevelCount);
  1271. //获取化妆人员
  1272. dt = OrdersPhotographybll.GetList("Ordpg_Number='" + Pay_OrdNumber + "' and OrdPg_SightsLevel='BEBBBCADAFBHBCHCI'").Tables[0];
  1273. }
  1274. if (dt.Rows.Count > 0)
  1275. {
  1276. decimal MainAttractionsPerWages = 0; //主化妆师工资
  1277. decimal DeputyAttractionsPerWages = 0; //化妆助理工资
  1278. for (int y = 0; y < dt.Rows.Count; y++)
  1279. {
  1280. string OrdPg_MakeupArtist = dt.Rows[y]["OrdPg_MakeupArtist"].ToString();
  1281. string OrdPg_MakeupAssistant = dt.Rows[y]["OrdPg_MakeupAssistant"].ToString();
  1282. //主化妆工资
  1283. if (OrdPg_MakeupArtist == Tsorder_OpenSingle)
  1284. {
  1285. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1286. {
  1287. MainAttractionsPerWages += Attractionswages * (MainMake / 100);
  1288. }
  1289. else
  1290. {
  1291. MainAttractionsPerWages += Attractionswages * 1;
  1292. }
  1293. }
  1294. //化妆助理工资
  1295. if (OrdPg_MakeupAssistant == Tsorder_OpenSingle)
  1296. {
  1297. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1298. {
  1299. DeputyAttractionsPerWages += Attractionswages * (DeputyMake / 100);
  1300. }
  1301. else
  1302. {
  1303. DeputyAttractionsPerWages += Attractionswages * 1;
  1304. }
  1305. }
  1306. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = Convert.ToDecimal(MainAttractionsPerWages + DeputyAttractionsPerWages).ToString("N0");
  1307. }
  1308. }
  1309. }
  1310. #endregion
  1311. #region 2.如果等级不相同
  1312. // if ((OneLevelCount >= 1 && TwoLevelCount >= 1 && ThreeLevelCount >= 1))
  1313. else
  1314. {
  1315. decimal Onej = 0;//一级景点工资
  1316. decimal Twoj = 0; //二级景点工资
  1317. decimal Threej = 0; //三级景点工资
  1318. //获取景点等级总百分比
  1319. decimal AttractionsPercentage = (OneLevelCount * OneLevel) + (TwoLevelCount * TwoLevel) + (ThreeLevelCount * ThreeLevel);
  1320. Onej = Pay_AmountOf / AttractionsPercentage * OneLevel;
  1321. Twoj = Pay_AmountOf / AttractionsPercentage * TwoLevel;
  1322. Threej = Pay_AmountOf / AttractionsPercentage * ThreeLevel;
  1323. //按级别获取工资
  1324. //获取化妆人员
  1325. dt = OrdersPhotographybll.GetList("Ordpg_Number='" + Pay_OrdNumber + "'").Tables[0];
  1326. if (dt.Rows.Count > 0)
  1327. {
  1328. decimal MainAttractionsPerWages = 0; //主化妆工资
  1329. decimal DeputyAttractionsPerWages = 0; //化妆助理工资
  1330. for (int y = 0; y < dt.Rows.Count; y++)
  1331. {
  1332. string OrdPg_MakeupArtist = dt.Rows[y]["OrdPg_MakeupArtist"].ToString();
  1333. string OrdPg_MakeupAssistant = dt.Rows[y]["OrdPg_MakeupAssistant"].ToString();
  1334. string OrdPg_SightsLevel = dt.Rows[y]["OrdPg_SightsLevel"].ToString();
  1335. #region 主摄影工资
  1336. if (OrdPg_MakeupArtist == Tsorder_OpenSingle)
  1337. {
  1338. //一级
  1339. if (OrdPg_SightsLevel == "BEBBBCADDEBFJDFFC")
  1340. {
  1341. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1342. {
  1343. MainAttractionsPerWages += Onej * (MainMake / 100);
  1344. }
  1345. else
  1346. {
  1347. MainAttractionsPerWages += Onej * 1;
  1348. }
  1349. }
  1350. //二级
  1351. if (OrdPg_SightsLevel == "BEBBBCADEGBGAFFJC")
  1352. {
  1353. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1354. {
  1355. MainAttractionsPerWages += Twoj * (MainMake / 100);
  1356. }
  1357. else
  1358. {
  1359. MainAttractionsPerWages += Twoj * 1;
  1360. }
  1361. }
  1362. //三级
  1363. if (OrdPg_SightsLevel == "BEBBBCADAFBHBCHCI")
  1364. {
  1365. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1366. {
  1367. MainAttractionsPerWages += Threej * (MainMake / 100);
  1368. }
  1369. else
  1370. {
  1371. MainAttractionsPerWages += Threej * 1;
  1372. }
  1373. }
  1374. }
  1375. #endregion
  1376. #region 摄影助理工资
  1377. if (OrdPg_MakeupAssistant == Tsorder_OpenSingle)
  1378. {
  1379. //一级
  1380. if (OrdPg_SightsLevel == "BEBBBCADDEBFJDFFC")
  1381. {
  1382. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1383. {
  1384. DeputyAttractionsPerWages += Onej * (DeputyMake / 100);
  1385. }
  1386. else
  1387. {
  1388. DeputyAttractionsPerWages += Onej * 1;
  1389. }
  1390. }
  1391. //二级
  1392. if (OrdPg_SightsLevel == "BEBBBCADEGBGAFFJC")
  1393. {
  1394. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1395. {
  1396. DeputyAttractionsPerWages += Twoj * (DeputyMake / 100);
  1397. }
  1398. else
  1399. {
  1400. DeputyAttractionsPerWages += Twoj * 1;
  1401. }
  1402. }
  1403. //三级
  1404. if (OrdPg_SightsLevel == "BEBBBCADAFBHBCHCI")
  1405. {
  1406. if (!string.IsNullOrEmpty(OrdPg_MakeupArtist) && !string.IsNullOrEmpty(OrdPg_MakeupAssistant))
  1407. {
  1408. DeputyAttractionsPerWages += Threej * (DeputyMake / 100);
  1409. }
  1410. else
  1411. {
  1412. DeputyAttractionsPerWages += Threej * 1;
  1413. }
  1414. }
  1415. }
  1416. #endregion
  1417. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = Convert.ToDecimal(MainAttractionsPerWages + DeputyAttractionsPerWages).ToString("N0");
  1418. }
  1419. }
  1420. }
  1421. #endregion
  1422. }
  1423. #endregion
  1424. #endregion
  1425. #endregion
  1426. #region 获取后期收款比重
  1427. if (!string.IsNullOrEmpty(Pay_CustomNumber))
  1428. {
  1429. dt = new DataTable();
  1430. dt = TwoPinsProjectCommissionProportion.GetList("Tpc_CustomNumber='" + Pay_CustomNumber + "' and Tpc_OpenSingle='" + Tsorder_OpenSingle + "'").Tables[0];
  1431. if (dt.Rows.Count > 0)
  1432. {
  1433. decimal Tpc_CommissionPercentage = Convert.ToDecimal(dt.Rows[0]["Tpc_CommissionPercentage"]);
  1434. if (Tpc_CommissionPercentage > 0)
  1435. {
  1436. dgv1.Rows[i].Cells["Pay_AmountOf"].Value = Convert.ToDecimal(Pay_AmountOf * Tpc_CommissionPercentage / 100).ToString("N0");
  1437. }
  1438. else { dgv1.Rows[i].Cells["Pay_AmountOf"].Value = "0"; }
  1439. }
  1440. }
  1441. #endregion
  1442. }
  1443. }
  1444. decimal S_QQYJ = 0; //前期收款业绩
  1445. decimal S_QQYJ_SH = 0; //摄影前期,化妆前期,引导前期业绩
  1446. decimal S_EXYJ = 0; //二销业绩
  1447. //decimal S_EXYJ_Tc = 0; //二销提成
  1448. //decimal QQSK_TC = 0; //前期收款提成
  1449. //decimal QQSK_SH_TC = 0; //摄影,化妆前期,引导前期提成
  1450. string Wcs_TypeCode = ""; //类别代码
  1451. for (int i = 0; i < dgv1.Rows.Count; i++)
  1452. {
  1453. decimal Pay_AmountOf = Convert.ToDecimal(dgv1.Rows[i].Cells["Pay_AmountOf"].Value); //金额
  1454. string Pay_Category = dgv1.Rows[i].Cells["Pay_Category"].Value.ToString(); //类别
  1455. #region 工资各业绩总额
  1456. //前期收款
  1457. if (Pay_Category == "前期收款")
  1458. {
  1459. S_QQYJ += Pay_AmountOf;
  1460. }//摄影前期,化妆前期,引导前期
  1461. else if (Pay_Category == "摄影前期" || Pay_Category == "化妆前期" || Pay_Category == "引导前期")
  1462. {
  1463. S_QQYJ_SH += Pay_AmountOf;
  1464. }
  1465. else
  1466. {
  1467. //二销业绩
  1468. S_EXYJ += Pay_AmountOf;
  1469. }
  1470. #endregion
  1471. #region 获取二销提成
  1472. if (Pay_Category != "前期收款" && Pay_Category != "摄影前期" && Pay_Category != "化妆前期" && Pay_Category != "引导前期")
  1473. {
  1474. dt = SystemCategorybll.GetList("Sc_ClassName='" + Pay_Category + "'").Tables[0];
  1475. if (dt.Rows.Count > 0)
  1476. {
  1477. Wcs_TypeCode = dt.Rows[0]["Sc_ClassCode"].ToString();
  1478. S_EXYJ_Tc += WageCommissionSetbll.GetCommissionSpecifications(Wcs_TypeCode, Convert.ToDecimal(Pay_AmountOf));
  1479. }
  1480. }
  1481. #endregion
  1482. }
  1483. //前期业绩
  1484. QQYJ_TC = S_QQYJ + S_QQYJ_SH;
  1485. //二销业绩
  1486. EXYJ_TC = S_EXYJ;
  1487. //计件提成
  1488. YJTC_TC = Piece;
  1489. #region 总工资
  1490. #region 获取前期提成
  1491. dt = Wagebll.GetView_WagesSet("User_EmployeeID='" + Tsorder_OpenSingle + "'").Tables[0];
  1492. if (dt.Rows.Count > 0)
  1493. {
  1494. //获取前期收款提成
  1495. if (!string.IsNullOrEmpty(dt.Rows[0]["Ws_EarlyCommissionScheme"].ToString()))
  1496. {
  1497. Wcs_TypeCode = dt.Rows[0]["Ws_EarlyCommissionScheme"].ToString();
  1498. QQSK_TC = WageCommissionSetbll.GetCommissionSpecifications(Wcs_TypeCode, Convert.ToDecimal(S_QQYJ));
  1499. }
  1500. else { QQSK_TC = 0; }
  1501. //获取摄影,化妆前期,引导前期提成
  1502. if (!string.IsNullOrEmpty(dt.Rows[0]["Ws_PhotographyMakeupCommissionScheme"].ToString()))
  1503. {
  1504. Wcs_TypeCode = dt.Rows[0]["Ws_PhotographyMakeupCommissionScheme"].ToString();
  1505. QQSK_SH_TC = WageCommissionSetbll.GetCommissionSpecifications(Wcs_TypeCode, Convert.ToDecimal(S_QQYJ_SH));
  1506. }
  1507. else { QQSK_SH_TC = 0; }
  1508. }
  1509. #endregion
  1510. #endregion
  1511. //基本工资+前期提成+二销提成+计件提成
  1512. //txtTotalWages.Text = Convert.ToDecimal(Convert.ToDecimal(txtWs_BasicWage.Text) + Convert.ToDecimal(QQSK_TC + QQSK_SH_TC) + Convert.ToDecimal(S_EXYJ_Tc) + Convert.ToDecimal(txtPieceCommission.Text)).ToString("N2");
  1513. }
  1514. catch (Exception ex)
  1515. {
  1516. MessageBoxCustom.Show(ex.Message);
  1517. }
  1518. }
  1519. #endregion
  1520. #endregion
  1521. #region 时间查询
  1522. protected override void btnSelect_Click(object sender, EventArgs e)
  1523. {
  1524. WaitForm wf = new WaitForm();
  1525. wf.ShowForm(this);
  1526. try
  1527. {
  1528. dgv.Rows.Clear();
  1529. bind();
  1530. wf.CloseForm();
  1531. wf = null;
  1532. }
  1533. catch
  1534. {
  1535. wf.CloseForm();
  1536. wf = null;
  1537. }
  1538. }
  1539. #endregion
  1540. #region 时间控件
  1541. protected override void txtTimeStart_Leave(object sender, EventArgs e)
  1542. {
  1543. if (this.txtTimeStart.Text.Trim() != "")
  1544. {
  1545. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtTimeStart.Text.Trim()) == false)
  1546. {
  1547. this.txtTimeStart.Text = "";
  1548. MessageBoxCustom.Show("开始时间格式输入错误");
  1549. txtTimeStart.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().AddDays(1 - LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().Day)).ToString("yyyy-MM-dd");
  1550. }
  1551. }
  1552. }
  1553. protected override void txtTimeStart_Enter(object sender, EventArgs e)
  1554. {
  1555. if (this.txtTimeStart.Text == "")
  1556. {
  1557. txtTimeStart.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().AddDays(1 - LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().Day)).ToString("yyyy-MM-dd");
  1558. }
  1559. }
  1560. protected override void txtTimeEnd_Leave(object sender, EventArgs e)
  1561. {
  1562. if (this.txtTimeEnd.Text.Trim() != "")
  1563. {
  1564. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtTimeEnd.Text.Trim()) == false)
  1565. {
  1566. this.txtTimeEnd.Text = "";
  1567. MessageBoxCustom.Show("结束时间格式输入错误");
  1568. txtTimeEnd.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  1569. }
  1570. }
  1571. }
  1572. protected override void txtTimeEnd_Enter(object sender, EventArgs e)
  1573. {
  1574. if (this.txtTimeEnd.Text == "")
  1575. {
  1576. txtTimeEnd.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  1577. }
  1578. }
  1579. #endregion
  1580. #region 关闭
  1581. protected override void btnClose_Click(object sender, EventArgs e)
  1582. {
  1583. this.Close();
  1584. }
  1585. #endregion
  1586. #region 查看详情
  1587. protected override void btnViewDetails_Click(object sender, EventArgs e)
  1588. {
  1589. try
  1590. {
  1591. if (this.dgv.SelectedRows.Count == 0)
  1592. {
  1593. MessageBoxCustom.Show("请选中你要查看的数据!");
  1594. return;
  1595. }
  1596. if (dgv.CurrentRow.Cells["User_Name"].Value.ToString() == "统计:")
  1597. {
  1598. MessageBoxCustom.Show("此行是合计列不能查看!");
  1599. return;
  1600. }
  1601. LYFZ.Software.MainBusiness.StatisticalInquiry.FrmStatisticalInquiryPayroll frm = new FrmStatisticalInquiryPayroll();
  1602. frm.User_EmployeeID = dgv.CurrentRow.Cells["User_EmployeeID"].Value.ToString();
  1603. frm.TimeStart = Convert.ToDateTime(txtTimeStart.Text.Trim()).ToString("yyyy-MM-dd");
  1604. frm.TimeEnd = Convert.ToDateTime(txtTimeEnd.Text.Trim()).ToString("yyyy-MM-dd");
  1605. frm.ShowDialog();
  1606. }
  1607. catch (Exception ex)
  1608. {
  1609. MessageBoxCustom.Show(ex.Message);
  1610. }
  1611. }
  1612. #endregion
  1613. #region 导出
  1614. protected override void btnExport_Click(object sender, EventArgs e)
  1615. {
  1616. try
  1617. {
  1618. dgv.ExportDataTable();
  1619. }
  1620. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  1621. }
  1622. #endregion
  1623. #region 打印
  1624. protected override void btnPrint_Click(object sender, EventArgs e)
  1625. {
  1626. }
  1627. #endregion
  1628. }
  1629. }