@things-factory/operato-pms 3.7.7 → 3.8.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. package/client/bootstrap.js +20 -7
  2. package/client/component/block-selector-popup.js +125 -24
  3. package/client/component/driver-selector-popup.js +223 -0
  4. package/client/component/mill-selector-popup.js +200 -0
  5. package/client/component/tracked-plantation-setting.js +113 -0
  6. package/client/component/truck-selector-popup.js +202 -0
  7. package/client/menu.js +34 -2
  8. package/client/pages/constants/index.js +1 -0
  9. package/client/pages/constants/organization.js +5 -0
  10. package/client/pages/dispatchment/daily-dispatch-detail.js +57 -18
  11. package/client/pages/dispatchment/dispatchment-create-record.js +154 -52
  12. package/client/pages/dispatchment/dispatchment-list.js +26 -34
  13. package/client/pages/harvesting/daily-harvesting-detail.js +55 -18
  14. package/client/pages/harvesting/edit-harvesting-record.js +89 -23
  15. package/client/pages/harvesting/harvesting-create-record.js +102 -16
  16. package/client/pages/harvesting/harvesting-list.js +58 -12
  17. package/client/pages/inventory/inventory-field-bunches.js +6 -4
  18. package/client/pages/inventory/inventory-ramp-tonnage.js +23 -31
  19. package/client/pages/loading/daily-loading-detail.js +47 -93
  20. package/client/pages/loading/edit-loading-record.js +75 -294
  21. package/client/pages/loading/loading-create-record.js +52 -329
  22. package/client/pages/loading/loading-list.js +20 -83
  23. package/client/pages/master/block.js +1 -0
  24. package/client/pages/master/company.js +26 -13
  25. package/client/pages/master/home.js +67 -65
  26. package/client/pages/master/ramp.js +1 -0
  27. package/client/pages/master/staff.js +54 -3
  28. package/client/pages/master/truck.js +416 -0
  29. package/client/pages/report/home.js +72 -65
  30. package/client/pages/report/report-daily-ffb-dispatch-and-production.js +436 -0
  31. package/client/pages/report/report-daily-production.js +38 -6
  32. package/client/pages/report/report-daily-staff-harvest.js +50 -5
  33. package/client/pages/report/report-ffb-tonnage-between-individual-block.js +398 -0
  34. package/client/pages/report/report-monthly-ffb-sale.js +413 -0
  35. package/client/pages/report/report-monthly-production.js +33 -4
  36. package/client/pages/report/report-yearly-production.js +24 -8
  37. package/client/pages/setting/home.js +107 -0
  38. package/client/pages/setting/plantation-setting.js +109 -0
  39. package/client/route.js +25 -0
  40. package/dist-server/constants/index.js +1 -0
  41. package/dist-server/constants/index.js.map +1 -1
  42. package/dist-server/constants/organization.js +9 -0
  43. package/dist-server/constants/organization.js.map +1 -0
  44. package/dist-server/constants/transaction.js +2 -1
  45. package/dist-server/constants/transaction.js.map +1 -1
  46. package/dist-server/controllers/render-dispatchment.js +1 -1
  47. package/dist-server/controllers/render-dispatchment.js.map +1 -1
  48. package/dist-server/entities/daily-dispatch.js +18 -4
  49. package/dist-server/entities/daily-dispatch.js.map +1 -1
  50. package/dist-server/entities/daily-harvest-detail.js +9 -11
  51. package/dist-server/entities/daily-harvest-detail.js.map +1 -1
  52. package/dist-server/entities/daily-harvest.js +16 -6
  53. package/dist-server/entities/daily-harvest.js.map +1 -1
  54. package/dist-server/entities/daily-loading-detail.js +14 -6
  55. package/dist-server/entities/daily-loading-detail.js.map +1 -1
  56. package/dist-server/entities/daily-loading.js +3 -11
  57. package/dist-server/entities/daily-loading.js.map +1 -1
  58. package/dist-server/entities/index.js +7 -1
  59. package/dist-server/entities/index.js.map +1 -1
  60. package/dist-server/entities/organization-staff.js +5 -1
  61. package/dist-server/entities/organization-staff.js.map +1 -1
  62. package/dist-server/entities/plantation-inventory.js +4 -10
  63. package/dist-server/entities/plantation-inventory.js.map +1 -1
  64. package/dist-server/entities/plantation-setting.js +76 -0
  65. package/dist-server/entities/plantation-setting.js.map +1 -0
  66. package/dist-server/entities/truck.js +77 -0
  67. package/dist-server/entities/truck.js.map +1 -0
  68. package/dist-server/graphql/resolvers/daily-dispatch/daily-dispatch-query.js +13 -2
  69. package/dist-server/graphql/resolvers/daily-dispatch/daily-dispatch-query.js.map +1 -1
  70. package/dist-server/graphql/resolvers/daily-dispatch/generate-daily-dispatch.js +25 -11
  71. package/dist-server/graphql/resolvers/daily-dispatch/generate-daily-dispatch.js.map +1 -1
  72. package/dist-server/graphql/resolvers/daily-dispatch/update-daily-dispatch.js +4 -3
  73. package/dist-server/graphql/resolvers/daily-dispatch/update-daily-dispatch.js.map +1 -1
  74. package/dist-server/graphql/resolvers/daily-harvest/daily-harvest-query.js +3 -1
  75. package/dist-server/graphql/resolvers/daily-harvest/daily-harvest-query.js.map +1 -1
  76. package/dist-server/graphql/resolvers/daily-harvest/generate-daily-harvest.js +21 -2
  77. package/dist-server/graphql/resolvers/daily-harvest/generate-daily-harvest.js.map +1 -1
  78. package/dist-server/graphql/resolvers/daily-harvest/update-daily-harvest.js +8 -2
  79. package/dist-server/graphql/resolvers/daily-harvest/update-daily-harvest.js.map +1 -1
  80. package/dist-server/graphql/resolvers/daily-loading/daily-loading-query.js +4 -6
  81. package/dist-server/graphql/resolvers/daily-loading/daily-loading-query.js.map +1 -1
  82. package/dist-server/graphql/resolvers/daily-loading/generate-daily-loading.js +20 -54
  83. package/dist-server/graphql/resolvers/daily-loading/generate-daily-loading.js.map +1 -1
  84. package/dist-server/graphql/resolvers/daily-loading/update-daily-loading.js +31 -106
  85. package/dist-server/graphql/resolvers/daily-loading/update-daily-loading.js.map +1 -1
  86. package/dist-server/graphql/resolvers/dashboard/dashboard-query.js +204 -0
  87. package/dist-server/graphql/resolvers/dashboard/dashboard-query.js.map +1 -0
  88. package/dist-server/graphql/resolvers/dashboard/index.js +8 -0
  89. package/dist-server/graphql/resolvers/dashboard/index.js.map +1 -0
  90. package/dist-server/graphql/resolvers/index.js +9 -6
  91. package/dist-server/graphql/resolvers/index.js.map +1 -1
  92. package/dist-server/graphql/resolvers/organization-staff/organization-staff-query.js +7 -3
  93. package/dist-server/graphql/resolvers/organization-staff/organization-staff-query.js.map +1 -1
  94. package/dist-server/graphql/resolvers/plantation-setting/create-plantation-setting.js +12 -0
  95. package/dist-server/graphql/resolvers/plantation-setting/create-plantation-setting.js.map +1 -0
  96. package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-setting.js +13 -0
  97. package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-setting.js.map +1 -0
  98. package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-settings.js +16 -0
  99. package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-settings.js.map +1 -0
  100. package/dist-server/graphql/resolvers/plantation-setting/index.js +15 -0
  101. package/dist-server/graphql/resolvers/plantation-setting/index.js.map +1 -0
  102. package/dist-server/graphql/resolvers/plantation-setting/plantation-setting-query.js +33 -0
  103. package/dist-server/graphql/resolvers/plantation-setting/plantation-setting-query.js.map +1 -0
  104. package/dist-server/graphql/resolvers/plantation-setting/update-multiple-plantation-setting.js +31 -0
  105. package/dist-server/graphql/resolvers/plantation-setting/update-multiple-plantation-setting.js.map +1 -0
  106. package/dist-server/graphql/resolvers/plantation-setting/update-plantation-setting.js +16 -0
  107. package/dist-server/graphql/resolvers/plantation-setting/update-plantation-setting.js.map +1 -0
  108. package/dist-server/graphql/resolvers/report/daily-ffb-dispatch-production-reports.js +111 -0
  109. package/dist-server/graphql/resolvers/report/daily-ffb-dispatch-production-reports.js.map +1 -0
  110. package/dist-server/graphql/resolvers/report/daily-production-reports.js +50 -37
  111. package/dist-server/graphql/resolvers/report/daily-production-reports.js.map +1 -1
  112. package/dist-server/graphql/resolvers/report/daily-staff-harvest-reports.js +21 -10
  113. package/dist-server/graphql/resolvers/report/daily-staff-harvest-reports.js.map +1 -1
  114. package/dist-server/graphql/resolvers/report/index.js +5 -1
  115. package/dist-server/graphql/resolvers/report/index.js.map +1 -1
  116. package/dist-server/graphql/resolvers/report/monthly-block-dispatch-reports.js +91 -0
  117. package/dist-server/graphql/resolvers/report/monthly-block-dispatch-reports.js.map +1 -0
  118. package/dist-server/graphql/resolvers/report/monthly-dispatch-summary-reports.js +89 -0
  119. package/dist-server/graphql/resolvers/report/monthly-dispatch-summary-reports.js.map +1 -0
  120. package/dist-server/graphql/resolvers/report/monthly-ffb-sale-reports.js +87 -0
  121. package/dist-server/graphql/resolvers/report/monthly-ffb-sale-reports.js.map +1 -0
  122. package/dist-server/graphql/resolvers/report/monthly-production-reports.js +46 -31
  123. package/dist-server/graphql/resolvers/report/monthly-production-reports.js.map +1 -1
  124. package/dist-server/graphql/resolvers/report/yearly-production-reports.js +38 -28
  125. package/dist-server/graphql/resolvers/report/yearly-production-reports.js.map +1 -1
  126. package/dist-server/graphql/resolvers/truck/delete-trucks.js +18 -0
  127. package/dist-server/graphql/resolvers/truck/delete-trucks.js.map +1 -0
  128. package/dist-server/graphql/resolvers/truck/index.js +12 -0
  129. package/dist-server/graphql/resolvers/truck/index.js.map +1 -0
  130. package/dist-server/graphql/resolvers/truck/truck-query.js +46 -0
  131. package/dist-server/graphql/resolvers/truck/truck-query.js.map +1 -0
  132. package/dist-server/graphql/resolvers/truck/update-multiple-truck.js +40 -0
  133. package/dist-server/graphql/resolvers/truck/update-multiple-truck.js.map +1 -0
  134. package/dist-server/graphql/types/daily-dispatch/daily-dispatch-patch.js +4 -1
  135. package/dist-server/graphql/types/daily-dispatch/daily-dispatch-patch.js.map +1 -1
  136. package/dist-server/graphql/types/daily-dispatch/daily-dispatch.js +4 -1
  137. package/dist-server/graphql/types/daily-dispatch/daily-dispatch.js.map +1 -1
  138. package/dist-server/graphql/types/daily-dispatch/index.js +6 -1
  139. package/dist-server/graphql/types/daily-dispatch/index.js.map +1 -1
  140. package/dist-server/graphql/types/daily-dispatch/new-daily-dispatch.js +4 -1
  141. package/dist-server/graphql/types/daily-dispatch/new-daily-dispatch.js.map +1 -1
  142. package/dist-server/graphql/types/daily-harvest/daily-harvest-patch.js +5 -2
  143. package/dist-server/graphql/types/daily-harvest/daily-harvest-patch.js.map +1 -1
  144. package/dist-server/graphql/types/daily-harvest/daily-harvest.js +3 -0
  145. package/dist-server/graphql/types/daily-harvest/daily-harvest.js.map +1 -1
  146. package/dist-server/graphql/types/daily-harvest/new-daily-harvest.js +4 -1
  147. package/dist-server/graphql/types/daily-harvest/new-daily-harvest.js.map +1 -1
  148. package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail-patch.js +1 -0
  149. package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail-patch.js.map +1 -1
  150. package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail.js +1 -0
  151. package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail.js.map +1 -1
  152. package/dist-server/graphql/types/daily-harvest-detail/new-daily-harvest-detail.js +1 -0
  153. package/dist-server/graphql/types/daily-harvest-detail/new-daily-harvest-detail.js.map +1 -1
  154. package/dist-server/graphql/types/daily-loading/daily-loading-patch.js +0 -2
  155. package/dist-server/graphql/types/daily-loading/daily-loading-patch.js.map +1 -1
  156. package/dist-server/graphql/types/daily-loading/daily-loading.js +0 -2
  157. package/dist-server/graphql/types/daily-loading/daily-loading.js.map +1 -1
  158. package/dist-server/graphql/types/daily-loading/new-daily-loading.js +0 -2
  159. package/dist-server/graphql/types/daily-loading/new-daily-loading.js.map +1 -1
  160. package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail-patch.js +6 -3
  161. package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail-patch.js.map +1 -1
  162. package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail.js +3 -0
  163. package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail.js.map +1 -1
  164. package/dist-server/graphql/types/daily-loading-detail/new-daily-loading-detail.js +6 -3
  165. package/dist-server/graphql/types/daily-loading-detail/new-daily-loading-detail.js.map +1 -1
  166. package/dist-server/graphql/types/dashboard/bunches-count.js +15 -0
  167. package/dist-server/graphql/types/dashboard/bunches-count.js.map +1 -0
  168. package/dist-server/graphql/types/dashboard/index.js +32 -0
  169. package/dist-server/graphql/types/dashboard/index.js.map +1 -0
  170. package/dist-server/graphql/types/dashboard/productions-overview.js +15 -0
  171. package/dist-server/graphql/types/dashboard/productions-overview.js.map +1 -0
  172. package/dist-server/graphql/types/dashboard/tonnage-bunches-inventories.js +14 -0
  173. package/dist-server/graphql/types/dashboard/tonnage-bunches-inventories.js.map +1 -0
  174. package/dist-server/graphql/types/dashboard/tonnage-production.js +17 -0
  175. package/dist-server/graphql/types/dashboard/tonnage-production.js.map +1 -0
  176. package/dist-server/graphql/types/dashboard/yield-production.js +17 -0
  177. package/dist-server/graphql/types/dashboard/yield-production.js.map +1 -0
  178. package/dist-server/graphql/types/index.js +9 -6
  179. package/dist-server/graphql/types/index.js.map +1 -1
  180. package/dist-server/graphql/types/organization-staff/organization-staff-patch.js +2 -0
  181. package/dist-server/graphql/types/organization-staff/organization-staff-patch.js.map +1 -1
  182. package/dist-server/graphql/types/organization-staff/organization-staff.js +3 -0
  183. package/dist-server/graphql/types/organization-staff/organization-staff.js.map +1 -1
  184. package/dist-server/graphql/types/plantation-setting/index.js +36 -0
  185. package/dist-server/graphql/types/plantation-setting/index.js.map +1 -0
  186. package/dist-server/graphql/types/plantation-setting/new-plantation-setting.js +16 -0
  187. package/dist-server/graphql/types/plantation-setting/new-plantation-setting.js.map +1 -0
  188. package/dist-server/graphql/types/plantation-setting/plantation-setting-list.js +14 -0
  189. package/dist-server/graphql/types/plantation-setting/plantation-setting-list.js.map +1 -0
  190. package/dist-server/graphql/types/plantation-setting/plantation-setting-patch.js +18 -0
  191. package/dist-server/graphql/types/plantation-setting/plantation-setting-patch.js.map +1 -0
  192. package/dist-server/graphql/types/plantation-setting/plantation-setting.js +22 -0
  193. package/dist-server/graphql/types/plantation-setting/plantation-setting.js.map +1 -0
  194. package/dist-server/graphql/types/report/daily-ffb-dispatch-production-report-list.js +14 -0
  195. package/dist-server/graphql/types/report/daily-ffb-dispatch-production-report-list.js.map +1 -0
  196. package/dist-server/graphql/types/report/daily-ffb-dispatch-production-report.js +15 -0
  197. package/dist-server/graphql/types/report/daily-ffb-dispatch-production-report.js.map +1 -0
  198. package/dist-server/graphql/types/report/index.js +33 -0
  199. package/dist-server/graphql/types/report/index.js.map +1 -1
  200. package/dist-server/graphql/types/report/monthly-block-dispatch-report-list.js +14 -0
  201. package/dist-server/graphql/types/report/monthly-block-dispatch-report-list.js.map +1 -0
  202. package/dist-server/graphql/types/report/monthly-block-dispatch-report.js +19 -0
  203. package/dist-server/graphql/types/report/monthly-block-dispatch-report.js.map +1 -0
  204. package/dist-server/graphql/types/report/monthly-dispatch-summary-report-list.js +14 -0
  205. package/dist-server/graphql/types/report/monthly-dispatch-summary-report-list.js.map +1 -0
  206. package/dist-server/graphql/types/report/monthly-dispatch-summary-report.js +25 -0
  207. package/dist-server/graphql/types/report/monthly-dispatch-summary-report.js.map +1 -0
  208. package/dist-server/graphql/types/report/monthly-ffb-sale-report-list.js +14 -0
  209. package/dist-server/graphql/types/report/monthly-ffb-sale-report-list.js.map +1 -0
  210. package/dist-server/graphql/types/report/monthly-ffb-sale-report.js +24 -0
  211. package/dist-server/graphql/types/report/monthly-ffb-sale-report.js.map +1 -0
  212. package/dist-server/graphql/types/truck/index.js +33 -0
  213. package/dist-server/graphql/types/truck/index.js.map +1 -0
  214. package/dist-server/graphql/types/truck/new-truck.js +14 -0
  215. package/dist-server/graphql/types/truck/new-truck.js.map +1 -0
  216. package/dist-server/graphql/types/truck/truck-list.js +14 -0
  217. package/dist-server/graphql/types/truck/truck-list.js.map +1 -0
  218. package/dist-server/graphql/types/truck/truck-patch.js +17 -0
  219. package/dist-server/graphql/types/truck/truck-patch.js.map +1 -0
  220. package/dist-server/graphql/types/truck/truck.js +22 -0
  221. package/dist-server/graphql/types/truck/truck.js.map +1 -0
  222. package/dist-server/utils/core-values.js +2 -2
  223. package/dist-server/utils/transaction-util.js +2 -1
  224. package/dist-server/utils/transaction-util.js.map +1 -1
  225. package/package.json +29 -29
  226. package/server/constants/index.ts +1 -0
  227. package/server/constants/organization.ts +5 -0
  228. package/server/constants/transaction.ts +2 -1
  229. package/server/controllers/render-dispatchment.ts +1 -1
  230. package/server/entities/daily-dispatch.ts +18 -5
  231. package/server/entities/daily-harvest-detail.ts +10 -11
  232. package/server/entities/daily-harvest.ts +16 -7
  233. package/server/entities/daily-loading-detail.ts +14 -6
  234. package/server/entities/daily-loading.ts +7 -11
  235. package/server/entities/index.ts +6 -0
  236. package/server/entities/organization-staff.ts +6 -1
  237. package/server/entities/plantation-inventory.ts +6 -10
  238. package/server/entities/plantation-setting.ts +60 -0
  239. package/server/entities/truck.ts +58 -0
  240. package/server/graphql/resolvers/daily-dispatch/daily-dispatch-query.ts +15 -2
  241. package/server/graphql/resolvers/daily-dispatch/generate-daily-dispatch.ts +40 -14
  242. package/server/graphql/resolvers/daily-dispatch/update-daily-dispatch.ts +8 -4
  243. package/server/graphql/resolvers/daily-harvest/daily-harvest-query.ts +7 -2
  244. package/server/graphql/resolvers/daily-harvest/generate-daily-harvest.ts +50 -4
  245. package/server/graphql/resolvers/daily-harvest/update-daily-harvest.ts +12 -2
  246. package/server/graphql/resolvers/daily-loading/daily-loading-query.ts +6 -6
  247. package/server/graphql/resolvers/daily-loading/generate-daily-loading.ts +27 -109
  248. package/server/graphql/resolvers/daily-loading/update-daily-loading.ts +56 -214
  249. package/server/graphql/resolvers/dashboard/dashboard-query.ts +252 -0
  250. package/server/graphql/resolvers/dashboard/index.ts +5 -0
  251. package/server/graphql/resolvers/index.ts +10 -6
  252. package/server/graphql/resolvers/organization-staff/organization-staff-query.ts +13 -4
  253. package/server/graphql/resolvers/plantation-setting/create-plantation-setting.ts +16 -0
  254. package/server/graphql/resolvers/plantation-setting/delete-plantation-setting.ts +13 -0
  255. package/server/graphql/resolvers/plantation-setting/delete-plantation-settings.ts +16 -0
  256. package/server/graphql/resolvers/plantation-setting/index.ts +19 -0
  257. package/server/graphql/resolvers/plantation-setting/plantation-setting-query.ts +38 -0
  258. package/server/graphql/resolvers/plantation-setting/update-multiple-plantation-setting.ts +46 -0
  259. package/server/graphql/resolvers/plantation-setting/update-plantation-setting.ts +19 -0
  260. package/server/graphql/resolvers/report/daily-ffb-dispatch-production-reports.ts +138 -0
  261. package/server/graphql/resolvers/report/daily-production-reports.ts +59 -48
  262. package/server/graphql/resolvers/report/daily-staff-harvest-reports.ts +28 -20
  263. package/server/graphql/resolvers/report/index.ts +9 -1
  264. package/server/graphql/resolvers/report/monthly-block-dispatch-reports.ts +114 -0
  265. package/server/graphql/resolvers/report/monthly-dispatch-summary-reports.ts +110 -0
  266. package/server/graphql/resolvers/report/monthly-ffb-sale-reports.ts +107 -0
  267. package/server/graphql/resolvers/report/monthly-production-reports.ts +54 -40
  268. package/server/graphql/resolvers/report/yearly-production-reports.ts +43 -38
  269. package/server/graphql/resolvers/truck/delete-trucks.ts +21 -0
  270. package/server/graphql/resolvers/truck/index.ts +12 -0
  271. package/server/graphql/resolvers/truck/truck-query.ts +52 -0
  272. package/server/graphql/resolvers/truck/update-multiple-truck.ts +55 -0
  273. package/server/graphql/types/daily-dispatch/daily-dispatch-patch.ts +4 -1
  274. package/server/graphql/types/daily-dispatch/daily-dispatch.ts +4 -1
  275. package/server/graphql/types/daily-dispatch/index.ts +6 -1
  276. package/server/graphql/types/daily-dispatch/new-daily-dispatch.ts +4 -1
  277. package/server/graphql/types/daily-harvest/daily-harvest-patch.ts +5 -2
  278. package/server/graphql/types/daily-harvest/daily-harvest.ts +3 -0
  279. package/server/graphql/types/daily-harvest/new-daily-harvest.ts +4 -1
  280. package/server/graphql/types/daily-harvest-detail/daily-harvest-detail-patch.ts +1 -0
  281. package/server/graphql/types/daily-harvest-detail/daily-harvest-detail.ts +1 -0
  282. package/server/graphql/types/daily-harvest-detail/new-daily-harvest-detail.ts +1 -0
  283. package/server/graphql/types/daily-loading/daily-loading-patch.ts +0 -2
  284. package/server/graphql/types/daily-loading/daily-loading.ts +0 -2
  285. package/server/graphql/types/daily-loading/new-daily-loading.ts +0 -2
  286. package/server/graphql/types/daily-loading-detail/daily-loading-detail-patch.ts +6 -3
  287. package/server/graphql/types/daily-loading-detail/daily-loading-detail.ts +3 -0
  288. package/server/graphql/types/daily-loading-detail/new-daily-loading-detail.ts +6 -3
  289. package/server/graphql/types/dashboard/bunches-count.ts +9 -0
  290. package/server/graphql/types/dashboard/index.ts +17 -0
  291. package/server/graphql/types/dashboard/productions-overview.ts +9 -0
  292. package/server/graphql/types/dashboard/tonnage-bunches-inventories.ts +8 -0
  293. package/server/graphql/types/dashboard/tonnage-production.ts +11 -0
  294. package/server/graphql/types/dashboard/yield-production.ts +11 -0
  295. package/server/graphql/types/index.ts +10 -6
  296. package/server/graphql/types/organization-staff/organization-staff-patch.ts +2 -0
  297. package/server/graphql/types/organization-staff/organization-staff.ts +3 -0
  298. package/server/graphql/types/plantation-setting/index.ts +21 -0
  299. package/server/graphql/types/plantation-setting/new-plantation-setting.ts +10 -0
  300. package/server/graphql/types/plantation-setting/plantation-setting-list.ts +8 -0
  301. package/server/graphql/types/plantation-setting/plantation-setting-patch.ts +12 -0
  302. package/server/graphql/types/plantation-setting/plantation-setting.ts +16 -0
  303. package/server/graphql/types/report/daily-ffb-dispatch-production-report-list.ts +8 -0
  304. package/server/graphql/types/report/daily-ffb-dispatch-production-report.ts +9 -0
  305. package/server/graphql/types/report/index.ts +33 -0
  306. package/server/graphql/types/report/monthly-block-dispatch-report-list.ts +7 -0
  307. package/server/graphql/types/report/monthly-block-dispatch-report.ts +13 -0
  308. package/server/graphql/types/report/monthly-dispatch-summary-report-list.ts +7 -0
  309. package/server/graphql/types/report/monthly-dispatch-summary-report.ts +19 -0
  310. package/server/graphql/types/report/monthly-ffb-sale-report-list.ts +7 -0
  311. package/server/graphql/types/report/monthly-ffb-sale-report.ts +18 -0
  312. package/server/graphql/types/truck/index.ts +18 -0
  313. package/server/graphql/types/truck/new-truck.ts +8 -0
  314. package/server/graphql/types/truck/truck-list.ts +8 -0
  315. package/server/graphql/types/truck/truck-patch.ts +11 -0
  316. package/server/graphql/types/truck/truck.ts +16 -0
  317. package/server/utils/core-values.ts +2 -2
  318. package/server/utils/transaction-util.ts +2 -1
  319. package/things-factory.config.js +27 -1
  320. package/translations/en.json +79 -16
  321. package/translations/ko.json +78 -48
  322. package/translations/ms.json +78 -48
  323. package/translations/zh.json +78 -48
