Sale.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\BaseController;
  4. use think\App;
  5. use think\facade\Db;
  6. class Sale extends BaseController{
  7. public function __construct(App $app) {parent::__construct($app);}
  8. /** 获取列表
  9. * @return \think\response\Json|void
  10. * @throws \think\db\exception\DataNotFoundException
  11. * @throws \think\db\exception\DbException
  12. * @throws \think\db\exception\ModelNotFoundException
  13. */
  14. public function list(){
  15. $post =$this->request->param();
  16. $condition = [['is_del',"=",0]];
  17. $page = isset($post['page'])&&$post['page']!==''?intval($post['page']):1;
  18. $size = isset($post['size'])&&$post['size']!==''?intval($post['size']):15;
  19. $start =isset($post['start'])&&$post['start']!==''?trim($post['start']):'';
  20. if($start!=''){
  21. $condition[]=["createdTime",">=",$start." 00:00:00"];
  22. }
  23. $end =isset($post['end'])&&$post['end']!==''?trim($post['end']):'';
  24. if($end!=''){
  25. $condition[]=["createdTime","<=",$end." 23:59:59"];
  26. }
  27. $total_min = isset($post['total_min'])&&$post['total_min']!==''?floor($post['total_min']):'';
  28. if($total_min!==''){
  29. $condition[]=["totalPrice",">=",$total_min];
  30. }
  31. $total_max = isset($post['total_max'])&&$post['total_max']!==''?floor($post['total_max']):'';
  32. if($total_max!==''){
  33. $condition[]=["totalPrice","<=",$total_max];
  34. }
  35. $inv_status = isset($post['inv_status'])&&$post['inv_status']!==''?intval($post['inv_status']):'';
  36. if($inv_status!==''){
  37. $condition[]=["inv_status","=",$inv_status];
  38. }
  39. $pay_status = isset($post['pay_status'])&&$post['pay_status']!==''?intval($post['pay_status']):'';
  40. if($pay_status!==''){
  41. $condition[]=["pay_status","=",$pay_status];
  42. }
  43. $status = isset($post['status'])&&$post['status']!==''?intval($post['status']):'';
  44. if($status!==''){
  45. if($status==3){
  46. $condition[]=["status","<>",2];
  47. }else{
  48. $condition[]=["status","=",$status];
  49. }
  50. }
  51. $qrdNo = isset($post['sequenceNo'])&&$post['sequenceNo']!=''?trim($post['sequenceNo']):'';
  52. if($qrdNo!==''){
  53. $condition[]=["sequenceNo","like","%$qrdNo%"];
  54. }
  55. $department = isset($post['department'])&&$post['department']!=''?trim($post['department']):'';
  56. if($department!==''){
  57. $condition[]=["department","like","%$department%"];
  58. }
  59. $customerNo = isset($post['customerNo'])&&$post['customerNo']!=''?trim($post['customerNo']):'';
  60. if($customerNo!==''){
  61. $condition[]=["customerNo","like","%$customerNo%"];
  62. }
  63. $customer = isset($post['customer'])&&$post['customer']!=''?trim($post['customer']):'';
  64. if($customer!=''){
  65. $condition[]=["customerName","like","%$customer%"];
  66. }
  67. $platName = isset($post['platName'])&&$post['platName']!=''?trim($post['platName']):'';
  68. if($platName!=''){
  69. $condition[]=["platName","like","%$platName%"];
  70. }
  71. $count =Db::name("qrd_info")->where($condition)->count();
  72. $total = ceil($count/$size);
  73. $page = $page>$total ? intval($total) : $page;
  74. $list =Db::name("qrd_info")->where($condition)->page($page,$size)->select();
  75. $data=[];
  76. foreach ( $list as $ky=>$value){
  77. $value['catInfo'] = json_decode($value['catInfo'],true);
  78. $data[]=$value;
  79. }
  80. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  81. }
  82. /**
  83. * 更改销售单状态 是否需要回款 0 未回款对账 1 回款对账 2 无需汇款操作
  84. */
  85. public function status(){
  86. $post =$this->request->only(["sequenceNo"=>'',"status"=>0],"post","trim");
  87. if($post['sequenceNo']==''){
  88. return error_show(1004,"参数 sequenceNo 不能为空");
  89. }
  90. if($post['status']===''){
  91. return error_show(1004,"参数 status 不能为空");
  92. }
  93. $qrdinfo =Db::name("qrd_info")->where("sequenceNo","=",$post['sequenceNo'])->findOrEmpty();
  94. if(empty($qrdinfo)){
  95. return error_show(1004,"未找到确认单信息");
  96. }
  97. if ($qrdinfo['status']==1){
  98. return error_show(1004,"确认单已参与对账");
  99. }
  100. $update=[
  101. "status"=>$post['status'],
  102. "updatetime"=>date("Y-m-d H:i:s")
  103. ];
  104. $up =Db::name("qrd_info")->where($qrdinfo)->update($update);
  105. if($up){
  106. return app_show(0,"更新成功");
  107. }else{
  108. return error_show(1003,"更新失败");
  109. }
  110. }
  111. //确认单信息详情
  112. public function saleinfo(){
  113. $post=$this->post;
  114. $sequenceNo =isset($post['sequenceNo'])&&$post['sequenceNo']?trim($post['sequenceNo']):"";
  115. if($sequenceNo==''){
  116. return error_show(1003,"参数 sequenceNo 不能为空");
  117. }
  118. $qrdinfo =Db::name("qrd_info")->where("sequenceNo","=",$post['sequenceNo'])->findOrEmpty();
  119. if(empty($qrdinfo)){
  120. return error_show(1004,"未找到确认单信息");
  121. }
  122. $qrdinfo['catInfo'] = json_decode($qrdinfo['catInfo'],true);
  123. return app_show(0,"获取成功",$qrdinfo);
  124. }
  125. }