Payment.php 56 KB

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