Type coercion
This commit is contained in:
parent
978f9c948d
commit
f1e044549e
1 changed files with 5 additions and 5 deletions
|
|
@ -176,16 +176,16 @@ export default {
|
|||
damageType: order.damage.isRepair ? "repair" : "replace",
|
||||
accountType: order.payment.isInsurance ? "insurance" : "cash",
|
||||
promoCodes: promoString,
|
||||
vehicleYear: order.vehicle.year,
|
||||
vehicleYear: `${order.vehicle.year}`,
|
||||
vehicleMake: order.vehicle.make,
|
||||
vehicleModel: order.vehicle.model,
|
||||
vehicleStyle: order.vehicle.style,
|
||||
glassToReplace: glassString,
|
||||
workOrderId: order.workOrderId,
|
||||
providerCtu: order.serviceLocation.zipCodeCtu,
|
||||
workOrderId: parseInt(order.workOrderId),
|
||||
providerCtu: parseInt(order.serviceLocation.zipCodeCtu),
|
||||
orderNumber: order.workOrderNumber,
|
||||
priceTotal: total,
|
||||
priceSubTotal: subtotal,
|
||||
priceTotal: parseFloat(total),
|
||||
priceSubTotal: parseFloat(subtotal),
|
||||
isRecalibrationOnOrder: store.getters.isRecalibrationOnSubmittedOrder,
|
||||
appointmentType: order.serviceLocation.appointmentType,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue