CostBillPrint.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. // dump($list);
  44. $list['true_price_zhongwen']=$this->to_upcase_chinese($list['true_price']);
  45. $list['pay_date']=date('Y-m-d H:i:s',$list['pay_time']);
  46. $list['time']=date('Y-m-d H:i:s',time());
  47. $this->view->assign('row',$list);
  48. $this->view->assign('get',$get);
  49. // dump($get);
  50. $this->view->engine->layout(false);
  51. return $this->view->fetch('index_p');
  52. }
  53. function to_upcase_chinese($num){
  54. $digitArr1 = [1 => '',2 => '拾',3 => '佰',4 => '仟'];
  55. $Array = [0 => '',1 => '萬', 2 => '億'];
  56. $intArr = ['零','壹','贰','叁','肆','伍','陆','柒','捌','玖'];
  57. $decimalArr = [0 => '角',1 => '分',2 => '厘',3 => '毫'];
  58. $int = null;
  59. $decimal = null;
  60. if (false !== strpos($num,'.')) {
  61. $spreator = explode('.',$num);
  62. $int = reset($spreator);
  63. $decimal = end($spreator);
  64. } else {
  65. $int = (string)$num;
  66. }
  67. $combine = '';
  68. $residue = floor((strlen($int) / 4));
  69. $mol = strlen($int) % 4;
  70. for($b = $residue + 1; $b >= 1; ){
  71. $length = $b == ($residue + 1) ? $mol : 4;
  72. $b--;
  73. $st = substr($int,($b * (-4)) - 4, $length);
  74. if($st !== ''){
  75. for ($a = 0; $a < strlen($st); $a++) {
  76. if (intval($st[$a]) === 0) {
  77. $combine .= '零';
  78. }
  79. else{
  80. $combine .= $intArr[intval($st[$a])].$digitArr1[strlen($st)-$a];
  81. }
  82. }
  83. $combine .= $Array[$b];
  84. }
  85. }
  86. $combine1 = '';
  87. if ($decimal !== null || intval($decimal) !== 0 || strlen($decimal) !== 0) {
  88. for ($i=0; $i < (strlen($decimal) < 4 ? strlen($decimal): 4); $i++) {
  89. if (intval($decimal[$i]) === 0) {
  90. $combine1 .= '';
  91. } else {
  92. $combine1 .= $intArr[intval($decimal[$i])].$decimalArr[$i];
  93. }
  94. }
  95. }else{
  96. $combine1 .= '整';
  97. }
  98. $combine = $combine.'圆'.$combine1;
  99. $j = 0;
  100. $slen = strlen($combine);
  101. while ($j < $slen) {
  102. $m = substr($combine, $j, 6);
  103. if ($m == '零圆' || $m == '零萬' || $m == '零億' || $m == '零零') {
  104. $left = substr($combine, 0, $j);
  105. $right = substr($combine, $j + 3);
  106. $combine = $left . $right;
  107. $j = $j-3;
  108. $slen = $slen-3;
  109. }
  110. $j = $j + 3;
  111. }
  112. return $combine;
  113. }
  114. }