122 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			122 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace app\controller\manager;
 | 
						|
 | 
						|
 | 
						|
/*流水查看*/
 | 
						|
 | 
						|
use app\model\CouponBill;
 | 
						|
use app\repository\BillRepository;
 | 
						|
 | 
						|
class Bill extends Base
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * 流水列表
 | 
						|
     *
 | 
						|
     * @return Json|View
 | 
						|
     */
 | 
						|
    public function index()
 | 
						|
    {
 | 
						|
        $startTime = input("start_time/s", date("Y-m-d H:i:s", strtotime(date("Y-m-d") . " -1 month")));
 | 
						|
        $endTime = input("end_time/s", date("Y-m-d 23:59:59"));
 | 
						|
        if ($this->request->isPost()) {
 | 
						|
            $repo = BillRepository::getInstance();
 | 
						|
            $keyword = $this->request->param('keyword/s', '');
 | 
						|
            $page = $this->request->param('page/d', 1);
 | 
						|
            $size = $this->request->param('size/d', 30);
 | 
						|
            $orders = ['a.id' => 'desc'];
 | 
						|
            $list = $repo->billList($page, $size, $keyword,null, $startTime, $endTime, $orders);
 | 
						|
            $list['agency_money_sum'] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::agency_money, $keyword, $startTime, $endTime);
 | 
						|
            $list['admin_money_sum'] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::admin_money, $keyword, $startTime, $endTime);
 | 
						|
            $list['consumer_money_sum'] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::consumer_money, $keyword, $startTime, $endTime);
 | 
						|
            $list['distribution_money_sum'] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::distribution_money_money, $keyword, $startTime, $endTime);
 | 
						|
            return $this->json(0, 'success', $list);
 | 
						|
        }
 | 
						|
 | 
						|
        $this->data["agency_money_sum"] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::agency_money);
 | 
						|
        $this->data["admin_money_sum"] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::admin_money);
 | 
						|
        $this->data["consumer_money_sum"] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::consumer_money);
 | 
						|
        $this->data["distribution_money_sum"] = BillRepository::getInstance()->getAgencyMoneySum(CouponBill::distribution_money_money);
 | 
						|
 | 
						|
        $this->data["startTime"] = $startTime;
 | 
						|
        $this->data["endTime"] = $endTime;
 | 
						|
 | 
						|
        return $this->view();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 充值流水
 | 
						|
     *
 | 
						|
     * @return Json|View
 | 
						|
     * @throws Exception
 | 
						|
     */
 | 
						|
    public function recharge()
 | 
						|
    {
 | 
						|
        $startTime = input("start_time/s", date("Y-m-d H:i:s", strtotime(date("Y-m-d") . " -1 month")));
 | 
						|
        $endTime = input("end_time/s", date("Y-m-d H:i:s"));
 | 
						|
        if ($this->request->isPost()) {
 | 
						|
            $repo = BillRepository::getInstance();
 | 
						|
            $keyword = $this->request->param('keyword/s', '');
 | 
						|
            $page = $this->request->param('page/d', 1);
 | 
						|
            $size = $this->request->param('size/d', 30);
 | 
						|
            $orders = ['a.id' => 'desc'];
 | 
						|
            $list = $repo->rechargeBillList($page, $size, $keyword, $startTime, $endTime, $orders);
 | 
						|
            $list['recharge_money_sum'] = BillRepository::getInstance()->getRechargeMoneySum($keyword, $startTime, $endTime);
 | 
						|
 | 
						|
            return $this->json(0, 'success', $list);
 | 
						|
        }
 | 
						|
 | 
						|
        $this->data["recharge_money_sum"] = BillRepository::getInstance()->getRechargeMoneySum();
 | 
						|
 | 
						|
        $this->data["startTime"] = $startTime;
 | 
						|
        $this->data["endTime"] = $endTime;
 | 
						|
 | 
						|
        return $this->view();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 扣款流水
 | 
						|
     *
 | 
						|
     * @return Json|View
 | 
						|
     * @throws Exception
 | 
						|
     */
 | 
						|
    public function deduction()
 | 
						|
    {
 | 
						|
        $startTime = input("start_time/s", date("Y-m-d H:i:s", strtotime(date("Y-m-d") . " -1 month")));
 | 
						|
        $endTime = input("end_time/s", date("Y-m-d 23:59:59"));
 | 
						|
        if ($this->request->isPost()) {
 | 
						|
            $repo = BillRepository::getInstance();
 | 
						|
            $keyword = $this->request->param('keyword/s', '');
 | 
						|
            $page = $this->request->param('page/d', 1);
 | 
						|
            $size = $this->request->param('size/d', 30);
 | 
						|
            $orders = ['a.id' => 'desc'];
 | 
						|
            $list = $repo->deductionBillList($page, $size, $keyword, $startTime, $endTime, $orders);
 | 
						|
            $list['deduction_money_sum']            = BillRepository::getInstance()
 | 
						|
                ->getDeductionMoneySum($keyword,$startTime, $endTime);//总流水
 | 
						|
            $list['deduction_money_sum_red_pack']   = BillRepository::getInstance()
 | 
						|
                ->getDeductionMoneySumRedPack($keyword,$startTime, $endTime);//消费者红包流水
 | 
						|
            $list['deduction_money_sum_agency']     = BillRepository::getInstance()
 | 
						|
                ->getDeductionMoneySumAgency($keyword,$startTime, $endTime);//平台商收益
 | 
						|
            $list['deduction_money_sum_taigu']      = BillRepository::getInstance()
 | 
						|
                ->getDeductionMoneySumTaigu($keyword,$startTime, $endTime);//太古收益
 | 
						|
 | 
						|
            return $this->json(0, 'success', $list);
 | 
						|
        }
 | 
						|
 | 
						|
        $this->data["deduction_money_sum"]              = BillRepository::getInstance()
 | 
						|
            ->getDeductionMoneySum();//当前总流水
 | 
						|
        $this->data["deduction_money_sum_red_pack"]     = BillRepository::getInstance()
 | 
						|
            ->getDeductionMoneySumRedPack();//消费者红包流水
 | 
						|
        $this->data["deduction_money_sum_agency"]       = BillRepository::getInstance()
 | 
						|
            ->getDeductionMoneySumAgency();//平台商收益
 | 
						|
        $this->data["deduction_money_sum_taigu"]        = BillRepository::getInstance()
 | 
						|
            ->getDeductionMoneySumTaigu();//太古收益
 | 
						|
 | 
						|
        $this->data["startTime"] = $startTime;
 | 
						|
        $this->data["endTime"] = $endTime;
 | 
						|
 | 
						|
        return $this->view();
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
} |