Info.php
980 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
38
39
<?php
/**
* Created by PhpStorm.
* User: Ziy
* Date: 14/9/9
* Time: 上午9:50
*/
class YHMIm_Agreement_Order_Info extends YHMIm_Agreement_Abstract
{
private $bodyParameters = array(
'product_skc' => '',
'product_name' => '',
'image_url' => '',
'sale_price' => '',
'stock_number' => '',
'size_name' => '',
'buy_number'=>'',
'order_code' => 0
);
public function make()
{
$body = $this->getQueueDataBody();
$bodyData = array();
foreach ($this->bodyParameters as $key => $val) {
if (!isset($body[$key])) {
if ($key!="product_skc")
{
$this->relay = false;
$this->setErrorMessage('订单信息,缺少 ' . $key);
return;
}
}
$bodyData[$key] = isset($body[$key])?$body[$key]:"";
}
$this->queueData['body'] = $bodyData;
}
}