63 lines
2.2 KiB
PHP
63 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2020/6/14
|
|
* Time: 14:27
|
|
*/
|
|
|
|
namespace app\common\services\notice\official\buyer;
|
|
|
|
use app\common\models\Order;
|
|
use app\common\models\refund\RefundApply;
|
|
use app\common\services\notice\BaseMessageBody;
|
|
use app\common\services\notice\official\OfficialMessageNotice;
|
|
use app\common\services\notice\share\OfficialNoticeTemplate;
|
|
use app\common\services\notice\share\OrderNoticeData;
|
|
|
|
class OrderBuyerRefundSuccessNotice extends BaseMessageBody
|
|
{
|
|
|
|
use OfficialNoticeTemplate,OrderNoticeData;
|
|
|
|
public $orderModel;
|
|
public $refund;
|
|
|
|
public function __construct($refund ,$order)
|
|
{
|
|
$this->orderModel = $order;
|
|
$this->refund = $refund;
|
|
}
|
|
|
|
public function organizeData()
|
|
{
|
|
// TODO: Implement organizeData() method.
|
|
$this->data = [
|
|
['name' => '商城名称', 'value' => \Setting::get('shop.shop')['name']],
|
|
['name' => '粉丝昵称', 'value' => $this->member['nickname']],
|
|
['name' => '退款单号', 'value' => $this->refund->refund_sn],
|
|
['name' => '退款申请时间', 'value' => $this->refund->create_time->toDateTimeString()],
|
|
['name' => '退款方式', 'value' => $this->order->pay_type_name],
|
|
['name' => '退款金额', 'value' => $this->refund->price],
|
|
['name' => '退款原因', 'value' => $this->refund->reason],
|
|
['name' => '退款成功时间', 'value' => date('Y-m-d H:i:s', time())],
|
|
['name' => '商品详情 (含规格)', 'value' => $this->goodsTitle],
|
|
];
|
|
}
|
|
|
|
public function sendMessage()
|
|
{
|
|
// TODO: Implement sendMessage() method.
|
|
$this->processData($this->orderModel);
|
|
$this->getTemplate('order_refund_success');
|
|
$this->organizeData();
|
|
\Log::debug("新版公众号消息-退款成功1",$this->template_id);
|
|
\Log::debug("新版公众号消息-退款成功2",$this->fans->openid);
|
|
\Log::debug("新版公众号消息-退款成功3",$this->data);
|
|
$result = (new OfficialMessageNotice($this->temp_id,$this->fans->openid,$this->data,[],1,$this->url))->sendMessage();
|
|
|
|
if ($result['status'] == 0) {
|
|
\Log::debug($result['message']);
|
|
}
|
|
}
|
|
} |