planner_load.py 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. import json
  2. from pathlib import Path
  3. class PlannerLoad:
  4. base_dir: Path
  5. account_values: list = None
  6. account_info: list = None
  7. plan_values: list = None
  8. marketing_values: list = None
  9. new_structure: list
  10. structure: list
  11. config = {
  12. "department": [1, 2, 3, 10, 30, 40, 50, 55, 81, 82],
  13. "translation": [
  14. 10,
  15. 11,
  16. 12,
  17. 13,
  18. 14,
  19. 15,
  20. 16,
  21. 17,
  22. 18,
  23. 19,
  24. 20,
  25. 21,
  26. 22,
  27. 23,
  28. 3,
  29. 4,
  30. 5,
  31. 6,
  32. 7,
  33. 4,
  34. 0,
  35. 4,
  36. 4,
  37. 4,
  38. 1,
  39. 4,
  40. 2,
  41. 4,
  42. 8,
  43. 9,
  44. ],
  45. }
  46. def __init__(self, base_dir: str):
  47. self.base_dir = Path(base_dir)
  48. def new_file(self, year: str):
  49. self.load_values(year)
  50. return self.convert_file(self.new_structure)
  51. def load_values(self, year: str):
  52. with open(self.base_dir.joinpath(f"accounts_{year}.json"), "r") as frh:
  53. self.account_values = json.load(frh)["values"]
  54. with open(self.base_dir.joinpath(f"planning_{year}.json"), "r") as frh:
  55. self.plan_values = json.load(frh)["values"]
  56. with open(self.base_dir.joinpath(f"marketing_{year}.json"), "r") as frh:
  57. self.marketing_values = json.load(frh)
  58. with open(self.base_dir.joinpath("gcstruct.json"), "r") as frh:
  59. gcstruct = json.load(frh)
  60. self.account_info = dict([(a["Konto_Nr"], a) for a in gcstruct["accounts"]])
  61. self.new_structure = gcstruct["flat"]["Struktur_FB"]
  62. def set_structure(self, structure: list):
  63. self.structure = structure
  64. def convert_file(self, structure_source):
  65. self.structure = []
  66. for s in structure_source:
  67. accts = s["accounts"]
  68. s["accounts"] = []
  69. s["planlevel"] = len(accts) > 0
  70. self.structure.append(s)
  71. for a in accts:
  72. if type(a) is str:
  73. acct = {
  74. "text": a + " - " + self.account_info[a]["Konto_Bezeichnung"],
  75. "id": a,
  76. "costcenter": self.account_info[a]["Konto_KST"],
  77. "values": [],
  78. "values2": None,
  79. }
  80. else:
  81. acct = a
  82. a = acct["id"]
  83. acct["id"] = s["id"].replace(";;", ";" + acct["text"] + ";", 1)
  84. s["children"].append(acct["id"])
  85. new_account = {
  86. "id": acct["id"],
  87. "text": acct["text"],
  88. "children": [],
  89. "children2": [],
  90. "parents": [s["id"]] + s["parents"],
  91. "accounts": [a],
  92. "costcenter": acct["costcenter"],
  93. "level": s["level"] + 1,
  94. "drilldown": False,
  95. "form": s["form"],
  96. "accountlevel": False,
  97. "absolute": True,
  98. "seasonal": True,
  99. "status": "0",
  100. "values": acct["values"],
  101. "values2": acct["values2"],
  102. }
  103. self.structure.append(new_account)
  104. for s in self.structure:
  105. s["values2"] = self.get_values2(s)
  106. s["options"] = self.get_options(s)
  107. del s["accountlevel"]
  108. del s["absolute"]
  109. del s["seasonal"]
  110. del s["status"]
  111. s["sumvalues"] = [0] * 30
  112. return self.structure
  113. def get_values2(self, s):
  114. if "values2" not in s or s["values2"] is None or len(s["values2"].keys()) == 0:
  115. s["values2"] = dict([(str(d), [0] * 30) for d in self.config["department"]])
  116. else:
  117. for d in s["values2"].keys():
  118. if len(s["values2"][d]) < 30:
  119. s["values2"][d] = [
  120. s["values2"][d][i] if 0 <= i < len(s["values2"][d]) else 0 for i in self.config["translation"]
  121. ]
  122. self.update_account_values(s)
  123. self.update_plan_values(s)
  124. self.update_marketing_values(s)
  125. def update_values(self, value_type):
  126. v_types = {
  127. "accounts": self.update_account_values,
  128. "plan": self.update_plan_values,
  129. "marketing": self.update_marketing_values,
  130. }
  131. parents = []
  132. for s in self.structure:
  133. if v_types[value_type](s):
  134. parents.append(s["parents"][0])
  135. if value_type == "marketing":
  136. for p_id in set(parents):
  137. parent = self.get_structure_by_id(p_id)
  138. parent["form"] = "9"
  139. for d in parent["options"].keys():
  140. parent["options"][d]["status"] = "0"
  141. for d in parent["values2"].keys():
  142. for i in range(15):
  143. parent["values2"][d][i] = 0.0
  144. return self.structure
  145. def get_structure_by_id(self, id):
  146. for s in self.structure:
  147. if s["id"] == id:
  148. return s
  149. return None
  150. def update_account_values(self, s):
  151. if len(s["accounts"]) == 0:
  152. return False
  153. a_values = self.account_values.get(s["accounts"][0], dict())
  154. for d in s["values2"].keys():
  155. if d in a_values:
  156. for i, v in enumerate(a_values[d], 20):
  157. s["values2"][d][i] = v
  158. return s["values2"]
  159. def update_plan_values(self, s):
  160. if self.plan_values is None:
  161. return False
  162. p_values = self.plan_values.get(s["id"], dict())
  163. for d in s["values2"].keys():
  164. if d in p_values:
  165. for i, v in enumerate(p_values[d], 28):
  166. s["values2"][d][i] = v
  167. return True
  168. def update_marketing_values(self, s):
  169. if len(s["accounts"]) == 0:
  170. return False
  171. m_values = self.marketing_values.get(s["accounts"][0], dict())
  172. if not m_values:
  173. return False
  174. for d in s["values2"].keys():
  175. if d in m_values:
  176. for i, v in enumerate(m_values[d], 1):
  177. s["values2"][d][i] = v
  178. s["values2"][d][0] = sum(m_values[d])
  179. s["values2"][d][14] = sum(m_values[d])
  180. if "options" in s:
  181. s["options"][d]["seasonal"] = False
  182. return True
  183. def convert_values2(self, s):
  184. a_values = {}
  185. if s["accounts"]:
  186. a_values = self.account_values.get(s["accounts"][0], dict())
  187. p_values = self.plan_values.get(s["id"], dict())
  188. values = dict([(str(d), [0] * 30) for d in self.config["department"]])
  189. for d in values.keys():
  190. if d in s["values2"]:
  191. if len(s["values2"][d]) == 30:
  192. values[d] = s["values2"][d]
  193. else:
  194. values[d] = [s["values2"][d].get(i, 0) for i in self.config["translation"]]
  195. if d in p_values:
  196. for i, v in enumerate(p_values[d], 28):
  197. values[d][i] = v
  198. if d in a_values:
  199. for i, v in enumerate(a_values[d], 20):
  200. values[d][i] = v
  201. return values
  202. def get_options(self, s):
  203. status = "0"
  204. seasonal = True
  205. absolute = True
  206. planlevel = False
  207. if isinstance(s["absolute"], bool):
  208. absolute = s["absolute"]
  209. s["absolute"] = {}
  210. if isinstance(s["seasonal"], bool):
  211. seasonal = s["seasonal"]
  212. s["seasonal"] = {}
  213. if isinstance(s["status"], str):
  214. status = s["status"]
  215. s["status"] = {}
  216. if "planlevel" in s:
  217. planlevel = s["planlevel"]
  218. opts = dict(
  219. [
  220. (str(d), {"absolute": absolute, "seasonal": seasonal, "status": status, "planlevel": planlevel})
  221. for d in self.config["department"]
  222. ]
  223. )
  224. for d in opts.keys():
  225. if d in s["absolute"]:
  226. opts[d]["absolute"] = s["absolute"][d]
  227. if d in s["seasonal"]:
  228. opts[d]["seasonal"] = s["seasonal"][d]
  229. if d in s["status"]:
  230. opts[d]["status"] = s["status"][d]
  231. return opts
  232. if __name__ == "__main__":
  233. planner_dir = Path(__file__).parent.parent.joinpath("export")
  234. p_load = PlannerLoad(planner_dir)
  235. print(p_load.convert_file(json.load(open(planner_dir.joinpath("2022_V1.json"), "r")))[12])