@@ -1,5 +1,5 @@
1
- import route from './client/route'
2
1
  import bootstrap from './client/bootstrap'
2
+ import route from './client/route'
3
3
 
4
4
  export default {
5
5
  route,
@@ -24,6 +24,10 @@ export default {
24
24
  tagname: 'master-ramp',
25
25
  page: 'master-ramp'
26
26
  },
27
+ {
28
+ tagname: 'master-truck',
29
+ page: 'master-truck'
30
+ },
27
31
  {
28
32
  tagname: 'harvesting-home',
29
33
  page: 'harvesting-home'
@@ -115,6 +119,28 @@ export default {
115
119
  {
116
120
  tagname: 'report-daily-staff-harvest',
117
121
  page: 'report-daily-staff-harvest'
122
+ },
123
+ {
124
+ tagname: 'report-daily-ffb-dispatch-and-production',
125
+ page: 'report-daily-ffb-dispatch-and-production'
126
+ },
127
+ {
128
+ tagname: 'report-ffb-tonnage-between-individual-block',
129
+ page: 'report-ffb-tonnage-between-individual-block'
130
+ },
131
+ {
132
+ tagname: 'report-monthly-ffb-sale',
133
+ page: 'report-monthly-ffb-sale'
134
+ },
135
+
136
+ /* Setting Section */
137
+ {
138
+ tagname: 'setting-home',
139
+ page: 'setting-home'
140
+ },
141
+ {
142
+ tagname: 'plantation-setting',
143
+ page: 'plantation-setting'
118
144
  }
119
145
  ],
120
146
  bootstrap
@@ -7,34 +7,48 @@
7
7
  "field.adjusted_tonnage": "adjusted tonange",
8
8
  "field.available_tonnage": "available tonnage",
9
9
  "field.avg_out_turn": "avg out turn",
10
+ "field.avg": "avg",
11
+ "field.balance_bunch_in_field": "balance bunch in field",
10
12
  "field.balance_bunch": "balance bunch",
11
13
  "field.block": "block",
12
14
  "field.bunches_per_hectar": "bunches per hectar",
13
15
  "field.bunches_per_palm": "bunches per palm",
14
16
  "field.bunches_per_ton": "bunches per ton",
15
17
  "field.bunches_wt": "bunches wt",
18
+ "field.chit_no": "chit no",
19
+ "field.collected_bunch": "collected bunch",
16
20
  "field.company": "company",
21
+ "field.contractor": "contractor",
17
22
  "field.coverage_per_day": "coverage per day",
18
23
  "field.coverage": "coverage",
19
24
  "field.created_date": "created date",
20
25
  "field.date": "date",
21
26
  "field.days_worked": "days worked",
27
+ "field.destination": "destination",
22
28
  "field.diff_in_bunches": "diff in bunches",
29
+ "field.dispatch_to": "dispatch to",
23
30
  "field.dispatchment_date": "dispatchment date",
24
31
  "field.estimated_ffb": "estimated ffb",
25
32
  "field.estimated_last_ffb": "estimated last ffb",
26
33
  "field.field_bunches": "field bunches",
27
34
  "field.harvest_date": "harvest date",
35
+ "field.harvested_today": "harvested today",
28
36
  "field.harvesting_rd": "harvesting rd",
29
37
  "field.harvesting_round": "harvesting round",
30
38
  "field.has_sub_block": "has sub block",
31
39
  "field.hectarage": "hectarage",
40
+ "field.id_number": "id number",
32
41
  "field.last_yield_per_hectarage": "last yield per hectarage",
33
42
  "field.loading_date": "loading date",
43
+ "field.lorry_no": "lorry no",
34
44
  "field.main_block_ref": "main block ref",
35
45
  "field.matured_hectarage": "matured hectarage",
46
+ "field.mill_tonnage": "mill tonnage",
47
+ "field.mill": "mill",
36
48
  "field.month": "month",
49
+ "field.no": "no",
37
50
  "field.opening_field_bunches": "opening field bunches",
51
+ "field.percents": "percents",
38
52
  "field.prev_bunch_bal_in_field": "yesterday bunch bal in field",
39
53
  "field.prev_weight_bal_in_ramp": "yesterday weight bal in ramp",
40
54
  "field.production": "production",
@@ -55,6 +69,7 @@
55
69
  "field.to_date_bunch_harvest": "to date bunch harvest",
56
70
  "field.to_date_out_turn": "to date out turn",
57
71
  "field.to_date_weight_dispatch": "to date weight dispatch",
72
+ "field.to_date": "to date",
58
73
  "field.today_bunch_bal_in_field": "today bunch bal in field",
59
74
  "field.today_bunch_collected": "today bunch collected",
60
75
  "field.today_bunch_harvest": "today bunch harvest",
@@ -64,7 +79,9 @@
64
79
  "field.today_out_turn": "today out turn",
65
80
  "field.today_weight_bal_in_ramp": "today weight bal in ramp",
66
81
  "field.today_weight_dispatch": "today weight dispatch",
82
+ "field.today": "today",
67
83
  "field.tonnage_remaining": "tonnage remaining",
84
+ "field.tonnage": "tonnage",
68
85
  "field.total_bunch_harvested": "total bunch harvested",
69
86
  "field.total_bunch": "total bunch",
70
87
  "field.total_bunches_in_field": "total bunches in field",
@@ -76,9 +93,13 @@
76
93
  "field.total_hectarage": "total hectarage",
77
94
  "field.total_last_ffb": "total last ffb",
78
95
  "field.total_no_of_bunches": "total no of bunches",
96
+ "field.total_number_of_bunches": "total no. of bunches",
79
97
  "field.total_out_turn": "total out turn",
80
98
  "field.total_stand": "total stand",
99
+ "field.total_task_covered": "total task covered",
100
+ "field.total_tonnage_estimated": "total tonnage (estimated)",
81
101
  "field.total_tonnage_release": "total tonnage release",
102
+ "field.total_tonnage": "total tonnage",
82
103
  "field.total_weight_loaded": "total weight loaded",
83
104
  "field.total_weight": "total weight",
84
105
  "field.transaction_date": "transaction date",
@@ -88,78 +109,105 @@
88
109
  "field.truck_no": "truck no",
89
110
  "field.type": "type",
90
111
  "field.valid_from": "valid from",
112
+ "field.variance_%": "variance %",
91
113
  "field.year_planted": "year planted",
92
114
  "field.year": "year",
115
+ "field.yesterday_balance_in_field": "yesterday balance in field",
93
116
  "field.yield_per_hectar": "yield per hectar",
94
117
  "field.yield_per_hectarage": "yield per hectarage",
118
+ "label.allow tracked inventory": "allow tracked inventory",
95
119
  "label.available_bunches": "available bunches",
96
120
  "label.available_tonnage": "available tonnage",
97
121
  "label.block": "block",
122
+ "label.chit_no": "chit no",
123
+ "label.collected_bunch": "collected bunch",
124
+ "label.collected_today": "collected today",
125
+ "label.contractor": "contractor",
98
126
  "label.coverage": "coverage",
99
127
  "label.current_bunch_at_field": "current bunch at field",
128
+ "label.date": "date",
100
129
  "label.destination": "destination",
101
130
  "label.dispatchment_date": "dispatchment date",
102
131
  "label.driver_identification": "driver identification",
132
+ "label.driver": "driver",
103
133
  "label.external": "external",
104
- "label.harvest_date": "harvest date",
134
+ "label.harvested_today": "harvested today",
105
135
  "label.harvesting_round": "harvesting round",
106
136
  "label.internal": "internal",
107
137
  "label.loading_date": "loading date",
138
+ "label.lorry_no": "lorry no",
139
+ "label.mill": "mill",
140
+ "label.owner": "owner",
141
+ "label.oer_percentage": "OER percentage",
108
142
  "label.please_select_a_block": "please select a block",
109
143
  "label.rainfall": "rainfall",
110
144
  "label.total_bunch_harvested": "total bunch harvested",
111
145
  "label.total_bunch_in_field": "total bunch in field",
112
146
  "label.total_bunch_loaded": "total bunch loaded",
147
+ "label.total_bunch": "total bunch",
148
+ "label.total_number_of_bunches": "total no. of bunches",
113
149
  "label.total_task_covered": "total task covered",
114
150
  "label.total_tonnage_loaded": "total tonnage loaded",
151
+ "label.total_tonnage": "total tonnage",
115
152
  "label.truck_driver": "truck driver",
116
153
  "label.truck_no": "truck no",
154
+ "label.yesterday_balance_bunch": "yesterday balance bunch",
155
+ "label.yesterday_balance_in_field": "yesteday balance in field",
156
+ "text.adjust_tonnage": "adjust tonnage",
157
+ "text.available_tonnage_insufficient": "available tonnage insufficient",
117
158
  "text.bunches_weight_is_not_fully_allocated_into_ramp": "bunches weight is not fully allocated into ramp",
159
+ "text.code-management": "code management",
160
+ "text.create_dispatchment_record": "create dispatchment record",
118
161
  "text.create_harvesting_record": "create harvesting record",
119
162
  "text.create_loading_record": "create loading record",
120
- "text.create_dispatchment_record": "create dispatchment record",
121
- "text.delete_harvesting_record": "delete harvesting record",
122
163
  "text.delete_dispatchment_record": "delete dispatchment record",
164
+ "text.delete_harvesting_record": "delete harvesting record",
123
165
  "text.delete_loading_record": "delete loading record",
166
+ "text.destination_is_not_selected": "destination is not selected",
124
167
  "text.dispatch_record_created": "dispatch record created",
125
168
  "text.dispatch_record_invalid": "dispatch record invalid",
126
- "text.dispatchment_record_has_been_updated": "dispatchment record has been updated",
127
169
  "text.dispatchment_record_has_been_deleted": "dispatchment record has been deleted",
170
+ "text.dispatchment_record_has_been_updated": "dispatchment record has been updated",
171
+ "text.driver_is_not_selected": "driver not selected",
172
+ "text.empty_value_in_dispatchment_data": "empty value in dispatchment data",
128
173
  "text.empty_value_in_list": "empty value in record list",
129
174
  "text.empty_value_in_loading_data": "empty value in loading data",
130
- "text.empty_value_in_dispatchment_data": "empty value in dispatchment data",
131
175
  "text.empty_value_in_ramp_loading_data": "empty value in ramp loading data",
132
- "text.no_records_in_ramp_loading_list": "no records in ramp loading list",
133
- "text.no_records_in_dispatchment_list": "no records in dispatchment list",
134
176
  "text.harvest_record_has_been_deleted": "harvest record has been deleted",
135
177
  "text.harvesting_record_created": "harvesting record created",
136
178
  "text.harvesting_record_invalid": "harvesting record invalid",
137
179
  "text.harvesting_record_updated": "harvesting record updated",
138
180
  "text.insufficient_bunches_to_be_loaded": "insufficient bunches to be loaded",
139
181
  "text.insufficient_weight_to_be_allocated_into_ramp": "insufficient weight to be allocated into ramp",
140
- "text.invalid_tonnage_input": "invalid tonnage input",
141
182
  "text.invalid_adjustment_value": "invalid adjustment value",
183
+ "text.invalid_tonnage_input": "invalid tonnage input",
184
+ "text.invalid_percentage_value": "invalid percentage value",
142
185
  "text.kindly_select_a_block_first": "kindly select a block first",
143
186
  "text.loading_record_created": "loading record created",
144
187
  "text.loading_record_has_been_deleted": "loading record has been deleted",
145
188
  "text.loading_record_invalid": "loading record invalid",
146
189
  "text.loading_record_updated": "loading record updated",
147
- "text.no_records": "no records",
148
- "text.no_records_in_loading_list": "no records in loading list",
149
190
  "text.no_adjustment_can_be_submitted": "no adjustment can be submitted",
191
+ "text.no_records_in_dispatchment_list": "no records in dispatchment list",
192
+ "text.no_records_in_loading_list": "no records in loading list",
193
+ "text.no_records_in_ramp_loading_list": "no records in ramp loading list",
194
+ "text.no_records": "no records",
150
195
  "text.selected_ramp_has_been_existed_in_record": "selected ramp has been exist in record",
151
- "text.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
152
196
  "text.there_are_adjusted_value_same_as_initial_tonnage": "there are adjusted value same as initial tonnage",
197
+ "text.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
153
198
  "text.there_is_no_selected_items": "there is no selected items",
154
199
  "text.total_bunch_weight_should_be_positive": "total bunch weight should be positive",
155
200
  "text.total_bunches_loaded_should_be_positive": "total bunches loaded should be positive",
156
201
  "text.total_no_of_bunches_should_be_positive": "total no of bunches should be positive",
157
- "text.adjust_tonnage": "adjust tonnage",
158
- "text.available_tonnage_insufficient": "available tonnage insufficient",
202
+ "text.total_tonnage_harvested_should_be_positive": "total tonnage harvested should be positive",
203
+ "text.tracked_inventory_setting": "tracked inventory setting",
204
+ "text.truck_is_not_selected": "truck not selected",
159
205
  "text.unable_to_find_harvest_record": "unable to find harvest record",
160
206
  "text.unable_to_find_loading_record": "unable to find loading record",
161
207
  "text.update_harvesting_record": "update harvesting record",
162
208
  "text.update_loading_record": "update loading record",
209
+ "text.x_has_invalid_value": "{x} has invalid value",
210
+ "text.x_should_be_positive": "{x} should be positive",
163
211
  "text.you_wont_be_able_to_revert_this": "you wont be able to revert this",
164
212
  "title.are_you_sure": "are you sure",
165
213
  "title.block_details": "block details",
@@ -170,21 +218,25 @@
170
218
  "title.create_dispatchment_record": "create dispatchment record",
171
219
  "title.create_harvesting_record": "create harvesting record",
172
220
  "title.create_loading_record": "create loading record",
173
- "title.daily_harvesting_record": "daily harvesting record",
221
+ "title.daily_ffb_dispatch_and_production": "daily FFB dispatch and production",
174
222
  "title.daily_loading_record": "daily loading record",
175
223
  "title.daily_production_report": "daily production report",
176
224
  "title.daily_staff_harvest": "daily staff harvest",
177
- "title.dispatchment_no": "dispatchment no",
178
225
  "title.dispatchment_from_ramp": "dispatchment from ramp",
179
226
  "title.dispatchment_information": "dispatchment information",
180
227
  "title.dispatchment_list": "dispatchment list",
228
+ "title.dispatchment_no": "dispatchment no",
181
229
  "title.dispatchment_record_detail": "dispatchment record detail",
182
230
  "title.edit_dispatchment_record": "edit dispatchment record",
183
231
  "title.edit_harvesting_record": "edit harvesting record",
184
232
  "title.edit_loading_record": "edit loading record",
233
+ "title.ffb_tonnage_between_individual_block": "ffb tonnage between individual block",
234
+ "title.field_loading_contractor_daily_loading_record": "field loading contractor's daily loading record",
235
+ "title.global_plantation_setting": "global plantation setting",
185
236
  "title.harvest_data": "harvest data",
186
237
  "title.harvest_list": "harvesting list",
187
238
  "title.harvest_no": "harvest no",
239
+ "title.harvesting_contractors_daily_harvesting_record": "harvesting contractor's daily harvesting record",
188
240
  "title.harvesting_record_detail": "harvesting record detail",
189
241
  "title.import": "import",
190
242
  "title.loading_data": "loading data",
@@ -192,12 +244,23 @@
192
244
  "title.loading_no": "loading no",
193
245
  "title.loading_record_detail": "loading record detail",
194
246
  "title.loading_summary": "loading summary",
247
+ "title.main_block": "main block",
248
+ "title.monthly_block_dispatch_report": "monthly block dispatch report",
249
+ "title.monthly_block_report": "monthly block report",
250
+ "title.monthly_ffb_sale_report": "monthly FFB sale report",
195
251
  "title.monthly_production_report": "monthly production report",
196
252
  "title.overall_record": "overall record",
253
+ "title.plantation_setting": "plantation setting",
197
254
  "title.ramp_loading_data": "ramp loading data",
198
255
  "title.ramp": "ramp",
199
256
  "title.select_block": "select block",
257
+ "title.select_destination": "select destination",
258
+ "title.select_driver": "select driver",
259
+ "title.select_lorry": "select lorry",
200
260
  "title.staff": "staff",
261
+ "title.sub_block": "sub block",
262
+ "title.summary": "summary",
201
263
  "title.tonnage_in_ramp": "tonnage in ramp",
264
+ "title.truck": "truck",
202
265
  "title.yearly_production_report": "yearly production report"
203
- }
266
+ }
@@ -1,75 +1,105 @@
1
1
  {
2
- "title.are_you_sure": "are you sure",
3
- "title.block": "block",
4
- "title.block_details": "block details",
5
- "title.create_harvesting_record": "create harvesting record",
6
- "title.create_loading_record": "create loading record",
7
- "title.company": "company",
8
- "title.daily_loading_record": "daily loading record",
9
- "title.daily_production_report": "daily production report",
10
- "title.daily_harvesting_record": "daily harvesting record",
11
- "title.harvest_list": "harvesting list",
12
- "title.harvest_data": "harvest data",
13
- "title.harvest_no": "harvest no",
14
- "title.harvesting_record_detail": "harvesting record detail",
15
- "title.import": "import",
16
- "title.loading_list": "loading list",
17
- "title.loading_data": "loading data",
18
- "title.loading_no": "loading no",
19
- "title.loading_record_detail": "loading record detail",
20
- "title.overall_record": "overall record",
21
- "title.ramp": "ramp",
22
- "title.staff": "staff",
23
- "text.create_harvesting_record": "create harvesting record",
24
- "text.create_loading_record": "create loading record",
25
- "text.empty_value_in_list": "empty value in record list",
26
- "text.harvesting_record_invalid": "harvesting record invalid",
27
- "text.harvesting_record_created": "harvesting record created",
28
- "text.loading_record_created": "loading record created",
29
- "text.loading_record_invalid": "loading record invalid",
30
- "text.no_records": "no records",
31
- "text.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
32
- "text.total_no_of_bunches_should_be_positive": "total no of bunches should be positive",
33
- "text.total_bunches_loaded_should_be_positive": "total bunches loaded should be positive",
34
- "text.total_bunch_weight_should_be_positive": "total bunch weight should be positive",
35
- "text.you_wont_be_able_to_revert_this": "you wont be able to revert this",
2
+ "button.edit": "edit",
3
+ "field.avg": "avg",
4
+ "field.balance_bunch_in_field": "balance bunch in field",
36
5
  "field.balance_bunch": "balance bunch",
37
6
  "field.block": "block",
7
+ "field.chit_no": "chit no",
38
8
  "field.company": "company",
39
9
  "field.coverage": "coverage",
40
10
  "field.date": "date",
41
- "field.has_sub_block": "has sub block",
11
+ "field.dispatch_to": "dispatch to",
12
+ "field.destination": "destination",
42
13
  "field.harvest_date": "harvest date",
43
14
  "field.harvesting_round": "harvesting round",
15
+ "field.has_sub_block": "has sub block",
44
16
  "field.loading_date": "loading date",
17
+ "field.main_block_ref": "main block ref",
18
+ "field.matured_hectarage": "matured hectarage",
19
+ "field.mill": "mill",
45
20
  "field.month": "month",
21
+ "field.percents": "percents",
22
+ "field.prev_bunch_bal_in_field": "prev bunch balance in field",
46
23
  "field.remarks": "remarks",
24
+ "field.size": "size",
47
25
  "field.status": "status",
48
26
  "field.task_no": "task no",
49
- "field.total_no_of_bunches": "total no of bunches",
50
- "field.total_harvested": "total harvested",
51
27
  "field.total_bunch": "total bunch",
52
- "field.total_weight": "total weight",
53
- "field.total_weight_loaded": "total weight loaded",
54
- "field.trip": "trip",
55
- "field.main_block_ref": "main block ref",
56
- "field.matured_hectarage": "matured hectarage",
57
- "field.prev_bunch_bal_in_field": "prev bunch balance in field",
28
+ "field.total_harvested": "total harvested",
58
29
  "field.total_hectarage": "total hectarage",
59
- "field.size": "size",
30
+ "field.total_no_of_bunches": "total no of bunches",
60
31
  "field.total_stand": "total stand",
32
+ "field.total_tonnage": "total tonnage",
33
+ "field.total_tonnage_estimated": "total tonnage (estimated)",
34
+ "field.total_weight_loaded": "total weight loaded",
35
+ "field.total_weight": "total weight",
36
+ "field.trip": "trip",
61
37
  "field.type": "type",
62
38
  "field.valid_from": "valid from",
63
39
  "field.year_planted": "year planted",
40
+ "label.allow tracked inventory": "allow tracked inventory",
64
41
  "label.block": "block",
42
+ "label.chit_no": "chit no",
43
+ "label.collected_bunch": "collected bunch",
44
+ "label.contractor": "[ko] contractor",
65
45
  "label.coverage": "coverage",
66
- "label.harvest_date": "harvest date",
46
+ "label.date": "date",
67
47
  "label.harvesting_round": "harvesting round",
68
48
  "label.loading_date": "loading date",
49
+ "label.owner": "owner",
50
+ "label.oer_percentage": "OER percentage",
69
51
  "label.please_select_a_block": "please select a block",
70
52
  "label.rainfall": "rainfall",
71
53
  "label.total_bunch_harvested": "total bunch harvested",
72
- "label.total_task_covered": "total task covered",
73
54
  "label.total_bunch_in_field": "total bunch in field",
74
- "button.edit": "edit"
75
- }
55
+ "label.total_task_covered": "total task covered",
56
+ "label.total_tonnage": "total tonnage",
57
+ "label.yesterday_balance_bunch": "yesterday balance bunch",
58
+ "text.code-management": "[ko] code management",
59
+ "text.create_harvesting_record": "create harvesting record",
60
+ "text.create_loading_record": "create loading record",
61
+ "text.destination_is_not_selected": "destination is not selected",
62
+ "text.empty_value_in_list": "empty value in record list",
63
+ "text.harvesting_record_created": "harvesting record created",
64
+ "text.harvesting_record_invalid": "harvesting record invalid",
65
+ "text.loading_record_created": "loading record created",
66
+ "text.loading_record_invalid": "loading record invalid",
67
+ "text.invalid_percentage_value": "invalid percentage value",
68
+ "text.no_records": "no records",
69
+ "text.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
70
+ "text.total_bunch_weight_should_be_positive": "total bunch weight should be positive",
71
+ "text.total_bunches_loaded_should_be_positive": "total bunches loaded should be positive",
72
+ "text.total_no_of_bunches_should_be_positive": "total no of bunches should be positive",
73
+ "text.total_tonnage_harvested_should_be_positive": "total tonnage harvested should be positive",
74
+ "text.tracked_inventory_setting": "tracked inventory setting",
75
+ "text.x_has_invalid_value": "{x} has invalid value",
76
+ "text.x_should_be_positive": "{x} should be positive",
77
+ "text.you_wont_be_able_to_revert_this": "you wont be able to revert this",
78
+ "title.are_you_sure": "are you sure",
79
+ "title.block_details": "block details",
80
+ "title.block": "block",
81
+ "title.company": "company",
82
+ "title.create_harvesting_record": "create harvesting record",
83
+ "title.create_loading_record": "create loading record",
84
+ "title.daily_ffb_dispatch_and_production": "daily FFB dispatch and production",
85
+ "title.daily_loading_record": "daily loading record",
86
+ "title.daily_production_report": "daily production report",
87
+ "title.global_plantation_setting": "[ko] global plantation setting",
88
+ "title.harvest_data": "harvest data",
89
+ "title.harvest_list": "harvesting list",
90
+ "title.harvest_no": "harvest no",
91
+ "title.harvesting_contractors_daily_harvesting_record": "harvesting contractor's daily harvesting record",
92
+ "title.harvesting_record_detail": "harvesting record detail",
93
+ "title.import": "import",
94
+ "title.loading_data": "loading data",
95
+ "title.loading_list": "loading list",
96
+ "title.loading_no": "loading no",
97
+ "title.loading_record_detail": "loading record detail",
98
+ "title.monthly_block_dispatch_report": "monthly block dispatch report",
99
+ "title.monthly_ffb_sale_report": "monthly FFB sale report",
100
+ "title.overall_record": "overall record",
101
+ "title.plantation_setting": "plantation setting",
102
+ "title.ramp": "ramp",
103
+ "title.select_destination": "select destination",
104
+ "title.staff": "staff"
105
+ }
@@ -1,75 +1,105 @@
1
1
  {
2
- "title.are_you_sure": "are you sure",
3
- "title.block": "block",
4
- "title.block_details": "block details",
5
- "title.create_harvesting_record": "create harvesting record",
6
- "title.create_loading_record": "create loading record",
7
- "title.company": "company",
8
- "title.daily_loading_record": "daily loading record",
9
- "title.daily_production_report": "daily production report",
10
- "title.daily_harvesting_record": "daily harvesting record",
11
- "title.harvest_list": "harvesting list",
12
- "title.harvest_data": "harvest data",
13
- "title.harvest_no": "harvest no",
14
- "title.harvesting_record_detail": "harvesting record detail",
15
- "title.import": "import",
16
- "title.loading_list": "loading list",
17
- "title.loading_data": "loading data",
18
- "title.loading_no": "loading no",
19
- "title.loading_record_detail": "loading record detail",
20
- "title.overall_record": "overall record",
21
- "title.ramp": "ramp",
22
- "title.staff": "staff",
23
- "text.create_harvesting_record": "create harvesting record",
24
- "text.create_loading_record": "create loading record",
25
- "text.empty_value_in_list": "empty value in record list",
26
- "text.harvesting_record_invalid": "harvesting record invalid",
27
- "text.harvesting_record_created": "harvesting record created",
28
- "text.loading_record_created": "loading record created",
29
- "text.loading_record_invalid": "loading record invalid",
30
- "text.no_records": "no records",
31
- "text.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
32
- "text.total_no_of_bunches_should_be_positive": "total no of bunches should be positive",
33
- "text.total_bunches_loaded_should_be_positive": "total bunches loaded should be positive",
34
- "text.total_bunch_weight_should_be_positive": "total bunch weight should be positive",
35
- "text.you_wont_be_able_to_revert_this": "you wont be able to revert this",
2
+ "button.edit": "edit",
3
+ "field.avg": "avg",
4
+ "field.balance_bunch_in_field": "balance bunch in field",
36
5
  "field.balance_bunch": "balance bunch",
37
6
  "field.block": "block",
7
+ "field.chit_no": "chit no",
38
8
  "field.company": "company",
39
9
  "field.coverage": "coverage",
40
10
  "field.date": "date",
41
- "field.has_sub_block": "has sub block",
11
+ "field.dispatch_to": "dispatch to",
12
+ "field.destination": "destination",
42
13
  "field.harvest_date": "harvest date",
43
14
  "field.harvesting_round": "harvesting round",
15
+ "field.has_sub_block": "has sub block",
44
16
  "field.loading_date": "loading date",
17
+ "field.main_block_ref": "main block ref",
18
+ "field.matured_hectarage": "matured hectarage",
19
+ "field.mill": "mill",
45
20
  "field.month": "month",
21
+ "field.percents": "percents",
22
+ "field.prev_bunch_bal_in_field": "prev bunch balance in field",
46
23
  "field.remarks": "remarks",
24
+ "field.size": "size",
47
25
  "field.status": "status",
48
26
  "field.task_no": "task no",
49
- "field.total_no_of_bunches": "total no of bunches",
50
- "field.total_harvested": "total harvested",
51
27
  "field.total_bunch": "total bunch",
52
- "field.total_weight": "total weight",
53
- "field.total_weight_loaded": "total weight loaded",
54
- "field.trip": "trip",
55
- "field.main_block_ref": "main block ref",
56
- "field.matured_hectarage": "matured hectarage",
57
- "field.prev_bunch_bal_in_field": "prev bunch balance in field",
28
+ "field.total_harvested": "total harvested",
58
29
  "field.total_hectarage": "total hectarage",
59
- "field.size": "size",
30
+ "field.total_no_of_bunches": "total no of bunches",
60
31
  "field.total_stand": "total stand",
32
+ "field.total_tonnage": "total tonnage",
33
+ "field.total_weight_loaded": "total weight loaded",
34
+ "field.total_weight": "total weight",
35
+ "field.trip": "trip",
36
+ "field.total_tonnage_estimated": "total tonnage (estimated)",
61
37
  "field.type": "type",
62
38
  "field.valid_from": "valid from",
63
39
  "field.year_planted": "year planted",
40
+ "label.allow tracked inventory": "allow tracked inventory",
64
41
  "label.block": "block",
42
+ "label.chit_no": "chit no",
43
+ "label.collected_bunch": "collected bunch",
44
+ "label.contractor": "kontraktor",
65
45
  "label.coverage": "coverage",
66
- "label.harvest_date": "harvest date",
46
+ "label.date": "date",
67
47
  "label.harvesting_round": "harvesting round",
68
48
  "label.loading_date": "loading date",
49
+ "label.owner": "owner",
50
+ "label.oer_percentage": "OER percentage",
69
51
  "label.please_select_a_block": "please select a block",
70
52
  "label.rainfall": "rainfall",
71
53
  "label.total_bunch_harvested": "total bunch harvested",
72
- "label.total_task_covered": "total task covered",
73
54
  "label.total_bunch_in_field": "total bunch in field",
74
- "button.edit": "edit"
75
- }
55
+ "label.total_task_covered": "total task covered",
56
+ "label.total_tonnage": "total tonnage",
57
+ "label.yesterday_balance_bunch": "yesterday balance bunch",
58
+ "text.code-management": "[ms] code management",
59
+ "text.create_harvesting_record": "create harvesting record",
60
+ "text.create_loading_record": "create loading record",
61
+ "text.destination_is_not_selected": "destination is not selected",
62
+ "text.empty_value_in_list": "empty value in record list",
63
+ "text.harvesting_record_created": "harvesting record created",
64
+ "text.harvesting_record_invalid": "harvesting record invalid",
65
+ "text.loading_record_created": "loading record created",
66
+ "text.loading_record_invalid": "loading record invalid",
67
+ "text.no_records": "no records",
68
+ "text.invalid_percentage_value": "invalid percentage value",
69
+ "text.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
70
+ "text.total_bunch_weight_should_be_positive": "total bunch weight should be positive",
71
+ "text.total_bunches_loaded_should_be_positive": "total bunches loaded should be positive",
72
+ "text.total_no_of_bunches_should_be_positive": "total no of bunches should be positive",
73
+ "text.total_tonnage_harvested_should_be_positive": "total tonnage harvested should be positive",
74
+ "text.tracked_inventory_setting": "tracked inventory setting",
75
+ "text.x_has_invalid_value": "{x} has invalid value",
76
+ "text.x_should_be_positive": "{x} should be positive",
77
+ "text.you_wont_be_able_to_revert_this": "you wont be able to revert this",
78
+ "title.are_you_sure": "adakah anda pasti",
79
+ "title.block_details": "butiran blok",
80
+ "title.block": "blok",
81
+ "title.company": "syarikat",
82
+ "title.create_harvesting_record": "create harvesting record",
83
+ "title.create_loading_record": "create loading record",
84
+ "title.daily_ffb_dispatch_and_production": "daily FFB dispatch and production",
85
+ "title.daily_loading_record": "daily loading record",
86
+ "title.daily_production_report": "daily production report",
87
+ "title.global_plantation_setting": "[ms] global plantation setting",
88
+ "title.harvest_data": "harvest data",
89
+ "title.harvest_list": "harvesting list",
90
+ "title.harvest_no": "harvest no",
91
+ "title.harvesting_contractors_daily_harvesting_record": "harvesting contractor's daily harvesting record",
92
+ "title.harvesting_record_detail": "harvesting record detail",
93
+ "title.import": "import",
94
+ "title.loading_data": "loading data",
95
+ "title.loading_list": "loading list",
96
+ "title.loading_no": "loading no",
97
+ "title.loading_record_detail": "loading record detail",
98
+ "title.monthly_block_dispatch_report": "monthly block dispatch report",
99
+ "title.monthly_ffb_sale_report": "monthly FFB sale report",
100
+ "title.overall_record": "overall record",
101
+ "title.plantation_setting": "plantation setting",
102
+ "title.ramp": "ramp",
103
+ "title.select_destination": "select destination",
104
+ "title.staff": "staff"
105
+ }