3870-models #975

Merged
carlosjr merged 9 commits from 3870-models into dev 2022-05-23 12:42:31 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit c9bfbe990a - Show all commits

View File

@ -17,8 +17,8 @@
"version": {
"type": "string"
},
"IsVersionCritical": {
"type": "number"
"isVersionCritical": {
vicent marked this conversation as resolved Outdated

typo: isVersionCritical

typo: isVersionCritical
"type": "boolean"
vicent marked this conversation as resolved Outdated

isn't this a boolean?

isn't this a boolean?
}
}
}

View File

@ -2551,15 +2551,15 @@ INSERT INTO `vn`.`supplierAgencyTerm` (`agencyFk`, `supplierFk`, `minimumPackage
(4, 2, 0, 20.00, 0.00, NULL, 0, 0.00, 0),
(5, 442, 0, 0.00, 3.05, NULL, 0, 0.00, 0);
INSERT INTO `vn`.`mobileAppVersionControl` (`appName`, `version`, `IsVersionCritical`)
INSERT INTO `vn`.`mobileAppVersionControl` (`appName`, `version`, `isVersionCritical`)
vicent marked this conversation as resolved Outdated

IsVersionCritical looks like a typo.

IsVersionCritical looks like a typo.
VALUES
('delivery', '9.2', 0),
('warehouse', '8.1', 0);
INSERT INTO `vn`.`machine` (`plate`, `maker`, `model`, `warehouseFk`, `departmentFk`, `type`, `use`, `productionYear`, `workerFk`, `companyFk`)
VALUES
('RE-001', 'STILL', 'LTX-20', 60, 23, 'REMOLCADOR ELECTRICO', 'Arrastrar carros', 2020, 103, 442),
('RE-002', 'STILL', 'LTX-20', 60, 23, 'REMOLCADOR ELECTRICO', 'Arrastrar carros', 2020, 103, 442);
('RE-001', 'STILL', 'LTX-20', 60, 23, 'ELECTRIC TOW', 'Drag cars', 2020, 103, 442),
vicent marked this conversation as resolved Outdated

fixtures language is english by default

fixtures language is english by default
('RE-002', 'STILL', 'LTX-20', 60, 23, 'ELECTRIC TOW', 'Drag cars', 2020, 103, 442);
INSERT INTO `vn`.`machineWorker` (`workerFk`, `machineFk`, `inTimed`, `outTimed`)
VALUES