/v1.9/PrsCommon/Gencode.PrsCommon/Data/Plan/Grid.cs

# · C# · 399 lines · 291 code · 50 blank · 58 comment · 52 complexity · 1ed7a1d6667bf0e5f1c298f5c8bc7b4f MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using Gencode.PrsCommon.App;
  6. using Gencode.PrsCommon.Data.Dienst;
  7. namespace Gencode.PrsCommon.Data.Plan
  8. {
  9. public class Grid
  10. {
  11. protected Row[] rows;
  12. DataTable m_data;
  13. DataView m_personen;
  14. SaldoTable m_saldoTable;
  15. /// <summary>
  16. /// Creates a Grid of Data for the plan with the given planid
  17. /// </summary>
  18. /// <param name="planID">planid of the plan to be created</param>
  19. public Grid(int planID)
  20. {
  21. PlanID = planID;
  22. PlanName = PlanData.GetPlanName(planID);
  23. CreateRows(planID);
  24. }
  25. /// <summary>
  26. /// Creates the Data for the Plan with the current planid
  27. /// </summary>
  28. private void CreateRows(int planID)
  29. {
  30. if (rows != null)
  31. rows = null;
  32. m_personen = PlanData.GetPersonenInPlan(planID);
  33. int rowcount = m_personen.Count;
  34. if (ShowDaysInPlan)
  35. {
  36. DataView abteilungen = PlanData.GetAbteilungenInSchema(PlanData.GetPlanSchemaID(planID));
  37. rowcount += abteilungen.Count;
  38. abteilungen.Dispose();
  39. }
  40. rows = new Row[rowcount];
  41. int i = 0;
  42. foreach (DataRowView dvrow in m_personen)
  43. {
  44. int prsid = int.Parse(dvrow["prsid"].ToString());
  45. Row.ROWTYPE rt;
  46. if(prsid == 0)
  47. rt = Row.ROWTYPE.Abteilung;
  48. else if(prsid < 0)
  49. rt = Row.ROWTYPE.Leer;
  50. else
  51. rt = Row.ROWTYPE.Person;
  52. //allways show days before abteilung
  53. if (prsid == 0 && ShowDaysInPlan)
  54. {
  55. Row r = new Row
  56. {
  57. PrsID = -2,
  58. PersonName = string.Empty,
  59. AbteilungID = int.Parse(dvrow["abteilungid"].ToString()),
  60. AbteilungName = dvrow["abteilungname"].ToString(),
  61. PrsSchemaID = 0,
  62. Von = DateUtil.ConvertSqlToDate(dvrow["von"].ToString()),
  63. Bis = DateUtil.ConvertSqlToDate(dvrow["bis"].ToString()),
  64. Pensum = 0,
  65. ARGB = System.Drawing.Color.FromName("Gainsboro").ToArgb(),
  66. PlanID = planID,
  67. RowType = Row.ROWTYPE.Taganzeige
  68. };
  69. r.InitData();
  70. rows[i] = r;
  71. i++;
  72. }
  73. Row row = new Row
  74. {
  75. PrsID = prsid,
  76. PersonName = dvrow["nachname"].ToString() + " " + dvrow["name"].ToString(),
  77. AbteilungID = int.Parse(dvrow["abteilungid"].ToString()),
  78. AbteilungName = dvrow["abteilungname"].ToString(),
  79. PrsSchemaID = int.Parse(dvrow["prsschemaid"].ToString()),
  80. Von = DateUtil.ConvertSqlToDate(dvrow["von"].ToString()),
  81. Bis = DateUtil.ConvertSqlToDate(dvrow["bis"].ToString()),
  82. Pensum = int.Parse(dvrow["pensum"].ToString()),
  83. ARGB = int.Parse(dvrow["rgb"].ToString()),
  84. PlanID = planID,
  85. RowType = rt
  86. };
  87. row.InitData();
  88. rows[i] = row;
  89. i++;
  90. }
  91. }
  92. /// <summary>
  93. /// Columns to be added before the data of the plan grid
  94. /// </summary>
  95. public int PreColumnCount = 0;
  96. protected virtual DataTable CreateDataTable()
  97. {
  98. DataTable dv = new DataTable();
  99. int preCount = 1;
  100. if(PlanOption.ShowPersonPercentInPlan == 1)
  101. preCount++;
  102. //Create header
  103. dv.Columns.Add("Person", typeof(string));
  104. if (preCount > 1)//Show Prozent
  105. dv.Columns.Add("Proz", typeof(int));
  106. for (int i = 0; i < rows[0].Cells.Length; i++)
  107. {
  108. dv.Columns.Add(DateUtil.GetDay(this[0, i].Datum), typeof(string));
  109. }
  110. DataRow row;
  111. //1. Row
  112. /*if (ShowDaysInPlan)
  113. {
  114. row = dv.NewRow();
  115. int y = int.Parse(DateUtil.GetYear(this[0, 0].Datum));
  116. int m = int.Parse(DateUtil.GetMonth(this[0, 0].Datum));
  117. for (int i = 0; i < rows[0].Cells.Length; i++)
  118. row[i + preCount] = DateUtil.DayInWeek(y, m, i + 1);
  119. dv.Rows.Add(row);
  120. }*/
  121. //Data rows
  122. for (int r = 0; r < rows.Length; r++)
  123. {
  124. row = dv.NewRow();
  125. if(rows[r].RowType == Row.ROWTYPE.Abteilung)
  126. row[0] = rows[r].AbteilungName;
  127. else if (rows[r].RowType == Row.ROWTYPE.Person)
  128. row[0] = rows[r].PersonName;
  129. if (preCount > 1)
  130. if (rows[r].RowType == Row.ROWTYPE.Person)
  131. row[1] = rows[r].Pensum;
  132. for (int c = 0; c < rows[r].Cells.Length; c++)
  133. {
  134. row[c + preCount] = rows[r][c].DienstName;
  135. }
  136. dv.Rows.Add(row);
  137. }
  138. Data = dv;
  139. //Set amount of rows before actual data
  140. PreColumnCount = preCount;
  141. return dv;
  142. }
  143. private void InitSaldoDataTable()
  144. {
  145. m_saldoTable = new SaldoTable();
  146. //1. Row
  147. //if (ShowDaysInPlan)
  148. // m_saldoTable.AddItem();
  149. foreach (DataRowView row in m_personen)
  150. {
  151. if (int.Parse(row["prsid"].ToString()) > 0)
  152. {
  153. m_saldoTable.AddItem(int.Parse(row["prsid"].ToString()),
  154. PlanID,
  155. int.Parse(row["abteilungid"].ToString()));
  156. }
  157. else
  158. {
  159. if (ShowDaysInPlan && int.Parse(row["prsid"].ToString()) == 0)
  160. m_saldoTable.AddItem();
  161. m_saldoTable.AddItem();
  162. }
  163. }
  164. }
  165. /// <summary>
  166. /// Reloads a row of the Saldotable at the given index
  167. /// </summary>
  168. /// <param name="index">Index of row in Table</param>
  169. public void ReloadSaldoRow(int index, int headerRowCount)
  170. {
  171. m_saldoTable.UpdateRow(index, Rows[index].PrsID, PlanID, Rows[index].AbteilungID);
  172. //m_saldoTable.UpdateRow(index, int.Parse(m_personen[index - headerRowCount].Row["prsid"].ToString()),
  173. // PlanID, int.Parse(m_personen[index - headerRowCount].Row["abteilungid"].ToString()));
  174. }
  175. public void RepositionRow(int rowIndex, int destinationIndex)
  176. {
  177. Row row = this[rowIndex];
  178. if (rowIndex < destinationIndex)
  179. {
  180. for (int i = rowIndex; i < destinationIndex; i++)
  181. {
  182. this[i] = this[i + 1];
  183. }
  184. }
  185. else
  186. {
  187. for (int i = rowIndex; i > destinationIndex; i--)
  188. {
  189. this[i] = this[i - 1];
  190. }
  191. }
  192. this[destinationIndex] = row;
  193. //reposition in datatable
  194. DataRow dr = Data.NewRow();
  195. for (int i = 0; i < Data.Columns.Count; i++)
  196. {
  197. dr[i] = Data.Rows[rowIndex][i];
  198. }
  199. Data.Rows.RemoveAt(rowIndex);
  200. Data.Rows.InsertAt(dr, destinationIndex);
  201. //reposition in saldotable
  202. dr = SaldoDataTable.NewRow();
  203. for (int i = 0; i < SaldoDataTable.Columns.Count; i++)
  204. {
  205. dr[i] = SaldoDataTable.Rows[rowIndex][i];
  206. }
  207. SaldoDataTable.Rows.RemoveAt(rowIndex);
  208. SaldoDataTable.Rows.InsertAt(dr, destinationIndex);
  209. //save schema
  210. Gencode.Common.ActionLogger.Logger.LoggMessage(Gencode.Common.ActionLogger.MessageType.USER_EVENT, "Update schema in plan " + PlanID + " from Drag & Drop in plan)");
  211. PlanData.DeleteRowsFromSchema(SchemaID);
  212. int prsSchemaID = 1;
  213. for (int i = 0; i < Rows.Length; i++)
  214. {
  215. if (Rows[i].RowType != Row.ROWTYPE.Taganzeige)
  216. {
  217. PlanData.SaveSchemaRow(
  218. SchemaID,
  219. prsSchemaID,
  220. Rows[i].PrsID,
  221. Rows[i].AbteilungID,
  222. Rows[i].ARGB);
  223. prsSchemaID++;
  224. }
  225. }
  226. }
  227. /// <summary>
  228. /// Returns the Row element at the given Index
  229. /// </summary>
  230. /// <param name="row">Index of Row</param>
  231. /// <returns>Row element at the given Index</returns>
  232. public Row this[int row]
  233. {
  234. get
  235. {
  236. return rows[row];
  237. }
  238. private set
  239. {
  240. rows[row] = value;
  241. }
  242. }
  243. /// <summary>
  244. /// Returns Cell element at given row and column
  245. /// </summary>
  246. /// <param name="row">Index of row</param>
  247. /// <param name="column">Index of column</param>
  248. /// <returns>Cell of given Index</returns>
  249. public Cell this[int row, int column]
  250. {
  251. get
  252. {
  253. return rows[row][column];
  254. }
  255. }
  256. public Row[] Rows
  257. {
  258. get
  259. {
  260. return rows;
  261. }
  262. }
  263. /// <summary>
  264. /// Returns the PlanID of the current plan
  265. /// </summary>
  266. public int PlanID
  267. {
  268. get;
  269. private set;
  270. }
  271. public string PlanName
  272. {
  273. get;
  274. private set;
  275. }
  276. /// <summary>
  277. /// DataTable of GridData
  278. /// </summary>
  279. public DataTable Data
  280. {
  281. get
  282. {
  283. if (m_data != null)
  284. return m_data;
  285. return CreateDataTable();
  286. }
  287. protected set
  288. {
  289. m_data = value;
  290. }
  291. }
  292. public DataTable SaldoDataTable
  293. {
  294. get
  295. {
  296. if (m_saldoTable == null || m_saldoTable.Table == null)
  297. InitSaldoDataTable();
  298. return m_saldoTable.Table;
  299. }
  300. }
  301. private Style m_style;
  302. /// <summary>
  303. /// Style of the Grid
  304. /// </summary>
  305. public Style Style
  306. {
  307. get
  308. {
  309. if (m_style == null)
  310. m_style = new Style();
  311. return m_style;
  312. }
  313. }
  314. int m_schemaid;
  315. public int SchemaID{
  316. get{
  317. if(m_schemaid <=0)
  318. m_schemaid = PlanData.GetPlanSchemaID(PlanID);
  319. return m_schemaid;
  320. }
  321. }
  322. string m_schemaname = string.Empty;
  323. public string SchemaName
  324. {
  325. get
  326. {
  327. if (m_schemaname == string.Empty)
  328. m_schemaname = PlanData.GetSchemaName(SchemaID);
  329. return m_schemaname;
  330. }
  331. }
  332. int showDays = -1;
  333. bool ShowDaysInPlan
  334. {
  335. get
  336. {
  337. if (showDays < 0)
  338. showDays = Gencode.PrsCommon.App.PlanOption.ShowDaysInPlan;
  339. if (showDays == 0)
  340. return false;
  341. if (showDays == 1)
  342. return true;
  343. return false;
  344. }
  345. }
  346. }
  347. }