Close.php
891 Bytes
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
<?php
/**
* Created by PhpStorm.
* User: Ziy
* Date: 14/9/9
* Time: 上午9:58
*/
class YHMIm_Agreement_Order_Close extends YHMIm_Agreement_Abstract
{
private $bodyParameters = array(
'text' => '',
'product_name' => '',
'product_skc' => '',
'image_url' => '',
'sale_price' => '',
'size_name' => '',
'buy_number' => 0,
'order_code' => ''
);
public function make()
{
$body = $this->getQueueDataBody();
$bodyData = array();
foreach ($this->bodyParameters as $key => $val) {
if (!isset($body[$key])) {
$this->relay = false;
$this->setErrorMessage('订单关闭数据包错误,缺少 ' . $key);
return;
}
$bodyData[$key] = $body[$key];
}
$this->queueData['body'] = $bodyData;
}
}