最新服务器上的版本,以后用这个
zhangmeng
2023-04-19 e3f5aa12f58d986098a9de0f5cb38060e403036d
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
<?php
 
namespace app\models;
 
/**
 * This is the model class for table "{{%order_refund}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property int $mch_id
 * @property int $user_id
 * @property int $order_id
 * @property int $order_detail_id 关联订单详情
 * @property string $order_no 退款单号
 * @property int $type 售后类型:1=退货退款,2=换货
 * @property string $refund_price 退款金额
 * @property string $reality_refund_price 商家实际退款金额
 * @property string $remark 用户退款备注、说明
 * @property string $pic_list 用户上传图片凭证
 * @property int $status 1.待商家处理 2.同意 3.拒绝
 * @property string $status_time 商家处理时间
 * @property string $merchant_remark 商家同意|拒绝备注、理由
 * @property int $is_send 用户是否发货 0.未发货1.已发货
 * @property string $send_time 发货时间
 * @property string $express 快递公司
 * @property string $express_no 快递单号
 * @property int $address_id 退换货地址ID
 * @property int $is_confirm 商家确认操作
 * @property string $confirm_time 确认时间
 * @property string $merchant_express 商家发货快递公司
 * @property string $merchant_express_no 商家发货快递单号
 * @property string $created_at
 * @property string $updated_at
 * @property string $deleted_at
 * @property string $refund_time
 * @property string $merchant_express_content
 * @property int $is_delete
 * @property int $is_refund
 * @property string $mobile
 * @property string $refund_data
 * @property Order $order
 * @property User $user
 * @property OrderDetail $detail
 * @property string $customer_name
 * @property string $merchant_customer_name
 * @property RefundAddress $refundAddress
 */
