Fuel Charging
Drivers will see variations of the claim screen depending on how their "Fuel Type" is set and (if Electric) which 'EV Charging' event value is recorded.
Visit the EV Charging Method illustrations page for illustrations of how various settings affect the Driver Portal screens.
Screen Logic
Standard Screen:
Budget Fuel / Charging has been selected
Contracts / Vehicle "Fuel Type" is not 'Electric' or
Contracts / Vehicle "Fuel Type" is 'Electric' and Contracts / Contract "Contract Start" date is before '01/04/2022'
Type - select from the standard list including 'Electric Charging' (EVACT)
Standard Screen: defaults to 'Electric Charging'
Budget Fuel / Charging has been selected
Contracts / Vehicle "Fuel Type" is 'Electric' and Contracts / Contract "Contract Start" date is on or after '01/04/2022'
Contracts / Event has no 'EV Charging Method' event
Type - 'Electric Charging' (EVACT) is the default. No other type is available.
Home Charging
Budget - Fuel / Charging has been selected
Contracts / Contract "Contract Start" date is on or after '01/04/2022'
Contracts / Vehicle "Fuel Type" is 'Electric'
Contracts / Event the only (or most recent) 'EV Charging Method' event value is 'Home Charging'
Type - 'Home Charging' (EVHOME) is the default. No other type is available.
Home Charging Percentage
Budget Fuel / Charging has been selected
Contracts / Contract "Contract Start" date is on or after '01/04/2022'
Contracts / Vehicle "Fuel Type" is 'Electric'
Contracts / Event the only (or most recent) 'EV Charging Method' event value is 'EV Home Charging Percentage'
Type - select from 'Electric Charging' (EVACT) or 'Home Charging Percentage' (EVPCT). No other types are available.
Electric Vehicles
Electric vehicles with a "Contract Start" date after '01/04/2022' should have an 'EV Charging' event recorded.
Below is a summary of the three available value settings.
Follow this link for more details of which setting is appropriate according to ATO guidelines:
Actual Cost
Claim actual costs from a external charging stations.
The standard claim screen fields are shown.
Odometer Reading and Fuel Quantity (Litres) fields are optional in this case.
Home Charging
Claim Home Charging of 0.042c per km based on the odometer reading
A Home Charging claim requires the Odometer Reading to be entered.
An opening Odometer Reading is not required in the system for new vehicles.
From existing data and the reading entered above, Kms Claimed is calculated, but can be edited downwards if the calculation kms are too high.
GST is not applicable to this type of claim.
Home Charging Percentage
Make claims using either method above.
This can only be done if the vehicle can generate an annual report that provides how much charging was done externally and how much charged at home.
Actual costs can be claimed on an ongoing basis.
Home charging can be claimed when the driver has determined the percentage of charging that was done at home for the year.
The Home Charging Percentage and the Odometer Reading need to be entered.
An opening Odometer Reading is not required in the system for new vehicles.
From existing data and the fields entered above, Kms Claimed is calculated, but can be edited downwards if the calculation kms are too high.
GST is not applicable to this type of claim.
Fuel Claim Scheduler Jobs
Visit the Fleet Management Scheduler Jobs page for details of two standard scheduler jobs you can activate.
Use these jobs to:
Review your current portal contract settings for Fuel / Charging
Automatically create the event required to enable access to the Home Charging screen for eligible contracts.
Note: Currently only events to enable access to the Home Charging screen are created by the scheduler job. If you wish to enable the Home Charging Percentage screen for vehicles, you will need to need to determine your own logic for allowing this and update the vehicle's event selection. If you want to automate the logic you use use for Home Charging Percentage, contact Catch-e Support and send in a Report Request to make changes to the event creation job.
Useful Queries
Run this query to review the required settings documented in the Driver Portal page Fuel / Charging Claims section.
SELECT
i.interface_code,
i.interface_type,
ivm.product_code,
ivm.description,
ivm.status_flag,
pc.posting_class_code AS budget,
vmrs.vmrs_code AS type,
cevpc.name AS event,
cev.event_value,
cev.default_flag,
cev.status_flag
FROM fm_interfaces AS i
INNER JOIN fm_interface_vmrs_mappings AS ivm
ON ivm.interface_id = i.interface_id
INNER JOIN gl_posting_classes AS pc
ON pc.posting_class_id = ivm.posting_class_id
AND pc.qt_profile_table_name = 'qt_quote_fuel'
INNER JOIN fm_vmrs_codes AS vmrs
ON vmrs.vmrs_code_id = ivm.vmrs_code_id
LEFT JOIN fm_contract_event_values AS cev
ON cev.vmrs_code_id = ivm.vmrs_code_id
LEFT JOIN gl_posting_classes AS cevpc
ON cevpc.posting_class_id = cev.posting_class_id
WHERE i.interface_type = 'claim'
AND ivm.status_flag = 'active'
ORDER BY
ivm.status_flag,
cev.default_flag,
ivm.description;