Payment.php 58 KB

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