@things-factory/operato-pms 3.8.0 → 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 +2 -2
- 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/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
|
+
}
|
package/translations/zh.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": "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": "[zh] 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.there_is_duplicated_staff_in_record": "there is duplicated staff in this record",
|
|
69
|
+
"text.total_bunch_weight_should_be_positive": "total bunch weight should be positive",
|
|
70
|
+
"text.total_bunches_loaded_should_be_positive": "total bunches loaded should be positive",
|
|
71
|
+
"text.total_no_of_bunches_should_be_positive": "total no of bunches should be positive",
|
|
72
|
+
"text.total_tonnage_harvested_should_be_positive": "total tonnage harvested should be positive",
|
|
73
|
+
"text.tracked_inventory_setting": "tracked inventory setting",
|
|
74
|
+
"text.invalid_percentage_value": "invalid percentage value",
|
|
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": "[zh] 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
|
+
}
|