CostBillPrint.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. namespace app\admin\controller\cost;
  3. use app\admin\model\cost\CostBillPay;
  4. use app\common\controller\Backend;
  5. /**
  6. * 物业账单
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class CostBillPrint extends Backend
  11. {
  12. /**
  13. * CostBillPrint模型对象
  14. * @var \app\admin\model\cost\CostBillPrint
  15. */
  16. protected $model = null;
  17. protected $layout = '';
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\cost\CostBill;
  22. }
  23. /**
  24. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  25. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  26. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  27. */
  28. public function index_p()
  29. {
  30. $cost_bill_id=$this->request->param('cost_bill_id');
  31. $pay_id=$this->request->param('pay_id');
  32. //设置过滤方法
  33. $this->request->filter(['strip_tags']);
  34. $id_array=explode(',',$cost_bill_id);
  35. $get = $this->model
  36. ->whereIn('id',$id_array)
  37. ->with(['village','dong','danyuan','hu','item'])
  38. ->select();
  39. $get = collection($get)->toArray();
  40. $list = CostBillPay::where('id',$pay_id)
  41. ->with(['village','dong','danyuan','hu'])
  42. ->find();
  43. $list['true_price_zhongwen']=$this->to_upcase_chinese($list['true_price']);
  44. $list['pay_date']=date('Y-m-d H:i:s',$list['pay_time']);
  45. $list['time']=date('Y-m-d H:i:s',time());
  46. $this->view->assign('row',$list);
  47. $this->view->assign('get',$get);
  48. // dump($get);
  49. $this->view->engine->layout(false);
  50. return $this->view->fetch('index_p');
  51. }
  52. function to_upcase_chinese($num){
  53. $digitArr1 = [1 => '',2 => '拾',3 => '佰',4 => '仟'];
  54. $Array = [0 => '',1 => '萬', 2 => '億'];
  55. $intArr = ['零','壹','贰','叁','肆','伍','陆','柒','捌','玖'];
  56. $decimalArr = [0 => '角',1 => '分',2 => '厘',3 => '毫'];
  57. $int = null;
  58. $decimal = null;
  59. if (false !== strpos($num,'.')) {
  60. $spreator = explode('.',$num);
  61. $int = reset($spreator);
  62. $decimal = end($spreator);
  63. } else {
  64. $int = (string)$num;
  65. }
  66. $combine = '';
  67. $residue = floor((strlen($int) / 4));
  68. $mol = strlen($int) % 4;
  69. for($b = $residue + 1; $b >= 1; ){
  70. $length = $b == ($residue + 1) ? $mol : 4;
  71. $b--;
  72. $st = substr($int,($b * (-4)) - 4, $length);
  73. if($st !== ''){
  74. for ($a = 0; $a < strlen($st); $a++) {
  75. if (intval($st[$a]) === 0) {
  76. $combine .= '零';
  77. }
  78. else{
  79. $combine .= $intArr[intval($st[$a])].$digitArr1[strlen($st)-$a];
  80. }
  81. }
  82. $combine .= $Array[$b];
  83. }
  84. }
  85. $combine1 = '';
  86. if ($decimal !== null || intval($decimal) !== 0 || strlen($decimal) !== 0) {
  87. for ($i=0; $i < (strlen($decimal) < 4 ? strlen($decimal): 4); $i++) {
  88. if (intval($decimal[$i]) === 0) {
  89. $combine1 .= '';
  90. } else {
  91. $combine1 .= $intArr[intval($decimal[$i])].$decimalArr[$i];
  92. }
  93. }
  94. }else{
  95. $combine1 .= '整';
  96. }
  97. $combine = $combine.'圆'.$combine1;
  98. $j = 0;
  99. $slen = strlen($combine);
  100. while ($j < $slen) {
  101. $m = substr($combine, $j, 6);
  102. if ($m == '零圆' || $m == '零萬' || $m == '零億' || $m == '零零') {
  103. $left = substr($combine, 0, $j);
  104. $right = substr($combine, $j + 3);
  105. $combine = $left . $right;
  106. $j = $j-3;
  107. $slen = $slen-3;
  108. }
  109. $j = $j + 3;
  110. }
  111. return $combine;
  112. }
  113. }