123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- namespace app\admin\controller\cost;
- use app\admin\model\cost\CostBillPay;
- use app\common\controller\Backend;
- /**
- * 物业账单
- *
- * @icon fa fa-circle-o
- */
- class CostBillPrint extends Backend
- {
-
- /**
- * CostBillPrint模型对象
- * @var \app\admin\model\cost\CostBillPrint
- */
- protected $model = null;
- protected $layout = '';
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\cost\CostBill;
- }
-
- /**
- * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
- * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
- * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
- */
- public function index_p()
- {
- $cost_bill_id=$this->request->param('cost_bill_id');
- $pay_id=$this->request->param('pay_id');
- //设置过滤方法
- $this->request->filter(['strip_tags']);
- $id_array=explode(',',$cost_bill_id);
- $get = $this->model
- ->whereIn('id',$id_array)
- ->with(['village','dong','danyuan','hu','item'])
- ->select();
- $get = collection($get)->toArray();
- $list = CostBillPay::where('id',$pay_id)
- ->with(['village','dong','danyuan','hu'])
- ->find();
- $list['true_price_zhongwen']=$this->to_upcase_chinese($list['true_price']);
- $list['pay_date']=date('Y-m-d H:i:s',$list['pay_time']);
- $list['time']=date('Y-m-d H:i:s',time());
- $this->view->assign('row',$list);
- $this->view->assign('get',$get);
- // dump($get);
- $this->view->engine->layout(false);
- return $this->view->fetch('index_p');
- }
- function to_upcase_chinese($num){
- $digitArr1 = [1 => '',2 => '拾',3 => '佰',4 => '仟'];
- $Array = [0 => '',1 => '萬', 2 => '億'];
- $intArr = ['零','壹','贰','叁','肆','伍','陆','柒','捌','玖'];
- $decimalArr = [0 => '角',1 => '分',2 => '厘',3 => '毫'];
- $int = null;
- $decimal = null;
- if (false !== strpos($num,'.')) {
- $spreator = explode('.',$num);
- $int = reset($spreator);
- $decimal = end($spreator);
- } else {
- $int = (string)$num;
- }
- $combine = '';
- $residue = floor((strlen($int) / 4));
- $mol = strlen($int) % 4;
- for($b = $residue + 1; $b >= 1; ){
- $length = $b == ($residue + 1) ? $mol : 4;
- $b--;
- $st = substr($int,($b * (-4)) - 4, $length);
- if($st !== ''){
- for ($a = 0; $a < strlen($st); $a++) {
- if (intval($st[$a]) === 0) {
- $combine .= '零';
- }
- else{
- $combine .= $intArr[intval($st[$a])].$digitArr1[strlen($st)-$a];
- }
- }
- $combine .= $Array[$b];
- }
- }
- $combine1 = '';
- if ($decimal !== null || intval($decimal) !== 0 || strlen($decimal) !== 0) {
- for ($i=0; $i < (strlen($decimal) < 4 ? strlen($decimal): 4); $i++) {
- if (intval($decimal[$i]) === 0) {
- $combine1 .= '';
- } else {
- $combine1 .= $intArr[intval($decimal[$i])].$decimalArr[$i];
- }
- }
- }else{
- $combine1 .= '整';
- }
- $combine = $combine.'圆'.$combine1;
- $j = 0;
- $slen = strlen($combine);
- while ($j < $slen) {
- $m = substr($combine, $j, 6);
- if ($m == '零圆' || $m == '零萬' || $m == '零億' || $m == '零零') {
- $left = substr($combine, 0, $j);
- $right = substr($combine, $j + 3);
- $combine = $left . $right;
- $j = $j-3;
- $slen = $slen-3;
- }
- $j = $j + 3;
- }
- return $combine;
- }
- }
|