@sofit/view-locale 1.46.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/coverage/jest/results.xml +6 -6
- package/dist/translations/index.d.ts +16 -1
- package/dist/translations/index.js +30 -0
- package/dist/translations/modules/driver_control.d.ts +4 -0
- package/dist/translations/modules/driver_control.js +6 -0
- package/dist/translations/modules/driver_license_point.d.ts +4 -0
- package/dist/translations/modules/driver_license_point.js +6 -0
- package/dist/translations/modules/expense.d.ts +4 -0
- package/dist/translations/modules/expense.js +6 -0
- package/dist/translations/modules/fine_qualification_integration_key.d.ts +36 -0
- package/dist/translations/modules/fine_qualification_integration_key.js +23 -0
- package/dist/translations/modules/gate_appointment.d.ts +4 -0
- package/dist/translations/modules/gate_appointment.js +6 -0
- package/dist/translations/modules/night_transport.d.ts +4 -0
- package/dist/translations/modules/night_transport.js +6 -0
- package/dist/translations/modules/pendency.d.ts +4 -0
- package/dist/translations/modules/pendency.js +6 -0
- package/dist/translations/modules/request_occurrence.d.ts +4 -0
- package/dist/translations/modules/request_occurrence.js +6 -0
- package/dist/translations/modules/service_order.d.ts +4 -0
- package/dist/translations/modules/service_order.js +6 -0
- package/dist/translations/modules/solicitation.d.ts +4 -0
- package/dist/translations/modules/solicitation.js +6 -0
- package/dist/translations/modules/solicitation_comment.d.ts +4 -0
- package/dist/translations/modules/solicitation_comment.js +6 -0
- package/dist/translations/modules/solicitation_history.d.ts +4 -0
- package/dist/translations/modules/solicitation_history.js +6 -0
- package/dist/translations/modules/solicitation_watcher.d.ts +4 -0
- package/dist/translations/modules/solicitation_watcher.js +6 -0
- package/dist/translations/modules/trip.d.ts +4 -0
- package/dist/translations/modules/trip.js +6 -0
- package/dist/translations/modules/vehicle_change_history.d.ts +4 -0
- package/dist/translations/modules/vehicle_change_history.js +6 -0
- package/lib/translations/index.ts +38 -8
- package/lib/translations/modules/driver_control.ts +4 -0
- package/lib/translations/modules/driver_license_point.ts +4 -0
- package/lib/translations/modules/expense.ts +4 -0
- package/lib/translations/modules/fine_qualification_integration_key.ts +29 -0
- package/lib/translations/modules/gate_appointment.ts +4 -0
- package/lib/translations/modules/night_transport.ts +4 -0
- package/lib/translations/modules/pendency.ts +4 -0
- package/lib/translations/modules/request_occurrence.ts +4 -0
- package/lib/translations/modules/service_order.ts +4 -0
- package/lib/translations/modules/solicitation.ts +4 -0
- package/lib/translations/modules/solicitation_comment.ts +4 -0
- package/lib/translations/modules/solicitation_history.ts +4 -0
- package/lib/translations/modules/solicitation_watcher.ts +4 -0
- package/lib/translations/modules/trip.ts +4 -0
- package/lib/translations/modules/vehicle_change_history.ts +4 -0
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.
|
|
2
|
-
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-
|
|
3
|
-
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.
|
|
1
|
+
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.986">
|
|
2
|
+
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-07-10T00:08:23" time="2.187" tests="4">
|
|
3
|
+
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.004">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0">
|
|
5
|
+
<testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0.001">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0
|
|
7
|
+
<testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0">
|
|
8
8
|
</testcase>
|
|
9
9
|
<testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0">
|
|
10
10
|
</testcase>
|
|
11
11
|
</testsuite>
|
|
12
|
-
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-
|
|
12
|
+
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-07-10T00:08:23" time="2.15" tests="4">
|
|
13
13
|
<testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.004">
|
|
14
14
|
</testcase>
|
|
15
15
|
<testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0">
|
|
@@ -14,25 +14,38 @@ import * as company from './modules/company';
|
|
|
14
14
|
import * as cost_center from './modules/cost_center';
|
|
15
15
|
import * as cost_sharing from './modules/cost_sharing';
|
|
16
16
|
import * as customer from './modules/customer';
|
|
17
|
+
import * as driver_control from './modules/driver_control';
|
|
18
|
+
import * as driver_license_point from './modules/driver_license_point';
|
|
17
19
|
import * as employee from './modules/employee';
|
|
18
20
|
import * as employee_hiring_regime from './modules/employee_hiring_regime';
|
|
19
21
|
import * as employee_role from './modules/employee_role';
|
|
22
|
+
import * as expense from './modules/expense';
|
|
20
23
|
import * as fine from './modules/fine';
|
|
21
24
|
import * as fine_qualification from './modules/fine_qualification';
|
|
25
|
+
import * as fine_qualification_integration_key from './modules/fine_qualification_integration_key';
|
|
22
26
|
import * as fine_resource from './modules/fine_resource';
|
|
23
27
|
import * as foreseen_maintenance_plan_service_item from './modules/foreseen_maintenance_plan_service_item';
|
|
24
28
|
import * as foreseen_service_order_item from './modules/foreseen_service_order_item';
|
|
25
29
|
import * as gas_pump_control from './modules/gas_pump_control';
|
|
26
30
|
import * as gate from './modules/gate';
|
|
31
|
+
import * as gate_appointment from './modules/gate_appointment';
|
|
27
32
|
import * as item from './modules/item';
|
|
28
33
|
import * as leasing_contract from './modules/leasing_contract';
|
|
29
34
|
import * as maintenance_plan from './modules/maintenance_plan';
|
|
30
35
|
import * as maintenance_plan_service from './modules/maintenance_plan_service';
|
|
31
36
|
import * as measurement_unit from './modules/measurement_unit';
|
|
37
|
+
import * as night_transport from './modules/night_transport';
|
|
32
38
|
import * as parameter from './modules/parameter';
|
|
39
|
+
import * as pendency from './modules/pendency';
|
|
33
40
|
import * as qualification_severity from './modules/qualification_severity';
|
|
34
41
|
import * as release_notification from './modules/release_notification';
|
|
42
|
+
import * as request_occurrence from './modules/request_occurrence';
|
|
35
43
|
import * as route from './modules/route';
|
|
44
|
+
import * as service_order from './modules/service_order';
|
|
45
|
+
import * as solicitation from './modules/solicitation';
|
|
46
|
+
import * as solicitation_comment from './modules/solicitation_comment';
|
|
47
|
+
import * as solicitation_history from './modules/solicitation_history';
|
|
48
|
+
import * as solicitation_watcher from './modules/solicitation_watcher';
|
|
36
49
|
import * as stock_entry_item from './modules/stock_entry_item';
|
|
37
50
|
import * as sub_system from './modules/sub_system';
|
|
38
51
|
import * as subsidiary from './modules/subsidiary';
|
|
@@ -42,9 +55,11 @@ import * as tire_brand from './modules/tire_brand';
|
|
|
42
55
|
import * as tire_dimension from './modules/tire_dimension';
|
|
43
56
|
import * as tire_drawing from './modules/tire_drawing';
|
|
44
57
|
import * as transaction from './modules/transaction';
|
|
58
|
+
import * as trip from './modules/trip';
|
|
45
59
|
import * as vehicle from './modules/vehicle';
|
|
46
60
|
import * as vehicle_axes from './modules/vehicle_axes';
|
|
47
61
|
import * as vehicle_brand from './modules/vehicle_brand';
|
|
62
|
+
import * as vehicle_change_history from './modules/vehicle_change_history';
|
|
48
63
|
import * as vehicle_deactivation_cause from './modules/vehicle_deactivation_cause';
|
|
49
64
|
import * as vehicle_due from './modules/vehicle_due';
|
|
50
65
|
import * as vehicle_fuel from './modules/vehicle_fuel';
|
|
@@ -57,4 +72,4 @@ import * as warehouse from './modules/warehouse';
|
|
|
57
72
|
import * as warehouse_item from './modules/warehouse_item';
|
|
58
73
|
export { joi } from './common/joi';
|
|
59
74
|
export { databaseErrors } from './common/database-errors';
|
|
60
|
-
export { auth, benchmarking, general, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply,
|
|
75
|
+
export { auth, benchmarking, general, inout, pipefy, cash_basis, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, company, cost_center, cost_sharing, customer, driver_control, driver_license_point, employee, employee_hiring_regime, employee_role, expense, fine, fine_qualification_integration_key, fine_qualification, fine_resource, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, gate_appointment, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, night_transport, parameter, pendency, qualification_severity, release_notification, request_occurrence, route, service_order, solicitation, solicitation_comment, solicitation_history, solicitation_watcher, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, trip, vehicle, vehicle_axes, vehicle_brand, vehicle_change_history, vehicle_deactivation_cause, vehicle_due, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item };
|
|
@@ -39,16 +39,24 @@ const cost_sharing = __importStar(require("./modules/cost_sharing"));
|
|
|
39
39
|
exports.cost_sharing = cost_sharing;
|
|
40
40
|
const customer = __importStar(require("./modules/customer"));
|
|
41
41
|
exports.customer = customer;
|
|
42
|
+
const driver_control = __importStar(require("./modules/driver_control"));
|
|
43
|
+
exports.driver_control = driver_control;
|
|
44
|
+
const driver_license_point = __importStar(require("./modules/driver_license_point"));
|
|
45
|
+
exports.driver_license_point = driver_license_point;
|
|
42
46
|
const employee = __importStar(require("./modules/employee"));
|
|
43
47
|
exports.employee = employee;
|
|
44
48
|
const employee_hiring_regime = __importStar(require("./modules/employee_hiring_regime"));
|
|
45
49
|
exports.employee_hiring_regime = employee_hiring_regime;
|
|
46
50
|
const employee_role = __importStar(require("./modules/employee_role"));
|
|
47
51
|
exports.employee_role = employee_role;
|
|
52
|
+
const expense = __importStar(require("./modules/expense"));
|
|
53
|
+
exports.expense = expense;
|
|
48
54
|
const fine = __importStar(require("./modules/fine"));
|
|
49
55
|
exports.fine = fine;
|
|
50
56
|
const fine_qualification = __importStar(require("./modules/fine_qualification"));
|
|
51
57
|
exports.fine_qualification = fine_qualification;
|
|
58
|
+
const fine_qualification_integration_key = __importStar(require("./modules/fine_qualification_integration_key"));
|
|
59
|
+
exports.fine_qualification_integration_key = fine_qualification_integration_key;
|
|
52
60
|
const fine_resource = __importStar(require("./modules/fine_resource"));
|
|
53
61
|
exports.fine_resource = fine_resource;
|
|
54
62
|
const foreseen_maintenance_plan_service_item = __importStar(require("./modules/foreseen_maintenance_plan_service_item"));
|
|
@@ -59,6 +67,8 @@ const gas_pump_control = __importStar(require("./modules/gas_pump_control"));
|
|
|
59
67
|
exports.gas_pump_control = gas_pump_control;
|
|
60
68
|
const gate = __importStar(require("./modules/gate"));
|
|
61
69
|
exports.gate = gate;
|
|
70
|
+
const gate_appointment = __importStar(require("./modules/gate_appointment"));
|
|
71
|
+
exports.gate_appointment = gate_appointment;
|
|
62
72
|
const item = __importStar(require("./modules/item"));
|
|
63
73
|
exports.item = item;
|
|
64
74
|
const leasing_contract = __importStar(require("./modules/leasing_contract"));
|
|
@@ -69,14 +79,30 @@ const maintenance_plan_service = __importStar(require("./modules/maintenance_pla
|
|
|
69
79
|
exports.maintenance_plan_service = maintenance_plan_service;
|
|
70
80
|
const measurement_unit = __importStar(require("./modules/measurement_unit"));
|
|
71
81
|
exports.measurement_unit = measurement_unit;
|
|
82
|
+
const night_transport = __importStar(require("./modules/night_transport"));
|
|
83
|
+
exports.night_transport = night_transport;
|
|
72
84
|
const parameter = __importStar(require("./modules/parameter"));
|
|
73
85
|
exports.parameter = parameter;
|
|
86
|
+
const pendency = __importStar(require("./modules/pendency"));
|
|
87
|
+
exports.pendency = pendency;
|
|
74
88
|
const qualification_severity = __importStar(require("./modules/qualification_severity"));
|
|
75
89
|
exports.qualification_severity = qualification_severity;
|
|
76
90
|
const release_notification = __importStar(require("./modules/release_notification"));
|
|
77
91
|
exports.release_notification = release_notification;
|
|
92
|
+
const request_occurrence = __importStar(require("./modules/request_occurrence"));
|
|
93
|
+
exports.request_occurrence = request_occurrence;
|
|
78
94
|
const route = __importStar(require("./modules/route"));
|
|
79
95
|
exports.route = route;
|
|
96
|
+
const service_order = __importStar(require("./modules/service_order"));
|
|
97
|
+
exports.service_order = service_order;
|
|
98
|
+
const solicitation = __importStar(require("./modules/solicitation"));
|
|
99
|
+
exports.solicitation = solicitation;
|
|
100
|
+
const solicitation_comment = __importStar(require("./modules/solicitation_comment"));
|
|
101
|
+
exports.solicitation_comment = solicitation_comment;
|
|
102
|
+
const solicitation_history = __importStar(require("./modules/solicitation_history"));
|
|
103
|
+
exports.solicitation_history = solicitation_history;
|
|
104
|
+
const solicitation_watcher = __importStar(require("./modules/solicitation_watcher"));
|
|
105
|
+
exports.solicitation_watcher = solicitation_watcher;
|
|
80
106
|
const stock_entry_item = __importStar(require("./modules/stock_entry_item"));
|
|
81
107
|
exports.stock_entry_item = stock_entry_item;
|
|
82
108
|
const sub_system = __importStar(require("./modules/sub_system"));
|
|
@@ -95,12 +121,16 @@ const tire_drawing = __importStar(require("./modules/tire_drawing"));
|
|
|
95
121
|
exports.tire_drawing = tire_drawing;
|
|
96
122
|
const transaction = __importStar(require("./modules/transaction"));
|
|
97
123
|
exports.transaction = transaction;
|
|
124
|
+
const trip = __importStar(require("./modules/trip"));
|
|
125
|
+
exports.trip = trip;
|
|
98
126
|
const vehicle = __importStar(require("./modules/vehicle"));
|
|
99
127
|
exports.vehicle = vehicle;
|
|
100
128
|
const vehicle_axes = __importStar(require("./modules/vehicle_axes"));
|
|
101
129
|
exports.vehicle_axes = vehicle_axes;
|
|
102
130
|
const vehicle_brand = __importStar(require("./modules/vehicle_brand"));
|
|
103
131
|
exports.vehicle_brand = vehicle_brand;
|
|
132
|
+
const vehicle_change_history = __importStar(require("./modules/vehicle_change_history"));
|
|
133
|
+
exports.vehicle_change_history = vehicle_change_history;
|
|
104
134
|
const vehicle_deactivation_cause = __importStar(require("./modules/vehicle_deactivation_cause"));
|
|
105
135
|
exports.vehicle_deactivation_cause = vehicle_deactivation_cause;
|
|
106
136
|
const vehicle_due = __importStar(require("./modules/vehicle_due"));
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export declare const name: {
|
|
2
|
+
ptBR: string;
|
|
3
|
+
es: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const fields: {
|
|
6
|
+
description: {
|
|
7
|
+
ptBR: string;
|
|
8
|
+
es: string;
|
|
9
|
+
};
|
|
10
|
+
code: {
|
|
11
|
+
ptBR: string;
|
|
12
|
+
es: string;
|
|
13
|
+
};
|
|
14
|
+
fine_qualification_id: {
|
|
15
|
+
ptBR: string;
|
|
16
|
+
es: string;
|
|
17
|
+
};
|
|
18
|
+
name: {
|
|
19
|
+
ptBR: string;
|
|
20
|
+
es: string;
|
|
21
|
+
};
|
|
22
|
+
external_id: {
|
|
23
|
+
ptBR: string;
|
|
24
|
+
es: string;
|
|
25
|
+
};
|
|
26
|
+
id: {
|
|
27
|
+
ptBR: string;
|
|
28
|
+
es: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export declare const messages: {
|
|
32
|
+
code_must_be_unique: {
|
|
33
|
+
ptBR: string;
|
|
34
|
+
es: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const entity_1 = require("../common/entity");
|
|
4
|
+
exports.name = {
|
|
5
|
+
ptBR: 'Chave de Integração da Qualificação',
|
|
6
|
+
es: 'Clave de Integración de calificación de la infracción'
|
|
7
|
+
};
|
|
8
|
+
exports.fields = Object.assign({}, entity_1.ENTITY_COMMON, { description: {
|
|
9
|
+
ptBR: 'Descrição',
|
|
10
|
+
es: 'Descrición'
|
|
11
|
+
}, code: {
|
|
12
|
+
ptBR: 'Código',
|
|
13
|
+
es: 'Código'
|
|
14
|
+
}, fine_qualification_id: {
|
|
15
|
+
ptBR: 'Qualificação de infração',
|
|
16
|
+
es: 'Calificación de infracción'
|
|
17
|
+
} });
|
|
18
|
+
exports.messages = {
|
|
19
|
+
code_must_be_unique: {
|
|
20
|
+
ptBR: 'Já existe uma chave de integração da qualificação com este código.',
|
|
21
|
+
es: 'Ya existe una clave de integración de calificación con este código.'
|
|
22
|
+
}
|
|
23
|
+
};
|
|
@@ -14,25 +14,38 @@ import * as company from './modules/company';
|
|
|
14
14
|
import * as cost_center from './modules/cost_center';
|
|
15
15
|
import * as cost_sharing from './modules/cost_sharing';
|
|
16
16
|
import * as customer from './modules/customer';
|
|
17
|
+
import * as driver_control from './modules/driver_control';
|
|
18
|
+
import * as driver_license_point from './modules/driver_license_point';
|
|
17
19
|
import * as employee from './modules/employee';
|
|
18
20
|
import * as employee_hiring_regime from './modules/employee_hiring_regime';
|
|
19
21
|
import * as employee_role from './modules/employee_role';
|
|
22
|
+
import * as expense from './modules/expense';
|
|
20
23
|
import * as fine from './modules/fine';
|
|
21
24
|
import * as fine_qualification from './modules/fine_qualification';
|
|
25
|
+
import * as fine_qualification_integration_key from './modules/fine_qualification_integration_key';
|
|
22
26
|
import * as fine_resource from './modules/fine_resource';
|
|
23
27
|
import * as foreseen_maintenance_plan_service_item from './modules/foreseen_maintenance_plan_service_item';
|
|
24
28
|
import * as foreseen_service_order_item from './modules/foreseen_service_order_item';
|
|
25
29
|
import * as gas_pump_control from './modules/gas_pump_control';
|
|
26
30
|
import * as gate from './modules/gate';
|
|
31
|
+
import * as gate_appointment from './modules/gate_appointment';
|
|
27
32
|
import * as item from './modules/item';
|
|
28
33
|
import * as leasing_contract from './modules/leasing_contract';
|
|
29
34
|
import * as maintenance_plan from './modules/maintenance_plan';
|
|
30
35
|
import * as maintenance_plan_service from './modules/maintenance_plan_service';
|
|
31
36
|
import * as measurement_unit from './modules/measurement_unit';
|
|
37
|
+
import * as night_transport from './modules/night_transport';
|
|
32
38
|
import * as parameter from './modules/parameter';
|
|
39
|
+
import * as pendency from './modules/pendency';
|
|
33
40
|
import * as qualification_severity from './modules/qualification_severity';
|
|
34
41
|
import * as release_notification from './modules/release_notification';
|
|
42
|
+
import * as request_occurrence from './modules/request_occurrence';
|
|
35
43
|
import * as route from './modules/route';
|
|
44
|
+
import * as service_order from './modules/service_order';
|
|
45
|
+
import * as solicitation from './modules/solicitation';
|
|
46
|
+
import * as solicitation_comment from './modules/solicitation_comment';
|
|
47
|
+
import * as solicitation_history from './modules/solicitation_history';
|
|
48
|
+
import * as solicitation_watcher from './modules/solicitation_watcher';
|
|
36
49
|
import * as stock_entry_item from './modules/stock_entry_item';
|
|
37
50
|
import * as sub_system from './modules/sub_system';
|
|
38
51
|
import * as subsidiary from './modules/subsidiary';
|
|
@@ -42,9 +55,11 @@ import * as tire_brand from './modules/tire_brand';
|
|
|
42
55
|
import * as tire_dimension from './modules/tire_dimension';
|
|
43
56
|
import * as tire_drawing from './modules/tire_drawing';
|
|
44
57
|
import * as transaction from './modules/transaction';
|
|
58
|
+
import * as trip from './modules/trip';
|
|
45
59
|
import * as vehicle from './modules/vehicle';
|
|
46
60
|
import * as vehicle_axes from './modules/vehicle_axes';
|
|
47
61
|
import * as vehicle_brand from './modules/vehicle_brand';
|
|
62
|
+
import * as vehicle_change_history from './modules/vehicle_change_history';
|
|
48
63
|
import * as vehicle_deactivation_cause from './modules/vehicle_deactivation_cause';
|
|
49
64
|
import * as vehicle_due from './modules/vehicle_due';
|
|
50
65
|
import * as vehicle_fuel from './modules/vehicle_fuel';
|
|
@@ -63,38 +78,51 @@ export {
|
|
|
63
78
|
auth,
|
|
64
79
|
benchmarking,
|
|
65
80
|
general,
|
|
81
|
+
inout,
|
|
82
|
+
pipefy,
|
|
83
|
+
cash_basis,
|
|
66
84
|
checklist,
|
|
67
85
|
checklist_group,
|
|
68
86
|
checklist_group_item,
|
|
69
87
|
checklist_group_option,
|
|
70
88
|
checklist_model,
|
|
71
89
|
checklist_reply,
|
|
72
|
-
cash_basis,
|
|
73
90
|
company,
|
|
74
91
|
cost_center,
|
|
75
92
|
cost_sharing,
|
|
76
93
|
customer,
|
|
94
|
+
driver_control,
|
|
95
|
+
driver_license_point,
|
|
77
96
|
employee,
|
|
78
97
|
employee_hiring_regime,
|
|
79
98
|
employee_role,
|
|
80
|
-
|
|
99
|
+
expense,
|
|
81
100
|
fine,
|
|
101
|
+
fine_qualification_integration_key,
|
|
82
102
|
fine_qualification,
|
|
103
|
+
fine_resource,
|
|
83
104
|
foreseen_maintenance_plan_service_item,
|
|
84
105
|
foreseen_service_order_item,
|
|
85
106
|
gas_pump_control,
|
|
86
107
|
gate,
|
|
108
|
+
gate_appointment,
|
|
87
109
|
item,
|
|
88
110
|
leasing_contract,
|
|
89
111
|
maintenance_plan,
|
|
90
112
|
maintenance_plan_service,
|
|
91
113
|
measurement_unit,
|
|
114
|
+
night_transport,
|
|
92
115
|
parameter,
|
|
93
|
-
|
|
94
|
-
inout,
|
|
116
|
+
pendency,
|
|
95
117
|
qualification_severity,
|
|
96
118
|
release_notification,
|
|
119
|
+
request_occurrence,
|
|
97
120
|
route,
|
|
121
|
+
service_order,
|
|
122
|
+
solicitation,
|
|
123
|
+
solicitation_comment,
|
|
124
|
+
solicitation_history,
|
|
125
|
+
solicitation_watcher,
|
|
98
126
|
stock_entry_item,
|
|
99
127
|
sub_system,
|
|
100
128
|
subsidiary,
|
|
@@ -104,16 +132,18 @@ export {
|
|
|
104
132
|
tire_dimension,
|
|
105
133
|
tire_drawing,
|
|
106
134
|
transaction,
|
|
135
|
+
trip,
|
|
136
|
+
vehicle,
|
|
137
|
+
vehicle_axes,
|
|
107
138
|
vehicle_brand,
|
|
139
|
+
vehicle_change_history,
|
|
108
140
|
vehicle_deactivation_cause,
|
|
141
|
+
vehicle_due,
|
|
142
|
+
vehicle_fuel,
|
|
109
143
|
vehicle_layout,
|
|
110
144
|
vehicle_leasing,
|
|
111
145
|
vehicle_model,
|
|
112
146
|
vehicle_model_version,
|
|
113
|
-
vehicle,
|
|
114
|
-
vehicle_fuel,
|
|
115
|
-
vehicle_axes,
|
|
116
|
-
vehicle_due,
|
|
117
147
|
vehicle_tag,
|
|
118
148
|
warehouse,
|
|
119
149
|
warehouse_item
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ENTITY_COMMON } from '../common/entity';
|
|
2
|
+
|
|
3
|
+
export const name = {
|
|
4
|
+
ptBR: 'Chave de Integração da Qualificação',
|
|
5
|
+
es: 'Clave de Integración de calificación de la infracción'
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const fields = {
|
|
9
|
+
...ENTITY_COMMON,
|
|
10
|
+
description: {
|
|
11
|
+
ptBR: 'Descrição',
|
|
12
|
+
es: 'Descrición'
|
|
13
|
+
},
|
|
14
|
+
code: {
|
|
15
|
+
ptBR: 'Código',
|
|
16
|
+
es: 'Código'
|
|
17
|
+
},
|
|
18
|
+
fine_qualification_id: {
|
|
19
|
+
ptBR: 'Qualificação de infração',
|
|
20
|
+
es: 'Calificación de infracción'
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const messages = {
|
|
25
|
+
code_must_be_unique: {
|
|
26
|
+
ptBR: 'Já existe uma chave de integração da qualificação com este código.',
|
|
27
|
+
es: 'Ya existe una clave de integración de calificación con este código.'
|
|
28
|
+
}
|
|
29
|
+
};
|