PricingRule.php
7.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<?php namespace MeowCrew\RoleAndCustomerBasedPricing\Entity;
use Exception;
use MeowCrew\RoleAndCustomerBasedPricing\Core\ServiceContainerTrait;
use WC_Product;
class PricingRule {
use ServiceContainerTrait;
/**
* Product id
*
* @var int
*/
private $productId;
/**
* Pricing Type
*
* @var string
*/
private $priceType;
/**
* Regular price
*
* @var float
*/
private $regularPrice;
/**
* Sale price
*
* @var float
*/
private $salePrice;
/**
* Discount
*
* @var float
*/
private $discount;
/**
* Product minimum purchase quantity
*
* @var int
*/
private $minimum;
/**
* Product maximum purchase quantity
*
* @var int|null
*/
private $maximum;
/**
* Group of product quantity
*
* @var int|null
*/
private $groupOf;
/**
* Original product price
*
* @var float
*/
private $originalProductPrice;
/**
* PricingRule constructor.
*
* @param string $priceType
* @param string $regularPrice
* @param string $salePrice
* @param int $discount
* @param int $minimum
* @param int $maximum
* @param int $groupOf
* @param null $productId
*/
public function __construct( $priceType, $regularPrice = null, $salePrice = null, $discount = null, $minimum = null, $maximum = null, $groupOf = null, $productId = null ) {
$this->setPriceType( $priceType );
$this->setRegularPrice( $regularPrice );
$this->setSalePrice( $salePrice );
$this->setDiscount( $discount );
$this->setMinimum( $minimum );
$this->setMaximum( $maximum );
$this->setGroupOf( $groupOf );
$this->setProductId( $productId );
}
public function isPurchasable() {
return $this->getPrice();
}
/**
* Set original product price
*
* @param $price
*/
public function setOriginalProductPrice( $price ) {
$this->originalProductPrice = $price;
}
public function getOriginalProductPrice() {
if ( is_null( $this->originalProductPrice ) ) {
$this->originalProductPrice = $this->getProduct()->get_price( 'edit' );
}
return $this->originalProductPrice;
}
public function getPrice( WC_Product $product = null ) {
if ( $this->getPriceType() === 'percentage' ) {
$discount = $this->getDiscount();
$productPrice = $this->getOriginalProductPrice();
$price = ( $productPrice * ( ( 100 - $discount ) / 100 ) );
} else {
$price = $this->getRegularPrice();
if ( $this->getSalePrice() ) {
$price = $this->getSalePrice();
}
}
return apply_filters( 'role_customer_specific_pricing/pricing_rule/price', $price, $this );
}
/**
* Get discount
*
* @return int
*/
public function getDiscount() {
return $this->discount;
}
/**
* Set discount
*
* @param int $discount
*/
public function setDiscount( $discount ) {
$this->discount = $discount ? min( 100, floatval( $discount ) ) : null;
}
/**
* Get product id
*
* @return int
*/
public function getProductId() {
return $this->productId;
}
/**
* Set product id
*
* @param int $productId
*/
public function setProductId( $productId ) {
$this->productId = $productId ? intval( $productId ) : null;
}
/**
* Get price type
*
* @return string
*/
public function getPriceType() {
return $this->priceType;
}
/**
* Set price type
*
* @param string $priceType
*/
public function setPriceType( $priceType ) {
if ( ! racbpfw_fs()->is_premium() ) {
$priceType = 'flat';
}
$this->priceType = in_array( $priceType, array( 'percentage', 'flat' ) ) ? $priceType : 'flat';
}
/**
* Get regular price
*
* @return string
*/
public function getRegularPrice() {
return $this->regularPrice;
}
/**
* Set regular price
*
* @param string $regularPrice
*/
public function setRegularPrice( $regularPrice ) {
$this->regularPrice = $regularPrice ? floatval( $regularPrice ) : null;
}
/**
* Get sale price
*
* @return string
*/
public function getSalePrice() {
return $this->salePrice;
}
/**
* Set sale price
*
* @param string $salePrice
*/
public function setSalePrice( $salePrice ) {
$this->salePrice = $salePrice ? floatval( $salePrice ) : null;
}
public function asArray() {
return array(
'pricing_type' => $this->getPriceType(),
'regular_price' => $this->getRegularPrice(),
'sale_price' => $this->getSalePrice(),
'discount' => $this->getDiscount(),
'minimum' => $this->getMinimum(),
'maximum' => $this->getMaximum(),
'group_of' => $this->getGroupOf(),
'product_id' => $this->getProductId(),
);
}
/**
* Create instance from array
*
* @param array $data
* @param null|int $productId
*
* @return static
*/
public static function fromArray( $data, $productId = null ) {
$pricingType = isset( $data['pricing_type'] ) ? $data['pricing_type'] : 'flat';
$pricingType = in_array( $pricingType, array( 'flat', 'percentage' ) ) ? $pricingType : 'flat';
$regularPrice = isset( $data['regular_price'] ) ? $data['regular_price'] : null;
$salePrice = isset( $data['sale_price'] ) ? (string) $data['sale_price'] : false;
$discount = isset( $data['discount'] ) ? $data['discount'] : null;
$minimum = isset( $data['minimum'] ) ? $data['minimum'] : null;
$maximum = isset( $data['maximum'] ) ? $data['maximum'] : null;
$groupOf = isset( $data['group_of'] ) ? $data['group_of'] : null;
$productId = $productId ? $productId : ( isset( $data['product_id'] ) ? (int) $data['product_id'] : null );
return new static( $pricingType, $regularPrice, $salePrice, $discount, $minimum, $maximum, $groupOf, $productId );
}
public function calculateDiscount() {
if ( $this->getPriceType() === 'percentage' ) {
return $this->getDiscount();
}
$product = $this->getProduct();
if ( $product ) {
$price = $this->getPrice();
$productPrice = $product->get_price();
if ( $productPrice > $price ) {
return 100 - ( $price / $productPrice * 100 );
}
}
return 0;
}
/**
* Validate
*
* @throws Exception
*/
public function validatePricing() {
if ( $this->getPriceType() === 'flat' && ! $this->getPrice() ) {
throw new Exception( __( 'The pricing fields must be filled.', 'role-and-customer-based-pricing-for-woocommerce' ) );
}
if ( $this->getPriceType() === 'percentage' && ! $this->getDiscount() ) {
throw new Exception( __( 'The discount is not set.', 'role-and-customer-based-pricing-for-woocommerce' ) );
}
}
public function isValidPricing() {
try {
$this->validatePricing();
} catch ( Exception $e ) {
return false;
}
return true;
}
/**
* Get minimum
*
* @return int
*/
public function getMinimum() {
return $this->minimum;
}
/**
* Set minimum
*
* @param int $minimum
*/
public function setMinimum( $minimum ) {
$this->minimum = $minimum ? intval( $minimum ) : null;
}
/**
* Get maximum
*
* @return int|null
*/
public function getMaximum() {
return $this->maximum;
}
/**
* Set maximum
*
* @param int|null $maximum
*/
public function setMaximum( $maximum ) {
$this->maximum = $maximum ? intval( $maximum ) : null;
}
/**
* Get group of
*
* @return int|null
*/
public function getGroupOf() {
return $this->groupOf;
}
/**
* Set group of
*
* @param int|null $groupOf
*/
public function setGroupOf( $groupOf ) {
$this->groupOf = $groupOf ? intval( $groupOf ) : null;
}
/**
* Get product
*
* @return false|WC_Product
*/
public function getProduct() {
return wc_get_product( $this->getProductId() );
}
}