Merge pull request #637 from jitendra-webkul/jitendra

Shipment grid issue fixed
This commit is contained in:
JItendra Singh 2019-02-27 19:18:07 +05:30 committed by GitHub
commit 56a413c37b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}
}