Set yaml files for cmb. #424
This commit is contained in:
parent
47a52782f7
commit
5ad416df1d
3 changed files with 40 additions and 55 deletions
|
|
@ -37,6 +37,10 @@ main_menu:
|
||||||
acl: rider.list
|
acl: rider.list
|
||||||
label: Riders
|
label: Riders
|
||||||
parent: logistics
|
parent: logistics
|
||||||
|
- id: service_charge_list
|
||||||
|
acl: service_charge.list
|
||||||
|
label: Service Charges
|
||||||
|
parent: logistics
|
||||||
|
|
||||||
- id: battery
|
- id: battery
|
||||||
acl: battery.menu
|
acl: battery.menu
|
||||||
|
|
@ -98,21 +102,13 @@ main_menu:
|
||||||
acl: joborder.menu
|
acl: joborder.menu
|
||||||
label: Job Order
|
label: Job Order
|
||||||
icon: flaticon-calendar-3
|
icon: flaticon-calendar-3
|
||||||
- id: jo_in
|
- id: jo_onestep_form
|
||||||
acl: jo_in.list
|
acl: jo_onestep.form
|
||||||
label: Incoming
|
label: One-step Process
|
||||||
parent: joborder
|
parent: joborder
|
||||||
- id: jo_proc
|
- id: jo_walkin_form
|
||||||
acl: jo_proc.list
|
acl: jo_walkin.form
|
||||||
label: Dispatch
|
label: Walk-in
|
||||||
parent: joborder
|
|
||||||
- id: jo_assign
|
|
||||||
acl: jo_assign.list
|
|
||||||
label: Rider Assignment
|
|
||||||
parent: joborder
|
|
||||||
- id: jo_fulfill
|
|
||||||
acl: jo_fulfill.list
|
|
||||||
label: Fulfillment
|
|
||||||
parent: joborder
|
parent: joborder
|
||||||
- id: jo_open
|
- id: jo_open
|
||||||
acl: jo_open.list
|
acl: jo_open.list
|
||||||
|
|
@ -122,10 +118,6 @@ main_menu:
|
||||||
acl: jo_all.list
|
acl: jo_all.list
|
||||||
label: View All
|
label: View All
|
||||||
parent: joborder
|
parent: joborder
|
||||||
- id: jo_hub_view
|
|
||||||
acl: jo_hub.list
|
|
||||||
label: Hub View
|
|
||||||
parent: joborder
|
|
||||||
|
|
||||||
- id: support
|
- id: support
|
||||||
acl: support.menu
|
acl: support.menu
|
||||||
|
|
@ -185,12 +177,3 @@ main_menu:
|
||||||
acl: review.list
|
acl: review.list
|
||||||
label: Reviews
|
label: Reviews
|
||||||
parent: partner
|
parent: partner
|
||||||
|
|
||||||
- id: analytics
|
|
||||||
acl: analytics.menu
|
|
||||||
label: Analytics
|
|
||||||
icon: flaticon-graphic
|
|
||||||
- id: analytics_forecast_form
|
|
||||||
acl: analytics.forecast
|
|
||||||
label: Forecasting
|
|
||||||
parent: analytics
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ parameters:
|
||||||
latitude: 14.6091
|
latitude: 14.6091
|
||||||
longitude: 121.0223
|
longitude: 121.0223
|
||||||
image_upload_directory: '%kernel.project_dir%/public/uploads'
|
image_upload_directory: '%kernel.project_dir%/public/uploads'
|
||||||
|
jo_extra_upload_directory: '%kernel.project_dir%/public/uploads/jo_extra'
|
||||||
job_order_refresh_interval: 300000
|
job_order_refresh_interval: 300000
|
||||||
api_acl_file: 'api_acl.yaml'
|
api_acl_file: 'api_acl.yaml'
|
||||||
api_access_key: 'api_access_keys'
|
api_access_key: 'api_access_keys'
|
||||||
|
|
@ -161,39 +162,40 @@ services:
|
||||||
- { name: kernel.event_listener, event: kernel.controller, method: onKernelController }
|
- { name: kernel.event_listener, event: kernel.controller, method: onKernelController }
|
||||||
|
|
||||||
# invoice generator
|
# invoice generator
|
||||||
App\Service\InvoiceGenerator\ResqInvoiceGenerator: ~
|
App\Service\InvoiceGenerator\CMBInvoiceGenerator: ~
|
||||||
|
|
||||||
# invoice generator interface
|
# invoice generator interface
|
||||||
App\Service\InvoiceGeneratorInterface: "@App\\Service\\InvoiceGenerator\\ResqInvoiceGenerator"
|
App\Service\InvoiceGeneratorInterface: "@App\\Service\\InvoiceGenerator\\CMBInvoiceGenerator"
|
||||||
|
|
||||||
# job order generator
|
# job order generator
|
||||||
App\Service\JobOrderHandler\ResqJobOrderHandler:
|
App\Service\JobOrderHandler\CMBJobOrderHandler:
|
||||||
arguments:
|
arguments:
|
||||||
$country_code: "%env(COUNTRY_CODE)%"
|
$country_code: "%env(COUNTRY_CODE)%"
|
||||||
|
|
||||||
#job order generator interface
|
#job order generator interface
|
||||||
App\Service\JobOrderHandlerInterface: "@App\\Service\\JobOrderHandler\\ResqJobOrderHandler"
|
App\Service\JobOrderHandlerInterface: "@App\\Service\\JobOrderHandler\\CMBJobOrderHandler"
|
||||||
|
|
||||||
# customer generator
|
# customer generator
|
||||||
App\Service\CustomerHandler\ResqCustomerHandler:
|
App\Service\CustomerHandler\CMBCustomerHandler:
|
||||||
arguments:
|
arguments:
|
||||||
$country_code: "%env(COUNTRY_CODE)%"
|
$country_code: "%env(COUNTRY_CODE)%"
|
||||||
|
|
||||||
# customer generator interface
|
# customer generator interface
|
||||||
App\Service\CustomerHandlerInterface: "@App\\Service\\CustomerHandler\\ResqCustomerHandler"
|
App\Service\CustomerHandlerInterface: "@App\\Service\\CustomerHandler\\CMBCustomerHandler"
|
||||||
|
|
||||||
# rider assignment
|
# rider assignment
|
||||||
App\Service\RiderAssignmentHandler\ResqRiderAssignmentHandler: ~
|
App\Service\RiderAssignmentHandler\CMBRiderAssignmentHandler: ~
|
||||||
|
|
||||||
# rider assignment interface
|
# rider assignment interface
|
||||||
App\Service\RiderAssignmentHandlerInterface: "@App\\Service\\RiderAssignmentHandler\\ResqRiderAssignmentHandler"
|
App\Service\RiderAssignmentHandlerInterface: "@App\\Service\\RiderAssignmentHandler\\CMBRiderAssignmentHandler"
|
||||||
|
|
||||||
# rider API service
|
# rider API service
|
||||||
App\Service\RiderAPIHandler\ResqRiderAPIHandler:
|
App\Service\RiderAPIHandler\CMBRiderAPIHandler:
|
||||||
arguments:
|
arguments:
|
||||||
$country_code: "%env(COUNTRY_CODE)%"
|
$country_code: "%env(COUNTRY_CODE)%"
|
||||||
|
$upload_dir: "%jo_extra_upload_directory%"
|
||||||
|
|
||||||
App\Service\RiderAPIHandlerInterface: "@App\\Service\\RiderAPIHandler\\ResqRiderAPIHandler"
|
App\Service\RiderAPIHandlerInterface: "@App\\Service\\RiderAPIHandler\\CMBRiderAPIHandler"
|
||||||
|
|
||||||
# map manager
|
# map manager
|
||||||
#App\Service\GISManager\Bing: ~
|
#App\Service\GISManager\Bing: ~
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,27 @@
|
||||||
# text
|
# text
|
||||||
title_login: Motolite Res-Q | Login
|
title_login: Res-Q for CMB | Login
|
||||||
block_title: Motolite Res-Q
|
block_title: Res-Q for CMB
|
||||||
control_panel_sign_in: Sign-in to Control Panel
|
control_panel_sign_in: Sign-in to Control Panel
|
||||||
alt_image_logo_login: Res-Q
|
alt_image_logo_login: Res-Q for CMB
|
||||||
alt_image_dashboard: Motolite
|
alt_image_dashboard: Res-Q for CMB
|
||||||
copyright: Motolite Res-Q
|
copyright: Res-Q for CMB
|
||||||
battery_size_tradein_brand: Trade-in Motolite
|
battery_size_tradein_brand: Trade-in Motolite
|
||||||
battery_size_tradein_premium: Trade-in Premium
|
battery_size_tradein_premium: Trade-in Premium
|
||||||
battery_size_tradein_other: Trade-in Other
|
battery_size_tradein_other: Trade-in Other
|
||||||
add_cust_vehicle_battery_info: This vehicle is using a Motolite battery
|
add_cust_vehicle_battery_info: This vehicle is using a Motolite battery
|
||||||
jo_title_pdf: Motolite Res-Q Job Order
|
jo_title_pdf: Res-Q for CMB Job Order
|
||||||
country_code_prefix: '+63'
|
country_code_prefix: '+60'
|
||||||
delivery_instructions_label: Delivery Instructions
|
delivery_instructions_label: 'CarFix Details'
|
||||||
|
|
||||||
# images
|
# images
|
||||||
image_logo_login: /assets/images/logo-resq.png
|
image_logo_login: /assets/images/black-text-logo-01.png
|
||||||
icon_login: /assets/demo/default/media/img/logo/favicon.ico
|
icon_login: /assets/images/battery-assist-bm-logo-32x32.png
|
||||||
icon_base_32x32: /assets/images/favicon/favicon-32x32.png
|
icon_base_32x32: /assets/images/black-text-logo-01-32x32.png
|
||||||
icon_base_16x16: /assets/images/favicon/favicon-16x16.png
|
icon_base_16x16: /assets/images/black-text-logo-01-16x16.png
|
||||||
image_dashboard: /assets/images/logo-motolite.png
|
image_dashboard: /assets/images/century_logo.png
|
||||||
image_jo_pdf: /public/assets/images/logo-resq.png
|
image_jo_pdf: /public/assets/images/black-text-logo-01-115x115.png
|
||||||
|
|
||||||
# default point for maps
|
# default point for maps
|
||||||
default_lat: 14.6091
|
default_lat: 3.084216
|
||||||
default_long: 121.0223
|
default_long: 101.6129996
|
||||||
default_region: ph
|
default_region: my
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue