First commit waiting for Budget Alert
16
modules/axelor-open-suite/axelor-fleet/build.gradle
Normal file
@ -0,0 +1,16 @@
|
||||
apply plugin: "com.axelor.app-module"
|
||||
|
||||
apply from: "../version.gradle"
|
||||
|
||||
apply {
|
||||
version = openSuiteVersion
|
||||
}
|
||||
|
||||
axelor {
|
||||
title "Axelor Fleet"
|
||||
description "Axelor Fleet Module"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile project(":modules:axelor-base")
|
||||
}
|
||||
@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.module;
|
||||
|
||||
import com.axelor.app.AxelorModule;
|
||||
import com.axelor.apps.fleet.service.VehicleFuelLogService;
|
||||
import com.axelor.apps.fleet.service.VehicleFuelLogServiceImpl;
|
||||
import com.axelor.apps.fleet.service.VehicleService;
|
||||
import com.axelor.apps.fleet.service.VehicleServiceImpl;
|
||||
|
||||
public class FleetModule extends AxelorModule {
|
||||
|
||||
@Override
|
||||
protected void configure() {
|
||||
bind(VehicleService.class).to(VehicleServiceImpl.class);
|
||||
bind(VehicleFuelLogService.class).to(VehicleFuelLogServiceImpl.class);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.service;
|
||||
|
||||
import com.axelor.apps.fleet.db.VehicleFuelLog;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public interface VehicleFuelLogService {
|
||||
|
||||
public BigDecimal calculateTotalPrice(VehicleFuelLog vehicleFuelLog);
|
||||
}
|
||||
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.service;
|
||||
|
||||
import com.axelor.apps.fleet.db.VehicleFuelLog;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class VehicleFuelLogServiceImpl implements VehicleFuelLogService {
|
||||
|
||||
@Override
|
||||
public BigDecimal calculateTotalPrice(VehicleFuelLog vehicleFuelLog) {
|
||||
BigDecimal litre = vehicleFuelLog.getLiter();
|
||||
BigDecimal price = vehicleFuelLog.getPericePerLiter();
|
||||
return litre.multiply(price);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.service;
|
||||
|
||||
import com.axelor.apps.fleet.db.Vehicle;
|
||||
|
||||
public interface VehicleService {
|
||||
|
||||
public String setVehicleName(Vehicle vehicle);
|
||||
}
|
||||
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.service;
|
||||
|
||||
import com.axelor.apps.fleet.db.Vehicle;
|
||||
|
||||
public class VehicleServiceImpl implements VehicleService {
|
||||
|
||||
@Override
|
||||
public String setVehicleName(Vehicle vehicle) {
|
||||
String model = "";
|
||||
if (vehicle.getVehicleModel() != null) {
|
||||
model = vehicle.getVehicleModel().getName();
|
||||
}
|
||||
if (vehicle.getPlateNo() != null) {
|
||||
model += " " + vehicle.getPlateNo();
|
||||
}
|
||||
return model;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.translation;
|
||||
|
||||
public interface ITranslation {
|
||||
|
||||
public static final String FLEET_APP_NAME = /*$$(*/ "value:Fleet"; /*)*/
|
||||
}
|
||||
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.web;
|
||||
|
||||
import com.axelor.apps.fleet.db.Vehicle;
|
||||
import com.axelor.apps.fleet.service.VehicleService;
|
||||
import com.axelor.inject.Beans;
|
||||
import com.axelor.rpc.ActionRequest;
|
||||
import com.axelor.rpc.ActionResponse;
|
||||
import com.google.inject.Singleton;
|
||||
|
||||
@Singleton
|
||||
public class VehicleController {
|
||||
|
||||
public void setVehicleName(ActionRequest request, ActionResponse response) {
|
||||
Vehicle vehicle = request.getContext().asType(Vehicle.class);
|
||||
String actualName = Beans.get(VehicleService.class).setVehicleName(vehicle);
|
||||
response.setValue("name", actualName);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.apps.fleet.web;
|
||||
|
||||
import com.axelor.apps.fleet.db.VehicleFuelLog;
|
||||
import com.axelor.apps.fleet.service.VehicleFuelLogService;
|
||||
import com.axelor.inject.Beans;
|
||||
import com.axelor.rpc.ActionRequest;
|
||||
import com.axelor.rpc.ActionResponse;
|
||||
import com.google.inject.Singleton;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Singleton
|
||||
public class VehicleFuelLogController {
|
||||
|
||||
public void calculateTotalPrice(ActionRequest request, ActionResponse response) {
|
||||
VehicleFuelLog vehicleFuelLog = request.getContext().asType(VehicleFuelLog.class);
|
||||
BigDecimal totalPrice =
|
||||
Beans.get(VehicleFuelLogService.class).calculateTotalPrice(vehicleFuelLog);
|
||||
response.setValue("totalPrice", totalPrice);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Axelor Business Solutions
|
||||
*
|
||||
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.axelor.csv.script;
|
||||
|
||||
import com.axelor.apps.fleet.db.Vehicle;
|
||||
import com.axelor.meta.MetaFiles;
|
||||
import com.axelor.meta.db.MetaFile;
|
||||
import com.google.common.base.Strings;
|
||||
import com.google.inject.Inject;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Path;
|
||||
import java.util.Map;
|
||||
|
||||
public class ImportVehicle {
|
||||
|
||||
@Inject private MetaFiles metaFiles;
|
||||
|
||||
public Object importVehicle(Object bean, Map<String, Object> values) {
|
||||
assert bean instanceof Vehicle;
|
||||
|
||||
Vehicle vehicle = (Vehicle) bean;
|
||||
|
||||
final Path path = (Path) values.get("__path__");
|
||||
String fileName = (String) values.get("image_fileName");
|
||||
if (Strings.isNullOrEmpty(fileName)) {
|
||||
return bean;
|
||||
}
|
||||
|
||||
final File image = path.resolve(fileName).toFile();
|
||||
|
||||
try {
|
||||
final MetaFile metaFile = metaFiles.upload(image);
|
||||
vehicle.setImage(metaFile);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return bean;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<csv-inputs xmlns="http://axelor.com/xml/ns/data-import"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/data-import http://axelor.com/xml/ns/data-import/data-import_5.2.xsd">
|
||||
|
||||
<input file="auth_permission.csv" separator=";" type="com.axelor.auth.db.Permission" search="self.name = :name" call="com.axelor.csv.script.ImportPermission:importPermissionToRole">
|
||||
<bind to="canRead" eval="can_read == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canWrite" eval="can_write == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canCreate" eval="can_create == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canRemove" eval="can_remove == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canExport" eval="can_export == 'x' ? 'true' : 'false'"/>
|
||||
</input>
|
||||
|
||||
<input file="base_appFleet.csv" separator=";" type="com.axelor.apps.base.db.AppFleet" call="com.axelor.csv.script.ImportApp:importApp">
|
||||
<bind column="dependsOn" to="dependsOnSet" search="self.code in :dependsOn" eval="dependsOn.split(',') as List"/>
|
||||
</input>
|
||||
|
||||
<input file="meta_metaMenu.csv" separator=";" type="com.axelor.meta.db.MetaMenu" search="self.name = :name" update="true" />
|
||||
|
||||
</csv-inputs>
|
||||
@ -0,0 +1,2 @@
|
||||
"name";"object";"can_read";"can_write";"can_create";"can_remove";"can_export";"condition";"conditionParams";"roleName"
|
||||
"perm.fleet.all";"com.axelor.apps.fleet.db.*";"x";"x";"x";"x";"x";;;"Admin"
|
||||
|
@ -0,0 +1,2 @@
|
||||
"name";"code";"installOrder";"description";"imagePath";"modules";"dependsOn";"sequence"
|
||||
"Fleet";"fleet";26;"Fleet management";"app-fleet.png";"axelor-fleet";"base";27
|
||||
|
|
After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,15 @@
|
||||
"name";"roles.name"
|
||||
"fleet-root";"Admin"
|
||||
"fleet-root-vehicle";"Admin"
|
||||
"fleet-root-vehicle-models";"Admin"
|
||||
"fleet-root-vehicle-contract";"Admin"
|
||||
"fleet-root-vehicle-fuel-log";"Admin"
|
||||
"fleet-root-vehicle-service-log";"Admin"
|
||||
"fleet-root-vehicle-cost";"Admin"
|
||||
"fleet-conf";"Admin"
|
||||
"fleet-conf-recurring-cost";"Admin"
|
||||
"fleet-conf-vehicle-make";"Admin"
|
||||
"fleet-conf-vehicle-odometer";"Admin"
|
||||
"fleet-conf-vehicle-service-type";"Admin"
|
||||
"fleet-conf-vehicle-state";"Admin"
|
||||
"fleet-conf-vehicle-tag";"Admin"
|
||||
|
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<csv-inputs xmlns="http://axelor.com/xml/ns/data-import"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/data-import http://axelor.com/xml/ns/data-import/data-import_5.2.xsd">
|
||||
|
||||
<input file="fleet_vehicleContract.csv" separator=";" type="com.axelor.apps.fleet.db.VehicleContract" search="self.importId = :importId">
|
||||
<bind column="invoiceDate" to="invoiceDate" eval="call: com.axelor.csv.script.ImportDateTime:importDate(invoiceDate)"/>
|
||||
<bind column="startDate" to="startDate" eval="call: com.axelor.csv.script.ImportDateTime:importDate(startDate)"/>
|
||||
<bind column="expiryDate" to="expiryDate" eval="call: com.axelor.csv.script.ImportDateTime:importDate(expiryDate)"/>
|
||||
</input>
|
||||
|
||||
<input file="fleet_vehicleMake.csv" separator=";" type="com.axelor.apps.fleet.db.VehicleMake" search="self.importId = :importId"/>
|
||||
|
||||
<input file="fleet_vehicleModel.csv" separator=";" type="com.axelor.apps.fleet.db.VehicleModel" search="self.importId = :importId"/>
|
||||
|
||||
<input file="fleet_vehicle.csv" separator=";" type="com.axelor.apps.fleet.db.Vehicle" search="self.importId = :importId" call="com.axelor.csv.script.ImportVehicle:importVehicle">
|
||||
<bind column="acquisitionDate" to="acquisitionate" eval="call: com.axelor.csv.script.ImportDateTime:importDate(acquisitionDate)"/>
|
||||
<bind column="vehicleTagSetImportId" to="vehicleTagSet" search="self.importId in :vehicleTagSetImportId" eval="vehicleTagSetImportId.split('\\|') as List"/>
|
||||
</input>
|
||||
|
||||
<input file="fleet_vehicleFuelLog.csv" separator=";" type="com.axelor.apps.fleet.db.VehicleFuelLog" search="self.importId = :importId">
|
||||
<bind column="date" to="date" eval="call: com.axelor.csv.script.ImportDateTime:importDate(date)"/>
|
||||
</input>
|
||||
|
||||
</csv-inputs>
|
||||
@ -0,0 +1,19 @@
|
||||
"importId";"name";"image_fileName";"vehicleModel.importId";"plateNo";"vehicleTagSetImportId";"vehicleState";"driverPartner.importId";"vehicleOdometer";"location";"acquisitionDate";"chasisNo";"carValue";"isArchived";"company.importId";"seats";"doors";"color";"transmissionSelect";"fuelTypeSelect";"co2emission";"horsePower";"horsePowerTax";"powerKw"
|
||||
"1";"Mercedes Classe C";"img/mercedes.png";"1";"EW 231 RG";;;"20";"178000";"77";"TODAY[+5d]";;"40000";"true";"1";"5";"5";"Gris";"0";"0";"2.00";"110";;
|
||||
"2";"Fiat 500";"img/fiat.png";"2";"EA 456 TH";;;"88";"90000";"75";"TODAY[+6d]";;"15000";"false";"1";"4";"3";"Noir";"1";"1";"2.01";"110";;
|
||||
"3";"Toyota Yaris";"img/toyota.png";"3";"RG 638 KF";;;"205";"134039";"22";"TODAY[-30d]";;"16000";"true";"1";"5";"5";"Bleu";"0";"2";"2.02";"70";;
|
||||
"4";"Honda Civic";"img/honda.png";"4";"HU 846 AE";;;"44";"121234";"13";"TODAY[-50d]";;"20000";"false";"1";"5";"5";"Blanc";"1";"3";"2.03";"70";;
|
||||
"5";"Citroen C3";"img/citroen.png";"5";"UI 685 OA";;;"132";"79778";"93";"TODAY[+20d]";;"12000";"true";"1";"5";"5";"rouge";"0";"0";"2.04";"100";;
|
||||
"6";"BMW Série 3";"img/bmw.png";"6";"OK 623 TH";;;"70";"190754";"92";"TODAY[+14d]";;"40000";"false";"1";"5";"5";"Jaune";"1";"1";"2.05";"90";;
|
||||
"7";"Suzuki Swift";"img/suzuki.png";"7";"NI 679 EE";;;"185";"123566";"60";"TODAY[+45d]";;"16000";"true";"1";"5";"5";"Gris";"0";"2";"2.06";"120";;
|
||||
"8";"Volvo V40";"img/volvo.png";"8";"BN 453 IO";;;"136";"99345";"77";"TODAY[+30d]";;"28000";"false";"1";"5";"5";"Noir";"1";"3";"2.07";"90";;
|
||||
"9";"Renault Twingo";"img/renault.png";"9";"GF 509 FF";;;"197";"32565";"77";"TODAY[+23d]";;"12000";"true";"1";"5";"5";"Bleu";"0";"0";"2.08";"110";;
|
||||
"10";"Alfa Romeo Mito";"img/alfaromeo.png";"10";"ZD 357 VB";;;"20";"12345";"77";"TODAY[+13d]";;"22000";"false";"1";"5";"5";"Blanc";"1";"1";"2.09";"60";;
|
||||
"11";"DS Crossback";"img/ds.png";"11";"UI 987 BN";;;"88";"15354";"93";"TODAY[+16d]";;"25000";"true";"1";"5";"5";"rouge";"0";"2";"2.10";"100";;
|
||||
"12";"Mercedes Classe C";"img/mercedes.png";"1";"OK 023 MP";;;"205";"144334";"92";"TODAY[+9d]";;"40000";"false";"1";"5";"5";"Jaune";"1";"3";"2.11";"110";;
|
||||
"13";"Fiat 500";"img/fiat.png";"2";"AZ 453 BN";;;"44";"145354";"60";"TODAY[-43d]";;"15000";"true";"1";"5";"5";"Gris";"0";"0";"2.12";"70";;
|
||||
"14";"Toyota Yaris";"img/toyota.png";"3";"CF 129 NI";;;"132";"67654";"35";"TODAY[-23d]";;"16000";"false";"1";"5";"5";"Noir";"1";"1";"2.13";"70";;
|
||||
"15";"Honda Civic";"img/honda.png";"4";"NI 145 PE";;;"70";"4355";"49";"TODAY[-50d]";;"20000";"true";"1";"5";"5";"Bleu";"0";"2";"2.14";"110";;
|
||||
"16";"Citroen C3";"img/citroen.png";"5";"MP 432 VI";;;"185";"30744";"39";"TODAY[-17d]";;"12000";"false";"1";"5";"5";"Blanc";"1";"3";"2.15";"70";;
|
||||
"17";"BMW Série 3";"img/bmw.png";"6";"SD 458 AZ";;;"136";"19643";"22";"TODAY[-6d]";;"40000";"true";"1";"5";"5";"rouge";"0";"0";"2.16";"70";;
|
||||
"18";"Suzuki Swift";"img/suzuki.png";"7";"FD 567 GY";;;"197";"180000";"75";"TODAY[-8d]";;"16000";"false";"1";"5";"5";"Jaune";"1";"1";"2.17";"100";;
|
||||
|
@ -0,0 +1,15 @@
|
||||
"importId";"name";"statusSelect";"typeSelect";"activationCost";"costFrequencySelect";"insurerPartner.importId";"purchaserPartner.importId";"reference";"invoiceDate";"startDate";"expiryDate"
|
||||
"1";"Vehicle Contract 1";"0";"0";;"0";"20";"185";;"TODAY[+24d]";"TODAY[+24d]";"TODAY[+12M]"
|
||||
"2";"Vehicle Contract 2";"1";"1";;"1";"88";"136";;"TODAY[+13d]";"TODAY[+13d]";"TODAY[+24M]"
|
||||
"3";"Vehicle Contract 3";"2";"2";;"2";"205";"197";;"TODAY[+35d]";"TODAY[+35d]";"TODAY[+12M]"
|
||||
"4";"Vehicle Contract 4";"3";"0";;"3";"44";"20";;"TODAY[+2d]";"TODAY[+2d]";"TODAY[+12M]"
|
||||
"5";"Vehicle Contract 5";"0";"1";;"4";"132";"88";;"TODAY[+5d]";"TODAY[+5d]";"TODAY[+24M]"
|
||||
"6";"Vehicle Contract 6";"1";"2";;"0";"70";"205";;"TODAY[+9d]";"TODAY[+9d]";"TODAY[+24M]"
|
||||
"7";"Vehicle Contract 7";"2";"0";;"1";"185";"20";;"TODAY[+12d]";"TODAY[+12d]";"TODAY[+12M]"
|
||||
"8";"Vehicle Contract 8";"3";"1";;"2";"136";"88";;"TODAY[+15d]";"TODAY[+15d]";"TODAY[+24M]"
|
||||
"9";"Vehicle Contract 9";"0";"2";;"3";"197";"205";;"TODAY[+9d]";"TODAY[+9d]";"TODAY[+24M]"
|
||||
"10";"Vehicle Contract 10";"1";"0";;"4";"20";"44";;"TODAY[+16d]";"TODAY[+16d]";"TODAY[+12M]"
|
||||
"11";"Vehicle Contract 11";"2";"1";;"0";"88";"132";;"TODAY[+13d]";"TODAY[+13d]";"TODAY[+12M]"
|
||||
"12";"Vehicle Contract 12";"3";"2";;"1";"205";"70";;"TODAY[+19d]";"TODAY[+19d]";"TODAY[+12M]"
|
||||
"13";"Vehicle Contract 13";"1";"0";;"2";"44";"197";;"TODAY[+22d]";"TODAY[+22d]";"TODAY[+24M]"
|
||||
"14";"Vehicle Contract 14";"2";"1";;"3";"132";"20";;"TODAY[+13d]";"TODAY[+13d]";"TODAY[+24M]"
|
||||
|
@ -0,0 +1,15 @@
|
||||
"importId";"vehicle.importId";"purchasePartner.importId";"invoiceRef";"vendorPartner.importId";"date";"liter";"pericePerLiter";"totalPrice"
|
||||
"1";"1";"185";;"20";"TODAY[+5d]";"55";"1.559";"85.74499999999999"
|
||||
"2";"1";"136";;"88";"TODAY[-15d]";"60";"1.559";"93.53999999999999"
|
||||
"3";"2";"197";;"205";"TODAY[+40d]";"55";"1.506";"82.83"
|
||||
"4";"3";"20";;"44";"TODAY[+20d]";"60";"1.559";"93.53999999999999"
|
||||
"5";"4";"88";;"132";"TODAY[+25d]";"55";"1.506";"82.83"
|
||||
"6";"2";"205";;"70";"TODAY[+50d]";"60";"1.506";"90.36"
|
||||
"7";"6";"20";;"185";"TODAY[-24d]";"55";"1.506";"82.83"
|
||||
"8";"7";"88";;"136";"TODAY[-26d]";"60";"1.506";"90.36"
|
||||
"9";"8";"205";;"197";"TODAY[+17M]";"55";"1.559";"85.74499999999999"
|
||||
"10";"9";"44";;"20";"TODAY[-50d]";"60";"1.506";"90.36"
|
||||
"11";"10";"132";;"88";"TODAY[+21M]";"55";"1.559";"85.74499999999999"
|
||||
"12";"1";"70";;"205";"TODAY[+2M]";"60";"1.506";"90.36"
|
||||
"13";"2";"197";;"44";"TODAY[+6M]";"55";"1.559";"85.74499999999999"
|
||||
"14";"3";"20";;"132";"TODAY[+3M]";"60";"1.506";"90.36"
|
||||
|
@ -0,0 +1,12 @@
|
||||
"importId";"name"
|
||||
"1";"Mercedes"
|
||||
"2";"Fiat"
|
||||
"3";"Toyota"
|
||||
"4";"Honda"
|
||||
"5";"Citroen"
|
||||
"6";"BMW"
|
||||
"7";"Suzuki"
|
||||
"8";"Volvo"
|
||||
"9";"Renault"
|
||||
"10";"Alfa Romeo"
|
||||
"11";"DS"
|
||||
|
@ -0,0 +1,12 @@
|
||||
"importId";"model";"vehicleMake.importId";"name"
|
||||
"1";"Classe C";"1";"Mercedes Classe C"
|
||||
"2";"500";"2";"Fiat 500"
|
||||
"3";"Yaris";"3";"Toyota Yaris"
|
||||
"4";"Civic";"4";"Honda Civic"
|
||||
"5";"C3";"5";"Citroen C3"
|
||||
"6";"Série 3";"6";"BMW Série 3"
|
||||
"7";"Swift";"7";"Suzuki Swift"
|
||||
"8";"V40";"8";"Volvo V40"
|
||||
"9";"Twingo";"9";"Renault Twingo"
|
||||
"10";"Mito";"10";"Alfa Mito"
|
||||
"11";"Crossback";"11";"DS Crossback"
|
||||
|
|
After Width: | Height: | Size: 290 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 7.8 KiB |
|
After Width: | Height: | Size: 227 KiB |
|
After Width: | Height: | Size: 141 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="base" package="com.axelor.apps.base.db"/>
|
||||
|
||||
<entity name="AppFleet" lang="java" cacheable="true" extends="App" />
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="Booking" lang="java" cacheable="true">
|
||||
<string name="name" />
|
||||
<date name="bookingDate" title="BookingDate" />
|
||||
<many-to-many name="contactSet" ref="com.axelor.apps.base.db.Partner"/>
|
||||
<many-to-many name="partnerSet" ref="com.axelor.apps.base.db.Partner"/>
|
||||
<boolean name="isConfirmed" title="Confirmed"/>
|
||||
<many-to-one name="partnerCategory" ref="com.axelor.apps.base.db.PartnerCategory" title="Category"/>
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="RecurringCost" lang="java" cacheable="true">
|
||||
<date name="date" title="Date" column="date_rec_cost" />
|
||||
<decimal name="amount" title="Amount"/>
|
||||
</entity>
|
||||
</domain-models>
|
||||
@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="Vehicle" lang="java" cacheable="true">
|
||||
<string name="plateNo" title="Plate number" />
|
||||
<string name="name" title="Name" required="false" readonly="true"/>
|
||||
<many-to-one name="company" ref="com.axelor.apps.base.db.Company" title="Company" />
|
||||
<string name="chasisNo" title="Chassis Number" />
|
||||
<many-to-one name="driverPartner" title="Driver" ref="com.axelor.apps.base.db.Partner" />
|
||||
<one-to-one name="vehicleModel" ref="com.axelor.apps.fleet.db.VehicleModel" title="Model" />
|
||||
<one-to-many name="vehicleFuelLogList" ref="VehicleFuelLog" title="Fuel log" mappedBy="vehicle"/>
|
||||
<one-to-many name="vehicleServiceLogList" ref="VehicleServiceLog" title="Service log" mappedBy="vehicle"/>
|
||||
<one-to-many name="vehicleContractList" ref="VehicleContract" title="Vehicle contract" mappedBy="vehicle"/>
|
||||
<one-to-many name="vehicleCostList" ref="VehicleCost" title="Vehicle Cost" mappedBy="vehicle"/>
|
||||
<date name="acquisitionDate" title="Acquisition Date" />
|
||||
<string name="color" title="Color" />
|
||||
<string name="vehicleState" title="State" large="true"/>
|
||||
<string name="location" title="Location" />
|
||||
<integer name="seats" title="Seats" />
|
||||
<integer name="doors" title="Doors" />
|
||||
<many-to-many name="vehicleTagSet" ref="VehicleTag" title="Tags"/>
|
||||
<decimal name="vehicleOdometer" title="Odometer" />
|
||||
<integer name="transmissionSelect" title="Transmission" selection="fleet.vehicle.transimission.select" />
|
||||
<integer name="fuelTypeSelect" title="Fuel type" selection="fleet.vehicle.fuel.type.select" />
|
||||
<integer name="horsePower" title="Horse Power" />
|
||||
<decimal name="horsePowerTax" title="Horse Power Tax" />
|
||||
<integer name="powerKw" title="Power(KW)" />
|
||||
<decimal name="co2emission" title="CO2 Emissions" />
|
||||
<many-to-one name="image" title="Image" ref="com.axelor.meta.db.MetaFile" />
|
||||
<decimal name="carValue" title="Car value" />
|
||||
<boolean name="isArchived" default="false" title="Archived"/>
|
||||
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleContract" lang="java" cacheable="true">
|
||||
<string name="name" title="Name" />
|
||||
<boolean name="active" title="Active" />
|
||||
<date name="startDate" title="Contract Start date" />
|
||||
<date name="expiryDate" title="Contract Expiration Date" />
|
||||
<integer name="daysLeft" title="Warning Date" />
|
||||
<many-to-one name="insurerPartner" ref="com.axelor.apps.base.db.Partner" title="Vendor" />
|
||||
<many-to-one name="purchaserPartner" ref="com.axelor.apps.base.db.Partner" title="Contractor" />
|
||||
<integer name="typeSelect" title="Type" selection="fleet.vehicle.cost.type.select" />
|
||||
<string name="reference" title="Contract Reference" />
|
||||
<integer name="statusSelect" title="Status" selection="fleet.vehicle.contract.status.select"/>
|
||||
<string name="notes" title="Notes" large="true" />
|
||||
<decimal name="recurringCost" title="Recurring Cost" />
|
||||
<integer name="costFrequencySelect" title="Recurring Cost Frequency" selection="fleet.vehicle.contract.cost.frequency.select" />
|
||||
<one-to-many name="vehicleServiceList" ref="com.axelor.apps.fleet.db.VehicleService"/>
|
||||
<decimal name="totalCost" title="Total cost" />
|
||||
<decimal name="activationCost" title="Activation Cost" />
|
||||
<many-to-one name="vehicle" ref="Vehicle" />
|
||||
<date name="invoiceDate" title="Invoice Date" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleCost" lang="java" cacheable="true">
|
||||
<many-to-one name="vehicle" ref="Vehicle" title="Vehicle" />
|
||||
<many-to-one name="serviceType" ref="VehicleServiceType" title="Service Type" />
|
||||
<decimal name="totalPrice" title="Total Price" />
|
||||
<date name="date" title="Date" column="date_val" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleFuelLog" lang="java" cacheable="true">
|
||||
<many-to-one name="vehicle" ref="Vehicle" />
|
||||
<decimal name="liter" title="Liter" />
|
||||
<decimal name="pericePerLiter" title="Price per Liter" />
|
||||
<decimal name="totalPrice" title="Total Price" required="false"/>
|
||||
<many-to-one name="purchasePartner" ref="com.axelor.apps.base.db.Partner" title="Purchaser" />
|
||||
<string name="invoiceRef" title="Invoice Reference" />
|
||||
<many-to-one name="vendorPartner" ref="com.axelor.apps.base.db.Partner" title="Vendor" />
|
||||
<string name="notes" title="Notes" large="true"/>
|
||||
<date name="date" title="Date" column="date_val" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleMake" lang="java" cacheable="true">
|
||||
<string name="name" title="Name" required="true" />
|
||||
<many-to-one name="image" title="Image" ref="com.axelor.meta.db.MetaFile" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleModel" lang="java" cacheable="true">
|
||||
<many-to-one name="vehicleMake" ref="VehicleMake" title="Make" />
|
||||
<string name="model" title="Model" required="true"/>
|
||||
<string name="name" title="Name" required="true" namecolumn="true">
|
||||
<![CDATA[
|
||||
if(vehicleMake != null)
|
||||
return vehicleMake != null ? vehicleMake.getName() + " " + model : model;
|
||||
else
|
||||
return model;
|
||||
]]>
|
||||
</string>
|
||||
<many-to-many name="vehicleVendorsSet" ref="com.axelor.apps.base.db.Partner" title="Vendors" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleOdometer" lang="java" cacheable="true">
|
||||
<string name="name" title="Name" />
|
||||
<date name="date" title="Date" column="date_val" />
|
||||
<decimal name="value" title="Kilometric value"/>
|
||||
<many-to-one name="vehicle" ref="Vehicle" />
|
||||
<many-to-one name="unit" ref="com.axelor.apps.base.db.Unit" title="Odometer unit" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleService" lang="java" cacheable="true">
|
||||
<many-to-one name="serviceType" ref="VehicleServiceType" title="Service Type" />
|
||||
<decimal name="cost" title="Cost"/>
|
||||
</entity>
|
||||
</domain-models>
|
||||
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleServiceLog" lang="java" cacheable="true">
|
||||
<many-to-one name="vehicle" ref="Vehicle" />
|
||||
<date name="date" title="Date" column="date_val" />
|
||||
<many-to-one name="purchasePartner" ref="com.axelor.apps.base.db.Partner" title="Purchaser" />
|
||||
<string name="invoiceRef" title="Invoice Reference" />
|
||||
<many-to-one name="vendorPartner" ref="com.axelor.apps.base.db.Partner" title="Vendor" />
|
||||
<string name="notes" title="Notes" large="true"/>
|
||||
<one-to-many name="vehicleServiceList" ref="com.axelor.apps.fleet.db.VehicleService"/>
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleServiceType" lang="java" cacheable="true">
|
||||
<string name="name" title="Name" required="true" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<domain-models xmlns="http://axelor.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
|
||||
|
||||
<module name="fleet" package="com.axelor.apps.fleet.db"/>
|
||||
|
||||
<entity name="VehicleTag" lang="java" cacheable="true">
|
||||
<string name="name" title="Name" required="true" />
|
||||
</entity>
|
||||
|
||||
</domain-models>
|
||||
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date",,,
|
||||
"Activation Cost",,,
|
||||
"Active",,,
|
||||
"Additional Properties",,,
|
||||
"Amount",,,
|
||||
"Archived",,,
|
||||
"Automatic",,,
|
||||
"Booking",,,
|
||||
"BookingDate",,,
|
||||
"CO2 Emissions",,,
|
||||
"Car value",,,
|
||||
"Category",,,
|
||||
"Chassis Number",,,
|
||||
"Color",,,
|
||||
"Company",,,
|
||||
"Configuration",,,
|
||||
"Confirmed",,,
|
||||
"Contact set",,,
|
||||
"Contract Expiration Date",,,
|
||||
"Contract Reference",,,
|
||||
"Contract Start date",,,
|
||||
"Contract details",,,
|
||||
"Contractor",,,
|
||||
"Cost",,,
|
||||
"Daily",,,
|
||||
"Date",,,
|
||||
"Diesel",,,
|
||||
"Doors",,,
|
||||
"Draft",,,
|
||||
"Driver",,,
|
||||
"Electric",,,
|
||||
"Engine Options",,,
|
||||
"Fleet",,,
|
||||
"Fuel log",,,
|
||||
"Fuel type",,,
|
||||
"Gasoline",,,
|
||||
"General Properties",,,
|
||||
"Horse Power",,,
|
||||
"Horse Power Tax",,,
|
||||
"Hybrid",,,
|
||||
"Image",,,
|
||||
"In Progress",,,
|
||||
"Included Services",,,
|
||||
"Information",,,
|
||||
"Insurance",,,
|
||||
"Invoice Date",,,
|
||||
"Invoice Reference",,,
|
||||
"Kilometric value",,,
|
||||
"Leasing",,,
|
||||
"Liter",,,
|
||||
"Location",,,
|
||||
"Make",,,
|
||||
"Manual",,,
|
||||
"Model",,,
|
||||
"Monthly",,,
|
||||
"Name",,,
|
||||
"None",,,
|
||||
"Notes",,,
|
||||
"Odometer",,,
|
||||
"Odometer unit",,,
|
||||
"Odometers",,,
|
||||
"Partner set",,,
|
||||
"Plate number",,,
|
||||
"Power(KW)",,,
|
||||
"Price per Liter",,,
|
||||
"Purchaser",,,
|
||||
"Recurring Cost",,,
|
||||
"Recurring Cost Frequency",,,
|
||||
"Recurring Costs",,,
|
||||
"Refueling details",,,
|
||||
"Repairing",,,
|
||||
"Seats",,,
|
||||
"Service Type",,,
|
||||
"Service log",,,
|
||||
"Services",,,
|
||||
"State",,,
|
||||
"Status",,,
|
||||
"Tags",,,
|
||||
"Terminated",,,
|
||||
"Terms and Conditions",,,
|
||||
"To Close",,,
|
||||
"Total Price",,,
|
||||
"Total cost",,,
|
||||
"Transmission",,,
|
||||
"Type",,,
|
||||
"Vehicle",,,
|
||||
"Vehicle Contract",,,
|
||||
"Vehicle Cost",,,
|
||||
"Vehicle Fuel",,,
|
||||
"Vehicle Fuel Log",,,
|
||||
"Vehicle Model",,,
|
||||
"Vehicle Recurring Cost",,,
|
||||
"Vehicle Service",,,
|
||||
"Vehicle Service Log",,,
|
||||
"Vehicle Service Type",,,
|
||||
"Vehicle contract",,,
|
||||
"Vehicle contracts",,,
|
||||
"Vehicle cost",,,
|
||||
"Vehicle fuel log",,,
|
||||
"Vehicle makes",,,
|
||||
"Vehicle models",,,
|
||||
"Vehicle odometer",,,
|
||||
"Vehicle service",,,
|
||||
"Vehicle service list",,,
|
||||
"Vehicle service log",,,
|
||||
"Vehicle service type",,,
|
||||
"Vehicle sevice type",,,
|
||||
"Vehicle tag",,,
|
||||
"Vehicle tags",,,
|
||||
"Vendor",,,
|
||||
"Vendors",,,
|
||||
"Warning Date",,,
|
||||
"Weekly",,,
|
||||
"Yearly",,,
|
||||
"g/km",,,
|
||||
"value:Fleet",,,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Erwerbsdatum",,
|
||||
"Activation Cost","Aktivierungskosten",,
|
||||
"Active","Aktiv",,
|
||||
"Additional Properties","Zusätzliche Eigenschaften",,
|
||||
"Amount","Betrag",,
|
||||
"Archived","Archiviert",,
|
||||
"Automatic","Automatisch",,
|
||||
"Booking","Buchen",,
|
||||
"BookingDate","Buchungsdatum",,
|
||||
"CO2 Emissions","CO2-Emissionen",,
|
||||
"Car value","Fahrzeugwert",,
|
||||
"Category","Kategorie",,
|
||||
"Chassis Number","Fahrgestellnummer",,
|
||||
"Color","Farbe",,
|
||||
"Company","Unternehmen",,
|
||||
"Configuration","Konfiguration",,
|
||||
"Confirmed","Bestätigt",,
|
||||
"Contact set","Kontaktsatz",,
|
||||
"Contract Expiration Date","Vertragsablaufdatum",,
|
||||
"Contract Reference","Vertragsreferenz",,
|
||||
"Contract Start date","Vertragsbeginn Datum",,
|
||||
"Contract details","Vertragsdetails",,
|
||||
"Contractor","Auftragnehmer",,
|
||||
"Cost","Kosten",,
|
||||
"Daily","Täglich",,
|
||||
"Date","Datum",,
|
||||
"Diesel","Diesel",,
|
||||
"Doors","Türen",,
|
||||
"Draft","Entwurf",,
|
||||
"Driver","Fahrer",,
|
||||
"Electric","Elektrisch",,
|
||||
"Engine Options","Motor-Optionen",,
|
||||
"Fleet","Flotte",,
|
||||
"Fuel log","Brennstoffprotokoll",,
|
||||
"Fuel type","Kraftstoffart",,
|
||||
"Gasoline","Benzin",,
|
||||
"General Properties","Allgemeine Eigenschaften",,
|
||||
"Horse Power","Pferdestärken",,
|
||||
"Horse Power Tax","Pferdestärken-Steuer",,
|
||||
"Hybrid","Hybrid",,
|
||||
"Image","Bild",,
|
||||
"In Progress","In Bearbeitung",,
|
||||
"Included Services","Inklusive Leistungen",,
|
||||
"Information","Informationen",,
|
||||
"Insurance","Versicherung",,
|
||||
"Invoice Date","Rechnungsdatum",,
|
||||
"Invoice Reference","Rechnungsreferenz",,
|
||||
"Kilometric value","Wert",,
|
||||
"Leasing","Leasing",,
|
||||
"Liter","Liter",,
|
||||
"Location","Ort",,
|
||||
"Make","Marke",,
|
||||
"Manual","Handbuch",,
|
||||
"Model","Modell",,
|
||||
"Monthly","Monatlich",,
|
||||
"Name","Name",,
|
||||
"None","Keine",,
|
||||
"Notes","Notizen",,
|
||||
"Odometer","Kilometerzähler",,
|
||||
"Odometer unit","Kilometerzähler-Einheit",,
|
||||
"Odometers","Kilometerzähler",,
|
||||
"Partner set","Partner-Set",,
|
||||
"Plate number","Kennzeichen",,
|
||||
"Power(KW)","Leistung(KW)",,
|
||||
"Price per Liter","Preis pro Liter",,
|
||||
"Purchaser","Käufer",,
|
||||
"Recurring Cost","Wiederkehrende Kosten",,
|
||||
"Recurring Cost Frequency","Wiederkehrende Kostenhäufigkeit",,
|
||||
"Recurring Costs","Wiederkehrende Kosten",,
|
||||
"Refueling details","Betankungsdetails",,
|
||||
"Repairing","Reparieren",,
|
||||
"Seats","Sitze",,
|
||||
"Service Type","Servicetyp",,
|
||||
"Service log","Serviceprotokoll",,
|
||||
"Services","Dienstleistungen",,
|
||||
"State","Zustand",,
|
||||
"Status","Status",,
|
||||
"Tags","Tags",,
|
||||
"Terminated","Abgeschlossen",,
|
||||
"Terms and Conditions","Allgemeine Geschäftsbedingungen",,
|
||||
"To Close","Zum Schließen",,
|
||||
"Total Price","Gesamtpreis",,
|
||||
"Total cost","Gesamtkosten",,
|
||||
"Transmission","Übertragung",,
|
||||
"Type","Typ",,
|
||||
"Vehicle","Fahrzeug",,
|
||||
"Vehicle Contract","Fahrzeugvertrag",,
|
||||
"Vehicle Cost","Fahrzeugkosten",,
|
||||
"Vehicle Fuel","Kraftstoff für Fahrzeuge",,
|
||||
"Vehicle Fuel Log","Fahrzeug-Kraftstoffprotokoll",,
|
||||
"Vehicle Model","Fahrzeugmodell",,
|
||||
"Vehicle Recurring Cost","Wiederkehrende Fahrzeugkosten",,
|
||||
"Vehicle Service","Fahrzeugservice",,
|
||||
"Vehicle Service Log","Fahrzeug-Service-Protokoll",,
|
||||
"Vehicle Service Type","Fahrzeug-Servicetyp",,
|
||||
"Vehicle contract","Fahrzeugvertrag",,
|
||||
"Vehicle contracts","Fahrzeugverträge",,
|
||||
"Vehicle cost","Fahrzeugkosten",,
|
||||
"Vehicle fuel log","Kraftstoffspeicher für Fahrzeuge",,
|
||||
"Vehicle makes","Fahrzeugmarken",,
|
||||
"Vehicle models","Fahrzeugmodelle",,
|
||||
"Vehicle odometer","Kilometerzähler für Fahrzeuge",,
|
||||
"Vehicle service","Fahrzeugservice",,
|
||||
"Vehicle service list","Fahrzeug-Serviceliste",,
|
||||
"Vehicle service log","Fahrzeug-Service-Protokoll",,
|
||||
"Vehicle service type","Serviceart Fahrzeug",,
|
||||
"Vehicle sevice type","Fahrzeugservicetyp",,
|
||||
"Vehicle tag","Fahrzeugkennzeichnung",,
|
||||
"Vehicle tags","Fahrzeuganhänger",,
|
||||
"Vendor","Lieferant",,
|
||||
"Vendors","Lieferanten",,
|
||||
"Warning Date","Warndatum",,
|
||||
"Weekly","Wöchentlich",,
|
||||
"Yearly","Jährlich",,
|
||||
"g/km","g/km",,
|
||||
"value:Fleet","Wert:Flotte",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date",,,
|
||||
"Activation Cost",,,
|
||||
"Active",,,
|
||||
"Additional Properties",,,
|
||||
"Amount",,,
|
||||
"Archived",,,
|
||||
"Automatic",,,
|
||||
"Booking",,,
|
||||
"BookingDate",,,
|
||||
"CO2 Emissions",,,
|
||||
"Car value",,,
|
||||
"Category",,,
|
||||
"Chassis Number",,,
|
||||
"Color",,,
|
||||
"Company",,,
|
||||
"Configuration",,,
|
||||
"Confirmed",,,
|
||||
"Contact set",,,
|
||||
"Contract Expiration Date",,,
|
||||
"Contract Reference",,,
|
||||
"Contract Start date",,,
|
||||
"Contract details",,,
|
||||
"Contractor",,,
|
||||
"Cost",,,
|
||||
"Daily",,,
|
||||
"Date",,,
|
||||
"Diesel",,,
|
||||
"Doors",,,
|
||||
"Draft",,,
|
||||
"Driver",,,
|
||||
"Electric",,,
|
||||
"Engine Options",,,
|
||||
"Fleet",,,
|
||||
"Fuel log",,,
|
||||
"Fuel type",,,
|
||||
"Gasoline",,,
|
||||
"General Properties",,,
|
||||
"Horse Power",,,
|
||||
"Horse Power Tax",,,
|
||||
"Hybrid",,,
|
||||
"Image",,,
|
||||
"In Progress",,,
|
||||
"Included Services",,,
|
||||
"Information",,,
|
||||
"Insurance",,,
|
||||
"Invoice Date",,,
|
||||
"Invoice Reference",,,
|
||||
"Kilometric value","Value",,
|
||||
"Leasing",,,
|
||||
"Liter",,,
|
||||
"Location",,,
|
||||
"Make",,,
|
||||
"Manual",,,
|
||||
"Model",,,
|
||||
"Monthly",,,
|
||||
"Name",,,
|
||||
"None",,,
|
||||
"Notes",,,
|
||||
"Odometer",,,
|
||||
"Odometer unit",,,
|
||||
"Odometers",,,
|
||||
"Partner set",,,
|
||||
"Plate number",,,
|
||||
"Power(KW)",,,
|
||||
"Price per Liter",,,
|
||||
"Purchaser",,,
|
||||
"Recurring Cost",,,
|
||||
"Recurring Cost Frequency",,,
|
||||
"Recurring Costs",,,
|
||||
"Refueling details",,,
|
||||
"Repairing",,,
|
||||
"Seats",,,
|
||||
"Service Type",,,
|
||||
"Service log",,,
|
||||
"Services",,,
|
||||
"State",,,
|
||||
"Status",,,
|
||||
"Tags",,,
|
||||
"Terminated",,,
|
||||
"Terms and Conditions",,,
|
||||
"To Close",,,
|
||||
"Total Price",,,
|
||||
"Total cost",,,
|
||||
"Transmission",,,
|
||||
"Type",,,
|
||||
"Vehicle",,,
|
||||
"Vehicle Contract",,,
|
||||
"Vehicle Cost",,,
|
||||
"Vehicle Fuel",,,
|
||||
"Vehicle Fuel Log",,,
|
||||
"Vehicle Model",,,
|
||||
"Vehicle Recurring Cost",,,
|
||||
"Vehicle Service",,,
|
||||
"Vehicle Service Log",,,
|
||||
"Vehicle Service Type",,,
|
||||
"Vehicle contract",,,
|
||||
"Vehicle contracts",,,
|
||||
"Vehicle cost",,,
|
||||
"Vehicle fuel log",,,
|
||||
"Vehicle makes",,,
|
||||
"Vehicle models",,,
|
||||
"Vehicle odometer",,,
|
||||
"Vehicle service",,,
|
||||
"Vehicle service list",,,
|
||||
"Vehicle service log",,,
|
||||
"Vehicle service type",,,
|
||||
"Vehicle sevice type",,,
|
||||
"Vehicle tag",,,
|
||||
"Vehicle tags",,,
|
||||
"Vendor",,,
|
||||
"Vendors",,,
|
||||
"Warning Date",,,
|
||||
"Weekly",,,
|
||||
"Yearly",,,
|
||||
"g/km",,,
|
||||
"value:Fleet",,,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Fecha de adquisición",,
|
||||
"Activation Cost","Costo de activación",,
|
||||
"Active","Activo",,
|
||||
"Additional Properties","Propiedades adicionales",,
|
||||
"Amount","Importe",,
|
||||
"Archived","Archivado",,
|
||||
"Automatic","Automático",,
|
||||
"Booking","Reservas",,
|
||||
"BookingDate","ReservarFecha",,
|
||||
"CO2 Emissions","Emisiones de CO2",,
|
||||
"Car value","Valor del coche",,
|
||||
"Category","Categoría",,
|
||||
"Chassis Number","Número de chasis",,
|
||||
"Color","Color",,
|
||||
"Company","Empresa",,
|
||||
"Configuration","Configuración",,
|
||||
"Confirmed","Confirmado",,
|
||||
"Contact set","Juego de contactos",,
|
||||
"Contract Expiration Date","Fecha de vencimiento del contrato",,
|
||||
"Contract Reference","Referencia del contrato",,
|
||||
"Contract Start date","Fecha de inicio del contrato",,
|
||||
"Contract details","Detalles del contrato",,
|
||||
"Contractor","Contratista",,
|
||||
"Cost","Coste",,
|
||||
"Daily","Diariamente",,
|
||||
"Date","Fecha",,
|
||||
"Diesel","Diesel",,
|
||||
"Doors","Puertas",,
|
||||
"Draft","Proyecto de",,
|
||||
"Driver","Conductor",,
|
||||
"Electric","Eléctrico",,
|
||||
"Engine Options","Opciones de motor",,
|
||||
"Fleet","Flota",,
|
||||
"Fuel log","Registro de combustible",,
|
||||
"Fuel type","Tipo de combustible",,
|
||||
"Gasoline","Gasolina",,
|
||||
"General Properties","Propiedades generales",,
|
||||
"Horse Power","Caballos de fuerza",,
|
||||
"Horse Power Tax","Impuesto sobre los caballos de fuerza",,
|
||||
"Hybrid","Híbrido",,
|
||||
"Image","Imagen",,
|
||||
"In Progress","En progreso",,
|
||||
"Included Services","Servicios Incluidos",,
|
||||
"Information","Información",,
|
||||
"Insurance","Seguros",,
|
||||
"Invoice Date","Fecha de la factura",,
|
||||
"Invoice Reference","Referencia Factura",,
|
||||
"Kilometric value","Valor",,
|
||||
"Leasing","Arrendamiento",,
|
||||
"Liter","Litro",,
|
||||
"Location","Ubicación",,
|
||||
"Make","Marca",,
|
||||
"Manual","Manual",,
|
||||
"Model","Modelo",,
|
||||
"Monthly","Mensualmente",,
|
||||
"Name","Nombre",,
|
||||
"None","Ninguno",,
|
||||
"Notes","Notas",,
|
||||
"Odometer","Odómetro",,
|
||||
"Odometer unit","Unidad de odómetro",,
|
||||
"Odometers","Cuentakilómetros",,
|
||||
"Partner set","Set de interlocutores",,
|
||||
"Plate number","Número de placa",,
|
||||
"Power(KW)","Potencia (KW)",,
|
||||
"Price per Liter","Precio por litro",,
|
||||
"Purchaser","Comprador",,
|
||||
"Recurring Cost","Costo recurrente",,
|
||||
"Recurring Cost Frequency","Frecuencia de costes recurrentes",,
|
||||
"Recurring Costs","Costes recurrentes",,
|
||||
"Refueling details","Detalles de la recarga",,
|
||||
"Repairing","Reparación",,
|
||||
"Seats","Asientos",,
|
||||
"Service Type","Tipo de servicio",,
|
||||
"Service log","Registro de servicio",,
|
||||
"Services","Servicios",,
|
||||
"State","Estado",,
|
||||
"Status","Estado",,
|
||||
"Tags","Etiquetas",,
|
||||
"Terminated","Terminado",,
|
||||
"Terms and Conditions","Términos y condiciones",,
|
||||
"To Close","Para Cerrar",,
|
||||
"Total Price","Precio Total",,
|
||||
"Total cost","Coste total",,
|
||||
"Transmission","Transmisión",,
|
||||
"Type","Tipo",,
|
||||
"Vehicle","Vehículo",,
|
||||
"Vehicle Contract","Contrato de Vehículo",,
|
||||
"Vehicle Cost","Costo del vehículo",,
|
||||
"Vehicle Fuel","Combustible para vehículos",,
|
||||
"Vehicle Fuel Log","Registro de combustible del vehículo",,
|
||||
"Vehicle Model","Modelo de vehículo",,
|
||||
"Vehicle Recurring Cost","Costo recurrente del vehículo",,
|
||||
"Vehicle Service","Servicio de Vehículos",,
|
||||
"Vehicle Service Log","Registro de servicio del vehículo",,
|
||||
"Vehicle Service Type","Tipo de servicio del vehículo",,
|
||||
"Vehicle contract","Contrato de vehículo",,
|
||||
"Vehicle contracts","Contratos de vehículos",,
|
||||
"Vehicle cost","Coste del vehículo",,
|
||||
"Vehicle fuel log","Registro de combustible del vehículo",,
|
||||
"Vehicle makes","Marca del vehículo",,
|
||||
"Vehicle models","Modelos de vehículos",,
|
||||
"Vehicle odometer","Cuentakilómetros del vehículo",,
|
||||
"Vehicle service","Servicio de vehículos",,
|
||||
"Vehicle service list","Lista de servicio de vehículos",,
|
||||
"Vehicle service log","Registro de servicio del vehículo",,
|
||||
"Vehicle service type","Tipo de servicio del vehículo",,
|
||||
"Vehicle sevice type","Tipo de servicio del vehículo",,
|
||||
"Vehicle tag","Etiqueta del vehículo",,
|
||||
"Vehicle tags","Etiquetas de vehículos",,
|
||||
"Vendor","Proveedor",,
|
||||
"Vendors","Proveedores",,
|
||||
"Warning Date","Fecha de advertencia",,
|
||||
"Weekly","Semanalmente",,
|
||||
"Yearly","Anualmente",,
|
||||
"g/km","g/km",,
|
||||
"value:Fleet","valor:Flota",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Date d'acquisition",,
|
||||
"Activation Cost","Coûts d'activation",,
|
||||
"Active","Actif",,
|
||||
"Additional Properties","Options",,
|
||||
"Amount",,,
|
||||
"Archived",,,
|
||||
"Automatic","Automatique",,
|
||||
"Booking",,,
|
||||
"BookingDate",,,
|
||||
"CO2 Emissions","Emission de CO2",,
|
||||
"Car value","Valeur de la voiture",,
|
||||
"Category",,,
|
||||
"Chassis Number","Numéro de chassis",,
|
||||
"Color","Couleur",,
|
||||
"Company","Société",,
|
||||
"Configuration",,,
|
||||
"Confirmed",,,
|
||||
"Contact set",,,
|
||||
"Contract Expiration Date","Date d'expiration du contrat",,
|
||||
"Contract Reference","Référence du contrat",,
|
||||
"Contract Start date","Date de début du contrat",,
|
||||
"Contract details","Détails du contrat",,
|
||||
"Contractor","Contractant",,
|
||||
"Cost",,,
|
||||
"Daily","Quotidien",,
|
||||
"Date",,,
|
||||
"Diesel",,,
|
||||
"Doors","Nombre de portes",,
|
||||
"Draft",,,
|
||||
"Driver","Conducteur",,
|
||||
"Electric","Electrique",,
|
||||
"Engine Options","Options du moteur",,
|
||||
"Fleet","Parc automobile",,
|
||||
"Fuel log","Consommation de carburant",,
|
||||
"Fuel type","Type de carburant",,
|
||||
"Gasoline","Essence",,
|
||||
"General Properties","Propriétés",,
|
||||
"Horse Power","Nombre de chevaux",,
|
||||
"Horse Power Tax","Taxe sur la puissance (en chevaux fiscaux)",,
|
||||
"Hybrid","Hybride",,
|
||||
"Image","Logo",,
|
||||
"In Progress","En cours",,
|
||||
"Included Services","Services inclus",,
|
||||
"Information",,,
|
||||
"Insurance","Assurance",,
|
||||
"Invoice Date","Date de facturation",,
|
||||
"Invoice Reference","Référence de la facture",,
|
||||
"Kilometric value","Kilométrage",,
|
||||
"Leasing",,,
|
||||
"Liter","Litre",,
|
||||
"Location","Lieu",,
|
||||
"Make","Marque",,
|
||||
"Manual","Manuel",,
|
||||
"Model","Modèle",,
|
||||
"Monthly","Mensuel",,
|
||||
"Name","Nom",,
|
||||
"None",,,
|
||||
"Notes",,,
|
||||
"Odometer","Kilométrage",,
|
||||
"Odometer unit","Unité de distance",,
|
||||
"Odometers","Kilométrage",,
|
||||
"Partner set",,,
|
||||
"Plate number","Plaque d'immatriculation",,
|
||||
"Power(KW)","Puissance",,
|
||||
"Price per Liter","Prix au litre",,
|
||||
"Purchaser","Acheteur",,
|
||||
"Recurring Cost","Coût récurrent",,
|
||||
"Recurring Cost Frequency","Fréquence de récurrence du coût",,
|
||||
"Recurring Costs","Coûts récurrents",,
|
||||
"Refueling details","Détails du plein",,
|
||||
"Repairing","Dépannage",,
|
||||
"Seats","Nombres de places dans le véhicule",,
|
||||
"Service Type","Type de service",,
|
||||
"Service log","Journal des services",,
|
||||
"Services","Services",,
|
||||
"State","État",,
|
||||
"Status","État",,
|
||||
"Tags","Étiquettes",,
|
||||
"Terminated","Terminé",,
|
||||
"Terms and Conditions","Conditions générales",,
|
||||
"To Close","À clôturer",,
|
||||
"Total Price","Prix total",,
|
||||
"Total cost","Coût total estimé",,
|
||||
"Transmission",,,
|
||||
"Type",,,
|
||||
"Vehicle","Véhicule",,
|
||||
"Vehicle Contract","Contrats",,
|
||||
"Vehicle Cost","Coûts",,
|
||||
"Vehicle Fuel","Consommation de carburant",,
|
||||
"Vehicle Fuel Log","Relevés kilométriques",,
|
||||
"Vehicle Model","Modèle de véhicule",,
|
||||
"Vehicle Recurring Cost","Coût récurrent",,
|
||||
"Vehicle Service",,,
|
||||
"Vehicle Service Log","Journal des services",,
|
||||
"Vehicle Service Type","Type de service",,
|
||||
"Vehicle contract","Contrat",,
|
||||
"Vehicle contracts","Contrat",,
|
||||
"Vehicle cost","Coûts du vehicule",,
|
||||
"Vehicle fuel log","Consommation de carburant",,
|
||||
"Vehicle makes","Marques véhicules",,
|
||||
"Vehicle models","Modèle de véhicule",,
|
||||
"Vehicle odometer","Relevés kilomètrique des véhicules",,
|
||||
"Vehicle service","Services",,
|
||||
"Vehicle service list",,,
|
||||
"Vehicle service log","Journal des services",,
|
||||
"Vehicle service type","Type de service",,
|
||||
"Vehicle sevice type","Type de service",,
|
||||
"Vehicle tag","Etiquette véhicule",,
|
||||
"Vehicle tags","Étiquettes de véhicule",,
|
||||
"Vendor","Fournisseur",,
|
||||
"Vendors","Fournisseurs",,
|
||||
"Warning Date","Date d'alerte",,
|
||||
"Weekly","Hebdomadaire",,
|
||||
"Yearly","Annuel",,
|
||||
"g/km",,,
|
||||
"value:Fleet","Parc automobile",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Data di acquisizione",,
|
||||
"Activation Cost","Costo di attivazione",,
|
||||
"Active","Attivo",,
|
||||
"Additional Properties","Proprietà aggiuntive",,
|
||||
"Amount","Importo",,
|
||||
"Archived","Archiviato",,
|
||||
"Automatic","Automatico",,
|
||||
"Booking","Prenotazione",,
|
||||
"BookingDate","Data di prenotazione",,
|
||||
"CO2 Emissions","Emissioni di CO2",,
|
||||
"Car value","Valore auto",,
|
||||
"Category","Categoria",,
|
||||
"Chassis Number","Numero di telaio",,
|
||||
"Color","Colore",,
|
||||
"Company","L'azienda",,
|
||||
"Configuration","Configurazione",,
|
||||
"Confirmed","Confermato",,
|
||||
"Contact set","Set di contatti",,
|
||||
"Contract Expiration Date","Data di scadenza del contratto",,
|
||||
"Contract Reference","Riferimento del contratto",,
|
||||
"Contract Start date","Data di inizio del contratto",,
|
||||
"Contract details","Dettagli del contratto",,
|
||||
"Contractor","Appaltatore",,
|
||||
"Cost","Costo",,
|
||||
"Daily","Tutti i giorni",,
|
||||
"Date","Data",,
|
||||
"Diesel","Diesel",,
|
||||
"Doors","Porte",,
|
||||
"Draft","Bozza",,
|
||||
"Driver","Autista",,
|
||||
"Electric","Elettrico",,
|
||||
"Engine Options","Opzioni motore",,
|
||||
"Fleet","Flotta",,
|
||||
"Fuel log","Log carburante",,
|
||||
"Fuel type","Tipo di carburante",,
|
||||
"Gasoline","Benzina",,
|
||||
"General Properties","Proprietà generali",,
|
||||
"Horse Power","Potenza del cavallo",,
|
||||
"Horse Power Tax","Tassa sull'alimentazione dei cavalli",,
|
||||
"Hybrid","Ibrido",,
|
||||
"Image","Immagine",,
|
||||
"In Progress","In corso",,
|
||||
"Included Services","Servizi inclusi",,
|
||||
"Information","Informazioni",,
|
||||
"Insurance","Assicurazione",,
|
||||
"Invoice Date","Data fattura",,
|
||||
"Invoice Reference","Riferimento fattura",,
|
||||
"Kilometric value","Valore",,
|
||||
"Leasing","Leasing",,
|
||||
"Liter","Litro",,
|
||||
"Location","Posizione",,
|
||||
"Make","Marca",,
|
||||
"Manual","Manuale",,
|
||||
"Model","Modello",,
|
||||
"Monthly","Mensile",,
|
||||
"Name","Nome",,
|
||||
"None","Nessuna",,
|
||||
"Notes","Note",,
|
||||
"Odometer","Contachilometri",,
|
||||
"Odometer unit","Unità contachilometri",,
|
||||
"Odometers","Odometri",,
|
||||
"Partner set","Set partner",,
|
||||
"Plate number","Numero di targa",,
|
||||
"Power(KW)","Potenza (KW)",,
|
||||
"Price per Liter","Prezzo per litro",,
|
||||
"Purchaser","Acquirente",,
|
||||
"Recurring Cost","Costi ricorrenti",,
|
||||
"Recurring Cost Frequency","Frequenza dei costi ricorrenti",,
|
||||
"Recurring Costs","Costi ricorrenti",,
|
||||
"Refueling details","Dettagli sul rifornimento di carburante",,
|
||||
"Repairing","Riparazione",,
|
||||
"Seats","Posti a sedere",,
|
||||
"Service Type","Tipo di servizio",,
|
||||
"Service log","Log di servizio",,
|
||||
"Services","Servizi",,
|
||||
"State","Stato",,
|
||||
"Status","Stato",,
|
||||
"Tags","Etichette",,
|
||||
"Terminated","Terminato",,
|
||||
"Terms and Conditions","Termini e condizioni",,
|
||||
"To Close","Per chiudere",,
|
||||
"Total Price","Prezzo totale",,
|
||||
"Total cost","Costo totale",,
|
||||
"Transmission","Trasmissione",,
|
||||
"Type","Tipo",,
|
||||
"Vehicle","Veicolo",,
|
||||
"Vehicle Contract","Contratto del veicolo",,
|
||||
"Vehicle Cost","Costo del veicolo",,
|
||||
"Vehicle Fuel","Veicolo Carburante",,
|
||||
"Vehicle Fuel Log","Registro carburante del veicolo",,
|
||||
"Vehicle Model","Modello del veicolo",,
|
||||
"Vehicle Recurring Cost","Costo ricorrente del veicolo",,
|
||||
"Vehicle Service","Servizio veicoli",,
|
||||
"Vehicle Service Log","Registro di servizio del veicolo",,
|
||||
"Vehicle Service Type","Tipo di servizio del veicolo",,
|
||||
"Vehicle contract","Contratto del veicolo",,
|
||||
"Vehicle contracts","Contratti per veicoli",,
|
||||
"Vehicle cost","Costo del veicolo",,
|
||||
"Vehicle fuel log","Registro carburante del veicolo",,
|
||||
"Vehicle makes","Marche del veicolo",,
|
||||
"Vehicle models","Modelli di veicoli",,
|
||||
"Vehicle odometer","Contachilometri",,
|
||||
"Vehicle service","Servizio veicoli",,
|
||||
"Vehicle service list","Elenco dei servizi di assistenza veicoli",,
|
||||
"Vehicle service log","Registro di servizio del veicolo",,
|
||||
"Vehicle service type","Tipo di servizio del veicolo",,
|
||||
"Vehicle sevice type","Tipo di servizio del veicolo",,
|
||||
"Vehicle tag","Etichetta del veicolo",,
|
||||
"Vehicle tags","Etichette del veicolo",,
|
||||
"Vendor","Fornitore",,
|
||||
"Vendors","Fornitori",,
|
||||
"Warning Date","Data di avvertimento",,
|
||||
"Weekly","Settimanale",,
|
||||
"Yearly","Annuale",,
|
||||
"g/km","g/km",,
|
||||
"value:Fleet","valore:Flotta",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Verwervingsdatum",,
|
||||
"Activation Cost","Activeringskosten",,
|
||||
"Active","Actief",,
|
||||
"Additional Properties","Extra eigenschappen",,
|
||||
"Amount","Bedrag",,
|
||||
"Archived","Gearchiveerd",,
|
||||
"Automatic","Automatisch",,
|
||||
"Booking","Reservering",,
|
||||
"BookingDate","ReserveringDatum",,
|
||||
"CO2 Emissions","CO2-uitstoot",,
|
||||
"Car value","Waarde van de auto",,
|
||||
"Category","Categorie",,
|
||||
"Chassis Number","Chassisnummer",,
|
||||
"Color","Kleur",,
|
||||
"Company","Bedrijf",,
|
||||
"Configuration","Configuratie",,
|
||||
"Confirmed","Bevestigd",,
|
||||
"Contact set","Contactenset",,
|
||||
"Contract Expiration Date","Vervaldatum van het contract",,
|
||||
"Contract Reference","Contractreferentie",,
|
||||
"Contract Start date","Startdatum van het contract",,
|
||||
"Contract details","Contractgegevens",,
|
||||
"Contractor","Aannemer",,
|
||||
"Cost","Kosten",,
|
||||
"Daily","Dagelijks",,
|
||||
"Date","Datum",,
|
||||
"Diesel","Diesel",,
|
||||
"Doors","Deuren",,
|
||||
"Draft","Ontwerp",,
|
||||
"Driver","Bestuurder",,
|
||||
"Electric","Elektrisch",,
|
||||
"Engine Options","Motor Opties",,
|
||||
"Fleet","Vloot",,
|
||||
"Fuel log","Brandstoflogboek",,
|
||||
"Fuel type","Type brandstof",,
|
||||
"Gasoline","Benzine",,
|
||||
"General Properties","Algemene eigenschappen",,
|
||||
"Horse Power","Paardenkracht",,
|
||||
"Horse Power Tax","Paardenbelasting",,
|
||||
"Hybrid","Hybride",,
|
||||
"Image","Beeld",,
|
||||
"In Progress","In uitvoering",,
|
||||
"Included Services","Inbegrepen diensten",,
|
||||
"Information","Informatie",,
|
||||
"Insurance","Verzekering",,
|
||||
"Invoice Date","Factuur Datum",,
|
||||
"Invoice Reference","Factuur Referentie",,
|
||||
"Kilometric value","Waarde",,
|
||||
"Leasing","Leasing",,
|
||||
"Liter","Liter",,
|
||||
"Location","Ligging",,
|
||||
"Make","Merk",,
|
||||
"Manual","Handleiding",,
|
||||
"Model","Model",,
|
||||
"Monthly","Maandelijks",,
|
||||
"Name","Naam",,
|
||||
"None","Geen",,
|
||||
"Notes","Opmerkingen",,
|
||||
"Odometer","Kilometerteller",,
|
||||
"Odometer unit","Kilometerteller eenheid",,
|
||||
"Odometers","Odometers",,
|
||||
"Partner set","Partner set",,
|
||||
"Plate number","Plaatnummer",,
|
||||
"Power(KW)","Macht (KW)",,
|
||||
"Price per Liter","Prijs per liter",,
|
||||
"Purchaser","Koper",,
|
||||
"Recurring Cost","Terugkerende kosten",,
|
||||
"Recurring Cost Frequency","Terugkerende kosten Frequentie",,
|
||||
"Recurring Costs","Terugkerende kosten",,
|
||||
"Refueling details","Informatie over tanken",,
|
||||
"Repairing","Reparatie",,
|
||||
"Seats","Zitplaatsen",,
|
||||
"Service Type","Type dienst",,
|
||||
"Service log","Service logboek",,
|
||||
"Services","Diensten",,
|
||||
"State","Staat",,
|
||||
"Status","Status",,
|
||||
"Tags","Tags",,
|
||||
"Terminated","Beëindigd",,
|
||||
"Terms and Conditions","Voorwaarden en bepalingen",,
|
||||
"To Close","Sluiten",,
|
||||
"Total Price","Totale prijs",,
|
||||
"Total cost","Totale kosten",,
|
||||
"Transmission","Transmissie",,
|
||||
"Type","Type",,
|
||||
"Vehicle","Voertuig",,
|
||||
"Vehicle Contract","Voertuigcontract",,
|
||||
"Vehicle Cost","Voertuigkosten",,
|
||||
"Vehicle Fuel","Voertuig Brandstof",,
|
||||
"Vehicle Fuel Log","Brandstoflogboek van het voertuig",,
|
||||
"Vehicle Model","Voertuigmodel",,
|
||||
"Vehicle Recurring Cost","Voertuig Terugkerende kosten",,
|
||||
"Vehicle Service","Voertuig Service",,
|
||||
"Vehicle Service Log","Voertuig Service Logboek",,
|
||||
"Vehicle Service Type","Het Type van de voertuigdienst",,
|
||||
"Vehicle contract","Voertuigcontract",,
|
||||
"Vehicle contracts","Voertuigcontracten",,
|
||||
"Vehicle cost","Voertuigkosten",,
|
||||
"Vehicle fuel log","Brandstoflogboek van het voertuig",,
|
||||
"Vehicle makes","Voertuigmerken",,
|
||||
"Vehicle models","Voertuigmodellen",,
|
||||
"Vehicle odometer","Kilometerstand van het voertuig",,
|
||||
"Vehicle service","Voertuig service",,
|
||||
"Vehicle service list","Voertuigservicelijst",,
|
||||
"Vehicle service log","Voertuigservicelogboek",,
|
||||
"Vehicle service type","Type voertuigservice",,
|
||||
"Vehicle sevice type","Voertuigservice type",,
|
||||
"Vehicle tag","Voertuiglabel",,
|
||||
"Vehicle tags","Voertuiglabels",,
|
||||
"Vendor","Verkoper",,
|
||||
"Vendors","Verkopers",,
|
||||
"Warning Date","Waarschuwing Datum",,
|
||||
"Weekly","Wekelijks",,
|
||||
"Yearly","Jaarlijks",,
|
||||
"g/km","g/km",,
|
||||
"value:Fleet","waarde: Vloot",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Data nabycia",,
|
||||
"Activation Cost","Koszty aktywacji Koszt aktywacji",,
|
||||
"Active","Aktywny",,
|
||||
"Additional Properties","Dodatkowe właściwości",,
|
||||
"Amount","Kwota",,
|
||||
"Archived","Zarchiwizowane",,
|
||||
"Automatic","Automatyczne",,
|
||||
"Booking","Rezerwacja",,
|
||||
"BookingDate","RezerwacjaData",,
|
||||
"CO2 Emissions","Emisje CO2",,
|
||||
"Car value","Wartość samochodu",,
|
||||
"Category","Kategoria",,
|
||||
"Chassis Number","Numer podwozia",,
|
||||
"Color","Kolor",,
|
||||
"Company","Firma",,
|
||||
"Configuration","Konfiguracja",,
|
||||
"Confirmed","Potwierdzone",,
|
||||
"Contact set","Zestaw stykowy",,
|
||||
"Contract Expiration Date","Data wygaśnięcia umowy",,
|
||||
"Contract Reference","Odniesienie do umowy",,
|
||||
"Contract Start date","Data rozpoczęcia umowy",,
|
||||
"Contract details","Szczegóły umowy",,
|
||||
"Contractor","Wykonawca",,
|
||||
"Cost","Koszt",,
|
||||
"Daily","Codziennie",,
|
||||
"Date","Data",,
|
||||
"Diesel","Olej napędowy",,
|
||||
"Doors","Drzwi",,
|
||||
"Draft","Wstępny projekt",,
|
||||
"Driver","Kierowca",,
|
||||
"Electric","Elektryczne",,
|
||||
"Engine Options","Opcje silnika",,
|
||||
"Fleet","Flota",,
|
||||
"Fuel log","Dziennik paliwowy",,
|
||||
"Fuel type","Rodzaj paliwa",,
|
||||
"Gasoline","Benzyna",,
|
||||
"General Properties","Właściwości ogólne",,
|
||||
"Horse Power","Moc konia",,
|
||||
"Horse Power Tax","Podatek od energii koni mechanicznych",,
|
||||
"Hybrid","Hybrydowy",,
|
||||
"Image","Obrazek",,
|
||||
"In Progress","W toku",,
|
||||
"Included Services","Włączone usługi",,
|
||||
"Information","Informacje",,
|
||||
"Insurance","Ubezpieczenia",,
|
||||
"Invoice Date","Data wystawienia faktury",,
|
||||
"Invoice Reference","Odniesienie do faktury",,
|
||||
"Kilometric value","Wartość",,
|
||||
"Leasing","Leasing",,
|
||||
"Liter","Litr",,
|
||||
"Location","Lokalizacja",,
|
||||
"Make","Marka",,
|
||||
"Manual","Instrukcja obsługi",,
|
||||
"Model","Model",,
|
||||
"Monthly","Miesięcznie",,
|
||||
"Name","Nazwa",,
|
||||
"None","Brak.",,
|
||||
"Notes","Uwagi",,
|
||||
"Odometer","licznik przebiegu",,
|
||||
"Odometer unit","Jednostka licznika kilometrów",,
|
||||
"Odometers","Odometry",,
|
||||
"Partner set","Zestaw partnerski",,
|
||||
"Plate number","Numer tabliczki znamionowej",,
|
||||
"Power(KW)","Moc (KW)",,
|
||||
"Price per Liter","Cena za litr",,
|
||||
"Purchaser","Nabywca",,
|
||||
"Recurring Cost","Koszty bieżące",,
|
||||
"Recurring Cost Frequency","Częstotliwość powtarzalnych kosztów",,
|
||||
"Recurring Costs","Koszty bieżące",,
|
||||
"Refueling details","Szczegóły dotyczące tankowania",,
|
||||
"Repairing","Naprawa",,
|
||||
"Seats","Siedzenia",,
|
||||
"Service Type","Typ usługi",,
|
||||
"Service log","Dziennik serwisowy",,
|
||||
"Services","Usługi",,
|
||||
"State","państwo",,
|
||||
"Status","Status",,
|
||||
"Tags","Tagi",,
|
||||
"Terminated","Wypowiedziane",,
|
||||
"Terms and Conditions","Warunki umowy",,
|
||||
"To Close","Do zamknięcia",,
|
||||
"Total Price","Cena ogółem",,
|
||||
"Total cost","Koszt całkowity",,
|
||||
"Transmission","Przekazywanie danych",,
|
||||
"Type","Typ",,
|
||||
"Vehicle","Pojazd",,
|
||||
"Vehicle Contract","Umowa z pojazdem",,
|
||||
"Vehicle Cost","Koszt pojazdu",,
|
||||
"Vehicle Fuel","Pojazd Paliwo",,
|
||||
"Vehicle Fuel Log","Dziennik paliwowy pojazdu",,
|
||||
"Vehicle Model","Model pojazdu",,
|
||||
"Vehicle Recurring Cost","Koszty powtarzające się w przypadku pojazdu",,
|
||||
"Vehicle Service","Serwis pojazdów",,
|
||||
"Vehicle Service Log","Dziennik serwisowy pojazdu",,
|
||||
"Vehicle Service Type","Typ usługi serwisowej pojazdu",,
|
||||
"Vehicle contract","Umowa dotycząca pojazdów",,
|
||||
"Vehicle contracts","Umowy dotyczące pojazdów",,
|
||||
"Vehicle cost","Koszt pojazdu",,
|
||||
"Vehicle fuel log","Dziennik paliwowy pojazdu",,
|
||||
"Vehicle makes","Marki pojazdów",,
|
||||
"Vehicle models","Modele pojazdów",,
|
||||
"Vehicle odometer","Stan licznika kilometrów pojazdu",,
|
||||
"Vehicle service","Serwis pojazdów",,
|
||||
"Vehicle service list","Lista serwisowa pojazdów",,
|
||||
"Vehicle service log","Dziennik serwisowy pojazdu",,
|
||||
"Vehicle service type","Typ usługi serwisowej pojazdu",,
|
||||
"Vehicle sevice type","Typ usługi dla pojazdów",,
|
||||
"Vehicle tag","Etykieta pojazdu",,
|
||||
"Vehicle tags","Etykiety pojazdu",,
|
||||
"Vendor","Sprzedawca",,
|
||||
"Vendors","Sprzedawcy",,
|
||||
"Warning Date","Data ostrzeżenia",,
|
||||
"Weekly","Tygodniowo",,
|
||||
"Yearly","Corocznie",,
|
||||
"g/km","g/km",,
|
||||
"value:Fleet","wartość: Flota",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Data de aquisição",,
|
||||
"Activation Cost","Custo de ativação",,
|
||||
"Active","Ativo",,
|
||||
"Additional Properties","Propriedades adicionais",,
|
||||
"Amount","Montante",,
|
||||
"Archived","Arquivado",,
|
||||
"Automatic","Automático",,
|
||||
"Booking","Reservas",,
|
||||
"BookingDate","BookingDate",,
|
||||
"CO2 Emissions","Emissões de CO2",,
|
||||
"Car value","Valor do carro",,
|
||||
"Category","Categoria: Categoria",,
|
||||
"Chassis Number","Número do Chassis",,
|
||||
"Color","Cor",,
|
||||
"Company","Empresa",,
|
||||
"Configuration","Configuração",,
|
||||
"Confirmed","Confirmado",,
|
||||
"Contact set","Conjunto de contatos",,
|
||||
"Contract Expiration Date","Data de vencimento do contrato",,
|
||||
"Contract Reference","Referência ao Contrato",,
|
||||
"Contract Start date","Data de início do contrato",,
|
||||
"Contract details","Detalhes do contrato",,
|
||||
"Contractor","Empreiteiro",,
|
||||
"Cost","Custo",,
|
||||
"Daily","Diariamente",,
|
||||
"Date","Data",,
|
||||
"Diesel","Diesel",,
|
||||
"Doors","Portas",,
|
||||
"Draft","Rascunho",,
|
||||
"Driver","Motorista",,
|
||||
"Electric","Elétrico",,
|
||||
"Engine Options","Opções de Motor",,
|
||||
"Fleet","Frota",,
|
||||
"Fuel log","Log de combustível",,
|
||||
"Fuel type","Tipo de combustível",,
|
||||
"Gasoline","Gasolina",,
|
||||
"General Properties","Propriedades Gerais",,
|
||||
"Horse Power","Potência do cavalo",,
|
||||
"Horse Power Tax","Imposto sobre a energia do cavalo",,
|
||||
"Hybrid","Híbrido",,
|
||||
"Image","Imagem",,
|
||||
"In Progress","Em andamento",,
|
||||
"Included Services","Serviços Incluídos",,
|
||||
"Information","Informação",,
|
||||
"Insurance","Seguros",,
|
||||
"Invoice Date","Data da fatura",,
|
||||
"Invoice Reference","Referência de fatura",,
|
||||
"Kilometric value","Valor",,
|
||||
"Leasing","Arrendamento",,
|
||||
"Liter","Literatura",,
|
||||
"Location","Localização",,
|
||||
"Make","Marca",,
|
||||
"Manual","Manual de instruções",,
|
||||
"Model","Modelo",,
|
||||
"Monthly","Mensal",,
|
||||
"Name","Nome e Sobrenome",,
|
||||
"None","Nenhum",,
|
||||
"Notes","Notas",,
|
||||
"Odometer","Odômetro",,
|
||||
"Odometer unit","Unidade odométrica",,
|
||||
"Odometers","Odómetros",,
|
||||
"Partner set","Set parceiro",,
|
||||
"Plate number","Número da placa",,
|
||||
"Power(KW)","Potência (KW)",,
|
||||
"Price per Liter","Preço por litro",,
|
||||
"Purchaser","Comprador",,
|
||||
"Recurring Cost","Custos recorrentes",,
|
||||
"Recurring Cost Frequency","Freqüência de custos recorrentes",,
|
||||
"Recurring Costs","Custos recorrentes",,
|
||||
"Refueling details","Detalhes do reabastecimento",,
|
||||
"Repairing","Reparação",,
|
||||
"Seats","Lugares",,
|
||||
"Service Type","Tipo de Serviço",,
|
||||
"Service log","Log de serviço",,
|
||||
"Services","Serviços",,
|
||||
"State","Estado",,
|
||||
"Status","Estado",,
|
||||
"Tags","Etiquetas",,
|
||||
"Terminated","Terminado",,
|
||||
"Terms and Conditions","Termos e Condições",,
|
||||
"To Close","Fechar",,
|
||||
"Total Price","Preço Total",,
|
||||
"Total cost","Custo total",,
|
||||
"Transmission","Transmissão",,
|
||||
"Type","Tipo de",,
|
||||
"Vehicle","Veículo",,
|
||||
"Vehicle Contract","Contrato de Veículo",,
|
||||
"Vehicle Cost","Custo do Veículo",,
|
||||
"Vehicle Fuel","Veículo Combustível",,
|
||||
"Vehicle Fuel Log","Log de Combustível do Veículo",,
|
||||
"Vehicle Model","Modelo do Veículo",,
|
||||
"Vehicle Recurring Cost","Custo Recorrente do Veículo",,
|
||||
"Vehicle Service","Serviço de Veículos",,
|
||||
"Vehicle Service Log","Log de serviço do veículo",,
|
||||
"Vehicle Service Type","Tipo de serviço do veículo",,
|
||||
"Vehicle contract","Contrato de veículo",,
|
||||
"Vehicle contracts","Contratos de veículos",,
|
||||
"Vehicle cost","Custo do veículo",,
|
||||
"Vehicle fuel log","Log de combustível do veículo",,
|
||||
"Vehicle makes","Marcas de veículos",,
|
||||
"Vehicle models","Modelos de veículos",,
|
||||
"Vehicle odometer","Valor odométrico do veículo",,
|
||||
"Vehicle service","Serviço de veículos",,
|
||||
"Vehicle service list","Lista de serviços de veículos",,
|
||||
"Vehicle service log","Log de serviço do veículo",,
|
||||
"Vehicle service type","Tipo de serviço do veículo",,
|
||||
"Vehicle sevice type","Tipo de serviço do veículo",,
|
||||
"Vehicle tag","Etiqueta de veículo",,
|
||||
"Vehicle tags","Etiquetas de veículos",,
|
||||
"Vendor","Fornecedor",,
|
||||
"Vendors","Fornecedores",,
|
||||
"Warning Date","Data de advertência",,
|
||||
"Weekly","Semanal",,
|
||||
"Yearly","Anualmente",,
|
||||
"g/km","g/km",,
|
||||
"value:Fleet","valor:Frota",,
|
||||
|
@ -0,0 +1,117 @@
|
||||
"key","message","comment","context"
|
||||
"Acquisition Date","Дата приобретения",,
|
||||
"Activation Cost","Стоимость активации",,
|
||||
"Active","Активный",,
|
||||
"Additional Properties","Дополнительные свойства",,
|
||||
"Amount","Сумма",,
|
||||
"Archived","Архивированный",,
|
||||
"Automatic","Автоматический",,
|
||||
"Booking","Бронирование",,
|
||||
"BookingDate","Дата бронирования",,
|
||||
"CO2 Emissions","Выбросы CO2",,
|
||||
"Car value","Значение автомобиля",,
|
||||
"Category","Категория",,
|
||||
"Chassis Number","Номер шасси",,
|
||||
"Color","Цвет",,
|
||||
"Company","Компания",,
|
||||
"Configuration","Конфигурация",,
|
||||
"Confirmed","Подтверждённый",,
|
||||
"Contact set","Набор контактов",,
|
||||
"Contract Expiration Date","Дата истечения срока действия контракта",,
|
||||
"Contract Reference","Ссылка на контракт",,
|
||||
"Contract Start date","Дата начала действия контракта",,
|
||||
"Contract details","Контрактные данные",,
|
||||
"Contractor","Подрядчик",,
|
||||
"Cost","Стоимость",,
|
||||
"Daily","Ежедневно",,
|
||||
"Date","Дата",,
|
||||
"Diesel","Дизель",,
|
||||
"Doors","Двери",,
|
||||
"Draft","Проект",,
|
||||
"Driver","Водитель",,
|
||||
"Electric","Электричество",,
|
||||
"Engine Options","Опции двигателя",,
|
||||
"Fleet","Флот",,
|
||||
"Fuel log","Журнал учета топлива",,
|
||||
"Fuel type","Тип топлива",,
|
||||
"Gasoline","Бензин",,
|
||||
"General Properties","Общие свойства",,
|
||||
"Horse Power","Лошадиная сила",,
|
||||
"Horse Power Tax","Налог на лошадиную силу",,
|
||||
"Hybrid","Гибрид",,
|
||||
"Image","Изображение",,
|
||||
"In Progress","В процессе",,
|
||||
"Included Services","Включенные услуги",,
|
||||
"Information","Информация",,
|
||||
"Insurance","Страхование",,
|
||||
"Invoice Date","Дата счета-фактуры",,
|
||||
"Invoice Reference","Ссылка на инвойс",,
|
||||
"Kilometric value","Значение",,
|
||||
"Leasing","Лизинг",,
|
||||
"Liter","Литер",,
|
||||
"Location","Местоположение",,
|
||||
"Make","Сделать",,
|
||||
"Manual","Руководство",,
|
||||
"Model","Модель",,
|
||||
"Monthly","Ежемесячно",,
|
||||
"Name","Имя",,
|
||||
"None","Нет",,
|
||||
"Notes","Примечания",,
|
||||
"Odometer","одометр",,
|
||||
"Odometer unit","Одометрический блок",,
|
||||
"Odometers","одометры",,
|
||||
"Partner set","Набор партнеров",,
|
||||
"Plate number","Номер пластины",,
|
||||
"Power(KW)","Мощность (кВт)",,
|
||||
"Price per Liter","Цена за литр",,
|
||||
"Purchaser","Покупатель",,
|
||||
"Recurring Cost","Периодические расходы",,
|
||||
"Recurring Cost Frequency","Периодические расходы Периодические расходы Периодичность",,
|
||||
"Recurring Costs","Периодические расходы",,
|
||||
"Refueling details","Детали заправки",,
|
||||
"Repairing","Ремонт",,
|
||||
"Seats","Места",,
|
||||
"Service Type","Тип услуги",,
|
||||
"Service log","Журнал обслуживания",,
|
||||
"Services","Услуги",,
|
||||
"State","Государство",,
|
||||
"Status","Статус",,
|
||||
"Tags","Теги",,
|
||||
"Terminated","Прекращено",,
|
||||
"Terms and Conditions","Правила и условия",,
|
||||
"To Close","Закрыть",,
|
||||
"Total Price","Общая цена",,
|
||||
"Total cost","Общая стоимость",,
|
||||
"Transmission","Передача",,
|
||||
"Type","Тип",,
|
||||
"Vehicle","Транспортное средство",,
|
||||
"Vehicle Contract","Контракт на перевозку транспортных средств",,
|
||||
"Vehicle Cost","Стоимость автомобиля",,
|
||||
"Vehicle Fuel","Топливо Транспортное средство Топливо",,
|
||||
"Vehicle Fuel Log","Топливный журнал транспортного средства",,
|
||||
"Vehicle Model","Модель транспортного средства",,
|
||||
"Vehicle Recurring Cost","Транспортное средство Периодические расходы",,
|
||||
"Vehicle Service","Обслуживание автомобилей",,
|
||||
"Vehicle Service Log","Журнал технического обслуживания автомобиля",,
|
||||
"Vehicle Service Type","Тип обслуживания автомобиля",,
|
||||
"Vehicle contract","Контракт на перевозку транспортных средств",,
|
||||
"Vehicle contracts","Контракты на транспортные средства",,
|
||||
"Vehicle cost","Стоимость автомобиля",,
|
||||
"Vehicle fuel log","Журнал учета расхода топлива на автотранспорте",,
|
||||
"Vehicle makes","Автомобиль производит",,
|
||||
"Vehicle models","Модели автомобилей",,
|
||||
"Vehicle odometer","Одометр транспортных средств",,
|
||||
"Vehicle service","Обслуживание автомобилей",,
|
||||
"Vehicle service list","Список обслуживания автомобиля",,
|
||||
"Vehicle service log","Журнал технического обслуживания автомобиля",,
|
||||
"Vehicle service type","Тип обслуживания автомобиля",,
|
||||
"Vehicle sevice type","Тип обслуживания автомобиля",,
|
||||
"Vehicle tag","Метка автомобиля",,
|
||||
"Vehicle tags","Метки транспортных средств",,
|
||||
"Vendor","Поставщик",,
|
||||
"Vendors","Поставщики",,
|
||||
"Warning Date","Дата предупреждения",,
|
||||
"Weekly","Еженедельно",,
|
||||
"Yearly","Ежегодно",,
|
||||
"g/km","г/км",,
|
||||
"value:Fleet","Значение:Флот",,
|
||||
|
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<csv-inputs xmlns="http://axelor.com/xml/ns/data-import"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/data-import http://axelor.com/xml/ns/data-import/data-import_5.2.xsd">
|
||||
|
||||
<input file="fleet_role.csv" separator=";" type="com.axelor.auth.db.Role" search="self.name = :name"/>
|
||||
|
||||
<input file="fleet_permission.csv" separator=";" type="com.axelor.auth.db.Permission" search="self.name = :name" call="com.axelor.csv.script.ImportPermission:importPermissionToRole">
|
||||
<bind to="canRead" eval="can_read == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canWrite" eval="can_write == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canCreate" eval="can_create == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canRemove" eval="can_remove == 'x' ? 'true' : 'false'"/>
|
||||
<bind to="canExport" eval="can_export == 'x' ? 'true' : 'false'"/>
|
||||
</input>
|
||||
|
||||
<input file="fleet_metaMenu.csv" separator=";" type="com.axelor.meta.db.MetaMenu" search="self.name = :name" update="true">
|
||||
<bind column="roles" to="roles" search="self.name in :roles" eval="roles.split('\\|') as List"/>
|
||||
</input>
|
||||
|
||||
</csv-inputs>
|
||||
@ -0,0 +1,15 @@
|
||||
"name";"roles"
|
||||
"fleet-root";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-root-vehicle";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-root-vehicle-models";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-root-vehicle-contract";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-root-vehicle-fuel-log";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-root-vehicle-service-log";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-root-vehicle-cost";"Fleet Manager|Fleet User|Fleet Read"
|
||||
"fleet-conf";"Fleet Manager"
|
||||
"fleet-conf-recurring-cost";"Fleet Manager"
|
||||
"fleet-conf-vehicle-make";"Fleet Manager"
|
||||
"fleet-conf-vehicle-odometer";"Fleet Manager"
|
||||
"fleet-conf-vehicle-service-type";"Fleet Manager"
|
||||
"fleet-conf-vehicle-state";"Fleet Manager"
|
||||
"fleet-conf-vehicle-tag";"Fleet Manager"
|
||||
|
@ -0,0 +1,40 @@
|
||||
"name";"object";"can_read";"can_write";"can_create";"can_remove";"can_export";"condition";"conditionParams";"roleName"
|
||||
"perm.fleet.VehicleFuelLog.r";"com.axelor.apps.fleet.db.VehicleFuelLog";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleServiceType.r";"com.axelor.apps.fleet.db.VehicleServiceType";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleContract.r";"com.axelor.apps.fleet.db.VehicleContract";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleMake.r";"com.axelor.apps.fleet.db.VehicleMake";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleOdometer.r";"com.axelor.apps.fleet.db.VehicleOdometer";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.RecurringCost.r";"com.axelor.apps.fleet.db.RecurringCost";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleService.r";"com.axelor.apps.fleet.db.VehicleService";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.Vehicle.r";"com.axelor.apps.fleet.db.Vehicle";"x";;;;;"self.company.id in (?)";"__user__.companySet.id.plus(0)";"Fleet Read"
|
||||
"perm.fleet.VehicleModel.r";"com.axelor.apps.fleet.db.VehicleModel";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.Booking.r";"com.axelor.apps.fleet.db.Booking";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleCost.r";"com.axelor.apps.fleet.db.VehicleCost";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleTag.r";"com.axelor.apps.fleet.db.VehicleTag";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleServiceLog.r";"com.axelor.apps.fleet.db.VehicleServiceLog";"x";;;;;;;"Fleet Read"
|
||||
"perm.fleet.VehicleFuelLog.rwc";"com.axelor.apps.fleet.db.VehicleFuelLog";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleServiceType.rwc";"com.axelor.apps.fleet.db.VehicleServiceType";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleContract.rwc";"com.axelor.apps.fleet.db.VehicleContract";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleMake.rwc";"com.axelor.apps.fleet.db.VehicleMake";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleOdometer.rwc";"com.axelor.apps.fleet.db.VehicleOdometer";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.RecurringCost.rwc";"com.axelor.apps.fleet.db.RecurringCost";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleService.rwc";"com.axelor.apps.fleet.db.VehicleService";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.Vehicle.rwc";"com.axelor.apps.fleet.db.Vehicle";"x";"x";"x";;;"self.company.id in (?)";"__user__.companySet.id.plus(0)";"Fleet User"
|
||||
"perm.fleet.VehicleModel.rwc";"com.axelor.apps.fleet.db.VehicleModel";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.Booking.rwc";"com.axelor.apps.fleet.db.Booking";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleCost.rwc";"com.axelor.apps.fleet.db.VehicleCost";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleTag.rwc";"com.axelor.apps.fleet.db.VehicleTag";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleServiceLog.rwc";"com.axelor.apps.fleet.db.VehicleServiceLog";"x";"x";"x";;;;;"Fleet User"
|
||||
"perm.fleet.VehicleFuelLog.rwcde";"com.axelor.apps.fleet.db.VehicleFuelLog";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleServiceType.rwcde";"com.axelor.apps.fleet.db.VehicleServiceType";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleContract.rwcde";"com.axelor.apps.fleet.db.VehicleContract";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleMake.rwcde";"com.axelor.apps.fleet.db.VehicleMake";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleOdometer.rwcde";"com.axelor.apps.fleet.db.VehicleOdometer";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.RecurringCost.rwcde";"com.axelor.apps.fleet.db.RecurringCost";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleService.rwcde";"com.axelor.apps.fleet.db.VehicleService";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.Vehicle.rwcde";"com.axelor.apps.fleet.db.Vehicle";"x";"x";"x";"x";"x";"self.company.id in (?)";"__user__.companySet.id.plus(0)";"Fleet Manager"
|
||||
"perm.fleet.VehicleModel.rwcde";"com.axelor.apps.fleet.db.VehicleModel";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.Booking.rwcde";"com.axelor.apps.fleet.db.Booking";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleCost.rwcde";"com.axelor.apps.fleet.db.VehicleCost";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleTag.rwcde";"com.axelor.apps.fleet.db.VehicleTag";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
"perm.fleet.VehicleServiceLog.rwcde";"com.axelor.apps.fleet.db.VehicleServiceLog";"x";"x";"x";"x";"x";;;"Fleet Manager"
|
||||
|
@ -0,0 +1,4 @@
|
||||
"name";"description"
|
||||
"Fleet Read";
|
||||
"Fleet User";
|
||||
"Fleet Manager";
|
||||
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="booking-grid" title="Booking" model="com.axelor.apps.fleet.db.Booking" >
|
||||
<field name="name"/>
|
||||
<field name="bookingDate"/>
|
||||
</grid>
|
||||
|
||||
<form name="booking-form" title="Booking" model="com.axelor.apps.fleet.db.Booking" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="name"/>
|
||||
<field name="bookingDate"/>
|
||||
<field name="contactSet"/>
|
||||
<field name="partnerSet"/>
|
||||
<field name="isConfirmed" widget="Boolean-switch"/>
|
||||
<field name="partnerCategory"/>
|
||||
</panel>
|
||||
</form>
|
||||
</object-views>
|
||||
@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<menuitem name="fleet-root" title="Fleet" order="-83" if="__config__.app.isApp('fleet')"
|
||||
icon="fa-car" icon-background="orange"/>
|
||||
|
||||
<menuitem name="fleet-root-vehicle" title="Vehicle" action="fleet.root.vehicle" parent="fleet-root" />
|
||||
|
||||
<action-view name="fleet.root.vehicle" title="Vehicle" model="com.axelor.apps.fleet.db.Vehicle">
|
||||
<view type="cards" name="vehicle-cards"/>
|
||||
<view type="grid" name="vehicle-grid"/>
|
||||
<view type="form" name="vehicle-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-root-vehicle-models" title="Vehicle models" action="fleet.root.vehicle.models" parent="fleet-root" />
|
||||
|
||||
<action-view name="fleet.root.vehicle.models" title="Vehicle models" model="com.axelor.apps.fleet.db.VehicleModel">
|
||||
<view type="grid" name="vehicle-model-grid"/>
|
||||
<view type="form" name="vehicle-model-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-root-vehicle-contract" title="Vehicle contracts" action="fleet.root.vehicle.contract" parent="fleet-root" />
|
||||
|
||||
<action-view name="fleet.root.vehicle.contract" title="Vehicle contracts" model="com.axelor.apps.fleet.db.VehicleContract">
|
||||
<view type="grid" name="vehicle-contract-grid"/>
|
||||
<view type="form" name="vehicle-contract-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-root-vehicle-fuel-log" title="Vehicle fuel log" action="fleet.root.vehicle.fuel.log" parent="fleet-root" />
|
||||
|
||||
<action-view name="fleet.root.vehicle.fuel.log" title="Vehicle fuel log" model="com.axelor.apps.fleet.db.VehicleFuelLog">
|
||||
<view type="grid" name="vehicle-fuel-log-grid"/>
|
||||
<view type="form" name="vehicle-fuel-log-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-root-vehicle-service-log" title="Vehicle service log" action="fleet.root.vehicle.service.log" parent="fleet-root" />
|
||||
|
||||
<action-view name="fleet.root.vehicle.service.log" title="Vehicle service log" model="com.axelor.apps.fleet.db.VehicleServiceLog">
|
||||
<view type="grid" name="vehicle-service-log-grid"/>
|
||||
<view type="form" name="vehicle-service-log-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-root-vehicle-cost" title="Vehicle cost" action="fleet.root.vehicle.cost" parent="fleet-root" />
|
||||
|
||||
<action-view name="fleet.root.vehicle.cost" title="Vehicle cost" model="com.axelor.apps.fleet.db.VehicleCost">
|
||||
<view type="grid" name="vehicle-cost-grid"/>
|
||||
<view type="form" name="vehicle-cost-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-conf" title="Configuration" parent="fleet-root" icon="fa-cog"/>
|
||||
|
||||
<menuitem name="fleet-conf-recurring-cost" title="Recurring Costs" action="fleet.conf.recurring.cost" parent="fleet-conf" />
|
||||
|
||||
<action-view name="fleet.conf.recurring.cost" title="Recurring Costs" model="com.axelor.apps.fleet.db.RecurringCost">
|
||||
<view type="grid" name="recurring-cost-grid"/>
|
||||
<view type="form" name="recurring-cost-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-conf-vehicle-make" title="Vehicle makes" action="fleet.conf.vehicle.makes" parent="fleet-conf" />
|
||||
|
||||
<action-view name="fleet.conf.vehicle.makes" title="Vehicle makes" model="com.axelor.apps.fleet.db.VehicleMake">
|
||||
<view type="grid" name="vehicle-make-grid"/>
|
||||
<view type="form" name="vehicle-make-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-conf-vehicle-odometer" title="Vehicle odometer" action="fleet.conf.vehicle.odometer" parent="fleet-conf" />
|
||||
|
||||
<action-view name="fleet.conf.vehicle.odometer" title="Vehicle odometer" model="com.axelor.apps.fleet.db.VehicleOdometer">
|
||||
<view type="grid" name="vehicle-odometer-grid"/>
|
||||
<view type="form" name="vehicle-odometer-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-conf-vehicle-service-type" title="Vehicle service type" action="fleet.conf.vehicle.service.type" parent="fleet-conf" />
|
||||
|
||||
<action-view name="fleet.conf.vehicle.service.type" title="Vehicle sevice type" model="com.axelor.apps.fleet.db.VehicleServiceType">
|
||||
<view type="grid" name="vehicle-service-type-grid"/>
|
||||
<view type="form" name="vehicle-service-type-form"/>
|
||||
</action-view>
|
||||
|
||||
<menuitem name="fleet-conf-vehicle-tag" title="Vehicle tags" action="fleet.conf.vehicle.tag" parent="fleet-conf" />
|
||||
|
||||
<action-view name="fleet.conf.vehicle.tag" title="Vehicle tags" model="com.axelor.apps.fleet.db.VehicleTag">
|
||||
<view type="grid" name="vehicle-tag-grid"/>
|
||||
<view type="form" name="vehicle-tag-form"/>
|
||||
</action-view>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
<grid name="recurring-cost-grid" title="Vehicle Recurring Cost" model="com.axelor.apps.fleet.db.RecurringCost">
|
||||
<field name="date"/>
|
||||
<field name="amount"/>
|
||||
</grid>
|
||||
|
||||
<form name="recurring-cost-form" title="Vehicle Recurring Cost" model="com.axelor.apps.fleet.db.RecurringCost" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="date"/>
|
||||
<field name="amount"/>
|
||||
</panel>
|
||||
</form>
|
||||
</object-views>
|
||||
@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<selection name="fleet.vehicle.transimission.select">
|
||||
<option value="0">Manual</option>
|
||||
<option value="1">Automatic</option>
|
||||
</selection>
|
||||
|
||||
<selection name="fleet.vehicle.cost.type.select">
|
||||
<option value="0">Insurance</option>
|
||||
<option value="1">Leasing</option>
|
||||
<option value="2">Repairing</option>
|
||||
</selection>
|
||||
|
||||
<selection name="fleet.vehicle.contract.status.select">
|
||||
<option value="0">Draft</option>
|
||||
<option value="1">In Progress</option>
|
||||
<option value="2">To Close</option>
|
||||
<option value="3">Terminated</option>
|
||||
</selection>
|
||||
|
||||
<selection name="fleet.vehicle.contract.cost.frequency.select">
|
||||
<option value="0">None</option>
|
||||
<option value="1">Daily</option>
|
||||
<option value="2">Weekly</option>
|
||||
<option value="3">Monthly</option>
|
||||
<option value="4">Yearly</option>
|
||||
</selection>
|
||||
|
||||
<selection name="fleet.vehicle.fuel.type.select">
|
||||
<option value="0">Gasoline</option>
|
||||
<option value="1">Diesel</option>
|
||||
<option value="2">Electric</option>
|
||||
<option value="3">Hybrid</option>
|
||||
</selection>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,124 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-grid" title="Vehicle" model="com.axelor.apps.fleet.db.Vehicle" >
|
||||
<field name="plateNo" />
|
||||
<field name="vehicleModel" />
|
||||
<field name="name" />
|
||||
<field name="driverPartner" />
|
||||
<field name="chasisNo" />
|
||||
<field name="acquisitionDate" />
|
||||
<field name="vehicleState" />
|
||||
<field name="vehicleOdometer" />
|
||||
<field name="vehicleOdometer.unit" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-form" title="Vehicle" model="com.axelor.apps.fleet.db.Vehicle" width="large"
|
||||
onNew="action-fleet-vehicle-set-defaults" >
|
||||
<panel name="mainPanel">
|
||||
<panel name="imagePanel" colSpan="2">
|
||||
<field name="image" widget="Image" colSpan="12"/>
|
||||
</panel>
|
||||
<panel name="vehicleDetailsPanel" colSpan="6" itemSpan="12">
|
||||
<field name="vehicleModel" onChange="action-fleet-set-vehicle-name" required="true"/>
|
||||
<field name="name" readonly="true"/>
|
||||
<field name="plateNo" onChange="action-fleet-set-vehicle-name"/>
|
||||
<field name="vehicleTagSet" widget="TagSelect" />
|
||||
<field name="vehicleState" widget="html"/>
|
||||
</panel>
|
||||
<panel name="generalPropertiesPanel" colSpan="12" title="General Properties" >
|
||||
<panel name="subProperties1Panel" itemSpan="12">
|
||||
<field name="company" />
|
||||
<field name="driverPartner" domain="self.isEmployee = true AND :company member of self.companySet" />
|
||||
<field name="location" />
|
||||
<field name="chasisNo" />
|
||||
</panel>
|
||||
<panel name="subProperties2Panel" itemSpan="12">
|
||||
<field name="vehicleOdometer" colSpan="8"/>
|
||||
<field name="acquisitionDate" />
|
||||
<field name="carValue" />
|
||||
<field name="isArchived"/>
|
||||
</panel>
|
||||
</panel>
|
||||
<panel name="additionalPropertiesPanel" colSpan="12" title="Additional Properties">
|
||||
<panel name="vehiclePartsDetailsPanel" itemSpan="12">
|
||||
<field name="seats" />
|
||||
<field name="doors" />
|
||||
<field name="color" />
|
||||
</panel>
|
||||
<panel name="engineOptionsPanel" itemSpan="12" title="Engine Options">
|
||||
<field name="transmissionSelect"/>
|
||||
<field name="fuelTypeSelect"/>
|
||||
<field name="co2emission" colSpan="8"/>
|
||||
<label name="g/kmLabel" title="g/km" colSpan="2"/>
|
||||
<field name="horsePower" />
|
||||
<field name="horsePowerTax" />
|
||||
<field name="powerKw" />
|
||||
</panel>
|
||||
</panel>
|
||||
</panel>
|
||||
<panel-tabs name="mainPanelTab">
|
||||
<panel-related name="vehicleFuelLogListPanel" field="vehicleFuelLogList" title="Vehicle Fuel Log" colSpan="12">
|
||||
<field name="liter"/>
|
||||
<field name="pericePerLiter" />
|
||||
<field name="date" />
|
||||
</panel-related>
|
||||
<panel-related name="vehicleServiceLogListPanel" field="vehicleServiceLogList" title="Vehicle service" colSpan="12">
|
||||
<field name="date" />
|
||||
<field name="purchasePartner"/>
|
||||
<field name="invoiceRef"/>
|
||||
<field name="vendorPartner" />
|
||||
</panel-related>
|
||||
<panel-related name="vehicleContractListPanel" field="vehicleContractList" title="Vehicle Contract" colSpan="12">
|
||||
<field name="costFrequencySelect"/>
|
||||
<field name="activationCost"/>
|
||||
<field name="vehicleOdometer" />
|
||||
</panel-related>
|
||||
<panel-related name="vehicleCostListPanel" field="vehicleCostList" title="Vehicle Cost" colSpan="12">
|
||||
<field name="serviceType" />
|
||||
<field name="totalPrice"/>
|
||||
<field name="date" />
|
||||
</panel-related>
|
||||
</panel-tabs>
|
||||
|
||||
|
||||
<panel-mail name="mailPanel">
|
||||
<mail-messages limit="4" />
|
||||
<mail-followers />
|
||||
</panel-mail>
|
||||
|
||||
</form>
|
||||
|
||||
<cards name="vehicle-cards" title="Vehicle" model="com.axelor.apps.fleet.db.Vehicle" width="25%" css="rect-image" orderBy="name">
|
||||
<field name="image" />
|
||||
<field name="name" />
|
||||
<field name="plateNo" />
|
||||
<field name="driverPartner" />
|
||||
<field name="vehicleState" />
|
||||
<field name="company"/>
|
||||
<template><![CDATA[
|
||||
<div class="span12"><strong>{{name}}</strong></div>
|
||||
<div>
|
||||
<div class="span4 card-image">
|
||||
<img ng-src="{{$image(null, 'image')}}" />
|
||||
</div>
|
||||
<div class="span8">
|
||||
<span>{{plateNo}}<br/>
|
||||
{{company.name}}<br/>
|
||||
{{driverPartner.fullName}}<br/></span>
|
||||
</div>
|
||||
</div>
|
||||
]]>
|
||||
</template>
|
||||
</cards>
|
||||
|
||||
<action-method name="action-fleet-set-vehicle-name">
|
||||
<call class="com.axelor.apps.fleet.web.VehicleController" method="setVehicleName"/>
|
||||
</action-method>
|
||||
|
||||
<action-method name="action-method-set-image-in-vehicle" model="com.axelor.apps.fleet.web.Vehicle">
|
||||
<call class="com.axelor.apps.fleet.web.VehicleController" method="setImage"/>
|
||||
</action-method>
|
||||
</object-views>
|
||||
@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-contract-grid" title="Vehicle Contract" model="com.axelor.apps.fleet.db.VehicleContract">
|
||||
<field name="vehicle" />
|
||||
<field name="startDate" />
|
||||
<field name="expiryDate" />
|
||||
<field name="typeSelect" />
|
||||
<field name="insurerPartner" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-contract-form" title="Vehicle Contract" model="com.axelor.apps.fleet.db.VehicleContract" width="large" >
|
||||
<panel name="statusPanel" title="Status">
|
||||
<field name="statusSelect" colSpan="12" widget="NavSelect" showTitle="false"/>
|
||||
</panel>
|
||||
<panel name="mainPanel">
|
||||
<field name="name" hidden="true"/>
|
||||
<field name="vehicle" title="Vehicle" onChange="action-fleet-record-fill-contract-name">
|
||||
<editor>
|
||||
<field name="name" colSpan="12"/>
|
||||
<field name="vehicleOdometer"/>
|
||||
</editor>
|
||||
</field>
|
||||
<panel name="contractDetailPanel" title="Contract details" itemSpan="12">
|
||||
<field name="typeSelect"/>
|
||||
<field name="activationCost"/>
|
||||
<field name="costFrequencySelect"/>
|
||||
<field name="recurringCost" showIf="costFrequencySelect > 0"/>
|
||||
</panel>
|
||||
<panel name="datesPanel" itemSpan="12">
|
||||
<field name="invoiceDate"/>
|
||||
<field name="startDate"/>
|
||||
<field name="expiryDate"/>
|
||||
</panel>
|
||||
<panel name="partnerPanel" itemSpan="12">
|
||||
<field name="insurerPartner"/>
|
||||
<field name="purchaserPartner"/>
|
||||
<field name="reference"/>
|
||||
</panel>
|
||||
</panel>
|
||||
<panel-tabs name="mainPanelTab">
|
||||
<panel-related name="vehicleServiceListPanel" field="vehicleServiceList" title="Included Services" colSpan="12">
|
||||
<field name="serviceType"/>
|
||||
<field name="cost"/>
|
||||
</panel-related>
|
||||
<panel name="termsAndConditionsPanel" title="Terms and Conditions">
|
||||
<field name="notes" widget="html" colSpan="12" showTitle="false" />
|
||||
</panel>
|
||||
</panel-tabs>
|
||||
</form>
|
||||
|
||||
<action-record name="action-fleet-record-fill-contract-name" model="com.axelor.apps.fleet.db.VehicleContract">
|
||||
<field name="name" expr="eval: vehicle != null ? vehicle.name : null"/>
|
||||
</action-record>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
<grid name="vehicle-cost-grid" title="Vehicle Cost" model="com.axelor.apps.fleet.db.VehicleCost">
|
||||
<field name="vehicle" />
|
||||
<field name="totalPrice" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-cost-form" title="Vehicle Cost" model="com.axelor.apps.fleet.db.VehicleCost" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="vehicle" required="true"/>
|
||||
<field name="serviceType" />
|
||||
<field name="totalPrice" />
|
||||
<field name="date" />
|
||||
</panel>
|
||||
</form>
|
||||
</object-views>
|
||||
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-fuel-log-grid" title="Vehicle Fuel" model="com.axelor.apps.fleet.db.VehicleFuelLog">
|
||||
<field name="vehicle.name"/>
|
||||
<field name="vehicle.plateNo"/>
|
||||
<field name="purchasePartner.fullName"/>
|
||||
<field name="liter" />
|
||||
<field name="pericePerLiter" />
|
||||
<field name="date" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-fuel-log-form" title="Vehicle Fuel" model="com.axelor.apps.fleet.db.VehicleFuelLog" width="large" >
|
||||
<panel name="mainPanel">
|
||||
<panel name="vehicleDetailsPanel" colSpan="12">
|
||||
<field name="vehicle" title="Vehicle" required="true"/>
|
||||
</panel>
|
||||
<panel name="informationPanel" title="Information">
|
||||
<field name="purchasePartner"/>
|
||||
<field name="invoiceRef"/>
|
||||
<field name="vendorPartner"/>
|
||||
<field name="date"/>
|
||||
</panel>
|
||||
<panel name="refuelingDetailsPanel" title="Refueling details">
|
||||
<field name="liter" onChange="action-method-calculate-total-price"/>
|
||||
<field name="pericePerLiter" onChange="action-method-calculate-total-price"/>
|
||||
<field name="totalPrice"/>
|
||||
</panel>
|
||||
</panel>
|
||||
<panel name="notesPanel">
|
||||
<field name="notes" colSpan="12"/>
|
||||
</panel>
|
||||
</form>
|
||||
|
||||
<action-method name="action-method-calculate-total-price">
|
||||
<call class="com.axelor.apps.fleet.web.VehicleFuelLogController" method="calculateTotalPrice"/>
|
||||
</action-method>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-make-grid" title="Make" model="com.axelor.apps.fleet.db.VehicleMake">
|
||||
<field name="name" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-make-form" title="Make" model="com.axelor.apps.fleet.db.VehicleMake" width="large">
|
||||
<panel name="mainPanel">
|
||||
<panel colSpan="2" name="imagePanel">
|
||||
<field name="image" widget="Image" colSpan="12"/>
|
||||
</panel>
|
||||
<panel colSpan="6" itemSpan="12" name="namePanel">
|
||||
<field name="name" />
|
||||
</panel>
|
||||
</panel>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-model-grid" title="Vehicle Model" model="com.axelor.apps.fleet.db.VehicleModel">
|
||||
<field name="vehicleMake"/>
|
||||
<field name="model"/>
|
||||
<field name="vehicleVendorsSet"/>
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-model-form" title="Vehicle Model" model="com.axelor.apps.fleet.db.VehicleModel" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="vehicleMake" colSpan="5" />
|
||||
<field name="model" colSpan="5" />
|
||||
</panel>
|
||||
<panel-related name="vehicleVendorsSetPanel" field="vehicleVendorsSet" form-view="partner-form" grid-view="partner-grid" domain="self.isSupplier = true"/>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-odometer-grid" title="Odometers" model="com.axelor.apps.fleet.db.VehicleOdometer">
|
||||
<field name="date" />
|
||||
<field name="value" />
|
||||
<field name="vehicle"/>
|
||||
<field name="unit" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-odometer-form" title="Odometer" model="com.axelor.apps.fleet.db.VehicleOdometer" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="name"/>
|
||||
<field name="date" />
|
||||
<field name="vehicle" required="true"/>
|
||||
<field name="value" />
|
||||
<field name="unit" domain="self.name IN ('Kilometer','Miles')"/>
|
||||
</panel>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
<grid name="vehicle-service-grid" title="Vehicle Service" model="com.axelor.apps.fleet.db.VehicleService" >
|
||||
<field name="serviceType" />
|
||||
<field name="cost" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-service-form" title="Vehicle Service" model="com.axelor.apps.fleet.db.VehicleService" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="serviceType" />
|
||||
<field name="cost" />
|
||||
</panel>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
<grid name="vehicle-service-log-grid" title="Vehicle Service Log" model="com.axelor.apps.fleet.db.VehicleServiceLog">
|
||||
<field name="vehicle" />
|
||||
<field name="date" />
|
||||
</grid>
|
||||
<form name="vehicle-service-log-form" title="Vehicle Service Log" model="com.axelor.apps.fleet.db.VehicleServiceLog" width="large" >
|
||||
<panel name="mainPanel" title="Information">
|
||||
<field name="vehicle" title="Vehicle">
|
||||
<editor>
|
||||
<field name="name" colSpan="12"/>
|
||||
<field name="vehicleOdometer"/>
|
||||
</editor>
|
||||
</field>
|
||||
<field name="date" />
|
||||
<field name="purchasePartner" />
|
||||
<field name="invoiceRef" />
|
||||
<field name="vendorPartner" />
|
||||
<field name="notes" colSpan="12" />
|
||||
</panel>
|
||||
<panel-related name="vehicleServiceListPanel" field="vehicleServiceList" title="Services" colSpan="12">
|
||||
<field name="serviceType"/>
|
||||
<field name="cost"/>
|
||||
</panel-related>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-service-type-grid" title="Vehicle Service Type" model="com.axelor.apps.fleet.db.VehicleServiceType">
|
||||
<field name="name" />
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-service-type-form" title="Vehicle Service Type" model="com.axelor.apps.fleet.db.VehicleServiceType" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="name" />
|
||||
</panel>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<object-views xmlns="http://axelor.com/xml/ns/object-views"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://axelor.com/xml/ns/object-views http://axelor.com/xml/ns/object-views/object-views_5.2.xsd">
|
||||
|
||||
<grid name="vehicle-tag-grid" title="Vehicle tags" model="com.axelor.apps.fleet.db.VehicleTag">
|
||||
<field name="name"/>
|
||||
</grid>
|
||||
|
||||
<form name="vehicle-tag-form" title="Vehicle tag" model="com.axelor.apps.fleet.db.VehicleTag" width="large">
|
||||
<panel name="mainPanel">
|
||||
<field name="name"/>
|
||||
</panel>
|
||||
</form>
|
||||
|
||||
</object-views>
|
||||