1
|
|
|
<?php |
2
|
|
|
namespace Hideyo\Ecommerce\Framework\Services\Order\Entity; |
3
|
|
|
|
4
|
|
|
use Hideyo\Ecommerce\Framework\Services\Order\Entity\Order; |
5
|
|
|
use Hideyo\Ecommerce\Framework\Services\Order\Entity\OrderProduct; |
6
|
|
|
use Hideyo\Ecommerce\Framework\Services\Order\Entity\OrderAddress; |
7
|
|
|
use Hideyo\Ecommerce\Framework\Services\Order\Entity\OrderSendingMethod; |
8
|
|
|
use Hideyo\Ecommerce\Framework\Services\Order\Entity\OrderPaymentMethod; |
9
|
|
|
use DB; |
|
|
|
|
10
|
|
|
use Carbon\Carbon; |
|
|
|
|
11
|
|
|
use Hideyo\Ecommerce\Framework\Services\BaseRepository; |
12
|
|
|
|
13
|
|
|
class OrderRepository extends BaseRepository |
14
|
|
|
{ |
15
|
|
|
protected $model; |
16
|
|
|
|
17
|
|
|
public function __construct( |
18
|
|
|
Order $model, |
19
|
|
|
OrderProduct $modelOrderProduct, |
20
|
|
|
OrderAddress $modelOrderAddress, |
21
|
|
|
OrderSendingMethod $modelOrderSendingMethod, |
22
|
|
|
OrderPaymentMethod $modelOrderPaymentMethod |
23
|
|
|
) { |
24
|
|
|
$this->model = $model; |
25
|
|
|
$this->modelOrderProduct = $modelOrderProduct; |
|
|
|
|
26
|
|
|
$this->modelOrderAddress = $modelOrderAddress; |
|
|
|
|
27
|
|
|
$this->modelOrderSendingMethod = $modelOrderSendingMethod; |
|
|
|
|
28
|
|
|
$this->modelOrderPaymentMethod = $modelOrderPaymentMethod; |
|
|
|
|
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
public function getProductModel() |
32
|
|
|
{ |
33
|
|
|
return $this->modelOrderProduct; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
public function getAddressModel() |
37
|
|
|
{ |
38
|
|
|
return $this->modelOrderAddress; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
public function getOrderSendingMethodModel() |
42
|
|
|
{ |
43
|
|
|
return $this->modelOrderSendingMethod; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
public function getOrderPaymentMethodModel() |
47
|
|
|
{ |
48
|
|
|
return $this->modelOrderPaymentMethod; |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
public function selectAllByShopIdAndStatusId($orderStatusId, $startDate = false, $endDate = false, $shopId = false) |
|
|
|
|
52
|
|
|
{ |
53
|
|
|
$query = $this->model |
54
|
|
|
->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id) |
|
|
|
|
55
|
|
|
->where('order_status_id', '=', $orderStatusId); |
56
|
|
|
|
57
|
|
|
if ($startDate) { |
58
|
|
|
$dt = Carbon::createFromFormat('d/m/Y', $startDate); |
59
|
|
|
$query->where('created_at', '>=', $dt->toDateString('Y-m-d')); |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
if ($endDate) { |
63
|
|
|
$dt = Carbon::createFromFormat('d/m/Y', $endDate); |
64
|
|
|
$query->where('created_at', '<=', $dt->toDateString('Y-m-d')); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
$query->orderBy('created_at', 'ASC'); |
68
|
|
|
return $query->get(); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
public function selectAllByAllProductsAndProductCategoryId($productCategoryId) |
72
|
|
|
{ |
73
|
|
|
return $this->model->select('extra_field.*')->leftJoin('product_category_related_extra_field', 'extra_field.id', '=', 'product_category_related_extra_field.extra_field_id')->where('all_products', '=', 1)->orWhere('product_category_related_extra_field.product_category_id', '=', $productCategoryId)->get(); |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
public function orderProductsByClientId($clientId, $shopId) |
77
|
|
|
{ |
78
|
|
|
return $this->modelOrderProduct->with(array('product'))->whereHas('Order', function ($query) use ($clientId, $shopId) { |
79
|
|
|
$query->where('client_id', '=', $clientId)->where('shop_id', '=', $shopId); |
80
|
|
|
}); |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
public function selectAllByCompany() |
84
|
|
|
{ |
85
|
|
|
return $this->model->leftJoin('shop', 'order.shop_id', '=', 'shop.id')->get(); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
public function productsByOrderIds(array $orderIds) |
89
|
|
|
{ |
90
|
|
|
$result = DB::table('order_product') |
91
|
|
|
->select(DB::raw('DISTINCT(CONCAT_WS(\' - \',order_product.title, IFNULL(order_product.product_attribute_title, \'\'))) as title, order_product.product_attribute_title, order_product.reference_code, order_product.price_with_tax, order_product.price_without_tax, SUM(order_product.amount) as total_amount')) |
92
|
|
|
->whereIn('order_product.order_id', $orderIds) |
93
|
|
|
->whereNotNull('order_product.product_attribute_title') |
94
|
|
|
->groupBy('order_product.title', 'order_product.product_attribute_title') |
95
|
|
|
->get(); |
96
|
|
|
|
97
|
|
|
|
98
|
|
|
$result2 = DB::table('order_product') |
99
|
|
|
->select(DB::raw('DISTINCT(order_product.title) as title, order_product.product_attribute_title, order_product.reference_code, order_product.price_with_tax, order_product.price_without_tax, SUM(order_product.amount) as total_amount')) |
100
|
|
|
->whereIn('order_product.order_id', $orderIds) |
101
|
|
|
->whereNull('order_product.product_attribute_title') |
102
|
|
|
->groupBy('order_product.title', 'order_product.product_attribute_title') |
103
|
|
|
->get(); |
104
|
|
|
|
105
|
|
|
$result = array_merge($result, $result2); |
106
|
|
|
return $result; |
107
|
|
|
} |
108
|
|
|
} |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths