From b74ac306ae6c31d7264fe7c77c1c32250956ca32 Mon Sep 17 00:00:00 2001 From: zhengyongxing Date: Thu, 9 Jan 2020 19:37:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=82=E5=9C=BA=E7=BB=93=E7=AE=97=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E7=BC=96=E8=BE=91=E6=B7=BB=E5=8A=A0=E6=88=B7=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Admin/Controller/AjaxController.class.php | 3 ++- .../View/StatementMangement/createDownstreamOrder.html | 6 ++++++ Application/Admin/View/StatementMangement/edit.html | 6 ++++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Application/Admin/Controller/AjaxController.class.php b/Application/Admin/Controller/AjaxController.class.php index d19bc9578..f9a2a922c 100644 --- a/Application/Admin/Controller/AjaxController.class.php +++ b/Application/Admin/Controller/AjaxController.class.php @@ -245,7 +245,7 @@ class AjaxController extends ThinkController{ $withdraw_number = $_REQUEST['withdraw_number']; $data = M("withdraw","tab_") - ->field("widthdraw_number,promote_account,tab_promote_company.id as company_id,company_name,settlement_type,mobile_phone,real_name,bank_card,account_openin,address,game_ratio") + ->field("widthdraw_number,promote_account,tab_promote_company.id as company_id,company_name,settlement_type,mobile_phone,real_name,bank_card,account_openin,address,game_ratio,bank_account") ->join("left join tab_promote on tab_withdraw.promote_id=tab_promote.id") ->join("left join tab_promote_company on tab_promote.company_id=tab_promote_company.id") ->where(['widthdraw_number'=>$withdraw_number]) @@ -292,6 +292,7 @@ class AjaxController extends ThinkController{ $data['settlement_type'] = $second_party_info['settlement_type']; $data['address'] = $second_party_info['address']; $data['real_name'] = $second_party_info['link_man']; + $data['bank_account_name'] = $second_party_info['bank_account_name']; $data['settlement_type_value'] = $getStatementData['settlement_type']; $data['invoice_item'] = $second_party_info['invoice_item']; diff --git a/Application/Admin/View/StatementMangement/createDownstreamOrder.html b/Application/Admin/View/StatementMangement/createDownstreamOrder.html index 50935b2f8..a47d9ca0b 100644 --- a/Application/Admin/View/StatementMangement/createDownstreamOrder.html +++ b/Application/Admin/View/StatementMangement/createDownstreamOrder.html @@ -63,6 +63,10 @@ +
+ 户 名:       + +
开 户 行:  @@ -212,6 +216,7 @@ $("#real_name").val(data.data.real_name); $("#mobile_phone").val(data.data.mobile_phone); $("#settlement_type_value").val(data.data.settlement_type); + $("#bank_account_name").val(data.data.bank_account); $("#jfCompany").val(data.data.yfpartner); $("#jfCompany").next().text(data.data.yfpartner); @@ -337,6 +342,7 @@ second_party_info['link_phone'] = $("#mobile_phone").val(); second_party_info['invoice_item'] = $("#invoice_item").val(); second_party_info['invoice_type'] = $("#invoice_type").val(); + second_party_info['bank_account_name'] = $("#bank_account_name").val(); first_party_info['jfCompany'] = $("#jfCompany").val(); first_party_info['jfPerson'] = $("#jfPerson").val(); diff --git a/Application/Admin/View/StatementMangement/edit.html b/Application/Admin/View/StatementMangement/edit.html index d2a2b3341..8c0dd5723 100644 --- a/Application/Admin/View/StatementMangement/edit.html +++ b/Application/Admin/View/StatementMangement/edit.html @@ -64,6 +64,10 @@
+
+ 户 名:       + +
开 户 行:  @@ -210,6 +214,7 @@ $("#settlement_type_value").val(data.data.settlement_type); $("#invoice_item").val(data.data.invoice_item); $("#invoice_type").val(data.data.invoice_type); + $("#bank_account_name").val(data.data.bank_account_name); $("#jfCompany").val(data.data.jfCompany); $("#jfCompany").next().text(data.data.jfCompany); @@ -338,6 +343,7 @@ second_party_info['link_phone'] = $("#mobile_phone").val(); second_party_info['invoice_item'] = $("#invoice_item").val(); second_party_info['invoice_type'] = $("#invoice_type").val(); + second_party_info['bank_account_name'] = $("#bank_account_name").val(); first_party_info['jfCompany'] = $("#jfCompany").val(); first_party_info['jfPerson'] = $("#jfPerson").val();