class OrderRefund extends ModelActiveRecord
{
    /**
     *  订单售后处理完成事件
     */
    const EVENT_REFUND = 'orderRefund';
 
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%order_refund}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'user_id', 'order_detail_id', 'type', 'pic_list'
                , 'created_at', 'updated_at', 'deleted_at', 'order_id'], 'required'],
            [['mall_id', 'user_id', 'order_detail_id', 'type', 'status',
                'is_send', 'address_id', 'is_confirm', 'is_delete', 'order_id', 'mch_id', 'is_refund'], 'integer'],
            [['refund_price', 'reality_refund_price'], 'number'],
            [['pic_list', 'customer_name', 'merchant_customer_name', 'refund_data', 'mobile'], 'string'],
            [['status_time', 'send_time', 'confirm_time', 'created_at', 'updated_at', 'deleted_at', 'refund_time'], 'safe'],
            [['order_no', 'remark', 'merchant_remark', 'express_no', 'merchant_express_no', 'merchant_express_content'], 'string', 'max' => 255],
            [['express', 'merchant_express', 'customer_name', 'merchant_customer_name'], 'string', 'max' => 65],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'mch_id' => 'Mch ID',
            'user_id' => 'User ID',
            'order_id' => '订单id',
            'order_detail_id' => '关联订单详情',
            'order_no' => '退款单号',
            'type' => '售后类型:1=退货退款,2=换货',
            'refund_price' => '退款金额',
            'reality_refund_price' => '商家实际退款金额',
            'remark' => '用户退款备注、说明',
            'pic_list' => '用户上传图片凭证',
            'status' => '1.待商家处理 2.同意 3.拒绝',
            'status_time' => '商家处理时间',
            'merchant_remark' => '商家备注',
            'is_send' => '用户是否发货 0.未发货1.已发货',
            'send_time' => '发货时间',
            'express' => '快递公司',
            'customer_name' => '京东商家编码',
            'express_no' => '快递单号',
            'address_id' => '退换货地址ID',
            'is_confirm' => '商家确认操作',
            'confirm_time' => '确认时间',
            'merchant_customer_name' => '京东商家编码',
            'merchant_express' => '商家发货快递公司',
            'merchant_express_no' => '商家发货快递单号',
            'merchant_express_content' => '其它物流备注',
            'is_refund' => '是否已打款',
            'refund_time' => '打款时间',
            'mobile' => '联系方式',
            'refund_data' => '售后数据',
            'created_at' => 'Created At',
            'updated_at' => 'Updated At',
            'deleted_at' => 'Deleted At',
            'is_delete' => 'Is Delete',
        ];
    }
 
    public function getDetail()
    {
        return $this->hasOne(OrderDetail::className(), ['id' => 'order_detail_id']);
    }
 
    public function getRefundAddress()
    {
        return $this->hasOne(RefundAddress::className(), ['id' => 'address_id']);
    }
 
    public function getOrder()
    {
        return $this->hasOne(Order::className(), ['id' => 'order_id']);
    }
 
    public function getUser()
    {
        return $this->hasOne(User::className(), ['id' => 'user_id']);
    }
 
    public function statusText($orderRefund)
    {
        if (!$orderRefund) {
            throw new \Exception('orderRefund不能为空');
        }
 
        try {
            if ($orderRefund['status'] == 1) {
                $statusText = '待商家审核';
            } elseif ($orderRefund['status'] == 2 && $orderRefund['is_send'] == 0) {
                $statusText = '待买家发货';
            } elseif ($orderRefund['status'] == 3) {
                $statusText = '商家已拒绝';
            } elseif ($orderRefund['is_send'] == 1 && $orderRefund['is_confirm'] == 0) {
                $statusText = '待商家处理';
            } elseif ($orderRefund['is_confirm'] == 1 && ($orderRefund['type'] == 1 || $orderRefund['type'] == 3)) {
                $statusText = $orderRefund['is_refund'] == 1 ? '已退款' : '待退款';
                try {
                    // 兼容 更新之前的订单 is_refund 是2 但是有可能没有退款
                    if ($orderRefund->is_refund == 2) {
                        /** @var PaymentOrder $paymentOrder */
                        $paymentOrder = PaymentOrder::find()->where(['order_no' => $orderRefund['order']['order_no']])->with('paymentOrderUnion')->one();
                        $paymentRefund = PaymentRefund::find()->where(['out_trade_no' => $paymentOrder->paymentOrderUnion->order_no])->one();
                        if (!$paymentRefund) {
                            $statusText = '待退款';
                        }
                    }
                } catch (\Exception $exception) {
                }
            } elseif ($orderRefund['is_confirm'] == 1 && $orderRefund['type'] == 2) {
                $statusText = '已换货';
            } else {
                $statusText = '订单状态未知';
            }
        } catch (\Exception $exception) {
            $statusText = '订单状态未知';
        }
 
        return $statusText;
    }
 
    public function hintText($orderRefund)
    {
        if (!$orderRefund) {
            throw new \Exception('orderRefund不能为空');
        }
 
        $hintText = '';
        try {
            if ($orderRefund['is_send'] == 1 && $orderRefund['is_confirm'] == 0) {
                if ($orderRefund['order']['send_type'] == 1) {
                    $hintText = '买家需到店退换货';
                }
                if ($orderRefund['order']['send_type'] == 2) {
                    $hintText = '等待商家上门取货';
                }
            }
        } catch (\Exception $exception) {
 
        }
 
        return $hintText;
    }
 
    //商家版状态
    public function statusText_business($orderRefund)
    {
        if (!$orderRefund) {
            throw new \Exception('orderRefund不能为空');
        }
 
        if ($orderRefund['status'] == 1 && ($orderRefund['type'] == 1 || $orderRefund['type'] == 3)) {
            $statusText = $orderRefund['type'] == 1 ? '退货退款 待审核' : '仅退款(无需退货) 待审核';
        } elseif ($orderRefund['status'] == 1 && $orderRefund['type'] == 2) {
            $statusText = '换货 待审核';
        } elseif ($orderRefund['status'] == 2 && $orderRefund['is_send'] == 0 && $orderRefund['type'] == 1) {
            $statusText = '退货退款 待买家发货';
        } elseif ($orderRefund['status'] == 2 && $orderRefund['is_send'] == 0 && $orderRefund['type'] == 2) {
            $statusText = '换货 待买家发货';
        } elseif ($orderRefund['status'] == 3 && ($orderRefund['type'] == 1 || $orderRefund['type'] == 3)) {
            $statusText = $orderRefund['type'] == 1 ? '退货退款 已拒绝售后' : '仅退款(无需退货) 已拒绝售后';
        } elseif ($orderRefund['status'] == 3 && $orderRefund['type'] == 2) {
            $statusText = '换货 已拒绝售后';
        } elseif ($orderRefund['is_send'] == 1 && $orderRefund['is_confirm'] == 0 && $orderRefund['type'] == 1) {
            $statusText = '退货退款 待卖家收货';
        } elseif ($orderRefund['is_send'] == 1 && $orderRefund['is_confirm'] == 0 && $orderRefund['type'] == 2) {
            $statusText = '换货 待卖家收货';
        } elseif ($orderRefund['is_confirm'] == 1 && ($orderRefund['type'] == 1 || $orderRefund['type'] == 3)) {
            $typeText = $orderRefund['type'] == 1 ? '退货退款' : '仅退款(无需退货)';
            $statusText = $orderRefund['is_refund'] == 1 ? $typeText . ' 卖家已退款' : $typeText . ' 待卖家退款';
            try {
                // 兼容 更新之前的订单 is_refund 是2 但是有可能没有退款
                if ($orderRefund->is_refund == 2) {
                    /** @var PaymentOrder $paymentOrder */
                    $paymentOrder = PaymentOrder::find()->where(['order_no' => $orderRefund['order']['order_no']])->with('paymentOrderUnion')->one();
                    $paymentRefund = PaymentRefund::find()->where(['out_trade_no' => $paymentOrder->paymentOrderUnion->order_no])->one();
                    if (!$paymentRefund) {
                        $statusText = $typeText . ' 待卖家退款';
                    }
                }
            } catch (\Exception $exception) {
            }
        } elseif ($orderRefund['is_confirm'] == 1 && $orderRefund['type'] == 2) {
            $statusText = '换货 卖家已发货';
        } else {
            $statusText = '订单状态未知';
        }
 
        return $statusText;
    }
 
    /**
     * 兼容 更新之前的订单 is_refund 是2 但是有可能没有退款
     * 兼容 实际退款金额 之前的订单没有存实际退款金额,需查询退款订单
     * @param $item
     * @return array
     */
    public function checkAfterRefund($item)
    {
        $newItem = [];
        try {
            /** @var PaymentOrder $paymentOrder */
            $paymentOrder = PaymentOrder::find()->where(['order_no' => $item->order->order_no])->with('paymentOrderUnion')->one();
            /** @var PaymentRefund $paymentRefund */
            $paymentRefund = PaymentRefund::find()->where(['out_trade_no' => $paymentOrder->paymentOrderUnion->order_no])->one();
            if ($item->is_refund == 2) {
                if (!$paymentRefund) {
                    $newItem['is_refund'] = 0;
                } else {
                    $newItem['is_refund'] = 1;
                }
            }
            if ($item->reality_refund_price <= 0 && $paymentRefund) {
                $newItem['reality_refund_price'] = $paymentRefund->amount;
            }
        } catch (\Exception $exception) {
        }
 
        return $newItem;
    }
 
    public function getActionStatus($orderRefund)
    {
        $data['is_show_edit_address'] = 0;
        $data['is_show_apply'] = 0;
        $data['is_show_confirm'] = 0;
        $data['is_show_refund'] = 0;
        $data['is_show_cancel_refund'] = 0;
 
        // 修改地址
        if (isset($orderRefund['order']['send_type']) && $orderRefund['order']['send_type'] != 2 && $orderRefund['is_confirm'] == 0) {
            $data['is_show_edit_address'] = 1;
        }
        // 申请售后
        if ($orderRefund['status'] == 1) {
            $data['is_show_apply'] = 1;
        }
 
        // 确认收货
        if ($orderRefund['status'] == 2 && $orderRefund['is_send'] == 1 && $orderRefund['is_confirm'] == 0) {
            $data['is_show_confirm'] = 1;
        }
 
        // 打款
        if (($orderRefund['type'] == 1 || $orderRefund['type'] == 3) && $orderRefund['status'] == 2 && $orderRefund['is_send'] == 1 && $orderRefund['is_confirm'] == 1 && $orderRefund['is_refund'] == 0) {
            $data['is_show_refund'] = 1;
        }
        // 取消售后
        if ($orderRefund['status'] == 2 && ((in_array($orderRefund['type'], [1, 3]) && $orderRefund['is_refund'] == 0) || ($orderRefund['type'] == 2 && $orderRefund['is_confirm'] == 0))) {
            $data['is_show_cancel_refund'] = 1;
        }
 
        return $data;
    }
 
    /**
     * 订单售后类型
     * @param OrderRefund $orderRefund
     * @return string
     */
    public function getRefundTypeText($orderRefund)
    {
        $text = '未知';
        if ($orderRefund->type == 1) {
            $text = '退货退款';
        }
        if ($orderRefund->type == 2) {
            $text = '换货';
        }
        if ($orderRefund->type == 3) {
            $text = '仅退款(无需退货)';
        }
 
        return $text;
    }
 
    // 货到付款 退款时需将
    public function updatePayStatus($orderRefund)
    {
        if ($orderRefund->order->pay_type == 2) {
            $paymentOrder = PaymentOrder::find()
                ->andWhere(['order_no' => $orderRefund->order->order_no])
                ->andWhere(['!=', 'pay_type', 0])
                ->one();
            if (!$paymentOrder) {
                throw new \Exception('支付订单不存在');
            }
            $paymentOrder->is_pay = 1;
            $res = $paymentOrder->save();
            if (!$res) {
                throw new \Exception($this->getErrorMsg($paymentOrder));
            }
 
            $paymentOrderUnion = PaymentOrderUnion::find()->andWhere(['id' => $paymentOrder->payment_order_union_id])->one();
 
            if (!$paymentOrderUnion) {
                throw new \Exception('商户支付订单不存在');
            }
            $paymentOrderUnion->is_pay = 1;
            $res = $paymentOrderUnion->save();
            if (!$res) {
                throw new \Exception($this->getErrorMsg($paymentOrderUnion));
            }
        }
    }
}