...
|
...
|
@@ -698,14 +698,14 @@ class CartModel |
|
|
}
|
|
|
}
|
|
|
|
|
|
/* 发票类型 */
|
|
|
if (!empty($pay['data']['invoices']['invoices_type_list'])) {
|
|
|
$build = array();
|
|
|
foreach ($pay['data']['invoices']['invoices_type_list'] as $value) {
|
|
|
$build['id'] = $value['invoices_type_id'];
|
|
|
$build['name'] = $value['invoices_type_name'];
|
|
|
$result['piaoTypes'][] = $build;
|
|
|
/* 发票内容 */
|
|
|
if (!empty($pay['data']['invoices']['invoiceContentList'])) {
|
|
|
foreach ($pay['data']['invoices']['invoiceContentList'] as $value) {
|
|
|
$result['piaoTypes'][$value['invoices_type_id']]['id'] = $value['invoices_type_id'];
|
|
|
$result['piaoTypes'][$value['invoices_type_id']]['name'] = $value['invoices_type_name'];
|
|
|
}
|
|
|
ksort($result['piaoTypes']);
|
|
|
$result['piaoTypes'] = array_values($result['piaoTypes']);
|
|
|
$result['receiverMobile'] = isset($userInfo['data']['mobile']) && $userInfo['data']['mobile'] ? $userInfo['data']['mobile'] : '';
|
|
|
}
|
|
|
|
...
|
...
|
|