fix
All checks were successful
Build And Deploy Main / build-and-deploy (push) Successful in 32s

This commit is contained in:
2026-03-10 14:32:11 -04:00
parent c1642af8b6
commit 2bc56d7836
7 changed files with 65 additions and 45 deletions

View File

@@ -15,6 +15,7 @@ exports.createVehicleRepair = (req, res) => {
site,
repair_description: req.body.repair_description || req.body.part_name || '',
part_name: req.body.part_name || '',
part_name_other: req.body.part_name_other || '',
mileage_at_replacement: req.body.mileage_at_replacement || '',
quantity: req.body.quantity || '',
repair_price: req.body.repair_price || '',

View File

@@ -5,6 +5,7 @@ module.exports = mongoose => {
site: Number,
repair_description: String,
part_name: String,
part_name_other: String,
mileage_at_replacement: String,
quantity: String,
repair_price: String,