|
|
|
@ -346,12 +346,13 @@ class ExcelPaymentController extends BaseController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$count = M("ExcelStatementInfo","tab_")->field("sum(statement_money) statement_money")->where("id in ({$ids})")->find();
|
|
|
|
|
$paymentInfo = D("Admin/TransferMerchant")->getUnderPaymentInfo();
|
|
|
|
|
$this->getAccountMoney();
|
|
|
|
|
// dd($CompanyInfo);
|
|
|
|
|
|
|
|
|
|
$this->assign("CompanyInfo",$CompanyInfo);
|
|
|
|
|
$this->assign("mobile",$this->admininfo['mobile']);
|
|
|
|
|
$this->assign("count",$count);
|
|
|
|
|
$this->assign("paymentInfo",$paymentInfo);
|
|
|
|
|
$this->display();
|
|
|
|
|
|
|
|
|
|
// $this->display();
|
|
|
|
@ -362,7 +363,7 @@ class ExcelPaymentController extends BaseController
|
|
|
|
|
if(empty(C("ALI_PAYMENT"))){
|
|
|
|
|
$money = "测试站无法查看";
|
|
|
|
|
}else{
|
|
|
|
|
$fund = new \Fund(C("ALI_PAYMENT"));
|
|
|
|
|
$fund = new \Fund(D("Admin/TransferMerchant")->getUnderPaymentConfig());
|
|
|
|
|
$money = $fund->account();
|
|
|
|
|
if($money !== -1){
|
|
|
|
|
$money = $money['amount'];
|
|
|
|
@ -392,7 +393,7 @@ class ExcelPaymentController extends BaseController
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Vendor("Alipay2020/Fund");
|
|
|
|
|
$fund = new \Fund(C("ALI_PAYMENT"));
|
|
|
|
|
$fund = new \Fund(D("Admin/TransferMerchant")->getUnderPaymentConfig());
|
|
|
|
|
$dbres = M("ExcelStatementInfo", "tab_")->where("id='{$id}'")->find();
|
|
|
|
|
$company_info = json_decode($dbres['company_info'], true);
|
|
|
|
|
|
|
|
|
|