Payment.php 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\controller;
  4. use app\admin\BaseController;
  5. use app\admin\model\ReportCode;
  6. use think\App;use think\facade\Db;
  7. class Payment extends BaseController
  8. {
  9. //发票类型
  10. //增值税专用发票:vat_special
  11. //增值税普通发票:vat_normal
  12. //增值税普通发票(卷式):vat_normal_roll
  13. //增值税电子专用发票:vat_special_electronic
  14. //增值税电子普通发票:vat_normal_electronic
  15. //增值税电子普通发票(通行费):vat_normal_electronic_toll
  16. //区块链电子发票:blockchain_electronic
  17. public $invoiceType=[
  18. "special"=>"增值税专用发票",
  19. "normal"=>"增值税普通发票",
  20. "roll"=>"增值税普通发票(卷式)",
  21. "special_electronic"=>"增值税电子专用发票",
  22. "electronic"=>"增值税电子普通发票",
  23. "toll"=>"增值税电子普通发票(通行费)",
  24. ];
  25. //
  26. // 发票状态,取值范围:
  27. //
  28. // 正常:valid
  29. // 已作废:invalidated
  30. // 已红冲:reversed
  31. public $invStatus=["valid"=>'正常',"invalidated"=>'已作废',"reversed"=>'已红冲'];
  32. public function __construct(App $app) {parent::__construct($app);}
  33. /**
  34. *付款详细列表
  35. * @return \think\Response
  36. */
  37. public function paymentList()
  38. {
  39. $post = $this->post;
  40. $condition = "a.is_del=0 ";
  41. // $check = checkRole($this->roleid,49);
  42. // if($check){
  43. // $condition .=" and `a`.`apply_id` = {$this->uid}";
  44. // }
  45. $startTime= isset($post['startTime'])&&$post['startTime']!="" ? trim($post['startTime']) :"";
  46. $endTime= isset($post['endTime'])&&$post['endTime']!="" ? trim($post['endTime']) :"";
  47. $supplierNo= isset($post['supplierNo'])&&$post['supplierNo']!="" ? trim($post['supplierNo']) :"";
  48. $payNo= isset($post['payNo'])&&$post['payNo']!="" ? trim($post['payNo']) :"";
  49. $apply= isset($post['apply_name'])&&$post['apply_name']!="" ? trim($post['apply_name']) :"";
  50. $paystatus= isset($post['status'])&&$post['status']!="" ? $post['status'] :"";
  51. if($startTime!=""){
  52. $condition.=" and `b`.`addtime` >= '{$startTime}'";
  53. }
  54. if($endTime!=""){
  55. $condition.=" and `b`.`addtime` <= '{$endTime}'";
  56. }
  57. if($supplierNo!=""){
  58. $condition.=" and `a`.`supplierNo` like '%{$supplierNo}%'";
  59. }
  60. if($payNo!=""){
  61. $condition.=" and `a`.`payNo` like '%{$payNo}%'";
  62. }
  63. if($apply!=""){
  64. $condition .=" and b.apply_name like '%{$apply}%'";
  65. }
  66. if($paystatus!=""){
  67. $condition .=" and `b`.`status` = {$paystatus}";
  68. }
  69. $page = isset($post['page'])&&$post['page']!="" ? intval($post['page']) :1;
  70. $size = isset($post['size'])&&$post['size']!="" ? intval($post['size']) :10;
  71. $count = Db::name("pay_payment")->alias('b')
  72. ->join("pay a","`a`.`payNo` = `b`.`payNo` AND b.is_del = 0 ",'left')
  73. ->where($condition)->count();
  74. $total = ceil($count/$size)>1 ? ceil($count/$size) : 1;
  75. $page = $page>=$total?intval($total):$page;
  76. $list = Db::name("pay_payment")->alias('b')
  77. ->join("pay a","`a`.`payNo` = `b`.`payNo` AND ( `b`.`is_del` = 0 ) ",'left')
  78. ->where($condition)->page(intval($page),$size)->order("b.addtime desc")
  79. ->field(" `b`.`id` AS `id`,
  80. `a`.`payNo` AS `payNo`,
  81. `a`.`supplierNo`,
  82. `a`.`apay_fee` ,
  83. `a`.`total_fee` AS `total_fee`,
  84. `b`.`apply_name`,
  85. `b`.`apply_id`,
  86. `a`.`winv_fee` ,
  87. `a`.`ainv_fee` ,
  88. `a`.`wpay_fee` ,
  89. `a`.`pay_status` ,
  90. `a`.`inv_status` ,
  91. `b`.`pay_fee` AS `dpay_fee`,
  92. `b`.`return_img`,
  93. `b`.`return_time`,
  94. `b`.`status` AS `dstatus`,
  95. `a`.`status`,
  96. `a`.`remark` AS `remark`,
  97. `b`.`addtime` ,
  98. `a`.`companyNo` ,
  99. `a`.`companyName` ,
  100. `b`.`dzNo` AS `dzNo`
  101. ")->select();
  102. $data=[];
  103. foreach ($list as $key=>$value){
  104. $value['ordeNum'] = Db::name("pay_info")->where([["payNo","=",$value["payNo"]],["is_del","=",0]])->count();
  105. $data[]=$value;
  106. }
  107. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  108. }
  109. /**
  110. *对账单列表
  111. * @return \think\Response
  112. */
  113. public function payList()
  114. {
  115. $post = $this->post;
  116. $condition = [["is_del","=",0]];
  117. $check = checkRole($this->roleid,49);
  118. if($check){
  119. $condition[]=["apply_id","=",$this->uid];
  120. }
  121. $startTime= isset($post['startTime'])&&$post['startTime']!="" ? trim($post['startTime']) :"";
  122. $endTime= isset($post['endTime'])&&$post['endTime']!="" ? trim($post['endTime']) :"";
  123. $supplierNo= isset($post['supplierNo'])&&$post['supplierNo']!="" ? trim($post['supplierNo']) :"";
  124. $payNo= isset($post['payNo'])&&$post['payNo']!="" ? trim($post['payNo']) :"";
  125. $paystatus= isset($post['pay_status'])&&$post['pay_status']!="" ? $post['pay_status'] :"";
  126. $inv_status= isset($post['inv_status'])&&$post['inv_status']!="" ? $post['inv_status'] :"";
  127. $status= isset($post['status'])&&$post['status']!="" ? $post['status'] :"";
  128. $tag_id= isset($post['tag_id'])&&$post['tag_id']!=="" ? intval($post['tag_id']) :"";
  129. if($tag_id!==''){
  130. if($tag_id==1) $condition[]=["inv_tag","=",1];
  131. if($tag_id==2) $condition[]=["pay_tag","=",1];
  132. if($tag_id==3) $condition[]=["pay_tag|inv_tag","=",1];
  133. if($tag_id==4) $condition[]=["pay_tag&inv_tag","=",1];
  134. }
  135. if($startTime!=""){
  136. $condition[]=["addtime",">=",$startTime];
  137. }
  138. if($endTime!=""){
  139. $condition[]=["addtime","<=",$endTime];
  140. }
  141. if($supplierNo!=""){
  142. $condition[]=["supplierNo","like","%$supplierNo%"];
  143. }
  144. if($payNo!=""){
  145. $condition[]=["payNo","like","%$payNo%"];
  146. }
  147. if($paystatus!=""){
  148. $condition[]=["pay_status","=",$paystatus];
  149. }
  150. if($inv_status!=""){
  151. $condition[]=["inv_status","=",$inv_status];
  152. }
  153. if($status!=""){
  154. $condition[]=["status","=",$status];
  155. }
  156. $page = isset($post['page'])&&$post['page']!="" ? intval($post['page']) :1;
  157. $size = isset($post['size'])&&$post['size']!="" ? intval($post['size']) :10;
  158. $count = Db::name("pay")->where($condition)->count();
  159. $total = ceil($count/$size)>1 ? ceil($count/$size) : 1;
  160. $page = $page>=$total?intval($total):$page;
  161. $list = Db::name("pay")->where($condition)->page(intval($page),$size)->order("addtime desc")->select();
  162. $data=[];
  163. foreach ($list as $key=>$value){
  164. $value['ordeNum'] = Db::name("pay_info")->where([["payNo","=",$value["payNo"]],["is_del","=",0]])->count();
  165. $tag =Db::name("tag_log")->alias("a")->leftJoin("order_tag b","a.tag_id=b.id")->where
  166. (["code"=>$value['payNo'],"a.status"=>1])->column("b.tag_name","b.type");
  167. $value['inv_tag_name']=$tag[2]['tag_name']??'';
  168. $value['pay_tag_name']=$tag[1]['tag_name']??'';
  169. $data[]=$value;
  170. }
  171. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  172. }
  173. /**
  174. * 新建对账付款数据
  175. * @return \think\Response
  176. */
  177. public function PayAdd()
  178. {
  179. $post = $this->post;
  180. $cids = isset($post['cids'])&&$post['cids']!="" ? trim($post['cids']) :"";
  181. if($cids==""){
  182. return error_show(1003,"参数cids不能为空");
  183. }
  184. $cgdall =Db::name("cgd_info")->where(["id"=>explode(",",$cids)])->select()->toArray();
  185. if(empty($cgdall)){
  186. return error_show(1003,"采购单数据不能为空");
  187. }
  188. $statusAll = array_column($cgdall,"status");
  189. if(in_array(1,$statusAll)){
  190. return error_show(1003,"采购单存在已对账数据");
  191. }
  192. if(in_array(2,$statusAll)){
  193. return error_show(1003,"采购单存在不核算数据");
  194. }
  195. $supplierNo= array_column($cgdall,"supplierNo");
  196. $supplierName= array_column($cgdall,"supplierName");
  197. if(count(array_unique($supplierNo))>1){
  198. return error_show(1003,"采购单数据供应商不一致");
  199. }
  200. $companyNo= array_column($cgdall,"companyNo");
  201. $companyName= array_column($cgdall,"companyName");
  202. if(count(array_unique($companyNo))>1){
  203. return error_show(1003,"采购单数据业务公司不一致");
  204. }
  205. $payNo = makeNo("PAY");
  206. Db::startTrans();
  207. try {
  208. $data=[];
  209. $paydata=[
  210. "payNo"=>$payNo,
  211. "apply_id"=>$this->uid,
  212. "apply_name"=>$this->uname,
  213. "total_fee"=>0,
  214. "supplierNo"=>$supplierNo[0],
  215. "supplierName"=>$supplierName[0],
  216. "companyNo"=>$companyNo[0],
  217. "companyName"=>$companyName[0],
  218. "wpay_fee"=>0,
  219. "apay_fee"=>0,
  220. "ainv_fee"=>0,
  221. "winv_fee"=>0,
  222. "remark"=>"",
  223. "status"=>0,
  224. "addtime"=>date("Y-m-d H:i:s"),
  225. "updatetime"=>date("Y-m-d H:i:s"),
  226. ];
  227. foreach ($cgdall as $key=>$value){
  228. $temp=[];
  229. $temp['cgdNo']=$value['sequenceNo'];
  230. $temp['total_fee']=$value['totalPrice'];
  231. $temp['apay_fee']=round($value['apay_fee'],2);
  232. $temp['wpay_fee']=round($value['wpay_fee'],2);
  233. $temp['winv_fee']=round($value['winv_fee'],2);
  234. $temp['ainv_fee']=round($value['ainv_fee'],2);
  235. $temp['payNo']=$payNo;
  236. $temp['addtime']=date("Y-m-d H:i:s");
  237. $temp['updatetime']=date("Y-m-d H:i:s");
  238. $data[]=$temp;
  239. $paydata['total_fee']+= $temp['total_fee'];
  240. $paydata['apay_fee']+= $temp['apay_fee'];
  241. $paydata['wpay_fee']+= $temp['wpay_fee'];
  242. $paydata['ainv_fee']+= $temp['ainv_fee'];
  243. $paydata['winv_fee']+= $temp['winv_fee'];
  244. $report=ReportCode::where(["cgdNo"=>$value['sequenceNo']])->find();
  245. if($report)$report->setField("payNo",$payNo);
  246. }
  247. $paydata['total_fee']= round($paydata['total_fee'],2);
  248. $paydata['apay_fee']= round($paydata['apay_fee'],2);
  249. $paydata['wpay_fee']= round($paydata['wpay_fee'],2);
  250. $paydata['ainv_fee']= round($paydata['ainv_fee'],2);
  251. $paydata['winv_fee']= round($paydata['winv_fee'],2);
  252. $info = Db::name("pay_info")->insertAll($data);
  253. if($info!=0){
  254. $payDA=Db::name("pay")->insert($paydata);
  255. if($payDA){
  256. $cgddup= Db::name("cgd_info")->where("id","in",$cids)->save(['status'=>1,"updatetime"=>date("Y-m-d
  257. H:i:s")]);
  258. if($cgddup){
  259. Db::commit();
  260. return app_show(0,"添加成功",["payNo"=>$payNo]);
  261. }
  262. }
  263. }
  264. Db::rollback();
  265. return error_show(1003,"添加失败");
  266. }catch(\Exception $e){
  267. Db::rollback();
  268. return error_show(1003,$e->getMessage());
  269. }
  270. }
  271. /**对账单未审核前可需改编辑
  272. * @return \think\response\Json|void
  273. * @throws \think\db\exception\DataNotFoundException
  274. * @throws \think\db\exception\DbException
  275. * @throws \think\db\exception\ModelNotFoundException
  276. * @throws \think\exception\DbException
  277. */
  278. public function PaySave()
  279. {
  280. $post = $this->post;
  281. $cids = isset($post['cids'])&&$post['cids']!="" ? trim($post['cids']) :"";
  282. if($cids==""){
  283. return error_show(1003,"参数cids不能为空");
  284. }
  285. $payNo = isset($post['payNo'])&&$post['payNo']!="" ? trim($post['payNo']) :"";
  286. if($payNo==""){
  287. return error_show(1003,"参数 payNo 不能为空");
  288. }
  289. $payinfo = Db::name("pay")->where(["payNo"=>$payNo,"is_del"=>0])->find();
  290. if($payinfo==false){
  291. return error_show(1003,"未找到对账单数据");
  292. }
  293. if($payinfo['status']!=1){
  294. return error_show(1003,"对账单已提交审核");
  295. }
  296. $cgdall =Db::name("cgd_info")->where(["id"=>explode(",",$cids)])->select()->toArray();
  297. if(empty($cgdall)){
  298. return error_show(1003,"采购单数据不能为空");
  299. }
  300. $supplierNo= array_column($cgdall,"supplierNo");
  301. $supplierName= array_column($cgdall,"supplierName");
  302. if(count(array_unique($supplierNo))>1){
  303. return error_show(1003,"采购单数据供应商不一致");
  304. }
  305. $companyNo= array_column($cgdall,"companyNo");
  306. $companyName= array_column($cgdall,"companyName");
  307. if(count(array_unique($companyNo))>1){
  308. return error_show(1003,"采购单数据业务公司不一致");
  309. }
  310. $cgdArr=array_column($cgdall,"sequenceNo");
  311. $cgdNo = Db::name("pay_info")->where([["payNo","=",$payNo],["is_del","=",0]])->column("cgdNo");
  312. $add=[];
  313. $remove=[];
  314. if(!empty($cgdNo)){
  315. $remove = array_diff($cgdNo,$cgdArr);
  316. $add = array_diff($cgdArr,$cgdNo);
  317. }
  318. Db::startTrans();
  319. try {
  320. $data=[];
  321. $paydata=[
  322. "supplierNo"=>$supplierNo[0],
  323. "supplierName"=>$supplierName[0],
  324. "companyNo"=>$companyNo[0],
  325. "companyName"=>$companyName[0],
  326. "wpay_fee"=>0,
  327. "apay_fee"=>0,
  328. "ainv_fee"=>0,
  329. "winv_fee"=>0,
  330. "total_fee"=>0,
  331. "updatetime"=>date("Y-m-d H:i:s")
  332. ];
  333. foreach ($cgdall as $key=>$value){
  334. if(!empty($add)&& in_array($value['sequenceNo'],$add)){
  335. $temp=[];
  336. $temp['cgdNo']=$value['sequenceNo'];
  337. $temp['total_fee']=$value['totalPrice'];
  338. $temp['apay_fee']=round($value['apay_fee'],2);
  339. $temp['wpay_fee']=round($value['wpay_fee'],2);
  340. $temp['winv_fee']=round($value['winv_fee'],2);
  341. $temp['ainv_fee']=round($value['ainv_fee'],2);
  342. $temp['payNo']=$payNo;
  343. $temp['addtime']=date("Y-m-d H:i:s");
  344. $temp['updatetime']=date("Y-m-d H:i:s");
  345. $data[]=$temp;
  346. $report=ReportCode::where(["cgdNo"=>$value['sequenceNo']])->find();
  347. if($report)$report->setField("payNo",$payNo);
  348. }
  349. $paydata['total_fee']+= $value['totalPrice'];
  350. $paydata['apay_fee']+= $value['apay_fee'];
  351. $paydata['wpay_fee']+= $value['wpay_fee'];
  352. $paydata['ainv_fee']+= $value['ainv_fee'];
  353. $paydata['winv_fee']+= $value['winv_fee'];
  354. }
  355. $paydata['total_fee']= round($paydata['total_fee'],2);
  356. $paydata['apay_fee']= round($paydata['apay_fee'],2);
  357. $paydata['wpay_fee']= round($paydata['wpay_fee'],2);
  358. $paydata['ainv_fee']= round($paydata['ainv_fee'],2);
  359. $paydata['winv_fee']= round($paydata['winv_fee'],2);
  360. $payDA=Db::name("pay")->where($payinfo)->update($paydata);
  361. if($payDA){
  362. if(!empty($remove)){
  363. foreach ($remove as $value){
  364. $report=ReportCode::where(["cgdNo"=>$value])->find();
  365. if($report)$report->rmField("payNo",$payNo);
  366. }
  367. $payrm = Db::name("pay_info")->where(["cgdNo"=>$remove,"is_del"=>0])->update(["is_del"=>1,"updatetime"=>date("Y-m-d H:i:s")]);
  368. if($payrm==false){
  369. Db::rollback();
  370. return error_show(1004,"修改失败");
  371. }
  372. $cgdrm= Db::name("cgd_info")->where([["sequenceNo","in",$remove],["status","=",1]])->save(['status'=>0, "updatetime"=>date("Y-m-d H:i:s")]);
  373. if($cgdrm==false){
  374. Db::rollback();
  375. return error_show(1005,"修改失败");
  376. }
  377. }
  378. if(!empty($add)){
  379. $cgddup= Db::name("cgd_info")->where([["sequenceNo","in",$add],["status","=",0]])->save(['status'=>1, "updatetime"=>date("Y-m-d H:i:s")]);
  380. if($cgddup==false){
  381. Db::rollback();
  382. return error_show(1006,"修改失败");
  383. }
  384. }
  385. if(!empty($data)){
  386. $info = Db::name("pay_info")->insertAll($data);
  387. if($info==false){
  388. Db::rollback();
  389. return error_show(1003,"修改失败");
  390. }
  391. }
  392. Db::commit();
  393. return app_show(0,"修改成功",["payNo"=>$payNo]);
  394. }
  395. Db::rollback();
  396. return error_show(1007,"添加失败");
  397. }catch(\Exception $e){
  398. Db::rollback();
  399. return error_show(1003,$e->getMessage());
  400. }
  401. }
  402. /**
  403. * 对账付款状态审核 status 0 待提交 1 待采购审核 2 待财务审核 3 审核成功 4 采购驳回 5 财务驳回
  404. * @param \think\Request $request
  405. * @return \think\Response
  406. */
  407. public function PayStatus()
  408. {
  409. $post = $this->post;
  410. $payNo = isset($post['payNo']) && $post['payNo']!="" ? trim($post['payNo']):"";
  411. if($payNo==""){
  412. return error_show(1004,"参数payNo不能为空");
  413. }
  414. $status= isset($post['status']) && $post['status']!=="" ? trim($post['status']):"";
  415. if($status===""){
  416. return error_show(1004,"参数status不能为空");
  417. }
  418. $data = Db::name("pay")->where([["payNo","=",$payNo],["is_del","=",0]])->find();
  419. if($data==false){
  420. return error_show(1004,"未能找到对应数据");
  421. }
  422. $remark = isset($post['remark']) && $post['remark']!=""? trim($post['remark']):"";
  423. $cgdNo = Db::name("pay_info")->where(["payNo"=>$payNo,"is_del"=>0])->column("cgdNo");
  424. if(empty($cgdNo)){
  425. return error_show(1004,"未能找到对应采购单数据");
  426. }
  427. Db::startTrans();
  428. try{
  429. $update=[
  430. "status"=>$status,
  431. "remark"=>$remark,
  432. "updatetime"=>date("Y-m-d H:i:s")
  433. ];
  434. $result = Db::name("pay")->where("payNo","=",$payNo)->update($update);
  435. if($result){
  436. if($status==4 || $status==5){
  437. $cgdup =Db::name("cgd_info")->where(["sequenceNo"=>$cgdNo,"status"=>1])->update(['status'=>0,"updatetime"=>date("Y-m-d H:i:s")]);
  438. if($cgdup==false){
  439. Db::rollback();
  440. return error_show(1004,"对账驳回失败");
  441. }
  442. foreach ($cgdNo as $value){
  443. $report=ReportCode::where(["cgdNo"=>$value])->find();
  444. if($report)$report->rmField("payNo",$payNo);
  445. }
  446. }
  447. Db::commit();
  448. return app_show(0,"状态更新成功");
  449. }
  450. Db::rollback();
  451. return error_show(1004,"状态更新失败");
  452. }catch (\Exception $e){
  453. Db::rollback();
  454. return error_show(1004,$e->getMessage());
  455. }
  456. }
  457. /**删除未审核完成的对账单
  458. * @return \think\response\Json|void
  459. * @throws \think\db\exception\DataNotFoundException
  460. * @throws \think\db\exception\DbException
  461. * @throws \think\db\exception\ModelNotFoundException
  462. */
  463. public function payDel(){
  464. $post = $this->post;
  465. $payNo = isset($post['payNo']) && $post['payNo']!="" ? trim($post['payNo']):"";
  466. if($payNo==""){
  467. return error_show(1004,"参数payNo不能为空");
  468. }
  469. $data = Db::name("pay")->where([["payNo","=",$payNo],["is_del","=",0]])->find();
  470. if($data==false){
  471. return error_show(1004,"未能找到对应数据");
  472. }
  473. if($data['status']==4){
  474. return error_show(1004,"对账单已审核通过");
  475. }
  476. $cgdNo = Db::name("pay_info")->where(["payNo"=>$payNo,"is_del"=>0])->column("cgdNo");
  477. if(empty($cgdNo)){
  478. return error_show(1004,"未能找到对应采购单数据");
  479. }
  480. Db::startTrans();
  481. try{
  482. $payDel = ["is_del"=>1,"updatetime"=>date("Y-m-d H:i:s")];
  483. $pay =Db::name("pay")->where($data)->update($payDel);
  484. if($pay){
  485. $infoup =Db::name("pay_info")->where(["cgdNo"=>$cgdNo,"is_del"=>0])->update($payDel);
  486. if($infoup==false){
  487. Db::rollback();
  488. return error_show(1004,"对账删除失败");
  489. }
  490. $cgdup =Db::name("cgd_info")->where(["sequenceNo"=>$cgdNo,"status"=>1])->update(['status'=>0,"updatetime"=>date("Y-m-d H:i:s")]);
  491. if($cgdup==false){
  492. Db::rollback();
  493. return error_show(1004,"对账删除失败");
  494. }
  495. foreach ($cgdNo as $value){
  496. $report=ReportCode::where(["cgdNo"=>$value])->find();
  497. if($report)$report->rmField("payNo",$payNo);
  498. }
  499. Db::commit();
  500. return error_show(0,"对账删除成功");
  501. }
  502. Db::rollback();
  503. return error_show(1004,"对账删除失败");
  504. }catch (\Exception $e){}
  505. }
  506. /**
  507. *
  508. * @param int $id
  509. * @return \think\Response
  510. */
  511. public function stageAdd()
  512. {
  513. $post = $this->post;
  514. $payNo = isset($post['payNo'])&& $post['payNo']!="" ? trim($post['payNo']) :"";
  515. if($payNo==""){
  516. return error_show(1004,"参数payNo 不能为空");
  517. }
  518. $payinfo =Db::name("pay")->where(["payNo"=>$payNo,"is_del"=>0])->find();
  519. if($payinfo==false){
  520. return error_show(1004,"未找到对账信息");
  521. }
  522. $cgdNo =Db::name("pay_info")->where(["payNo"=>$payNo,"is_del"=>0])->column("cgdNo");
  523. if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
  524. if($payinfo['status']!=3){
  525. return error_show(1004,"对账未审核完成");
  526. }
  527. $pay_fee = isset($post['pay_fee'])&& $post['pay_fee']!="" ? floatval($post['pay_fee']) :"";
  528. if($pay_fee==""){
  529. return error_show(1004,"参数 pay_fee 不能为空或零");
  530. }
  531. if($payinfo['wpay_fee']< $pay_fee){
  532. return error_show(1004,"对账单未付金额不足");
  533. }
  534. $dzno=makeNo("DZ");
  535. Db::startTrans();
  536. try {
  537. $ment =[
  538. "payNo"=>$payNo,
  539. "dzNo"=>$dzno,
  540. "apply_id"=>$this->uid,
  541. "apply_name"=>$this->uname,
  542. "pay_fee"=>$pay_fee,
  543. "return_img"=>'',
  544. "status"=>0,
  545. "addtime"=>date("Y-m-d H:i:s"),
  546. "updatetime"=>date("Y-m-d H:i:s")
  547. ];
  548. $payment =Db::name("pay_payment")->insert($ment);
  549. if($payment){
  550. $update=[
  551. "pay_fee"=> round($payinfo['pay_fee']+$pay_fee,2),
  552. "wpay_fee"=> round($payinfo['wpay_fee']-$pay_fee,2),
  553. "updatetime"=>date("Y-m-d H:i:s")
  554. ];
  555. $payup = Db::name("pay")->where($payinfo)->update($update);
  556. if($payup){
  557. foreach ($cgdNo as $value){
  558. $report=ReportCode::where(["cgdNo"=>$value])->find();
  559. if($report)$report->setField("DzNo",$dzno);
  560. }
  561. Db::commit();
  562. return app_show(0,"付款申请添加成功",["dzNo"=>$dzno]);
  563. }
  564. }
  565. Db::rollback();
  566. return error_show(1004,"付款申请添加失败");
  567. }catch (\Exception $e){
  568. Db::rollback();
  569. return error_show(1005,$e->getMessage());
  570. }
  571. }
  572. /**
  573. * 付款申请审核状态
  574. * 付款审核状态 0待发起 1待业务审核 2 待财务审核 3待付款回执 4 付款回执 5 业务驳回 6 财务驳回
  575. * @param int $id
  576. * @return \think\Response
  577. */
  578. public function stageStatus()
  579. {
  580. $post = $this->post;
  581. $dzNo = isset($post['dzNo'])&& $post['dzNo']!="" ? trim($post['dzNo']) :"";
  582. if($dzNo==""){
  583. return error_show(1004,"参数 dzNo 不能为空");
  584. }
  585. $status = isset($post['status'])&& $post['status']!="" ? intval($post['status']) :"";
  586. if($status==""){
  587. return error_show(1004,"参数status 不能为空");
  588. }
  589. if(!in_array($status,[0,1,2,3,4,5,6])){
  590. return error_show(1004,"参数status 无效值");
  591. }
  592. $payment= Db::name("pay_payment")->where([['dzNo',"=",$dzNo],['is_del',"=",0]])->find();
  593. if($payment==false){
  594. return error_show(1005,"未找到付款申请信息");
  595. }
  596. $payinfo= Db::name("pay")->where([['payNo',"=",$payment['payNo']],['is_del',"=",0]])->find();
  597. if($payinfo==false){
  598. return error_show(1005,"未找到对账信息");
  599. }
  600. if($payinfo['status']!=3){
  601. return error_show(1005,"对账信息未完成审核");
  602. }
  603. $cgdNo =Db::name("pay_info")->where(["payNo"=>$payment['payNo'],"is_del"=>0])->column("cgdNo");
  604. if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
  605. $remark = isset($post['remark'])? trim($post['remark']) :"";
  606. $image = isset($post['return_image'])? trim($post['return_image']) :"";
  607. $return_time = isset($post['return_time'])? trim($post['return_time']) :"";
  608. if($status==4){
  609. if($image=="")return error_show(1005,"付款回单图片不能为空");
  610. if($return_time=="")return error_show(1005,"付款回单时间不能为空");
  611. if($payinfo['pay_fee']< $payment['pay_fee'])return error_show(1005,"对账付款申请金额有误,请确认对账申请金额");
  612. }
  613. Db::startTrans();
  614. try{
  615. $mentupdate =["status"=>$status,"remark"=>$remark,"return_img"=>$image,"updatetime"=>date("Y-m-d H:i:s")];
  616. if($status==4) $mentupdate['return_time'] = $return_time;
  617. $payup=Db::name("pay_payment")->where($payment)->update($mentupdate);
  618. if($payup){
  619. if (in_array($status,[4,5,6])){
  620. if($status==4){ //审核通过 扣减对账付款中的金额 添加到已付金额
  621. $payupdate =[
  622. "apay_fee"=>$payinfo['apay_fee']+$payment['pay_fee'],
  623. "pay_fee"=>$payinfo['pay_fee']-$payment['pay_fee'],
  624. "pay_status" => ($payinfo['pay_fee']-$payment['pay_fee'])==0 && $payinfo['wpay_fee']==0 ?3:2,
  625. "updatetime" => date("Y-m-d H:i:s")
  626. ];
  627. }
  628. if($status==5||$status==6){//审核驳回 扣减对账付款中的金额 返回到待付金额中
  629. $payupdate =[
  630. "wpay_fee"=>$payinfo['wpay_fee']+$payment['pay_fee'],
  631. "pay_fee"=>$payinfo['pay_fee']-$payment['pay_fee'],
  632. "pay_status" => $payinfo['apay_fee']==0 ?1:2,
  633. "updatetime" => date("Y-m-d H:i:s")
  634. ];
  635. foreach ($cgdNo as $value){
  636. $report=ReportCode::where(["cgdNo"=>$value])->find();
  637. if($report)$report->rmField("DzNo",$dzNo);
  638. }
  639. }
  640. $pay = Db::name("pay")->where($payinfo)->update($payupdate);
  641. if($pay==false){
  642. Db::rollback();
  643. return error_show(1003,"对账状态修改失败");
  644. }
  645. }
  646. Db::commit();
  647. return app_show(0,"状态修改成功");
  648. }else{
  649. Db::rollback();
  650. return error_show(1003,"状态修改失败");
  651. }
  652. }catch (\Exception $e){
  653. Db::rollback();
  654. return error_show(1008,$e->getMessage());
  655. }
  656. }
  657. /**对账申请删除
  658. * @return \think\response\Json|void
  659. * @throws \think\db\exception\DataNotFoundException
  660. * @throws \think\db\exception\DbException
  661. * @throws \think\db\exception\ModelNotFoundException
  662. */
  663. public function stageDel(){
  664. $post = $this->post;
  665. $dzNo = isset($post['dzNo'])&& $post['dzNo']!="" ? trim($post['dzNo']) :"";
  666. if($dzNo==""){
  667. return error_show(1004,"参数 dzNo 不能为空");
  668. }
  669. $payment= Db::name("pay_payment")->where([['dzNo',"=",$dzNo],['is_del',"=",0]])->find();
  670. if($payment==false){
  671. return error_show(1005,"未找到付款申请信息");
  672. }
  673. $payinfo= Db::name("pay")->where([['payNo',"=",$payment['payNo']],['is_del',"=",0]])->find();
  674. if($payinfo==false){
  675. return error_show(1005,"未找到付款信息");
  676. }
  677. $cgdNo =Db::name("pay_info")->where(["payNo"=>$payment['payNo'],"is_del"=>0])->column("cgdNo");
  678. if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
  679. Db::startTrans();
  680. try{
  681. $paym = Db::name("pay_payment")->where($payment)->update(["is_del"=>1,"updatetime"=>date("Y-m-d H:i:s")]);
  682. if($paym){
  683. if(in_array($payment['status'],[1,2,3,4])){
  684. if(in_array($payment['status'],[1,2,3])){
  685. $payinfo['wpay_fee']+=$payment['pay_fee'];
  686. $payinfo['pay_fee']-=$payment['pay_fee'];
  687. $payinfo['updatetime']=date("Y-m-d H:i:s");
  688. }
  689. if($payment['status']==4){
  690. $payinfo['wpay_fee']+=$payment['pay_fee'];
  691. $payinfo['apay_fee']-=$payment['pay_fee'];
  692. $payinfo['pay_status']=$payinfo['apay_fee']==0? 1 : 2 ;
  693. $payinfo['updatetime']=date("Y-m-d H:i:s");
  694. foreach ($cgdNo as $value){
  695. $report=ReportCode::where(["cgdNo"=>$value])->find();
  696. if($report)$report->rmField("DzNo",$dzNo);
  697. }
  698. }
  699. $pay = Db::name("pay")->save($payinfo);
  700. if($pay==false){
  701. Db::rollback();
  702. return error_show(1003,"对账状态修改失败");
  703. }
  704. }
  705. Db::commit();
  706. return app_show(0,"对账申请删除成功");
  707. }
  708. }catch (\Exception $e){
  709. Db::rollback();
  710. return error_show(1003,$e->getMessage());
  711. }
  712. }
  713. /**
  714. * 采购单列表
  715. * @param \think\Request $request
  716. * @param int $id
  717. * @return \think\Response
  718. */
  719. public function CgdList()
  720. {
  721. $post = $this->post;
  722. $condition = [["cgdSource","<>",1]];
  723. $check = checkRole($this->roleid,46);
  724. // if($check){
  725. // $condition []=["ownerid","=",$this->uid];
  726. // }
  727. $sequenceNo = isset($post['sequenceNo']) && $post['sequenceNo']!='' ? trim($post['sequenceNo']) :"";
  728. if($sequenceNo!=""){
  729. $condition []=["sequenceNo","like","%$sequenceNo%"];
  730. }
  731. $status = isset($post['status']) && $post['status']!=='' ? intval($post['status']) :"";
  732. if($status!==""){
  733. if($status!==''){
  734. if($status==3){
  735. $condition[]=["status","<>",2];
  736. }else{
  737. $condition[]=["status","=",$status];
  738. }
  739. }
  740. }
  741. $companyNo = isset($post['companyNo']) && $post['companyNo']!='' ? trim($post['companyNo']) :"";
  742. if($companyNo!=""){
  743. $condition []=["companyNo","like","%$companyNo%"];
  744. }
  745. $companyName = isset($post['companyName']) && $post['companyName']!='' ? trim($post['companyName']) :"";
  746. if($companyName!=""){
  747. $condition []=["companyName","like","%$companyName%"];
  748. }
  749. $bkCode = isset($post['bkCode']) && $post['bkCode']!='' ? trim($post['bkCode']) :"";
  750. if($bkCode!=""){
  751. $condition []=["bkCode","like","%$bkCode%"];
  752. }
  753. $goodNo = isset($post['goodNo']) && $post['goodNo']!='' ? trim($post['goodNo']) :"";
  754. if($goodNo!=""){
  755. $condition []=["goodNo","like","%$goodNo%"];
  756. }
  757. $goodName = isset($post['goodName']) && $post['goodName']!='' ? trim($post['goodName']) :"";
  758. if($goodName!=""){
  759. $condition []=["goodName","like","%$goodName%"];
  760. }
  761. $supplierName = isset($post['supplierName']) && $post['supplierName']!='' ? trim($post['supplierName']) :"";
  762. if($supplierName!=""){
  763. $condition []=["supplierName","like","%$supplierName%"];
  764. }
  765. $supplierNo = isset($post['supplierNo']) && $post['supplierNo']!='' ? trim($post['supplierNo']) :"";
  766. if($supplierNo!=""){
  767. $condition []=["supplierNo","like","%$supplierNo%"];
  768. }
  769. $cgder= isset($post['cgder']) && $post['cgder']!='' ? trim($post['cgder']) :"";
  770. if($cgder!='') $condition []=["ownerName","like","%$cgder%"];
  771. $cgderid= isset($post['cgderid']) && $post['cgderid']!='' ? trim($post['cgderid']) :"";
  772. if($cgderid!='') $condition []=["ownerid","=",$cgderid];
  773. $cgdtype= isset($post['cgdtype']) && $post['cgdtype']!='' ? intval($post['cgdtype']) :"";
  774. if($cgdtype!='') $condition []=["cgdType","=",$cgdtype];
  775. $cgdsource= isset($post['cgdsource']) && $post['cgdsource']!='' ? intval($post['cgdsource']) :"";
  776. if($cgdsource!='') $condition []=["cgdSource","=",$cgdsource];
  777. $sendstatus= isset($post['sendstatus']) && $post['sendstatus']!='' ? intval($post['sendstatus']) :"";
  778. if($sendstatus!='') $condition []=["sendStatus","=",$sendstatus];
  779. $page = isset($post['page'])&&$post['page']!="" ? intval($post['page']) :0;
  780. $size = isset($post['size'])&&$post['size']!="" ? intval($post['size']) :10;
  781. $count = Db::name("cgd_info")->where($condition)->count();
  782. $total = ceil($count/$size);
  783. $page = $page>=$total?intval($total):$page;
  784. $list = Db::name("cgd_info")->where($condition)->page($page,$size)->order('createdTime desc')->select();
  785. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  786. }
  787. //采购单信息
  788. public function cgdinfo(){
  789. $post=$this->post;
  790. $sequenceNo = isset($post['sequenceNo']) && $post['sequenceNo']!='' ? trim($post['sequenceNo']) :"";
  791. if($sequenceNo==''){
  792. return error_show(1004,"参数 sequenceNo 不能为空");
  793. }
  794. $cgdinfo = Db::name("cgd_info")->where(["sequenceNo"=>$sequenceNo])->findOrEmpty();
  795. if(empty($cgdinfo)){
  796. return error_show(1004,"采购单信息未找到");
  797. }
  798. $cgdinfo['catInfo'] = json_decode($cgdinfo['catInfo'],true);
  799. $payinfo =Db::name("pay_info")->alias("a")->leftJoin("pay b","a.payNo=b.payNo")
  800. ->where(["a.is_del"=>0,"b.is_del"=>0,"a.cgdNo"=>$sequenceNo])->field("b.inv_status,b.pay_status,b.status")
  801. ->find();
  802. $cgdinfo["cgd_pay_status"]=$payinfo['pay_status']??1;
  803. $cgdinfo["cgd_inv_status"]=$payinfo['inv_status']??1;
  804. $cgdinfo["cgd_status"]=$payinfo['status']??0;
  805. return app_show(0,"获取成功",$cgdinfo);
  806. }
  807. //todo
  808. public function PayInfo()
  809. {
  810. $post = $this->post;
  811. $payNo =isset($post['payNo'])&&$post['payNo']!='' ? trim($post['payNo']):"";
  812. if($payNo==""){
  813. return error_show(1004,"参数 payNo 不能为空");
  814. }
  815. $payinfo =Db::name("pay")->where(["payNo"=>$payNo,"is_del"=>0])->find();
  816. if($payinfo==false){
  817. return error_show(1004,"对账单数据未找到");
  818. }
  819. $pay =Db::name("pay_info")->alias("a")->leftJoin("cgd_info b","a.cgdNo=b.sequenceNo")
  820. ->where(["a.is_del"=>0,"b.is_del"=>0,"a.payNo"=>$payNo])->field("b.*")
  821. ->select()->toArray();
  822. foreach ($pay as &$value){
  823. $value['catInfo'] = json_decode($value['catInfo'],true);
  824. }
  825. $tag =Db::name("tag_log")->alias("a")->leftJoin("order_tag b","a.tag_id=b.id")->where
  826. (["code"=>$value['payNo'],"a.status"=>1])->column("b.tag_name","b.type");
  827. $payinfo['inv_tag_name']=$tag[2]['tag_name']??'';
  828. $payinfo['pay_tag_name']=$tag[1]['tag_name']??'';
  829. $payinfo['cgdlist'] = $pay;
  830. return app_show(0,"获取成功",$payinfo);
  831. }
  832. public function DzInfo()
  833. {
  834. $post = $this->post;
  835. $DzNo =isset($post['DzNo'])&&$post['DzNo']!='' ? trim($post['DzNo']):"";
  836. if($DzNo==""){
  837. return error_show(1004,"参数 DzNo 不能为空");
  838. }
  839. $payinfo =Db::name("pay_payment")->where(["dzNo"=>$DzNo,"is_del"=>0])->find();
  840. if($payinfo==false){
  841. return error_show(1004,"对账单付款申请数据未找到");
  842. }
  843. $pay =Db::name("pay")->where(["payNo"=>$payinfo['payNo'],"is_del"=>0])->find();
  844. if($pay==false){
  845. return error_show(1004,"对账单数据未找到");
  846. }
  847. $payinfo['pay_apply_id'] = $pay['apply_id']??'';
  848. $payinfo['pay_apply_name'] = $pay['apply_name']??'';
  849. $payinfo['supplierNo'] = $pay['supplierNo']??'';
  850. $payinfo['supplierName'] = $pay['supplierName']??'';
  851. $payinfo['companyNo'] = $pay['companyNo']??'';
  852. $payinfo['companyName'] = $pay['companyName']??'';
  853. $payinfo['total_fee'] = $pay['total_fee']??'';
  854. return app_show(0,"获取成功",$payinfo);
  855. }
  856. /**发票新建添加
  857. * @return \think\response\Json|void
  858. * @throws \think\db\exception\DataNotFoundException
  859. * @throws \think\db\exception\DbException
  860. * @throws \think\db\exception\ModelNotFoundException
  861. * @throws \think\exception\DbException
  862. */
  863. public function invAdd(){
  864. $post = $this->post;
  865. $payNo = isset($post['payNo'])&&$post['payNo']!='' ? $post['payNo']:"";
  866. if($payNo==""){
  867. return error_show(1004,"参数 payNo 不能为空");
  868. }
  869. $payinfo =Db::name("pay")->where(["payNo"=>$payNo,"is_del"=>0])->find();
  870. if($payinfo==false){
  871. return error_show(1004,"对账单数据未找到");
  872. }
  873. if($payinfo['status']!=3){
  874. return error_show(1004,"对账单数据未完成审核");
  875. }
  876. $type = isset($post['invType']) && $post['invType']!="" ? intval($post['invType']):"";
  877. if($type==''){
  878. return error_show(1004,"参数 invType 不能为空");
  879. }
  880. $invNumber =isset($post['invNumber'])&& $post['invNumber']!='' ? trim($post['invNumber']):"";
  881. $invCode =isset($post['invCode'])&& $post['invCode']!='' ? trim($post['invCode']):"";
  882. $checkNumber =isset($post['checkNumber'])&& $post['checkNumber']!='' ? trim($post['checkNumber']):"";
  883. $openTime =isset($post['open_time'])&& $post['open_time']!='' ? trim($post['open_time']):"";
  884. $subtotal_amount =isset($post['subtotal_amount'])&& $post['subtotal_amount']!='' ? floatval($post['subtotal_amount']):"0";
  885. if($type==1){
  886. if($invNumber=="") return error_show(1004,"参数 invNumber 不能为空");
  887. if($invCode=="") return error_show(1004,"参数 invCode 不能为空");
  888. // if($checkNumber=="") return error_show(1004,"参数 checkNumber 不能为空");
  889. if($openTime=="") return error_show(1004,"参数 open_time 不能为空");
  890. if($subtotal_amount=="") return error_show(1004,"参数 subtotal_amount 不能为空");
  891. }
  892. $invimg = isset($post['inv_img'])&& $post['inv_img']!='' ? trim($post['inv_img']):"";
  893. $invName = isset($post['invName'])&& $post['invName']!='' ? trim($post['invName']):"";
  894. if($type==2){
  895. if($invimg=="")return error_show(1004,"参数 inv_img 不能为空");
  896. if($invName=="")return error_show(1004,"参数 invName 不能为空");
  897. }
  898. if ($type==3){
  899. }
  900. $cgdNo =Db::name("pay_info")->where(["payNo"=>$payNo,"is_del"=>0])->column("cgdNo");
  901. if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
  902. Db::startTrans();
  903. try{
  904. $hpNo=makeNo("hp");
  905. $data=[
  906. "payNo"=>$payNo,
  907. "hpNo"=>$hpNo,
  908. "apply_id"=>$this->uid,
  909. "apply_name"=>$this->uname,
  910. "inv_fee"=> 0,//核算金额
  911. "inv_subtotal_amount"=> $subtotal_amount, //票面金额
  912. "invType"=> $type,
  913. "invoiceType"=>'',
  914. "inv_img"=>$invimg,
  915. "invName"=>$invName,
  916. "invoiceNumber"=>$invNumber,
  917. "invoiceCode"=>$invCode,
  918. "status"=>$type==2?1:2,
  919. "checkNumber"=>$checkNumber,
  920. "open_time"=>$openTime!=''? date("Y-m-d",strtotime($openTime)):"",
  921. "addtime"=>date("Y-m-d H:i:s"),
  922. "updatetime"=>date("Y-m-d H:i:s")
  923. ];
  924. $inadd =Db::name("pay_invoice")->insert($data);
  925. if ($inadd){
  926. foreach ($cgdNo as $value){
  927. $report=ReportCode::where(["cgdNo"=>$value])->find();
  928. if($report)$report->setField("hpNo",$hpNo);
  929. }
  930. Db::commit();
  931. return app_show(0,"回票新建成功",['hpNo'=>$hpNo]);
  932. }
  933. Db::rollback();
  934. return error_show(1004,"回票申请新建失败");
  935. }catch (\Exception $e){
  936. Db::rollback();
  937. return error_show(1004,$e->getMessage());
  938. }
  939. }
  940. /**
  941. * 发票审核状态
  942. * 0 上传发票,1待识别验证 2 待校验识别 3 待财务审核 4待认证 5认证成功待确认完成 6回票完成7识别失败 8 验证失败 9 财务驳回 10 认证失败 11校验超过次数第二天校验 12 回票申请废弃已结束
  943. * @return \think\response\Json|void
  944. * @throws \think\db\exception\DataNotFoundException
  945. * @throws \think\db\exception\DbException
  946. * @throws \think\db\exception\ModelNotFoundException
  947. * @throws \think\exception\DbException
  948. */
  949. public function invStatus(){
  950. $post = $this->post;
  951. $hpNo = isset($post['hpNo'])&& $post['hpNo']!="" ? trim($post['hpNo']) :"";
  952. if($hpNo==""){
  953. return error_show(1004,"参数 hpNo 不能为空");
  954. }
  955. $status = isset($post['status'])&& $post['status']!="" ? intval($post['status']) :"";
  956. if($status==""){
  957. return error_show(1004,"参数status 不能为空");
  958. }
  959. if(!in_array($status,[0,1,2,3,4,5,6,7,8,9,10,11,12])){
  960. return error_show(1004,"参数status 无效值");
  961. }
  962. $payment= Db::name("pay_invoice")->where([['hpNo',"=",$hpNo],['is_del',"=",0]])->find();
  963. if($payment==false){
  964. return error_show(1005,"未找到回票申请信息");
  965. }
  966. $payinfo= Db::name("pay")->where([['payNo',"=",$payment['payNo']],['is_del',"=",0]])->find();
  967. if($payinfo==false){
  968. return error_show(1005,"未找到对账信息");
  969. }
  970. if($payinfo['status']!=3){
  971. return error_show(1005,"对账信息未完成审核");
  972. }
  973. $cgdNo =Db::name("pay_info")->where(["payNo"=>$payment['payNo'],"is_del"=>0])->column("cgdNo");
  974. if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
  975. if($payinfo['inv_fee']< $payment['inv_fee'])return error_show(1005,"对账回票申请金额有误,请确认回票申请金额");
  976. $remark = $post['remark']??'';
  977. Db::startTrans();
  978. try {
  979. if($payment['invType']==1&&$status==1){
  980. $status=2;
  981. }
  982. $invup =["status"=>$status,"remark"=>$remark,"updatetime"=>date("Y-m-d H:i:s")];
  983. $inv =Db::name("pay_invoice")->where($payment)->update($invup);
  984. if($inv){
  985. if($status==6){
  986. $payupdate =[
  987. "ainv_fee"=>$payinfo['ainv_fee']+$payment['inv_fee'],
  988. "inv_fee"=>$payinfo['inv_fee']-$payment['inv_fee'],
  989. "inv_status" => ($payinfo['inv_fee']-$payment['inv_fee'])==0 && $payinfo['winv_fee']==0?3:2,
  990. "updatetime" => date("Y-m-d H:i:s")
  991. ];
  992. $pay =Db::name("pay")->where($payinfo)->update($payupdate);
  993. if($pay==false){
  994. Db::rollback();
  995. return error_show(1003,"回票申请状态更新成功");
  996. }
  997. }
  998. if($status==9 || $status==10){
  999. $payupdate =[
  1000. "winv_fee"=>$payinfo['winv_fee']+$payment['inv_fee'],
  1001. "inv_fee"=>$payinfo['inv_fee']-$payment['inv_fee'],
  1002. "inv_status" => ($payinfo['inv_fee']-$payment['inv_fee'])==0 && $payinfo['ainv_fee']==0?1:2,
  1003. "updatetime" => date("Y-m-d H:i:s")
  1004. ];
  1005. $pay =Db::name("pay")->where($payinfo)->update($payupdate);
  1006. if($pay==false){
  1007. Db::rollback();
  1008. return error_show(1003,"回票申请状态更新成功");
  1009. }
  1010. foreach ($cgdNo as $value){
  1011. $report=ReportCode::where(["cgdNo"=>$value])->find();
  1012. if($report)$report->rmField("hpNo",$hpNo);
  1013. }
  1014. }
  1015. Db::commit();
  1016. return app_show(0,"回票申请更新成功");
  1017. }
  1018. Db::rollback();
  1019. return error_show(1003,"回票申请状态更新成功");
  1020. }catch (\Exception $e){
  1021. Db::rollback();
  1022. return error_show(1004,$e->getMessage());
  1023. }
  1024. }
  1025. /**发票列表识别
  1026. * @param int $id
  1027. * @return \think\Response
  1028. */
  1029. public function InvList()
  1030. {
  1031. $post = $this->post;
  1032. $condition = [["a.is_del","=",0 ],["b.is_del","=",0 ]];
  1033. $invtype = isset($post['invType'])&&$post['invType']!='' ? intval($post['invType']):"";
  1034. if ($invtype!=''){
  1035. $condition[]=["a.invType","=",$invtype];
  1036. }
  1037. $hpNo = isset($post['hpNo'])&&$post['hpNo']!='' ? trim($post['hpNo']):"";
  1038. if ($hpNo!=''){
  1039. $condition[]=["a.hpNo","like","%$hpNo%"];
  1040. }
  1041. $payNo = isset($post['payNo'])&&$post['payNo']!='' ? trim($post['payNo']):"";
  1042. if ($payNo!=''){
  1043. $condition[]=["a.payNo","like","%$payNo%"];
  1044. }
  1045. $invoiceType = isset($post['invoiceType'])&&$post['invoiceType']!='' ? intval($post['invoiceType']):"";
  1046. if ($invoiceType!=''){
  1047. $condition[]=["a.invoiceType","=",$invoiceType];
  1048. }
  1049. $status = isset($post['status'])&&$post['status']!=="" ? intval($post['status']):"";
  1050. if($status!==""){
  1051. $condition[]=["a.status","=",$status];
  1052. }
  1053. $invNumber = isset($post['invNumber'])&&$post['invNumber']!="" ? trim($post['invNumber']):"";
  1054. if($invNumber!=''){
  1055. $condition[]=["invoiceNumber","=",$invNumber];
  1056. }
  1057. $invCode = isset($post['invCode'])&&$post['invCode']!="" ? trim($post['invCode']):"";
  1058. if($invCode!=''){
  1059. $condition[]=["invoiceCode","=",$invCode];
  1060. }
  1061. $start = isset($post['start']) && $post['start']!="" ? $post['start'] :"";
  1062. if($start!=""){
  1063. $condition[]=["a.addtime",">=",$start." 00:00:00"];
  1064. }
  1065. $end = isset($post['end']) && $post['end']!="" ? $post['end'] :"";
  1066. if($end!=""){
  1067. $condition[]=["a.addtime","<=",$end." 23:59:59"];
  1068. }
  1069. $open_start = isset($post['open_start']) && $post['open_start']!="" ? $post['open_start'] :"";
  1070. if($open_start!=""){
  1071. $condition[]=["a.open_time",">=",$open_start." 00:00:00"];
  1072. }
  1073. $open_end = isset($post['open_end']) && $post['open_end']!="" ? $post['open_end'] :"";
  1074. if($open_end!=""){
  1075. $condition[]=["a.open_time","<=",$open_end." 23:59:59"];
  1076. }
  1077. $apply_id = isset($post['apply_id']) && $post['apply_id']!="" ? $post['apply_id'] :"";
  1078. if($apply_id!=""){
  1079. $condition[]=["a.apply_id","=",$apply_id];
  1080. }
  1081. $apply_name = isset($post['apply_name']) && $post['apply_name']!="" ? trim($post['apply_name']):"";
  1082. if($apply_name!=""){
  1083. $condition[]=["a.apply_name","like","%$apply_name%"];
  1084. }
  1085. $page = isset($post['page'])&&$post['page']!="" ? intval($post['page']):1;
  1086. $size = isset($post['size'])&&$post['size']!="" ? intval($post['size']):10;
  1087. $count =Db::name("pay_invoice")->alias("a")->leftJoin("pay b","a.payNo=b.payNo")->where($condition)->count();
  1088. $total = ceil($count/$size);
  1089. $page = $page>$total? intval($total):$page;
  1090. $list = Db::name("pay_invoice")->alias("a")->leftJoin("pay b","a.payNo=b.payNo")->field("a.*")->where
  1091. ($condition)->page($page,$size)->order("addtime desc")->select()->toArray();
  1092. foreach ($list as &$value){
  1093. $invoinfo =Db::name("invoice_info")->where(["hpNo"=>$value['hpNo'],"status"=>1])->find();
  1094. $value['buyer_name'] = $invoinfo['buyer_name']??"";
  1095. $value['buyer_id'] = $invoinfo['buyer_id']??"";
  1096. $value['buyer_address'] = $invoinfo['buyer_address']??"";
  1097. $value['buyer_bank'] = $invoinfo['buyer_bank']??"";
  1098. $value['seller_name'] = $invoinfo['seller_name']??"";
  1099. $value['seller_id'] = $invoinfo['seller_id']??"";
  1100. $value['seller_address'] = $invoinfo['seller_address']??"";
  1101. $value['seller_bank'] = $invoinfo['seller_bank']??"";
  1102. $value['subtotal_amount'] = $invoinfo['subtotal_amount']??"";
  1103. $value['subtotal_tax'] = $invoinfo['subtotal_tax']??"";
  1104. $value['total'] = $invoinfo['total']??"";
  1105. $value['receiver'] = $invoinfo['receiver']??"";
  1106. $value['issuer'] = $invoinfo['issuer']??"";
  1107. $value['reivewer'] = $invoinfo['reivewer']??"";
  1108. $value['remarks'] = $invoinfo['remarks']??"";
  1109. $value['invoiceType_cn'] = $this->invoiceType[$value['invoiceType']]??'';
  1110. $value['invStatus_cn'] = $this->invStatus[$value['invStatus']]??'';
  1111. $value['item_list'] = isset($invoinfo['item_list']) &&$invoinfo['item_list']!='' ?json_decode($invoinfo['item_list'],true):"";
  1112. }
  1113. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  1114. }
  1115. /**发票删除
  1116. * @return \think\response\Json|void
  1117. * @throws \think\db\exception\DataNotFoundException
  1118. * @throws \think\db\exception\DbException
  1119. * @throws \think\db\exception\ModelNotFoundException
  1120. */
  1121. public function invDel(){
  1122. $post = $this->post;
  1123. $hpNo = isset($post['hpNo'])&&$post['hpNo']!="" ? trim($post['hpNo']) :"";
  1124. if ($hpNo==""){
  1125. return error_show(1004,"参数 hpNo 不能为空");
  1126. }
  1127. $payinv =Db::name("pay_invoice")->where(["hpNo"=>$hpNo,"is_del"=>0])->find();
  1128. if($payinv==false){
  1129. return error_show(1004,"对账单回票申请未找到数据");
  1130. }
  1131. $payinfo= Db::name("pay")->where([['payNo',"=",$payinv['payNo']],['is_del',"=",0]])->find();
  1132. if($payinfo==false){
  1133. return error_show(1005,"未找到对账信息");
  1134. }
  1135. if($payinfo['status']!=3){
  1136. return error_show(1005,"对账信息未完成审核");
  1137. }
  1138. $cgdNo =Db::name("pay_info")->where(["payNo"=>$payinv['payNo'],"is_del"=>0])->column("cgdNo");
  1139. if(empty($cgdNo)) return error_show(1004,"未找到对账采购单信息");
  1140. Db::startTrans();
  1141. try{
  1142. $update=["is_del"=>1,"updatetime"=>date("Y-m-d H:i:s")];
  1143. $invup =Db::name("pay_invoice")->where($payinv)->update($update);
  1144. if($invup){
  1145. if($payinv['status']==8){
  1146. if($payinfo['ainv_fee']< $payinv['inv_fee']){
  1147. Db::rollback();
  1148. return error_show(1005,"对账回票申请金额有误,请确认回票申请金额");
  1149. }
  1150. $payupdate =[
  1151. "ainv_fee"=>$payinfo['ainv_fee']-$payinv['inv_fee'],
  1152. "winv_fee"=>$payinfo['winv_fee']+$payinv['inv_fee'],
  1153. "inv_status" => ($payinfo['ainv_fee']-$payinv['inv_fee'])==0?1:2,
  1154. "updatetime" => date("Y-m-d H:i:s")
  1155. ];
  1156. $pay =Db::name("pay")->where($payinfo)->update($payupdate);
  1157. if($pay==false){
  1158. Db::rollback();
  1159. return error_show(1003,"删除失败");
  1160. }
  1161. foreach ($cgdNo as $value){
  1162. $report=ReportCode::where(["cgdNo"=>$value])->find();
  1163. if($report)$report->rmField("hpNo",$hpNo);
  1164. }
  1165. }
  1166. Db::commit();
  1167. return app_show(0,"删除成功");
  1168. }
  1169. }catch (\Exception $e){
  1170. Db::rollback();
  1171. return error_show(1003,$e->getMessage());
  1172. }
  1173. }
  1174. public function HpInfo(){
  1175. $post = $this->post;
  1176. $hpNo = isset($post['hpNo'])&&$post['hpNo']!="" ? trim($post['hpNo']) :"";
  1177. if ($hpNo==""){
  1178. return error_show(1004,"参数 hpNo 不能为空");
  1179. }
  1180. $payinv =Db::name("pay_invoice")->where(["hpNo"=>$hpNo,"is_del"=>0])->find();
  1181. if($payinv==false){
  1182. return error_show(1004,"对账单回票申请未找到数据");
  1183. }
  1184. $payinfo= Db::name("pay")->where([['payNo',"=",$payinv['payNo']],['is_del',"=",0]])->find();
  1185. if($payinfo==false){
  1186. return error_show(1005,"未找到对账信息");
  1187. }
  1188. $payinv['pay_apply_id'] = $payinfo['apply_id']??'';
  1189. $payinv['pay_apply_name'] = $payinfo['apply_name']??'';
  1190. $payinv['supplierNo'] = $payinfo['supplierNo']??'';
  1191. $payinv['supplierName'] = $payinfo['supplierName']??'';
  1192. $payinv['companyNo'] = $payinfo['companyNo']??'';
  1193. $payinv['companyName'] = $payinfo['companyName']??'';
  1194. $payinv['total_fee'] = $payinfo['total_fee']??'';
  1195. $invinfo =Db::name("invoice_info")->where(["hpNo"=>$hpNo])->findOrEmpty();
  1196. if(!empty($invinfo)){
  1197. $invinfo['item_list'] =json_decode($invinfo['item_list'],true);
  1198. }
  1199. $payinv['invoiceType_cn'] = $this->invoiceType[$payinv['invoiceType']]??'';
  1200. $payinv['invStatus_cn'] = $this->invStatus[$payinv['invStatus']]??'';
  1201. $payinv["info"]=$invinfo;
  1202. return app_show(0,'获取成功',$payinv);
  1203. }
  1204. public function UnPay(){
  1205. $post = $this->post;
  1206. $codeNo = isset($post['id'])&&$post['id']!=="" ? trim($post['id']) :'';
  1207. if($codeNo===""){
  1208. return error_show(1004,'参数 id 不能为空');
  1209. }
  1210. $update = Db::name('cgd_info')->where("id","in",$codeNo)->update(['status'=>2,"updatetime"=>date("Y-m-d H:i:s")]);
  1211. if($update){
  1212. return app_show(0,'更新成功');
  1213. }else{
  1214. return error_show(1004,'更新失败');
  1215. }
  1216. }
  1217. }