Order.php
18.8 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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
<?php
namespace artweb\artbox\ecommerce\models;
use artweb\artbox\ecommerce\components\OrderLogger;
use artweb\artbox\models\Customer;
use common\behaviors\DefaultLabelBehavior;
use common\models\User;
use Yii;
use yii\behaviors\TimestampBehavior;
use yii\db\ActiveRecord;
use yii\db\Query;
/**
* Class Order
*
* @todo Write docs and refactor
* @package artweb\artbox\ecommerce\models
* @property OrderProduct[] $products
* @property integer $created_at
* @property integer $updated_at
* @property integer $deleted_at
* @property integer $deadline
* @property boolean $wasted
* @property string $delivery_cost
* @property integer $reason
* @property string $check
* @property string $sms
* @property int $id
* @property integer $edit_id
* @property integer $edit_time
* @property integer $manager_id
* @property int $user_id
* @property string $name
* @property string $phone
* @property string $phone2
* @property string $email
* @property string $adress
* @property string $body
* @property double $total
* @property string $date_time
* @property string $date_dedline
* @property string $reserve
* @property string $status
* @property string $comment
* @property int $label
* @property int $pay
* @property int $numbercard
* @property int $delivery
* @property string $declaration
* @property string $stock
* @property string $consignment
* @property string $payment
* @property string $insurance
* @property string $amount_imposed
* @property string $shipping_by
* @property string $city
* @property string $deliveryString
* @property boolean $published
* @property Label $orderLabel
* @property Delivery $orderDelivery
* @property OrderPayment $orderPayment
* @property OrderLog[] $logs
* @property float $credit_sum
* @property int $credit_month
* @property User $manager
*/
class Order extends ActiveRecord
{
const SHIPPING_BY = [
1 => [
'label' => 'Отправитель',
],
2 => [
'label' => 'Получатель',
],
];
const REASONS = [
1 => 'Нет товара',
2 => 'Нет оплаты',
3 => 'Передумал',
4 => ' - Купил в другом месте',
5 => ' - Не подошли условия доставки',
6 => ' - Не подошел срок доставки',
7 => ' - Нет денег',
8 => ' - Купит позже',
9 => 'Купил в другом месте',
10 => 'Подьедет в маг.',
11 => 'Дубль заказа.',
12 => 'Другое',
13 => 'Брак',
14 => 'Отказался от Самовывоза',
15 => 'Не приехал за Самовывозом',
16 => 'Отменил заказ',
17 => 'Не берет трубку',
];
public static function tableName()
{
return 'order';
}
/**
* @param array $date
* @param array $manager
*
* @return array
*/
public static function getRejectionStatistics(array $date = [], array $manager = [])
{
$result = [];
foreach (self::REASONS as $id => $reason) {
$result[ $reason ] = ( new Query() )->select(
[
'sum' => 'SUM(total)',
'count' => 'COUNT(*)',
]
)
->from(self::tableName())
->where(
[
'reason' => $id,
]
)
->andFilterWhere($date)
->andFilterWhere($manager)
->one();
}
return $result;
}
/**
* @inheritdoc
*/
public function behaviors()
{
return [
[
'class' => TimestampBehavior::className(),
],
[
'class' => DefaultLabelBehavior::className(),
],
];
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[
[
'pay',
'published',
],
'boolean',
],
[
[
'shipping_by',
'created_at',
'updated_at',
'deleted_at',
'payment',
'reason',
'label',
'manager_id',
'edit_time',
'edit_id',
'delivery',
],
'integer',
],
[
[ 'total' ],
'double',
],
[
[
'phone',
],
'required',
],
[
[
'comment',
'body',
],
'string',
],
[
[ 'email' ],
'email',
],
[
[
'phone',
'phone2',
],
'match',
'pattern' => '/^\+38\(\d{3}\)\d{3}-\d{2}-\d{2}$/',
],
[
[
'credit_month',
],
'integer',
'min' => 3,
'max' => 36,
],
[
[
'credit_sum',
],
'number',
'min' => 0,
],
[
[
'deadTime',
'name',
'numbercard',
'declaration',
'stock',
'consignment',
'insurance',
'amount_imposed',
'city',
'adress',
'status',
'check',
'sms',
'delivery_cost',
],
'string',
'max' => 255,
],
];
}
public function afterSave($insert, $changedAttributes)
{
$data = OrderLogger::generateData($changedAttributes, $this->oldAttributes, $insert);
OrderLogger::saveData($data, $this->id);
OrderLogger::saveOrderLabelHistory($changedAttributes, $this->label, $this->id);
parent::afterSave($insert, $changedAttributes);
}
public function getDeadTime()
{
if (empty($this->deadline)) {
return null;
} else {
return date('d.m.Y', $this->deadline);
}
}
public function setDeadTime($value)
{
if (empty($value)) {
$this->deadline = null;
} else {
$this->deadline = strtotime($value);
}
}
/**
* @inheritdoc
*/
// public function afterFind()
// {
// parent::afterFind();
// $this->deadline = !empty($this->deadline) ? date('d.m.Y', $this->deadline) : '';
//
// }
/**
* @inheritdoc
*/
// public function beforeSave($insert)
// {
// if (parent::beforeSave($insert)) {
//
// $this->convertDate();
// return true;
// }
// return false;
//
// }
/**
* Convert some date
*/
// protected function convertDate()
// {
// if (!empty($this->deadline)) {
// $date = new \DateTime();
// $date->setTimestamp(strtotime($this->deadline));
// $date->format("d.m.Y");
// $this->deadline = $date->getTimestamp();
//
// }
//
// }
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'name' => Yii::t('app', 'order_name'),
'phone' => Yii::t('app', 'order_phone'),
'phone2' => Yii::t('app', 'Конактный телефон 2'),
'email' => Yii::t('app', 'E-mail'),
'comment' => Yii::t('app', 'Комментарий '),
'created_at' => Yii::t('app', 'Дата добавления'),
'updated_at' => Yii::t('app', 'Дата обновления'),
'deleted_at' => Yii::t('app', 'Дата удаления'),
'deadline' => Yii::t('app', 'Дедлайн'),
'reason' => Yii::t('app', 'Причина'),
'check' => Yii::t('app', 'Чек'),
'sms' => Yii::t('app', 'СМС'),
'consignment' => Yii::t('app', 'Номер накладной'),
'manager_id' => Yii::t('app', 'Менеджер'),
'delivery_cost' => Yii::t('app', 'Стоимость доставки'),
'published' => Yii::t('app', 'Опубликован'),
'label' => Yii::t('app', 'Метка'),
'declaration' => Yii::t('app', 'Номер декларации'),
'delivery' => Yii::t('app', 'Способ доставки'),
'total' => Yii::t('app', 'Сумма'),
'adress' => Yii::t('app', 'Адрес'),
'pay' => Yii::t('app', 'Оплата'),
'body' => Yii::t('app', 'Комментарий менеджера'),
'id' => Yii::t('app', 'Номер'),
'stock' => Yii::t('app', 'Номер склада'),
'payment' => Yii::t('app', 'Способ оплаты'),
'insurance' => Yii::t('app', 'Страховка'),
'amount_imposed' => Yii::t('app', 'Сумма наложенного'),
'shipping_by' => Yii::t('app', 'Отправка за счет'),
'city' => Yii::t('app', 'Город'),
'numbercard' => Yii::t('app', '№ карточки'),
'credit_month' => Yii::t('app', 'Количество месяцев'),
'credit_sum' => Yii::t('app', 'Первоначальный взнос'),
];
}
public static function attributeNames()
{
return [
'name' => Yii::t('app', 'order_name'),
'phone' => Yii::t('app', 'order_phone'),
'phone2' => Yii::t('app', 'Конактный телефон 2'),
'email' => Yii::t('app', 'E-mail'),
'comment' => Yii::t('app', 'Комментарий '),
'deadline' => Yii::t('app', 'Дедлайн'),
'reason' => Yii::t('app', 'Причина'),
'check' => Yii::t('app', 'Чек'),
'sms' => Yii::t('app', 'СМС'),
'consignment' => Yii::t('app', 'Номер накладной'),
'manager_id' => Yii::t('app', 'Менеджер'),
'delivery_cost' => Yii::t('app', 'Стоимость доставки'),
'label' => Yii::t('app', 'Метка'),
'declaration' => Yii::t('app', 'Номер декларации'),
'delivery' => Yii::t('app', 'Способ доставки'),
'adress' => Yii::t('app', 'Адрес'),
'pay' => Yii::t('app', 'Оплата'),
'body' => Yii::t('app', 'Комментарий менеджера'),
'stock' => Yii::t('app', 'Номер склада'),
'payment' => Yii::t('app', 'Способ оплаты'),
'insurance' => Yii::t('app', 'Страховка'),
'amount_imposed' => Yii::t('app', 'Сумма наложенного'),
'shipping_by' => Yii::t('app', 'Отправка за счет'),
'city' => Yii::t('app', 'Город'),
'numbercard' => Yii::t('app', '№ карточки'),
'send_sms' => Yii::t('app', 'Отправлять смс'),
'product_booking' => Yii::t('app', 'Бронь товара'),
'product_status' => Yii::t('app', 'Статус товара'),
'product_return' => Yii::t('app', 'Возврат товара'),
'add_product' => Yii::t('app', 'Добавить товар'),
'delete_product' => Yii::t('app', 'Удалить товар'),
'product_count' => Yii::t('app', 'Количество товара'),
];
}
/**
* @return \yii\db\ActiveQuery
*/
public function getUser()
{
return $this->hasOne(Customer::className(), [ 'id' => 'user_id' ]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getProducts()
{
return $this->hasMany(OrderProduct::className(), [ 'order_id' => 'id' ]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getOrderDelivery()
{
return $this->hasOne(Delivery::className(), [ 'id' => 'delivery' ]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getOrderLabel()
{
return $this->hasOne(Label::className(), [ 'id' => 'label' ]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getOrderPayment()
{
return $this->hasOne(OrderPayment::className(), [ 'id' => 'payment' ]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getLabelsHistory()
{
return $this->hasMany(OrderLabelHistory::className(), [ 'order_id' => 'id' ]);
}
/**
* @return string
*/
public function getDeliveryString()
{
if (!empty($this->orderDelivery)) {
if (!empty($this->orderDelivery->parent)) {
return $this->orderDelivery->parent->lang->title . ': ' . $this->orderDelivery->lang->title;
} else {
return $this->orderDelivery->lang->title;
}
} else {
return '';
}
}
/**
* @return \yii\db\ActiveQuery
*/
public function getLogs()
{
return $this->hasMany(OrderLog::className(), [ 'order_id' => 'id' ]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getProductLogs()
{
return $this->hasMany(OrderProductLog::className(), [ 'order_id' => 'id' ]);
}
/**
* If deadline is fucked up returns true,
* if deadline is not setted return false, like everything is ok
*
* @return bool
*/
public function getWasted()
{
if (empty($this->deadline)) {
return false;
} else {
return time() > strtotime($this->deadline);
}
}
/**
* @return \yii\db\ActiveQuery
*/
public function getManager()
{
return $this->hasOne(User::className(), [ 'id' => 'manager_id' ]);
}
/**
* Check if order is blocked for updating
*
* @return bool
*/
public function isBlocked()
{
if ($this->edit_id === 0) {
return false;
} else {
if ($this->edit_time + 7200 > time()) {
return true;
} else {
return false;
}
}
}
/**
* If order products changed recount te total value
*/
public function totalRecount()
{
$products = $this->products;
$newTotal = 0;
foreach ($products as $product) {
if ($product->removed) {
continue;
}
$newTotal += $product->count * $product->price;
}
$this->total = $newTotal;
$this->save();
}
/**
* If exit unpublished order - delete it
*/
public function deleteUnpublished()
{
/**
* @var OrderProduct[] $products
*/
$products = $this->products;
foreach ($products as $product) {
$product->delete();
}
$this->delete();
}
}