feat/fix: Adding missing fields to branches/proposals
This commit is contained in:
@@ -29,9 +29,15 @@ function getAndFilterList( query ){
|
||||
phone,
|
||||
city,
|
||||
state,
|
||||
truck_type
|
||||
truck_type,
|
||||
is_accepted,
|
||||
is_withdrawn,
|
||||
is_completed,
|
||||
} = query;
|
||||
|
||||
if( is_completed ) { filter_list.push({ is_completed }); }
|
||||
if( is_withdrawn ) { filter_list.push({ is_withdrawn }); }
|
||||
if( is_accepted ) { filter_list.push({ is_accepted }); }
|
||||
if( shipper ) { filter_list.push({ shipper }); }
|
||||
if( carrier ) { filter_list.push({ carrier }); }
|
||||
if( load ) { filter_list.push({ load }); }
|
||||
|
||||
Reference in New Issue
Block a user