Authored by cailing

电子发票隐藏

... ... @@ -402,7 +402,7 @@ class IndexController extends AbstractAction
else {
$invoices_title = '';
$invoiceType = '7'; //发票类型ID
$invoices_type = '2'; //发票类型 /**纸质 1 ,电子 2 */
$invoices_type = '1'; //发票类型 /**纸质 1 ,电子 2 */
$invoice_Top = '个人';
}
... ... @@ -415,11 +415,11 @@ class IndexController extends AbstractAction
'companyName' => $invoices_title,
'isPaper' => $invoices_type == 1 ? true : false,
'invoicesType' => array(
array(
'id' => '2',
'type' => '电子发票',
'choosed' => empty($invoices_type) || $invoices_type == 2 ? true : false,
),
// array(
// 'id' => '2',
// 'type' => '电子发票',
// 'choosed' => empty($invoices_type) || $invoices_type == 2 ? true : false,
// ),
array(
'id' => '1',
'type' => '纸质发票',
... ...