Shipment grid issue fixed

This commit is contained in:
jitendra 2019-02-27 19:17:13 +05:30
parent ff37ad3c58
commit cceed7d048
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ class OrderShipmentsDataGrid extends DataGrid
$this->addFilter('inventory_source_name', 'is.name');
$this->addFilter('orderdate', 'ors.created_at');
$this->addFilter('shipment_created_at', 'shipments.created_at');
$this->addFilter('shipped_to', DDB::raw('CONCAT(order_address_shipping.first_name, " ", order_address_shipping.last_name) as shipped_to'));
$this->addFilter('shipped_to', DB::raw('CONCAT(order_address_shipping.first_name, " ", order_address_shipping.last_name) as shipped_to'));
$this->setQueryBuilder($queryBuilder);
}

View File

@ -2082,7 +2082,7 @@ section.product-detail {
}
.reviewer-details {
color: $font-color-light;
color: #5e5e5e;
}
}