Payment.php 54 KB

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