@things-factory/operato-pms 3.7.5 → 3.8.13
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.
- package/client/bootstrap.js +20 -7
- package/client/component/block-selector-popup.js +125 -24
- package/client/component/driver-selector-popup.js +223 -0
- package/client/component/mill-selector-popup.js +200 -0
- package/client/component/tracked-plantation-setting.js +113 -0
- package/client/component/truck-selector-popup.js +202 -0
- package/client/menu.js +34 -2
- package/client/pages/constants/index.js +1 -0
- package/client/pages/constants/organization.js +5 -0
- package/client/pages/dispatchment/daily-dispatch-detail.js +57 -18
- package/client/pages/dispatchment/dispatchment-create-record.js +140 -13
- package/client/pages/dispatchment/dispatchment-list.js +26 -34
- package/client/pages/harvesting/daily-harvesting-detail.js +55 -18
- package/client/pages/harvesting/edit-harvesting-record.js +89 -23
- package/client/pages/harvesting/harvesting-create-record.js +102 -16
- package/client/pages/harvesting/harvesting-list.js +58 -12
- package/client/pages/inventory/inventory-field-bunches.js +6 -4
- package/client/pages/loading/daily-loading-detail.js +47 -93
- package/client/pages/loading/edit-loading-record.js +75 -294
- package/client/pages/loading/loading-create-record.js +52 -329
- package/client/pages/loading/loading-list.js +20 -83
- package/client/pages/master/block.js +1 -0
- package/client/pages/master/company.js +26 -13
- package/client/pages/master/home.js +67 -65
- package/client/pages/master/ramp.js +1 -0
- package/client/pages/master/staff.js +54 -3
- package/client/pages/master/truck.js +416 -0
- package/client/pages/report/home.js +72 -65
- package/client/pages/report/report-daily-ffb-dispatch-and-production.js +393 -0
- package/client/pages/report/report-daily-production.js +38 -6
- package/client/pages/report/report-daily-staff-harvest.js +50 -5
- package/client/pages/report/report-ffb-tonnage-between-individual-block.js +393 -0
- package/client/pages/report/report-monthly-ffb-sale.js +413 -0
- package/client/pages/report/report-monthly-production.js +33 -4
- package/client/pages/report/report-yearly-production.js +24 -8
- package/client/pages/setting/home.js +107 -0
- package/client/pages/setting/plantation-setting.js +109 -0
- package/client/route.js +25 -0
- package/dist-server/constants/index.js +1 -0
- package/dist-server/constants/index.js.map +1 -1
- package/dist-server/constants/organization.js +9 -0
- package/dist-server/constants/organization.js.map +1 -0
- package/dist-server/controllers/render-dispatchment.js +1 -1
- package/dist-server/controllers/render-dispatchment.js.map +1 -1
- package/dist-server/entities/daily-dispatch.js +19 -4
- package/dist-server/entities/daily-dispatch.js.map +1 -1
- package/dist-server/entities/daily-harvest-detail.js +9 -11
- package/dist-server/entities/daily-harvest-detail.js.map +1 -1
- package/dist-server/entities/daily-harvest.js +16 -6
- package/dist-server/entities/daily-harvest.js.map +1 -1
- package/dist-server/entities/daily-loading-detail.js +14 -6
- package/dist-server/entities/daily-loading-detail.js.map +1 -1
- package/dist-server/entities/daily-loading.js +3 -11
- package/dist-server/entities/daily-loading.js.map +1 -1
- package/dist-server/entities/index.js +7 -1
- package/dist-server/entities/index.js.map +1 -1
- package/dist-server/entities/organization-staff.js +5 -1
- package/dist-server/entities/organization-staff.js.map +1 -1
- package/dist-server/entities/plantation-inventory.js +4 -10
- package/dist-server/entities/plantation-inventory.js.map +1 -1
- package/dist-server/entities/plantation-setting.js +76 -0
- package/dist-server/entities/plantation-setting.js.map +1 -0
- package/dist-server/entities/truck.js +77 -0
- package/dist-server/entities/truck.js.map +1 -0
- package/dist-server/graphql/resolvers/daily-dispatch/daily-dispatch-query.js +13 -2
- package/dist-server/graphql/resolvers/daily-dispatch/daily-dispatch-query.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-dispatch/generate-daily-dispatch.js +25 -11
- package/dist-server/graphql/resolvers/daily-dispatch/generate-daily-dispatch.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-dispatch/update-daily-dispatch.js +3 -2
- package/dist-server/graphql/resolvers/daily-dispatch/update-daily-dispatch.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-harvest/daily-harvest-query.js +3 -1
- package/dist-server/graphql/resolvers/daily-harvest/daily-harvest-query.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-harvest/generate-daily-harvest.js +21 -2
- package/dist-server/graphql/resolvers/daily-harvest/generate-daily-harvest.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-harvest/update-daily-harvest.js +8 -2
- package/dist-server/graphql/resolvers/daily-harvest/update-daily-harvest.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-loading/daily-loading-query.js +4 -6
- package/dist-server/graphql/resolvers/daily-loading/daily-loading-query.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-loading/generate-daily-loading.js +20 -54
- package/dist-server/graphql/resolvers/daily-loading/generate-daily-loading.js.map +1 -1
- package/dist-server/graphql/resolvers/daily-loading/update-daily-loading.js +17 -105
- package/dist-server/graphql/resolvers/daily-loading/update-daily-loading.js.map +1 -1
- package/dist-server/graphql/resolvers/dashboard/dashboard-query.js +82 -0
- package/dist-server/graphql/resolvers/dashboard/dashboard-query.js.map +1 -0
- package/dist-server/graphql/resolvers/dashboard/index.js +8 -0
- package/dist-server/graphql/resolvers/dashboard/index.js.map +1 -0
- package/dist-server/graphql/resolvers/index.js +9 -6
- package/dist-server/graphql/resolvers/index.js.map +1 -1
- package/dist-server/graphql/resolvers/organization-staff/organization-staff-query.js +7 -3
- package/dist-server/graphql/resolvers/organization-staff/organization-staff-query.js.map +1 -1
- package/dist-server/graphql/resolvers/plantation-setting/create-plantation-setting.js +12 -0
- package/dist-server/graphql/resolvers/plantation-setting/create-plantation-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-setting.js +13 -0
- package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-settings.js +16 -0
- package/dist-server/graphql/resolvers/plantation-setting/delete-plantation-settings.js.map +1 -0
- package/dist-server/graphql/resolvers/plantation-setting/index.js +15 -0
- package/dist-server/graphql/resolvers/plantation-setting/index.js.map +1 -0
- package/dist-server/graphql/resolvers/plantation-setting/plantation-setting-query.js +33 -0
- package/dist-server/graphql/resolvers/plantation-setting/plantation-setting-query.js.map +1 -0
- package/dist-server/graphql/resolvers/plantation-setting/update-multiple-plantation-setting.js +31 -0
- package/dist-server/graphql/resolvers/plantation-setting/update-multiple-plantation-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/plantation-setting/update-plantation-setting.js +16 -0
- package/dist-server/graphql/resolvers/plantation-setting/update-plantation-setting.js.map +1 -0
- package/dist-server/graphql/resolvers/report/daily-production-reports.js +46 -33
- package/dist-server/graphql/resolvers/report/daily-production-reports.js.map +1 -1
- package/dist-server/graphql/resolvers/report/daily-staff-harvest-reports.js +21 -10
- package/dist-server/graphql/resolvers/report/daily-staff-harvest-reports.js.map +1 -1
- package/dist-server/graphql/resolvers/report/index.js +4 -1
- package/dist-server/graphql/resolvers/report/index.js.map +1 -1
- package/dist-server/graphql/resolvers/report/monthly-block-dispatch-reports.js +89 -0
- package/dist-server/graphql/resolvers/report/monthly-block-dispatch-reports.js.map +1 -0
- package/dist-server/graphql/resolvers/report/monthly-dispatch-summary-reports.js +89 -0
- package/dist-server/graphql/resolvers/report/monthly-dispatch-summary-reports.js.map +1 -0
- package/dist-server/graphql/resolvers/report/monthly-ffb-sale-reports.js +87 -0
- package/dist-server/graphql/resolvers/report/monthly-ffb-sale-reports.js.map +1 -0
- package/dist-server/graphql/resolvers/report/monthly-production-reports.js +46 -31
- package/dist-server/graphql/resolvers/report/monthly-production-reports.js.map +1 -1
- package/dist-server/graphql/resolvers/report/yearly-production-reports.js +38 -28
- package/dist-server/graphql/resolvers/report/yearly-production-reports.js.map +1 -1
- package/dist-server/graphql/resolvers/truck/delete-trucks.js +18 -0
- package/dist-server/graphql/resolvers/truck/delete-trucks.js.map +1 -0
- package/dist-server/graphql/resolvers/truck/index.js +12 -0
- package/dist-server/graphql/resolvers/truck/index.js.map +1 -0
- package/dist-server/graphql/resolvers/truck/truck-query.js +46 -0
- package/dist-server/graphql/resolvers/truck/truck-query.js.map +1 -0
- package/dist-server/graphql/resolvers/truck/update-multiple-truck.js +40 -0
- package/dist-server/graphql/resolvers/truck/update-multiple-truck.js.map +1 -0
- package/dist-server/graphql/types/daily-dispatch/daily-dispatch-patch.js +4 -1
- package/dist-server/graphql/types/daily-dispatch/daily-dispatch-patch.js.map +1 -1
- package/dist-server/graphql/types/daily-dispatch/daily-dispatch.js +4 -1
- package/dist-server/graphql/types/daily-dispatch/daily-dispatch.js.map +1 -1
- package/dist-server/graphql/types/daily-dispatch/index.js +6 -1
- package/dist-server/graphql/types/daily-dispatch/index.js.map +1 -1
- package/dist-server/graphql/types/daily-dispatch/new-daily-dispatch.js +4 -1
- package/dist-server/graphql/types/daily-dispatch/new-daily-dispatch.js.map +1 -1
- package/dist-server/graphql/types/daily-harvest/daily-harvest-patch.js +5 -2
- package/dist-server/graphql/types/daily-harvest/daily-harvest-patch.js.map +1 -1
- package/dist-server/graphql/types/daily-harvest/daily-harvest.js +3 -0
- package/dist-server/graphql/types/daily-harvest/daily-harvest.js.map +1 -1
- package/dist-server/graphql/types/daily-harvest/new-daily-harvest.js +4 -1
- package/dist-server/graphql/types/daily-harvest/new-daily-harvest.js.map +1 -1
- package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail-patch.js +1 -0
- package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail-patch.js.map +1 -1
- package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail.js +1 -0
- package/dist-server/graphql/types/daily-harvest-detail/daily-harvest-detail.js.map +1 -1
- package/dist-server/graphql/types/daily-harvest-detail/new-daily-harvest-detail.js +1 -0
- package/dist-server/graphql/types/daily-harvest-detail/new-daily-harvest-detail.js.map +1 -1
- package/dist-server/graphql/types/daily-loading/daily-loading-patch.js +0 -2
- package/dist-server/graphql/types/daily-loading/daily-loading-patch.js.map +1 -1
- package/dist-server/graphql/types/daily-loading/daily-loading.js +0 -2
- package/dist-server/graphql/types/daily-loading/daily-loading.js.map +1 -1
- package/dist-server/graphql/types/daily-loading/new-daily-loading.js +0 -2
- package/dist-server/graphql/types/daily-loading/new-daily-loading.js.map +1 -1
- package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail-patch.js +6 -3
- package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail-patch.js.map +1 -1
- package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail.js +3 -0
- package/dist-server/graphql/types/daily-loading-detail/daily-loading-detail.js.map +1 -1
- package/dist-server/graphql/types/daily-loading-detail/new-daily-loading-detail.js +6 -3
- package/dist-server/graphql/types/daily-loading-detail/new-daily-loading-detail.js.map +1 -1
- package/dist-server/graphql/types/dashboard/bunches-count.js +15 -0
- package/dist-server/graphql/types/dashboard/bunches-count.js.map +1 -0
- package/dist-server/graphql/types/dashboard/index.js +32 -0
- package/dist-server/graphql/types/dashboard/index.js.map +1 -0
- package/dist-server/graphql/types/dashboard/productions-overview.js +15 -0
- package/dist-server/graphql/types/dashboard/productions-overview.js.map +1 -0
- package/dist-server/graphql/types/dashboard/tonnage-bunches-inventories.js +14 -0
- package/dist-server/graphql/types/dashboard/tonnage-bunches-inventories.js.map +1 -0
- package/dist-server/graphql/types/dashboard/tonnage-production.js +17 -0
- package/dist-server/graphql/types/dashboard/tonnage-production.js.map +1 -0
- package/dist-server/graphql/types/dashboard/yield-production.js +17 -0
- package/dist-server/graphql/types/dashboard/yield-production.js.map +1 -0
- package/dist-server/graphql/types/index.js +9 -6
- package/dist-server/graphql/types/index.js.map +1 -1
- package/dist-server/graphql/types/organization-staff/organization-staff-patch.js +2 -0
- package/dist-server/graphql/types/organization-staff/organization-staff-patch.js.map +1 -1
- package/dist-server/graphql/types/organization-staff/organization-staff.js +3 -0
- package/dist-server/graphql/types/organization-staff/organization-staff.js.map +1 -1
- package/dist-server/graphql/types/plantation-setting/index.js +36 -0
- package/dist-server/graphql/types/plantation-setting/index.js.map +1 -0
- package/dist-server/graphql/types/plantation-setting/new-plantation-setting.js +16 -0
- package/dist-server/graphql/types/plantation-setting/new-plantation-setting.js.map +1 -0
- package/dist-server/graphql/types/plantation-setting/plantation-setting-list.js +14 -0
- package/dist-server/graphql/types/plantation-setting/plantation-setting-list.js.map +1 -0
- package/dist-server/graphql/types/plantation-setting/plantation-setting-patch.js +18 -0
- package/dist-server/graphql/types/plantation-setting/plantation-setting-patch.js.map +1 -0
- package/dist-server/graphql/types/plantation-setting/plantation-setting.js +22 -0
- package/dist-server/graphql/types/plantation-setting/plantation-setting.js.map +1 -0
- package/dist-server/graphql/types/report/index.js +20 -0
- package/dist-server/graphql/types/report/index.js.map +1 -1
- package/dist-server/graphql/types/report/monthly-block-dispatch-report-list.js +14 -0
- package/dist-server/graphql/types/report/monthly-block-dispatch-report-list.js.map +1 -0
- package/dist-server/graphql/types/report/monthly-block-dispatch-report.js +19 -0
- package/dist-server/graphql/types/report/monthly-block-dispatch-report.js.map +1 -0
- package/dist-server/graphql/types/report/monthly-dispatch-summary-report-list.js +14 -0
- package/dist-server/graphql/types/report/monthly-dispatch-summary-report-list.js.map +1 -0
- package/dist-server/graphql/types/report/monthly-dispatch-summary-report.js +25 -0
- package/dist-server/graphql/types/report/monthly-dispatch-summary-report.js.map +1 -0
- package/dist-server/graphql/types/report/monthly-ffb-sale-report-list.js +14 -0
- package/dist-server/graphql/types/report/monthly-ffb-sale-report-list.js.map +1 -0
- package/dist-server/graphql/types/report/monthly-ffb-sale-report.js +24 -0
- package/dist-server/graphql/types/report/monthly-ffb-sale-report.js.map +1 -0
- package/dist-server/graphql/types/truck/index.js +33 -0
- package/dist-server/graphql/types/truck/index.js.map +1 -0
- package/dist-server/graphql/types/truck/new-truck.js +14 -0
- package/dist-server/graphql/types/truck/new-truck.js.map +1 -0
- package/dist-server/graphql/types/truck/truck-list.js +14 -0
- package/dist-server/graphql/types/truck/truck-list.js.map +1 -0
- package/dist-server/graphql/types/truck/truck-patch.js +17 -0
- package/dist-server/graphql/types/truck/truck-patch.js.map +1 -0
- package/dist-server/graphql/types/truck/truck.js +22 -0
- package/dist-server/graphql/types/truck/truck.js.map +1 -0
- package/package.json +29 -29
- package/server/constants/index.ts +1 -0
- package/server/constants/organization.ts +5 -0
- package/server/controllers/render-dispatchment.ts +1 -1
- package/server/entities/daily-dispatch.ts +21 -5
- package/server/entities/daily-harvest-detail.ts +10 -11
- package/server/entities/daily-harvest.ts +16 -7
- package/server/entities/daily-loading-detail.ts +14 -6
- package/server/entities/daily-loading.ts +7 -11
- package/server/entities/index.ts +6 -0
- package/server/entities/organization-staff.ts +6 -1
- package/server/entities/plantation-inventory.ts +6 -10
- package/server/entities/plantation-setting.ts +60 -0
- package/server/entities/truck.ts +58 -0
- package/server/graphql/resolvers/daily-dispatch/daily-dispatch-query.ts +15 -2
- package/server/graphql/resolvers/daily-dispatch/generate-daily-dispatch.ts +40 -14
- package/server/graphql/resolvers/daily-dispatch/update-daily-dispatch.ts +6 -2
- package/server/graphql/resolvers/daily-harvest/daily-harvest-query.ts +7 -2
- package/server/graphql/resolvers/daily-harvest/generate-daily-harvest.ts +50 -4
- package/server/graphql/resolvers/daily-harvest/update-daily-harvest.ts +12 -2
- package/server/graphql/resolvers/daily-loading/daily-loading-query.ts +6 -6
- package/server/graphql/resolvers/daily-loading/generate-daily-loading.ts +27 -109
- package/server/graphql/resolvers/daily-loading/update-daily-loading.ts +27 -213
- package/server/graphql/resolvers/dashboard/dashboard-query.ts +96 -0
- package/server/graphql/resolvers/dashboard/index.ts +5 -0
- package/server/graphql/resolvers/index.ts +10 -6
- package/server/graphql/resolvers/organization-staff/organization-staff-query.ts +13 -4
- package/server/graphql/resolvers/plantation-setting/create-plantation-setting.ts +16 -0
- package/server/graphql/resolvers/plantation-setting/delete-plantation-setting.ts +13 -0
- package/server/graphql/resolvers/plantation-setting/delete-plantation-settings.ts +16 -0
- package/server/graphql/resolvers/plantation-setting/index.ts +19 -0
- package/server/graphql/resolvers/plantation-setting/plantation-setting-query.ts +38 -0
- package/server/graphql/resolvers/plantation-setting/update-multiple-plantation-setting.ts +46 -0
- package/server/graphql/resolvers/plantation-setting/update-plantation-setting.ts +19 -0
- package/server/graphql/resolvers/report/daily-production-reports.ts +55 -44
- package/server/graphql/resolvers/report/daily-staff-harvest-reports.ts +28 -20
- package/server/graphql/resolvers/report/index.ts +7 -1
- package/server/graphql/resolvers/report/monthly-block-dispatch-reports.ts +112 -0
- package/server/graphql/resolvers/report/monthly-dispatch-summary-reports.ts +110 -0
- package/server/graphql/resolvers/report/monthly-ffb-sale-reports.ts +107 -0
- package/server/graphql/resolvers/report/monthly-production-reports.ts +54 -40
- package/server/graphql/resolvers/report/yearly-production-reports.ts +43 -38
- package/server/graphql/resolvers/truck/delete-trucks.ts +21 -0
- package/server/graphql/resolvers/truck/index.ts +12 -0
- package/server/graphql/resolvers/truck/truck-query.ts +52 -0
- package/server/graphql/resolvers/truck/update-multiple-truck.ts +55 -0
- package/server/graphql/types/daily-dispatch/daily-dispatch-patch.ts +4 -1
- package/server/graphql/types/daily-dispatch/daily-dispatch.ts +4 -1
- package/server/graphql/types/daily-dispatch/index.ts +6 -1
- package/server/graphql/types/daily-dispatch/new-daily-dispatch.ts +4 -1
- package/server/graphql/types/daily-harvest/daily-harvest-patch.ts +5 -2
- package/server/graphql/types/daily-harvest/daily-harvest.ts +3 -0
- package/server/graphql/types/daily-harvest/new-daily-harvest.ts +4 -1
- package/server/graphql/types/daily-harvest-detail/daily-harvest-detail-patch.ts +1 -0
- package/server/graphql/types/daily-harvest-detail/daily-harvest-detail.ts +1 -0
- package/server/graphql/types/daily-harvest-detail/new-daily-harvest-detail.ts +1 -0
- package/server/graphql/types/daily-loading/daily-loading-patch.ts +0 -2
- package/server/graphql/types/daily-loading/daily-loading.ts +0 -2
- package/server/graphql/types/daily-loading/new-daily-loading.ts +0 -2
- package/server/graphql/types/daily-loading-detail/daily-loading-detail-patch.ts +6 -3
- package/server/graphql/types/daily-loading-detail/daily-loading-detail.ts +3 -0
- package/server/graphql/types/daily-loading-detail/new-daily-loading-detail.ts +6 -3
- package/server/graphql/types/dashboard/bunches-count.ts +9 -0
- package/server/graphql/types/dashboard/index.ts +17 -0
- package/server/graphql/types/dashboard/productions-overview.ts +9 -0
- package/server/graphql/types/dashboard/tonnage-bunches-inventories.ts +8 -0
- package/server/graphql/types/dashboard/tonnage-production.ts +11 -0
- package/server/graphql/types/dashboard/yield-production.ts +11 -0
- package/server/graphql/types/index.ts +10 -6
- package/server/graphql/types/organization-staff/organization-staff-patch.ts +2 -0
- package/server/graphql/types/organization-staff/organization-staff.ts +3 -0
- package/server/graphql/types/plantation-setting/index.ts +21 -0
- package/server/graphql/types/plantation-setting/new-plantation-setting.ts +10 -0
- package/server/graphql/types/plantation-setting/plantation-setting-list.ts +8 -0
- package/server/graphql/types/plantation-setting/plantation-setting-patch.ts +12 -0
- package/server/graphql/types/plantation-setting/plantation-setting.ts +16 -0
- package/server/graphql/types/report/index.ts +20 -0
- package/server/graphql/types/report/monthly-block-dispatch-report-list.ts +7 -0
- package/server/graphql/types/report/monthly-block-dispatch-report.ts +13 -0
- package/server/graphql/types/report/monthly-dispatch-summary-report-list.ts +7 -0
- package/server/graphql/types/report/monthly-dispatch-summary-report.ts +19 -0
- package/server/graphql/types/report/monthly-ffb-sale-report-list.ts +7 -0
- package/server/graphql/types/report/monthly-ffb-sale-report.ts +18 -0
- package/server/graphql/types/truck/index.ts +18 -0
- package/server/graphql/types/truck/new-truck.ts +8 -0
- package/server/graphql/types/truck/truck-list.ts +8 -0
- package/server/graphql/types/truck/truck-patch.ts +11 -0
- package/server/graphql/types/truck/truck.ts +16 -0
- package/things-factory.config.js +27 -1
- package/translations/en.json +78 -16
- package/translations/ko.json +77 -48
- package/translations/ms.json +74 -45
- package/translations/zh.json +77 -48
package/translations/en.json
CHANGED
|
@@ -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",
|
|
10
11
|
"field.balance_bunch": "balance bunch",
|
|
12
|
+
"field.balance_bunch_in_field": "balance bunch in field",
|
|
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_harvested": "total tonnage harvested",
|
|
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.
|
|
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.percentage": "percentage",
|
|
108
142
|
"label.please_select_a_block": "please select a block",
|
|
109
143
|
"label.rainfall": "rainfall",
|
|
144
|
+
"label.total_bunch": "total bunch",
|
|
110
145
|
"label.total_bunch_harvested": "total bunch harvested",
|
|
111
146
|
"label.total_bunch_in_field": "total bunch in field",
|
|
112
147
|
"label.total_bunch_loaded": "total bunch loaded",
|
|
148
|
+
"label.total_number_of_bunches": "total no. of bunches",
|
|
113
149
|
"label.total_task_covered": "total task covered",
|
|
150
|
+
"label.total_tonnage": "total tonnage",
|
|
114
151
|
"label.total_tonnage_loaded": "total tonnage loaded",
|
|
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",
|
|
124
166
|
"text.dispatch_record_created": "dispatch record created",
|
|
125
167
|
"text.dispatch_record_invalid": "dispatch record invalid",
|
|
126
|
-
"text.dispatchment_record_has_been_updated": "dispatchment record has been updated",
|
|
127
168
|
"text.dispatchment_record_has_been_deleted": "dispatchment record has been deleted",
|
|
169
|
+
"text.dispatchment_record_has_been_updated": "dispatchment record has been updated",
|
|
170
|
+
"text.driver_is_not_selected": "driver not selected",
|
|
171
|
+
"text.empty_value_in_dispatchment_data": "empty value in dispatchment data",
|
|
128
172
|
"text.empty_value_in_list": "empty value in record list",
|
|
129
173
|
"text.empty_value_in_loading_data": "empty value in loading data",
|
|
130
|
-
"text.empty_value_in_dispatchment_data": "empty value in dispatchment data",
|
|
131
174
|
"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
175
|
"text.harvest_record_has_been_deleted": "harvest record has been deleted",
|
|
135
176
|
"text.harvesting_record_created": "harvesting record created",
|
|
136
177
|
"text.harvesting_record_invalid": "harvesting record invalid",
|
|
137
178
|
"text.harvesting_record_updated": "harvesting record updated",
|
|
138
179
|
"text.insufficient_bunches_to_be_loaded": "insufficient bunches to be loaded",
|
|
139
180
|
"text.insufficient_weight_to_be_allocated_into_ramp": "insufficient weight to be allocated into ramp",
|
|
140
|
-
"text.invalid_tonnage_input": "invalid tonnage input",
|
|
141
181
|
"text.invalid_adjustment_value": "invalid adjustment value",
|
|
182
|
+
"text.invalid_tonnage_input": "invalid tonnage input",
|
|
183
|
+
"text.invalid_percentage_value": "invalid percentage value",
|
|
142
184
|
"text.kindly_select_a_block_first": "kindly select a block first",
|
|
143
185
|
"text.loading_record_created": "loading record created",
|
|
144
186
|
"text.loading_record_has_been_deleted": "loading record has been deleted",
|
|
145
187
|
"text.loading_record_invalid": "loading record invalid",
|
|
146
188
|
"text.loading_record_updated": "loading record updated",
|
|
147
|
-
"text.
|
|
148
|
-
"text.no_records_in_loading_list": "no records in loading list",
|
|
189
|
+
"text.destination_is_not_selected": "destination is not selected",
|
|
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.
|
|
158
|
-
"text.
|
|
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,24 @@
|
|
|
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",
|
|
174
221
|
"title.daily_loading_record": "daily loading record",
|
|
175
222
|
"title.daily_production_report": "daily production report",
|
|
176
223
|
"title.daily_staff_harvest": "daily staff harvest",
|
|
177
|
-
"title.dispatchment_no": "dispatchment no",
|
|
178
224
|
"title.dispatchment_from_ramp": "dispatchment from ramp",
|
|
179
225
|
"title.dispatchment_information": "dispatchment information",
|
|
180
226
|
"title.dispatchment_list": "dispatchment list",
|
|
227
|
+
"title.dispatchment_no": "dispatchment no",
|
|
181
228
|
"title.dispatchment_record_detail": "dispatchment record detail",
|
|
182
229
|
"title.edit_dispatchment_record": "edit dispatchment record",
|
|
183
230
|
"title.edit_harvesting_record": "edit harvesting record",
|
|
184
231
|
"title.edit_loading_record": "edit loading record",
|
|
232
|
+
"title.ffb_tonnage_between_individual_block": "ffb tonnage between individual block",
|
|
233
|
+
"title.field_loading_contractor_daily_loading_record": "field loading contractor's daily loading record",
|
|
234
|
+
"title.global_plantation_setting": "global plantation setting",
|
|
185
235
|
"title.harvest_data": "harvest data",
|
|
186
236
|
"title.harvest_list": "harvesting list",
|
|
187
237
|
"title.harvest_no": "harvest no",
|
|
238
|
+
"title.harvesting_contractors_daily_harvesting_record": "harvesting contractor's daily harvesting record",
|
|
188
239
|
"title.harvesting_record_detail": "harvesting record detail",
|
|
189
240
|
"title.import": "import",
|
|
190
241
|
"title.loading_data": "loading data",
|
|
@@ -192,12 +243,23 @@
|
|
|
192
243
|
"title.loading_no": "loading no",
|
|
193
244
|
"title.loading_record_detail": "loading record detail",
|
|
194
245
|
"title.loading_summary": "loading summary",
|
|
246
|
+
"title.main_block": "main block",
|
|
247
|
+
"title.monthly_block_dispatch_report": "monthly block dispatch report",
|
|
248
|
+
"title.monthly_block_report": "monthly block report",
|
|
249
|
+
"title.monthly_ffb_sale_report": "monthly FFB sale report",
|
|
195
250
|
"title.monthly_production_report": "monthly production report",
|
|
196
251
|
"title.overall_record": "overall record",
|
|
252
|
+
"title.plantation_setting": "plantation setting",
|
|
197
253
|
"title.ramp_loading_data": "ramp loading data",
|
|
198
254
|
"title.ramp": "ramp",
|
|
199
255
|
"title.select_block": "select block",
|
|
256
|
+
"title.select_destination": "select destination",
|
|
257
|
+
"title.select_driver": "select driver",
|
|
258
|
+
"title.select_lorry": "select lorry",
|
|
200
259
|
"title.staff": "staff",
|
|
260
|
+
"title.sub_block": "sub block",
|
|
261
|
+
"title.summary": "summary",
|
|
201
262
|
"title.tonnage_in_ramp": "tonnage in ramp",
|
|
263
|
+
"title.truck": "truck",
|
|
202
264
|
"title.yearly_production_report": "yearly production report"
|
|
203
|
-
}
|
|
265
|
+
}
|
package/translations/ko.json
CHANGED
|
@@ -1,75 +1,104 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
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.
|
|
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.
|
|
53
|
-
"field.
|
|
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_tonnage": "total tonnage",
|
|
29
|
+
"field.total_harvested": "total harvested",
|
|
58
30
|
"field.total_hectarage": "total hectarage",
|
|
59
|
-
"field.
|
|
31
|
+
"field.total_no_of_bunches": "total no of bunches",
|
|
60
32
|
"field.total_stand": "total stand",
|
|
33
|
+
"field.total_tonnage_harvested": "total tonnage harvested",
|
|
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.
|
|
46
|
+
"label.date": "date",
|
|
67
47
|
"label.harvesting_round": "harvesting round",
|
|
68
48
|
"label.loading_date": "loading date",
|
|
49
|
+
"label.owner": "owner",
|
|
50
|
+
"label.percentage": "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
|
-
"
|
|
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.empty_value_in_list": "empty value in record list",
|
|
62
|
+
"text.harvesting_record_created": "harvesting record created",
|
|
63
|
+
"text.harvesting_record_invalid": "harvesting record invalid",
|
|
64
|
+
"text.loading_record_created": "loading record created",
|
|
65
|
+
"text.loading_record_invalid": "loading record invalid",
|
|
66
|
+
"text.destination_is_not_selected": "destination is not selected",
|
|
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_loading_record": "daily loading record",
|
|
85
|
+
"title.daily_production_report": "daily production report",
|
|
86
|
+
"title.global_plantation_setting": "[ko] global plantation setting",
|
|
87
|
+
"title.harvest_data": "harvest data",
|
|
88
|
+
"title.harvest_list": "harvesting list",
|
|
89
|
+
"title.harvest_no": "harvest no",
|
|
90
|
+
"title.harvesting_contractors_daily_harvesting_record": "harvesting contractor's daily harvesting record",
|
|
91
|
+
"title.harvesting_record_detail": "harvesting record detail",
|
|
92
|
+
"title.import": "import",
|
|
93
|
+
"title.loading_data": "loading data",
|
|
94
|
+
"title.loading_list": "loading list",
|
|
95
|
+
"title.loading_no": "loading no",
|
|
96
|
+
"title.loading_record_detail": "loading record detail",
|
|
97
|
+
"title.monthly_block_dispatch_report": "monthly block dispatch report",
|
|
98
|
+
"title.monthly_ffb_sale_report": "monthly FFB sale report",
|
|
99
|
+
"title.overall_record": "overall record",
|
|
100
|
+
"title.plantation_setting": "plantation setting",
|
|
101
|
+
"title.ramp": "ramp",
|
|
102
|
+
"title.staff": "staff",
|
|
103
|
+
"title.select_destination": "select destination"
|
|
104
|
+
}
|
package/translations/ms.json
CHANGED
|
@@ -1,75 +1,104 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
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.
|
|
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",
|
|
28
|
+
"field.total_tonnage": "total tonnage",
|
|
52
29
|
"field.total_weight": "total weight",
|
|
53
30
|
"field.total_weight_loaded": "total weight loaded",
|
|
54
31
|
"field.trip": "trip",
|
|
55
|
-
"field.
|
|
56
|
-
"field.matured_hectarage": "matured hectarage",
|
|
57
|
-
"field.prev_bunch_bal_in_field": "prev bunch balance in field",
|
|
32
|
+
"field.total_harvested": "total harvested",
|
|
58
33
|
"field.total_hectarage": "total hectarage",
|
|
59
|
-
"field.
|
|
34
|
+
"field.total_no_of_bunches": "total no of bunches",
|
|
60
35
|
"field.total_stand": "total stand",
|
|
36
|
+
"field.total_tonnage_harvested": "total tonnage harvested",
|
|
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.
|
|
46
|
+
"label.date": "date",
|
|
67
47
|
"label.harvesting_round": "harvesting round",
|
|
68
48
|
"label.loading_date": "loading date",
|
|
49
|
+
"label.owner": "owner",
|
|
50
|
+
"label.percentage": "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
|
-
"
|
|
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.empty_value_in_list": "empty value in record list",
|
|
62
|
+
"text.harvesting_record_created": "harvesting record created",
|
|
63
|
+
"text.harvesting_record_invalid": "harvesting record invalid",
|
|
64
|
+
"text.loading_record_created": "loading record created",
|
|
65
|
+
"text.loading_record_invalid": "loading record invalid",
|
|
66
|
+
"text.destination_is_not_selected": "destination is not selected",
|
|
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_loading_record": "daily loading record",
|
|
85
|
+
"title.daily_production_report": "daily production report",
|
|
86
|
+
"title.global_plantation_setting": "[ms] global plantation setting",
|
|
87
|
+
"title.harvest_data": "harvest data",
|
|
88
|
+
"title.harvest_list": "harvesting list",
|
|
89
|
+
"title.harvest_no": "harvest no",
|
|
90
|
+
"title.harvesting_contractors_daily_harvesting_record": "harvesting contractor's daily harvesting record",
|
|
91
|
+
"title.harvesting_record_detail": "harvesting record detail",
|
|
92
|
+
"title.import": "import",
|
|
93
|
+
"title.loading_data": "loading data",
|
|
94
|
+
"title.loading_list": "loading list",
|
|
95
|
+
"title.loading_no": "loading no",
|
|
96
|
+
"title.loading_record_detail": "loading record detail",
|
|
97
|
+
"title.monthly_block_dispatch_report": "monthly block dispatch report",
|
|
98
|
+
"title.monthly_ffb_sale_report": "monthly FFB sale report",
|
|
99
|
+
"title.overall_record": "overall record",
|
|
100
|
+
"title.plantation_setting": "plantation setting",
|
|
101
|
+
"title.ramp": "ramp",
|
|
102
|
+
"title.staff": "staff",
|
|
103
|
+
"title.select_destination": "select destination"
|
|
104
|
+
}
|