Additional Changes for calculations of RPS %.
This commit is contained in:
@@ -166,7 +166,11 @@ const DetermineVehicleGroup = async (job) => {
|
||||
query: QUERY_GROUPS_BY_MAKE_TYPE,
|
||||
variables: {
|
||||
make: job.v_makedesc.toUpperCase(),
|
||||
type: job.v_type ? job.v_type.toUpperCase() : null,
|
||||
type:
|
||||
job.v_type && job.v_type.toUpperCase() !== "PC"
|
||||
? job.v_type.toUpperCase()
|
||||
: null,
|
||||
isNull: job.v_type && job.v_type.toUpperCase() !== "PC" ? false : true,
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user