OrderInv.php 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\BaseController;
  4. use app\admin\model\ReportCode;
  5. use think\App;
  6. use think\Exception;
  7. use think\facade\Config;
  8. use think\facade\Db;
  9. use think\facade\Cache;use think\facade\Validate;
  10. class OrderInv extends BaseController{
  11. protected $typename;
  12. protected $invoiceType;
  13. protected $invName;
  14. protected $kingInvoice;
  15. public function __construct(App $app) {
  16. parent::__construct($app);
  17. $invoice =Config::get("invoiceType");
  18. $this->invoiceType = $invoice['invoiceName'];
  19. $this->invName = $invoice['invoiceType'];
  20. $this->typename = $invoice['KingName'];
  21. $this->kingInvoice = $invoice['KingInvoice'];
  22. }
  23. /**
  24. * 新建销售单开票申请
  25. */
  26. public function create(){
  27. $companyType = isset($this->post['companyType'])&&$this->post['companyType']!=='' ? trim($this->post['companyType']):"";
  28. if ($companyType==''){
  29. return error_show(1004,"参数 companyType 不能为空");
  30. }
  31. $buy_id = isset($this->post['buy_id'])&&$this->post['buy_id']!=='' ? intval($this->post['buy_id']):"";
  32. if($buy_id==''){
  33. return error_show(1004,"参数 buy_id 不能为空");
  34. }
  35. $buyinfo =Db::name("customer_invoice")->where(['id'=>$buy_id,"is_del"=>0])->find();
  36. if($buyinfo==false){
  37. return error_show(1004,"购买方发票信息未找到");
  38. }
  39. if($this->level==1){
  40. $companyNo = isset($this->post['companyNo'])&&$this->post['companyNo']!=='' ? trim($this->post['companyNo']):"";
  41. }
  42. else{
  43. $companyNo = isset($this->post['relaComNo'])&&$this->post['relaComNo']!=='' ? trim($this->post['relaComNo'])
  44. :"";
  45. }
  46. if($companyNo==''){
  47. return error_show(1004,"业务公司不能为空");
  48. }
  49. $company = Db::name("company_info")->where(["companyNo"=>$companyNo])->find();
  50. if($company==false){
  51. return error_show(1004,"销售方信息未找到");
  52. }
  53. // $khNo = isset($this->post['khNo'])&&$this->post['khNo']!=='' ? trim($this->post['khNo']):"";
  54. // if($khNo==''){
  55. // return error_show(1004,"参数 khNo 不能为空");
  56. // }
  57. $supplier = Db::name("supplier_info")->where(["code"=>$companyNo])->find();
  58. if($supplier==false){
  59. return error_show(1004,"业务公司信息未找到");
  60. }
  61. $invtype = isset($this->post['invtype'])&&$this->post['invtype']!=='' ? trim($this->post['invtype']):"";
  62. if($invtype==''){
  63. return error_show(1004,"参数 invtype 不能为空");
  64. }
  65. if(!in_array($invtype,$this->invName)) return error_show(1004,"发票类型有误");
  66. $email = isset($this->post['email'])&&$this->post['email']!=='' ? trim($this->post['email']):"";
  67. $remark = isset($this->post['remark'])&&$this->post['remark']!=='' ? trim($this->post['remark']):"";
  68. $exam_remark = isset($this->post['exam_remark'])&&$this->post['exam_remark']!=='' ? trim($this->post['exam_remark']):"";
  69. $orderArr = isset($this->post['orderArr'])&&!empty($this->post['orderArr']) ? $this->post['orderArr']:[];
  70. if(empty($orderArr)){
  71. return error_show(1004,"参数 orderArr 不能为空");
  72. }
  73. $temp =[];
  74. $good=[];
  75. $invNo=makeNo("INV");
  76. $invfee=array_sum(array_column($orderArr,'inv_fee'));
  77. if($company['denomination']!=''&& $invfee>intval($company['denomination'])*10000){
  78. return error_show(1004,"开票面额不能超过{$company['denomination']}万元");
  79. }
  80. Db::startTrans();
  81. try{
  82. foreach ($orderArr as $value){
  83. if(!isset($value['sequenceNo']) ||$value['sequenceNo']==''){
  84. Db::rollback();
  85. return error_show(1004,"参数 sequenceNo 不能为空");
  86. }
  87. $qrd = Db::name("qrd_info")->where(["sequenceNo"=>$value['sequenceNo']])->find();
  88. if($qrd['status']==2){
  89. Db::rollback();
  90. return error_show(1004,"确认单{$value['sequenceNo']}不参与对账");
  91. }
  92. if(!isset($value['inv_fee']) || $value['inv_fee']===''){
  93. Db::rollback();
  94. return error_show(1004,"参数 inv_fee 不能为空");
  95. }
  96. if($qrd['winv_fee']<$value['inv_fee']){
  97. Db::rollback();
  98. return error_show(1004,"确认单{$value['sequenceNo']}待开票金额不足");
  99. }
  100. $ainv= Db::name("invoice_pool")->alias("a")
  101. ->leftJoin("invoice_good b","a.invNo=b.invNo and b.is_del=0")
  102. ->where(["a.status"=>[0,1,2,3,4],"b.orderCode"=>$value['sequenceNo']])->sum("b.goodNum");
  103. if($ainv+$value['num']>($qrd['goodNum']-$qrd['thNum'])) {
  104. Db::rollback();
  105. return error_show(1004,"确认单{$value['sequenceNo']}待开票数量不足");
  106. }
  107. $good_info = Db::name("good")->where(["spuCode"=>$qrd["goodNo"],"status"=>1])->findOrEmpty();
  108. if(empty($good_info)){
  109. Db::rollback();
  110. return error_show(1004,"确认单{$value['sequenceNo']}商品未确认开票类目");
  111. }
  112. $num = DB::name("assoc")
  113. ->alias("a")
  114. ->leftJoin("invoice_good b", "a.viceCode=b.invNo AND b.orderCode=a.orderCode")
  115. ->where(["a.status" => [1, 2], "a.is_del" => 0, "a.type" => 1, "a.orderCode" => $value['sequenceNo']])
  116. ->sum("b.goodNum");
  117. if($qrd['goodNum']-$qrd['thNum']-$num<$value['num']){
  118. Db::rollback();
  119. return error_show(1004,"确认单{$value['sequenceNo']}待开票数量不足");
  120. }
  121. $ascc=[
  122. "assocNo"=>makeNo("AS"),
  123. "apply_id"=>$this->uid,
  124. "apply_name"=>$this->uname,
  125. "type"=>1,
  126. "orderCode"=>$value['sequenceNo'],
  127. "customerNo"=>$qrd['customerNo'],
  128. "viceCode"=>$invNo,
  129. "order_total"=>$qrd['totalPrice'],
  130. "vice_total"=>$invfee,
  131. "cancel_fee"=>$value['inv_fee'],
  132. "status"=>1,
  133. "addtime"=>date("Y-m-d H:i:s"),
  134. "updatetime"=>date("Y-m-d H:i:s")
  135. ];
  136. $invoice_good=[
  137. "invNo"=>$invNo,
  138. "orderCode"=>$value['sequenceNo'],
  139. "goodNo"=>$qrd['goodNo'],
  140. "goodName"=>$good_info['inv_good_name']??$qrd['goodName'] ,
  141. "catName"=>$good_info['inv_cat_name']??$qrd['thirdCat'],
  142. "catNo"=>$good_info['inv_cat_code']??"",
  143. "goodPrice"=>round($value['inv_fee']/$value['num'],8),
  144. "unitName"=>$qrd['goodUnit'],
  145. "goodNum"=>$value['num'],
  146. "specInfo"=>$value['sequenceNo'],
  147. "totalPrice"=>$value['inv_fee'],
  148. "tax"=>$good_info['inv_tax']??$qrd['tax'],
  149. "is_discount"=>$good_info['is_discount']??0,
  150. "addTax"=>$good_info['addTax']??'',
  151. "inv_tag"=>$good_info['inv_tag']??"",
  152. "taxPrice"=>round($value['inv_fee']*($good_info['inv_tax']??$qrd['tax']),2),
  153. "addtime"=>date("Y-m-d H:i:s"),
  154. "updatetime"=>date("Y-m-d H:i:s")
  155. ];
  156. $update = [
  157. "inv_fee"=>$qrd['inv_fee']+$value['inv_fee'],
  158. "winv_fee"=>$qrd['winv_fee']-$value['inv_fee'],
  159. "inv_status"=>2,
  160. "status"=>1,
  161. "updatetime"=>date("Y-m-d H:i:s")
  162. ];
  163. $up = Db::name("qrd_info")->where($qrd)->update($update);
  164. if($up==false){
  165. Db::rollback();
  166. return error_show(1005,"确认单{$value['sequenceNo']} 更新失败");
  167. }
  168. $temp[]=$ascc;
  169. $good[]=$invoice_good;
  170. $report=ReportCode::where(["qrdNo"=>$value['sequenceNo']])->find();
  171. if($report)$report->setField("invNo",$invNo);
  172. }
  173. $associn = Db::name("assoc")->insertAll($temp);
  174. if($associn==0){
  175. Db::rollback();
  176. return error_show(1005,"确认单申请开票失败");
  177. }
  178. $goodin = Db::name("invoice_good")->insertAll($good);
  179. if($goodin==0){
  180. Db::rollback();
  181. return error_show(1005,"确认单申请开票失败");
  182. }
  183. $inv=[
  184. "invNo"=>$invNo,
  185. "inv_value"=>$invfee,
  186. "inv_out"=> $companyNo,
  187. "inv_company"=> $supplier['name']??"",
  188. "apply_id"=>$this->uid,
  189. "apply_name"=>$this->uname,
  190. "inv_type"=>$invtype,//发票类型 专用 普通 电子专用 电子普通 全电子票
  191. "open_type"=>0, //开票类型 金税开票 金税线下 纯线下
  192. "is_ticket"=>$company['out_ticket'], //是否支持金税开票
  193. "company_type"=> $buyinfo['company_type']??'01', //类型01 企业,02 机关事业单位,03 个人, 04 其他
  194. "remark"=>$remark, //申请备注
  195. "exam_remark"=>$exam_remark, //审核备注
  196. "ainv_fee"=>0,//已核销金额
  197. "winv_fee"=>$invfee,//未核销金额
  198. "status"=>1,// 带财务审核
  199. "is_del"=>0,
  200. "email"=>$email,
  201. "addtime"=>date("Y-m-d H:i:s"),
  202. "updatetime"=>date("Y-m-d H:i:s")
  203. ];
  204. $invin = Db::name("invoice_pool")->insert($inv);
  205. if($invin){
  206. $invinfo=[
  207. "buyer_title"=>$buyinfo['invoice_title'],
  208. "buyer_code"=>$buyinfo['invoice_code'],
  209. "buyer_addr"=>$buyinfo['invoice_addr'],
  210. "buyer_mobile"=>$buyinfo['invoice_mobile'],
  211. "buyer_bank"=>$buyinfo['invoice_bank'],
  212. "buyer_bankNo"=>$buyinfo['invoice_bankNo'],
  213. "seller_title"=>$company['company_name'],
  214. "seller_code"=>$company['company_license'],
  215. "seller_addr"=>$company['company_address'],
  216. "seller_mobile"=>$company['mobile'],
  217. "seller_bank"=>$company['bank_name'],
  218. "seller_bankNo"=>$company['bankNo'],
  219. "invNo"=>$invNo,
  220. "voider"=>$company['voider'],
  221. "payee"=>$company['payee'],
  222. "drawer"=>$company['drawer'],
  223. "reviewer"=>$company['reviewer'],
  224. "ownerPlace"=>$company['ownerPlace'],
  225. "addtime"=>date("Y-m-d H:i:s")
  226. ];
  227. $poolinfo =Db::name("invoice_pool_info")->insert($invinfo);
  228. if($poolinfo){
  229. Db::commit();
  230. return app_show(0,"确认单发票申请成功",["invNo"=>$invNo]);
  231. }
  232. }
  233. Db::rollback();
  234. return error_show(1004,"确认单发票申请失败");
  235. }catch (\Exception $e){
  236. Db::rollback();
  237. return error_show(1004,$e->getMessage());
  238. }
  239. }
  240. // 1财务审核通过 2 金税开票中/验票中 3 开票成功 4 财务驳回 5 开票失败 6 发票退票/废弃 7取消申请
  241. // 1财务审核通过 2 待财务上传发票 3 金税开票中/验票中 4 开票成功 5 开票失败 6发票退票/废弃 7取消申请 8 财务驳回 9验票失败
  242. public function status(){
  243. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=''?trim($this->post['invNo']):"";
  244. if($invNo==""){
  245. return error_show(1004,"参数 invNo 不能为空");
  246. }
  247. $invinfo = Db::name("invoice_pool")->where(["invNo"=>$invNo,"is_del"=>0])->find();
  248. if($invinfo==false){
  249. return error_show(1004,"发票申请数据未找到");
  250. }
  251. $status= isset($this->post['status'])&&$this->post['status']!==''?intval($this->post['status']):"";
  252. if($status===''){
  253. return error_show(1004,"参数 status 不能为空");
  254. }
  255. //open_type 1 金税开票 2 金税线下开票 3 线下开票
  256. $open_type = isset($this->post['open_type'])&&$this->post['open_type']!==''?intval($this->post['open_type']):"";
  257. $remark = isset($this->post['remark'])&&$this->post['remark']!=''?trim($this->post['remark']):"";
  258. $invCode =isset($this->post['invCode'])&&$this->post['invCode']!=''?trim($this->post['invCode']):"";
  259. $invNum =isset($this->post['invNum'])&&$this->post['invNum']!=''?trim($this->post['invNum']):"";
  260. $open_date =isset($this->post['open_date'])&&$this->post['open_date']!=''?trim($this->post['open_date']):"";
  261. $subtotal_fee =isset($this->post['subtotal_fee'])&&$this->post['subtotal_fee']!=''?floatval($this->post['subtotal_fee']):"";
  262. $total_fee =isset($this->post['total_fee'])&&$this->post['total_fee']!=''?floatval($this->post['total_fee']):"0";
  263. $checkCode =isset($this->post['checkCode'])&&$this->post['checkCode']!=''?trim($this->post['checkCode']):"";
  264. $seller_id =isset($this->post['seller_id'])&&$this->post['seller_id']!=''?trim($this->post['seller_id']):"";
  265. $seller_title =isset($this->post['seller_title'])&&$this->post['seller_title']!=''?trim($this->post['seller_title']):"";
  266. $seller_addr =isset($this->post['seller_addr'])&&$this->post['seller_addr']!=''?trim($this->post['seller_addr']):"";
  267. $seller_mobile =isset($this->post['seller_mobile'])&&$this->post['seller_mobile']!=''?trim($this->post['seller_mobile']):"";
  268. $seller_bank =isset($this->post['seller_bank'])&&$this->post['seller_bank']!=''?trim($this->post['seller_bank']):"";
  269. $seller_bankNo =isset($this->post['seller_bankNo'])&&$this->post['seller_bankNo']!=''?trim($this->post['seller_bankNo']):"";
  270. $buyer_id =isset($this->post['buyer_id'])&&$this->post['buyer_id']!=''?trim($this->post['buyer_id']):"";
  271. $buyer_title =isset($this->post['buyer_title'])&&$this->post['buyer_title']!=''?trim($this->post['buyer_title']):"";
  272. $buyer_addr =isset($this->post['buyer_addr'])&&$this->post['buyer_addr']!=''?trim($this->post['buyer_addr']):"";
  273. $buyer_mobile =isset($this->post['buyer_mobile'])&&$this->post['buyer_mobile']!=''?trim($this->post['buyer_mobile']):"";
  274. $buyer_bank =isset($this->post['buyer_bank'])&&$this->post['buyer_bank']!=''?trim($this->post['buyer_bank']):"";
  275. $buyer_bankNo =isset($this->post['buyer_bankNo'])&&$this->post['buyer_bankNo']!=''?trim($this->post['buyer_bankNo']):"";
  276. $tax_fee =isset($this->post['tax_fee'])&&$this->post['tax_fee']!=''?trim($this->post['tax_fee']):"";
  277. $invimg =isset($this->post['invimg'])&&$this->post['invimg']!=''?trim($this->post['invimg']):"";
  278. $update=[
  279. "status"=> $status,
  280. "exam_remark"=>$remark,
  281. "updatetime" => date("Y-m-d H:i:s")
  282. ];
  283. if($status==3){
  284. $open_type = $invinfo['open_type'];
  285. if($open_type!=1){
  286. if($invNum==='') return error_show(1004,"参数 invNum 不能为空");
  287. if($open_date==='') return error_show(1004,"参数 open_date 不能为空");
  288. if(in_array($invinfo['inv_type'],['normal','roll',"toll",'electronic'])){
  289. if($checkCode==='') return error_show(1004,"参数 checkCode 不能为空");
  290. }
  291. //全电子发票
  292. if(in_array($invinfo['inv_type'],['fully_digitalized_special_electronic','fully_digitalized_normal_electronic'])){
  293. //全电发票传含税金额
  294. if($total_fee=='') return error_show(1004,"参数 total_fee 不能为空");
  295. }else{
  296. //全电发票无invCode
  297. if($invCode==='') return error_show(1004,"参数 invCode 不能为空");
  298. if($subtotal_fee==='') return error_show(1004,"参数 subtotal_fee 不能为空");
  299. }
  300. }
  301. }
  302. if($status==2){
  303. if($open_type==='')return error_show(1004,"参数 open_type 不能为空");
  304. $update['open_type']=$open_type;
  305. if($open_type==1)$status=3;
  306. }
  307. if($status==7){
  308. if(!in_array($invinfo['status'],[1,2,3,5,8,9])) return error_show(1004,"开票申请状态有误");
  309. }
  310. $update['status']=$status;
  311. Db::startTrans();
  312. try{
  313. $invup =Db::name("invoice_pool")->where($invinfo)->update($update);
  314. if($invup){
  315. if(($status==3&& $open_type!=1) || ($invinfo['inv_type']==5 &&$status==3)){
  316. $invpool=[
  317. "invNo"=>$invinfo['invNo'],
  318. "inv_type"=>$this->kingInvoice[$invinfo['inv_type']],
  319. "inv_code"=>$invCode,
  320. "inv_number"=>$invNum,
  321. "check_code"=>$checkCode,
  322. "inv_total"=>$total_fee,
  323. "inv_subtotal"=>$subtotal_fee,
  324. "open_date"=>$open_date,
  325. 'pdfstream'=>'',
  326. "item"=>'',
  327. "status"=>$invinfo['inv_type']==5?1:0,
  328. "addtime"=>date("Y-m-d H:i:s"),
  329. "updatetime"=>date("Y-m-d H:i:s")
  330. ];
  331. if($invinfo['inv_type']==5){
  332. $invpool['seller_id'] = $seller_id??"";
  333. $invpool['seller_title'] = $seller_title??"";
  334. $invpool['seller_addr'] = $seller_addr??"";
  335. $invpool['seller_mobile'] = $seller_mobile??"";
  336. $invpool['seller_bank'] = $seller_bank??"";
  337. $invpool['seller_bankNo'] = $seller_bankNo??"";
  338. $invpool['buyer_id'] = $buyer_id??"";
  339. $invpool['buyer_title'] = $buyer_title??"";
  340. $invpool['buyer_addr'] = $buyer_addr??"";
  341. $invpool['buyer_mobile'] = $buyer_mobile??"";
  342. $invpool['buyer_bank'] = $buyer_bank??"";
  343. $invpool['buyer_bankNo'] = $buyer_bankNo??"";
  344. $invpool['tax_fee'] = $tax_fee??"";
  345. $invpool['pdfstream'] = $invimg ??"";
  346. }
  347. $in = Db::name("invoice_ticket")->insert($invpool);
  348. if($in==false){
  349. Db::rollback();
  350. return error_show(1004,"发票信息添加失败");
  351. }
  352. }
  353. if($status==3 && $open_type==1){
  354. $invpoolinfo =Db::name("invoice_pool_info")->where(["invNo"=>$invNo])->findOrEmpty();
  355. if(empty($invpoolinfo)){
  356. Db::rollback();
  357. return error_show(1004,"开票信息未找到");
  358. }
  359. $goodinfo =Db::name("invoice_good")
  360. ->where(["invNo"=>$invNo,"is_del"=>0])
  361. ->field("0 as FPHXZ,
  362. catNo as SPBM,
  363. id as ZXBM,
  364. is_discount as YHZCBS,
  365. if(inv_tag=0,'',inv_tag) as LSLBS,
  366. addTax as ZZSTSGL,
  367. goodName as XMMC,
  368. specInfo as GGXH,
  369. unitName as DW,
  370. goodNum as SPSL,
  371. goodPrice as DJ,
  372. totalPrice as JE,
  373. 1 HSBZ,
  374. tax as SL,
  375. taxPrice as SE")
  376. ->select()->toJson();
  377. if(empty($goodinfo)){
  378. Db::rollback();
  379. return error_show(1004,"开票商品信息未找到");
  380. }
  381. $data=[
  382. "invNo"=>$invNo,
  383. "KPLX"=>"0",
  384. "XHFSBH"=>$invpoolinfo['seller_code'],
  385. "XHFMC"=>$invpoolinfo['seller_title'],
  386. "XHFDZ"=>$invpoolinfo['seller_addr'],
  387. "XHFDH"=>$invpoolinfo['seller_mobile'],
  388. "XHFYH"=>$invpoolinfo['seller_bank'],
  389. "XHFZH"=>$invpoolinfo['seller_bankNo'],
  390. "GMFBM"=>"",
  391. "GMFSBH"=>$invpoolinfo['buyer_code'],
  392. "GMFMC"=>$invpoolinfo['buyer_title'],
  393. "GMFDZ"=>$invpoolinfo['buyer_addr'],
  394. "GMFDH"=>$invpoolinfo['buyer_mobile'],
  395. "GMFYH"=>$invpoolinfo['buyer_bank'],
  396. "GMFZH"=>$invpoolinfo['buyer_bankNo'],
  397. "GMFLX"=>$invinfo['company_type'],
  398. "GMFSJH"=>"",
  399. "GMFDZYX"=>$invinfo['email'],
  400. "KPR"=>$invpoolinfo['drawer'],
  401. "SKR"=>$invpoolinfo['payee'],
  402. "FHR"=>$invpoolinfo['reviewer'],
  403. "QDBZ"=>"0",
  404. "JSHJ"=>$invinfo['inv_value'],
  405. "HJJE"=>"0",
  406. "HJSE"=>"0",
  407. "BZ"=>$invinfo['remark'],
  408. "DDMXXX"=>$goodinfo,
  409. "FPLXDM"=>$this->kingInvoice[$invinfo['inv_type']],
  410. "DDQQPCH"=>"",
  411. "DDQQLSH"=>randomkeys(26).date("YmdHis"),
  412. "status"=>"0",
  413. "result"=>"",
  414. "addtime"=>date("Y-m-d H:i:s"),
  415. "updatetime"=>date("Y-m-d H:i:s")
  416. ];
  417. $invoice=Db::name("invoice_interface")->insert($data);
  418. if($invoice==false){
  419. Db::rollback();
  420. return error_show(1003,"开票信息生成失败");
  421. }
  422. Cache::push("invoiceList",$data["DDQQLSH"]);
  423. }
  424. if( $update['status']==4){
  425. $qrdArr=Db::name("assoc")->where(["viceCode"=>$invNo,"is_del"=>0])->column("id,orderCode,cancel_fee");
  426. if(!empty($qrdArr)){
  427. foreach ($qrdArr as $value){
  428. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  429. if($qrdinfo==false){
  430. Db::rollback();
  431. return error_show(1003,"确认单信息未找到");
  432. }
  433. if($qrdinfo['inv_fee']<$value['cancel_fee']){
  434. Db::rollback();
  435. return error_show(1003,"确认单信息开票金额不足");
  436. }
  437. $update =[
  438. "ainv_fee"=>$qrdinfo['ainv_fee']+$value['cancel_fee'],
  439. "inv_fee"=>$qrdinfo['inv_fee']-$value['cancel_fee'],
  440. "invtime"=>date("Y-m-d H:i:s"),
  441. "inv_status"=>$qrdinfo['winv_fee']==0 &&($qrdinfo['inv_fee']-$value['cancel_fee'])==0 ? 3 : 2,
  442. "updatetime"=>date("Y-m-d H:i:s"),
  443. ];
  444. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  445. if($qrdup==false){
  446. Db::rollback();
  447. return error_show(1003,"确认单信息更新失败");
  448. }
  449. $assoc=["status"=>2,"assoc_time"=>date("Y-m-d H:i:s"),"updatetime"=>date("Y-m-d H:i:s")];
  450. $assocup =Db::name("assoc")->where($value)->update($assoc);
  451. if($assocup==false){
  452. Db::rollback();
  453. return error_show(1003,"确认单关联信息更新失败");
  454. }
  455. }
  456. }
  457. }
  458. if($status==7||$status==8){
  459. $qrdArr=Db::name("assoc")->where(["viceCode"=>$invNo,"is_del"=>0])->column("id,orderCode,cancel_fee");
  460. if(!empty($qrdArr)){
  461. foreach ($qrdArr as $value){
  462. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  463. if($qrdinfo==false){
  464. Db::rollback();
  465. return error_show(1003,"确认单信息未找到");
  466. }
  467. if($qrdinfo['inv_fee']<$value['cancel_fee']){
  468. Db::rollback();
  469. return error_show(1003,"确认单信息开票金额不足");
  470. }
  471. $update =[
  472. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  473. "inv_fee"=>$qrdinfo['inv_fee']-$value['cancel_fee'],
  474. "inv_status"=>$qrdinfo['ainv_fee']==0 &&($qrdinfo['inv_fee']-$value['cancel_fee'])==0 ? 1 : 2,
  475. "status"=>$qrdinfo['ainv_fee']==0 &&($qrdinfo['inv_fee']-$value['cancel_fee'])==0 ?0 : 1,
  476. "updatetime"=>date("Y-m-d H:i:s"),
  477. ];
  478. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  479. if($qrdup==false){
  480. Db::rollback();
  481. return error_show(1003,"确认单信息更新失败");
  482. }
  483. $assoc=["status"=>3,"updatetime"=>date("Y-m-d H:i:s")];
  484. $assocup =Db::name("assoc")->where($value)->update($assoc);
  485. if($assocup==false){
  486. Db::rollback();
  487. return error_show(1003,"确认单关联信息更新失败");
  488. }
  489. $report=ReportCode::where(["qrdNo"=>$value['orderCode']])->find();
  490. if($report)$report->rmField("invNo",$invinfo['invNo']);
  491. //将数量加回去
  492. Db::name('invoice_good')
  493. ->where([
  494. 'is_del' => 0,
  495. 'invNo' => $invNo,
  496. 'orderCode' => $value['orderCode']
  497. ])
  498. ->dec('goodNum', $qrdinfo['goodNum'])
  499. ->update();
  500. }
  501. }
  502. }
  503. Db::commit();
  504. return app_show(0,"审核成功");
  505. }
  506. Db::rollback();
  507. return error_show(1004,"审核失败");
  508. }catch (\Exception $e){
  509. Db::rollback();
  510. return error_show(1004,$e->getMessage());
  511. }
  512. }
  513. /**
  514. * 发票设置物流
  515. */
  516. public function SetPost(){
  517. // @param invNo postCompany postCode postFee;
  518. $invNo =isset($this->post['invNo'])&&$this->post['invNo']!="" ? trim($this->post['invNo']):"";
  519. if($invNo==''){
  520. return error_show(1004,"参数invNo不能为空");
  521. }
  522. $invinfo =Db::name("invoice_pool")->where(["invNo"=>$invNo,"is_del"=>0])->find();
  523. if($invinfo==false){
  524. return error_show(1004,"发票申请信息未找到");
  525. }
  526. if($invinfo['status']!=4) return error_show(1004,"发票审核未完成");
  527. $post_company =isset($this->post['post_company'])&&$this->post['post_company']!="" ? trim($this->post['post_company']):"";
  528. if($post_company==''){
  529. return error_show(1004,"参数 post_company 不能为空");
  530. }
  531. $post_code =isset($this->post['post_code'])&&$this->post['post_code']!="" ? trim($this->post['post_code']):"";
  532. if($post_code==''){
  533. return error_show(1004,"参数 post_code 不能为空");
  534. }
  535. $post_fee =isset($this->post['post_fee'])&&$this->post['post_fee']!="" ? floatval($this->post['post_fee']):"0";
  536. Db::startTrans();
  537. try{
  538. $data=[
  539. "post_company"=>$post_company,
  540. "post_code"=>$post_code,
  541. "post_fee"=>$post_fee,
  542. "updatetime"=>date("Y-m-d H:i:s")
  543. ];
  544. $up =Db::name("invoice_pool")->where($invinfo)->update($data);
  545. if($up){
  546. $qrdArr=Db::name("assoc")->where(["viceCode"=>$invNo,"status"=>1,"is_del"=>0])->column("id,orderCode,cancel_fee");
  547. if(!empty($qrdArr)){
  548. foreach ($qrdArr as $value){
  549. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  550. if($qrdinfo==false){
  551. Db::rollback();
  552. return error_show(1003,"确认单信息未找到");
  553. }
  554. if($qrdinfo['inv_fee']<$value['cancel_fee']){
  555. Db::rollback();
  556. return error_show(1003,"确认单信息开票金额不足");
  557. }
  558. $update =[
  559. "ainv_fee"=>$qrdinfo['ainv_fee']+$value['cancel_fee'],
  560. "inv_fee"=>$qrdinfo['inv_fee']-$value['cancel_fee'],
  561. "invtime"=>date("Y-m-d H:i:s"),
  562. "inv_status"=>$qrdinfo['winv_fee']==0 &&($qrdinfo['inv_fee']-$value['cancel_fee'])==0 ? 3 : 2,
  563. "updatetime"=>date("Y-m-d H:i:s"),
  564. ];
  565. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  566. if($qrdup==false){
  567. Db::rollback();
  568. return error_show(1003,"确认单信息更新失败");
  569. }
  570. $assoc=["status"=>2,"assoc_time"=>date("Y-m-d H:i:s"),"updatetime"=>date("Y-m-d H:i:s")];
  571. $assocup =Db::name("assoc")->where($value)->update($assoc);
  572. if($assocup==false){
  573. Db::rollback();
  574. return error_show(1003,"确认单关联信息更新失败");
  575. }
  576. }
  577. }
  578. Db::commit();
  579. return app_show(0,"更新成功");
  580. }
  581. Db::rollback();
  582. return error_show(1003,"发票申请信息更新失败");
  583. }catch (\Exception $e){
  584. Db::rollback();
  585. return error_show(1004,$e->getMessage());
  586. }
  587. }
  588. /**
  589. * 发票废弃使用
  590. */
  591. public function Discard(){
  592. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=''?trim($this->post['invNo']):"";
  593. if($invNo=='') return error_show(1004,"参数invNo不能为空");
  594. $invinfo =Db::name("invoice_pool")->where(["invNo"=>$invNo,"is_del"=>0])->find();
  595. if($invinfo==false) return error_show(1004,"未找到对应发票申请数据");
  596. if(!in_array($invinfo['status'],[1,2,3,4,5,8]))return error_show(1004,"发票状态无法废弃");
  597. $company =Db::name("company_info")->where(["companyNo"=>$invinfo['inv_out']])->find();
  598. if($company==false)return error_show(1004,"开票业务公司未找到");
  599. $invoiceinfo =Db::name("invoice_ticket")->where(["invNo"=>$invNo])->find();
  600. if($invoiceinfo==false)return error_show(1004,"发票详细信息未找到");
  601. Db::startTrans();
  602. try{
  603. $invoice=Config::get("invoice");
  604. $tax =new \TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  605. $result=$tax->DeprecateInvoices($company['company_license'],$this->kingInvoice[$invoiceinfo['inv_type']],$invoiceinfo['inv_code'],$invoiceinfo['inv_number'],1);
  606. if(isset($result['ZTDM']) && $result['ZTDM']=='050000'){
  607. $up =Db::name("invoice_pool")->where($invinfo)->update(["status"=>6,"updatetime"=>date("Y-m-d H:i:s")]);
  608. if($up){
  609. $qrdArr=Db::name("assoc")->where(["viceCode"=>$invNo,"is_del"=>0,"status"=>[1,2]])->column("id,orderCode,cancel_fee");
  610. if(!empty($qrdArr)){
  611. foreach ($qrdArr as $value){
  612. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  613. if($qrdinfo==false){
  614. Db::rollback();
  615. return error_show(1003,"确认单信息未找到");
  616. }
  617. if ($invinfo['status']==3){
  618. if($qrdinfo['ainv_fee']<$value['cancel_fee']){
  619. Db::rollback();
  620. return error_show(1003,"确认单信息开票金额不足");
  621. }
  622. $update =[
  623. "ainv_fee"=>$qrdinfo['ainv_fee']-$value['cancel_fee'],
  624. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  625. "inv_status"=>$qrdinfo['ainv_fee']==0 &&$qrdinfo['inv_fee'] ==0 ? 1: 2,
  626. "updatetime"=>date("Y-m-d H:i:s"),
  627. ];
  628. }else{
  629. if($qrdinfo['inv_fee']<$value['cancel_fee']){
  630. Db::rollback();
  631. return error_show(1003,"确认单信息开票金额不足");
  632. }
  633. $update =[
  634. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  635. "inv_fee"=>$qrdinfo['inv_fee']-$value['cancel_fee'],
  636. "inv_status"=>$qrdinfo['ainv_fee']==0 &&($qrdinfo['inv_fee']-$value['cancel_fee']) ==0 ?1 : 2,
  637. "updatetime"=>date("Y-m-d H:i:s"),
  638. ];
  639. }
  640. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  641. if($qrdup==false){
  642. Db::rollback();
  643. return error_show(1003,"确认单信息更新失败");
  644. }
  645. $assoc=["status"=>3,"assoc_time"=>date("Y-m-d H:i:s"),"updatetime"=>date("Y-m-d H:i:s")];
  646. $assocup =Db::name("assoc")->where($value)->update($assoc);
  647. if($assocup==false){
  648. Db::rollback();
  649. return error_show(1003,"确认单关联信息更新失败");
  650. }
  651. }
  652. }
  653. Db::commit();
  654. return app_show(0,"发票废弃成功");
  655. }
  656. }
  657. Db::rollback();
  658. return error_show(1004,"发票废弃失败");
  659. }catch (\Exception $e){
  660. Db::rollback();
  661. return error_show(1004,$e->getMessage());
  662. }
  663. }
  664. /**@param invNo return_reason remark 退票申请
  665. * @return \think\response\Json|void
  666. */
  667. public function ReturnAdd(){
  668. $invNo = isset($this->post['invNo']) && $this->post['invNo']!=''? trim($this->post['invNo']) :'';
  669. if($invNo==""){
  670. return error_show(1004,"参数 invNo 不能为空");
  671. }
  672. $return_reason = isset($this->post['return_reason']) && $this->post['return_reason']!=''? trim($this->post['return_reason']) :'';
  673. $remark = isset($this->post['remark']) && $this->post['remark']!=''? trim($this->post['remark']) :'';
  674. if($return_reason==""){
  675. return error_show(1004,"参数 return_reason 不能为空");
  676. }
  677. if($remark==""){
  678. return error_show(1004,"参数 remark 不能为空");
  679. }
  680. $invinfo = Db::name("invoice_pool")->where(["invNo"=>$invNo,"is_del"=>0])->find();
  681. if($invinfo==false){
  682. return error_show(1004,"发票申请数据未找到");
  683. }
  684. if($invinfo['status']!=4){
  685. return error_show(1004,"发票申请未完成");
  686. }
  687. $qrd =Db::name("assoc")->where(["viceCode"=>$invNo,"status"=>2,"is_del"=>0])->column("orderCode");
  688. if(empty($qrd)){
  689. return error_show(1004,"未找到开票的销售单信息");
  690. }
  691. $isT= Db::name("invoice_return")->where(["invNo"=>$invNo,"status"=>[0,1,2,5]])->findOrEmpty();
  692. if(!empty($isT)) return error_show(1004,"发票退回流程已存在");
  693. $returnCode = makeNo("RIN");
  694. $data=[
  695. "returnCode"=>$returnCode,
  696. "invNo"=>$invNo,
  697. "reason"=>$return_reason,
  698. "remark"=>$remark,
  699. "status"=>0,
  700. "apply_id"=>$this->uid,
  701. "apply_name"=>$this->uname,
  702. "addtime"=>date("Y-m-d H:i:s"),
  703. "updatetime"=>date("Y-m-d H:i:s")
  704. ];
  705. Db::startTrans();
  706. try{
  707. $inter = Db::name("invoice_return")->insert($data);
  708. if($inter){
  709. foreach ($qrd as $value){
  710. $report=ReportCode::where(["qrdNo"=>$value])->find();
  711. if($report)$report->setField("returnInv",$returnCode);
  712. }
  713. Db::commit();
  714. return app_show(0,"退票申请新建成功",["returnCode"=>$returnCode]);
  715. }else{
  716. Db::rollback();
  717. return error_show(1005,"退票申请新建失败");
  718. }
  719. }catch (\Exception $e){
  720. Db::rollback();
  721. return error_show(1006,$e->getMessage());
  722. }
  723. }
  724. // 0 待审核 1 待退票 2 退票成功 3 驳回4 退票失败 5 退票进行中
  725. public function ReturnStatus(){
  726. $returnCode = isset($this->post['returnCode'])&&$this->post['returnCode']!="" ? trim($this->post['returnCode']):"";
  727. if($returnCode==""){
  728. return error_show(1005,"参数 returnCode 不能为空");
  729. }
  730. $status = isset($this->post['status'])&&$this->post['status']!="" ? intval($this->post['status']):"";
  731. if ($status==""){
  732. return error_show(1005,"参数 status 不能为空");
  733. }
  734. $remark =isset($this->post['remark'])&&$this->post['remark']!="" ? trim($this->post['remark']):"";
  735. $return_reason =isset($this->post['return_reason'])&&$this->post['return_reason']!="" ? trim($this->post['return_reason']):"";
  736. $return= Db::name("invoice_return")->where(["returnCode"=>$returnCode])->find();
  737. if($return==false){
  738. return error_show(1005,"退票申请信息未找到");
  739. }
  740. $invinfo = Db::name("invoice_pool")->where(["invNo"=>$return['invNo'],"is_del"=>0])->find();
  741. if($invinfo==false){
  742. return error_show(1004,"发票申请数据未找到");
  743. }
  744. if($invinfo['status']!=4){
  745. return error_show(1004,"发票申请未完成");
  746. }
  747. $qrd =Db::name("assoc")->where(["viceCode"=>$return['invNo'],"status"=>2,"is_del"=>0])->column("orderCode");
  748. if(empty($qrd)){
  749. return error_show(1004,"未找到开票的销售单信息");
  750. }
  751. $ticket = Db::name("invoice_ticket")->where(["invNo"=>$return['invNo'],"type"=>0,"status"=>1,"is_del"=>0])
  752. ->findOrEmpty();
  753. if(empty($ticket)){
  754. return error_show(1004,"未找到开票的票面信息");
  755. }
  756. $ticket['inv_out'] = $invinfo['inv_out']??"";
  757. $return_type = isset($this->post['return_type'])&&$this->post['return_type']!="" ? intval($this->post['return_type']):0;
  758. if($status==1){
  759. if ($return_type==""){
  760. return error_show(1005,"参数 return_type 不能为空");
  761. }
  762. if($return_type==2){
  763. $invCode =isset($this->post['invCode'])&&$this->post['invCode']!=''?trim($this->post['invCode']):"";
  764. $invNum =isset($this->post['invNum'])&&$this->post['invNum']!=''?trim($this->post['invNum']):"";
  765. $open_date =isset($this->post['open_date'])&&$this->post['open_date']!=''?trim($this->post['open_date']):"";
  766. $checkCode =isset($this->post['checkCode'])&&$this->post['checkCode']!=''?trim($this->post['checkCode']):"";
  767. $subtotal_fee =isset($this->post['subtotal_fee'])&&$this->post['subtotal_fee']!=''?floatval($this->post['subtotal_fee']):"";
  768. if($invCode==='') return error_show(1004,"参数 invCode 不能为空");
  769. if($invNum==='') return error_show(1004,"参数 invNum 不能为空");
  770. if($open_date==='') return error_show(1004,"参数 open_date 不能为空");
  771. if(in_array($invinfo['inv_type'],['normal','roll',"toll",'electronic'])){
  772. if($checkCode==='') return error_show(1004,"参数 checkCode 不能为空");
  773. }
  774. if($subtotal_fee==='') return error_show(1004,"参数 subtotal_fee 不能为空");
  775. }
  776. }
  777. //电子普票 只能红冲 不能作废
  778. //电子专票 只能红冲 不能作废
  779. //纸质专票 当月可以作废 次月红冲
  780. //纸质普票 当月作废 次月红冲
  781. //专票 红冲先做红字申请
  782. Db::startTrans();
  783. try{
  784. $isoutmonth =date("Y-m",strtotime($ticket["open_date"]))==date("Y-m")?0:1;
  785. $update=[
  786. "status"=>$status,
  787. "return_reason"=>$return_reason,
  788. "return_type"=>$return_type,
  789. "remark"=>$remark,
  790. "updatetime"=>date("Y-m-d H:i:s")
  791. ];
  792. if($status==1) $update['is_out_month']=$isoutmonth;
  793. $up =Db::name("invoice_return")->where($return)->update($update);
  794. if($up){
  795. if($status==1){
  796. if($return_type==1){
  797. $discard=0;
  798. if(date("Y-m",strtotime($ticket["open_date"]))==date("Y-m")){
  799. //当月纸质普通发票+纸质专用发票 作废
  800. if(in_array($ticket['inv_type'],['004','007'])){
  801. $discard=1;
  802. $result= $this->addDiscard($ticket,$returnCode);
  803. }
  804. //当月电子普票红冲
  805. if($ticket['inv_type']=='026')$result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'], $returnCode);
  806. //当月电子专票红冲
  807. if($ticket['inv_type']=='028')$result= $this->addApplyRed($ticket,$returnCode);
  808. }else{
  809. //跨月票都走红冲
  810. if(in_array($ticket['inv_type'],['007','026'])) $result= $this->addRedOpen($ticket,$return_reason,$invinfo['company_type'], $returnCode);
  811. if(in_array($ticket['inv_type'],['004','028'])) $result= $this->addApplyRed($ticket,$returnCode);
  812. }
  813. if($result['code']==0){
  814. if($discard==1){
  815. $status=2;
  816. }
  817. if(isset($result['data']) &&$result['data']['invRed']!='' ){
  818. $upd=Db::name("invoice_return")->where(["returnCode"=>$returnCode])->update
  819. (['red_inv'=>$result['data']['invRed'],"updatetime"=>date("Y-m-d H:i:s")]);
  820. if($upd==false) throw new \Exception("退票更新失败");
  821. }
  822. }
  823. }else{
  824. $invpool=[
  825. "invNo"=>$invinfo['invNo'],
  826. "type"=>1,
  827. "inv_type"=>$ticket['inv_type'],
  828. "inv_code"=>$invCode,
  829. "inv_number"=>$invNum,
  830. "check_code"=>$checkCode,
  831. "inv_total"=>0,
  832. "inv_subtotal"=>$subtotal_fee,
  833. "open_date"=>$open_date,
  834. "item"=>'',
  835. 'pdfstream'=>'',
  836. "status"=>0,
  837. "addtime"=>date("Y-m-d H:i:s"),
  838. "updatetime"=>date("Y-m-d H:i:s")
  839. ];
  840. $in = Db::name("invoice_ticket")->insert($invpool);
  841. if($in==false)throw new \Exception("退票信息添加失败");
  842. }
  843. }
  844. if($status==2){
  845. $qrdArr=Db::name("assoc")->where(["viceCode"=>$return['invNo'],"is_del"=>0,"status"=>2])->column("id,orderCode,cancel_fee");
  846. if(!empty($qrdArr)){
  847. foreach ($qrdArr as $value){
  848. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  849. if($qrdinfo==false){
  850. throw new Exception("确认单信息未找到");
  851. // return error_show(1003,"确认单信息未找到");
  852. }
  853. if($qrdinfo['ainv_fee']<$value['cancel_fee']){
  854. throw new Exception("确认单信息开票金额不足");
  855. // return error_show(1003,"确认单信息开票金额不足");
  856. }
  857. $update =[
  858. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  859. "ainv_fee"=>$qrdinfo['ainv_fee']-$value['cancel_fee'],
  860. "inv_status"=>$qrdinfo['inv_fee']==0 &&$qrdinfo['ainv_fee']-$value['cancel_fee']==0 ? 1 : 2,
  861. "status"=>$qrdinfo['ainv_fee']==0 &&$qrdinfo['inv_fee']-$value['cancel_fee']==0&&$qrdinfo['pay_status']==1 ?0 : 1,
  862. "updatetime"=>date("Y-m-d H:i:s"),
  863. ];
  864. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  865. if($qrdup==false){
  866. throw new Exception("确认单信息更新失败");
  867. // return error_show(1003,"确认单信息更新失败");
  868. }
  869. $assoc=["status"=>3,"updatetime"=>date("Y-m-d H:i:s")];
  870. $assocup =Db::name("assoc")->where($value)->update($assoc);
  871. if($assocup==false){
  872. throw new Exception("确认单关联信息更新失败");
  873. // return error_show(1003,"确认单关联信息更新失败");
  874. }
  875. }
  876. }else{
  877. throw new Exception("未找到关联订单数据信息");
  878. }
  879. }
  880. if($status==3 || $status==4){
  881. foreach ($qrd as $value){
  882. $report=ReportCode::where(["qrdNo"=>$value])->find();
  883. if($report)$report->rmField("returnInv",$returnCode);
  884. }
  885. }
  886. Db::commit();
  887. return app_show(0,"退票申请信息更新成功");
  888. }
  889. Db::rollback();
  890. return error_show(1005,"退票申请信息更新失败");
  891. }catch (\Exception $e){
  892. Db::rollback();
  893. return error_show(1005,$e->getMessage());
  894. }
  895. }
  896. //红冲票
  897. private function addDiscard($ticket=[],$returnCode){
  898. $invoice=Config::get("invoice");
  899. $tax =new \TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  900. $result=$tax->DeprecateInvoices($ticket['seller_id'],$ticket['inv_type'],$ticket['inv_code'],$ticket['inv_number'],1);
  901. if(isset($result['ZTDM']) && ($result['ZTDM']=='050000' || $result['ZTDM']=='053000')){
  902. if($result['ZTDM']=='053000'){
  903. $up= Db::name("invoice_return")->where(['returnCode'=>$returnCode])->update(["discard"=>2,"updatetime"=>date("Y-m-d H:i:s")]);
  904. if($up==false)throw new \Exception('发票废弃中,信息更新失败', 1006);
  905. return ["code"=>1,"message"=>"发票废弃中"];
  906. }else{
  907. $ups=Db::name("invoice_return")->where(['returnCode'=>$returnCode])->update(["status"=>2,"discard"=>1,"updatetime"=>date("Y-m-d H:i:s")]);
  908. if($ups==false)throw new \Exception('发票已废弃,信息更新失败', 1006);
  909. $up =Db::name("invoice_pool")->where(['invNo'=>$ticket['invNo']])->update(["status"=>6,"updatetime"=>date("Y-m-d H:i:s")]);
  910. if($up==false)throw new \Exception('发票已废弃,信息更新失败', 1006);
  911. return ["code"=>0,"message"=>"发票废弃成功"];
  912. }
  913. }else{
  914. throw new \Exception($result['ZTXX'], 1006);
  915. }
  916. }
  917. //退票详情
  918. /**
  919. * @param array $ticket
  920. * @return \think\response\Json|void
  921. * @throws \think\Exception
  922. */
  923. private function addRedOpen($ticket=[],$return_reason,$company_type,$returnCode){
  924. $goodinfo =Db::name("invoice_good")
  925. ->where(["invNo"=>$ticket['invNo'],"is_del"=>0])
  926. ->field("0 as FPHXZ,
  927. catNo as SPBM,
  928. id as ZXBM,
  929. is_discount as YHZCBS,
  930. if(inv_tag=0,'',inv_tag) as LSLBS,
  931. addTax as ZZSTSGL,
  932. goodName as XMMC,
  933. '' as DW,
  934. '' as SPSL,
  935. '' as DJ,
  936. (-totalPrice) as JE,
  937. 0 HSBZ,
  938. tax as SL,
  939. -taxPrice as SE")->select()->toArray();
  940. if(empty($goodinfo)){
  941. throw new \Exception("开票商品信息未找到", 10006);
  942. }
  943. if(count($goodinfo)>8){
  944. $len =array_unique(array_column($goodinfo,'SL'));
  945. $qdmx=["FPHXZ"=>6,
  946. "SPBM"=>'',
  947. "XMMC"=>"详见对应正数发票及清单",
  948. "YHZCBS"=>0,
  949. "LSLBS"=>'',
  950. "ZZSTSGL"=>'',
  951. "DW"=>'',
  952. "SPSL"=>'',
  953. "DJ"=>'',
  954. "JE"=>sprintf("%01.2f", (array_sum(array_column($goodinfo,'JE')))),
  955. "HSBZ"=>'0',
  956. "SL"=>count($len)>1?'':$len[0],
  957. "SE"=>sprintf("%01.2f",array_sum(array_column($goodinfo,'SE'))),
  958. ];
  959. }else
  960. {$qdmx=$goodinfo;}
  961. $invRed=makeNo("IRE");
  962. $reddata=[
  963. 'invNo'=>$ticket['invNo'],
  964. "invRed"=>$invRed,
  965. "inv_out"=>$ticket['inv_out'],
  966. "returnCode"=>$returnCode,
  967. "apply_id"=>$this->uid,
  968. "apply_name"=>$this->uname,
  969. "status"=>3,
  970. "remark"=>'',
  971. "addtime"=>date("Y-m-d H:i:s"),
  972. "updatetime"=>date("Y-m-d H:i:s"),
  973. "SQBSCQQLSH"=>'',
  974. "YYSBZ"=> "0000000000", //营业税标志
  975. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  976. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  977. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  978. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  979. "TKSJ"=>date("YmdHis"), //填开时间
  980. "XHFSBH"=>$ticket['seller_id'],
  981. "XHFMC"=>$ticket['seller_title'],
  982. "GMFSBH"=>$ticket['buyer_id'],
  983. "GMFMC"=> $ticket['buyer_title'],
  984. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  985. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  986. "SQSM"=>"1100000000", //申请说明
  987. "XXBTSBS"=>"0",
  988. "DDMXXX"=>json_encode($goodinfo,JSON_UNESCAPED_UNICODE),
  989. "SQBSCQQPCH"=>'',
  990. "FPLXDM"=>$ticket['inv_type'],
  991. ];
  992. $data=[ "invNo"=>$invRed,
  993. "KPLX"=>"1",
  994. "XHFSBH"=>$ticket['seller_id'],
  995. "XHFMC"=>$ticket['seller_title'],
  996. "XHFDZ"=>$ticket['seller_addr'],
  997. "XHFDH"=>$ticket['seller_mobile'],
  998. "XHFYH"=>$ticket['seller_bank'],
  999. "XHFZH"=>$ticket['seller_bankNo'],
  1000. "GMFBM"=>"",
  1001. "GMFSBH"=>$ticket['buyer_id'],
  1002. "GMFMC"=>$ticket['buyer_title'],
  1003. "GMFDZ"=>$ticket['buyer_addr'],
  1004. "GMFDH"=>$ticket['buyer_mobile'],
  1005. "GMFYH"=>$ticket['buyer_bank'],
  1006. "GMFZH"=>$ticket['buyer_bankNo'],
  1007. "GMFLX"=>$company_type,
  1008. "GMFSJH"=>"",
  1009. "GMFDZYX"=>'',
  1010. "KPR"=>$ticket['issuer'],
  1011. "SKR"=>$ticket['reciver'],
  1012. "FHR"=>$ticket['reviewer'],
  1013. "QDBZ"=>"0",
  1014. "YFPDM"=>$ticket['inv_code'],
  1015. "YFPHM"=>$ticket['inv_number'],
  1016. "YFPLX"=>$ticket['inv_type'],
  1017. "YFPKPRQ"=>date("Y-m-d",strtotime($ticket['open_date'])),
  1018. "CHYY"=>$return_reason,
  1019. "TSCHBZ"=>"0",
  1020. "JSHJ"=>"-".$ticket['inv_total'],
  1021. "HJJE"=>"-".$ticket['inv_subtotal'],
  1022. "HJSE"=>"-".$ticket['tax_fee'],
  1023. "BZ"=> "对应正数发票代码:{$ticket['inv_code']} 号码:{$ticket['inv_number']}",
  1024. "DDMXXX"=>json_encode($qdmx,JSON_UNESCAPED_UNICODE),
  1025. "FPLXDM"=>$ticket['inv_type'],
  1026. "DDQQPCH"=>"",
  1027. "DDQQLSH"=>randomkeys(26).date("YmdHis"),
  1028. "status"=>"0",
  1029. "result"=>"",
  1030. "addtime"=>date("Y-m-d H:i:s"),
  1031. "updatetime"=>date("Y-m-d H:i:s")
  1032. ];
  1033. $invoice=Db::name("invoice_interface")->insert($data);
  1034. if($invoice==false){
  1035. throw new Exception("红冲提交失败",1006);
  1036. }
  1037. $upred=Db::name("invoice_red")->save($reddata);
  1038. if($upred==false){
  1039. throw new Exception("红冲提交失败",1006);
  1040. }
  1041. return ["code"=>0,"message"=>"红冲申请提交成功","invRed"=>$invRed];
  1042. }
  1043. /**
  1044. * @param array $ticket
  1045. * @return \think\response\Json|void
  1046. * @throws \think\db\exception\DataNotFoundException
  1047. * @throws \think\db\exception\DbException
  1048. * @throws \think\db\exception\ModelNotFoundException
  1049. */
  1050. private function addApplyRed($ticket=[],$returnCode){
  1051. $invoice=Config::get("invoice");
  1052. $Tax =new \TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  1053. $redticketList=[];
  1054. $redticketArry=[
  1055. "SQBSCQQPCH"=>randomkeys(26).date("YmdHis"),
  1056. "NSRSBH"=>$ticket['seller_id'],
  1057. "FPLXDM"=>$ticket['inv_type'],
  1058. ];
  1059. $goodinfo =Db::name("invoice_good")
  1060. ->where(["invNo"=>$ticket['invNo'],"is_del"=>0])
  1061. ->field("0 as FPHXZ,
  1062. catNo as SPBM,
  1063. id as ZXBM,
  1064. is_discount as YHZCBS,
  1065. if(inv_tag=0,'',inv_tag) as LSLBS,
  1066. addTax as ZZSTSGL,
  1067. goodName as XMMC,
  1068. '' as DW,
  1069. '' as SPSL,
  1070. '' as DJ,
  1071. (-totalPrice) as JE,
  1072. 0 HSBZ,
  1073. tax as SL,
  1074. -taxPrice as SE")->select()->toArray();
  1075. if(empty($goodinfo)){
  1076. throw new \Exception("开票商品信息未找到", 10006);
  1077. }
  1078. if(count($goodinfo)>8){
  1079. $len =array_unique(array_column($goodinfo,'SL'));
  1080. $qdmx=["FPHXZ"=>6,
  1081. "SPBM"=>'',
  1082. "XMMC"=>"详见对应正数发票及清单",
  1083. "YHZCBS"=>0,
  1084. "LSLBS"=>'',
  1085. "ZZSTSGL"=>'',
  1086. "DW"=>'',
  1087. "SPSL"=>'',
  1088. "DJ"=>'',
  1089. "JE"=>sprintf("%01.2f", (array_sum(array_column($goodinfo,'JE')))),
  1090. "HSBZ"=>'0',
  1091. "SL"=>count($len)>1?'':$len[0],
  1092. "SE"=>sprintf("%01.2f",array_sum(array_column($goodinfo,'SE'))),
  1093. ];
  1094. }else
  1095. {
  1096. $qdmx=$goodinfo;
  1097. }
  1098. $info=[
  1099. "SQBSCQQLSH"=>randomkeys(26).date("YmdHis"),
  1100. "YYSBZ"=> "0000000000", //营业税标志
  1101. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  1102. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  1103. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  1104. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  1105. "TKSJ"=>date("YmdHis"), //填开时间
  1106. "XHFSBH"=>$ticket['seller_id'],
  1107. "XHFMC"=>$ticket['seller_title'],
  1108. "GMFSBH"=>$ticket['buyer_id'],
  1109. "GMFMC"=> $ticket['buyer_title'],
  1110. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  1111. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  1112. "SQSM"=>"1100000000", //申请说明
  1113. "XXBTSBS"=>"0",
  1114. //0: 正常;1:成品油发票,涉及销售数量 变更(销货退回、开票有误等原因);2: 成品油发票,仅涉及销售金额变更(销 售折让);3:机动车发票,仅涉及销售数
  1115. //量变更(销货退回、开票有误等原因);4: 机动车发票,仅涉及销售金额变更(销 售折让)
  1116. ];
  1117. $invRed=makeNo("IRE");
  1118. $data=[
  1119. 'invNo'=>$ticket['invNo'],
  1120. "invRed"=>$invRed,
  1121. "inv_out"=>$ticket['inv_out'],
  1122. "returnCode"=>$returnCode,
  1123. "apply_id"=>$this->uid,
  1124. "apply_name"=>$this->uname,
  1125. "status"=>0,
  1126. "remark"=>'',
  1127. "addtime"=>date("Y-m-d H:i:s"),
  1128. "updatetime"=>date("Y-m-d H:i:s"),
  1129. "SQBSCQQLSH"=>$info['SQBSCQQLSH'],
  1130. "YYSBZ"=> "0000000000", //营业税标志
  1131. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  1132. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  1133. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  1134. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  1135. "TKSJ"=>date("YmdHis"), //填开时间
  1136. "XHFSBH"=>$ticket['seller_id'],
  1137. "XHFMC"=>$ticket['seller_title'],
  1138. "GMFSBH"=>$ticket['buyer_id'],
  1139. "GMFMC"=> $ticket['buyer_title'],
  1140. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  1141. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  1142. "SQSM"=>"1100000000", //申请说明
  1143. "XXBTSBS"=>"0",
  1144. "DDMXXX"=>json_encode($qdmx,JSON_UNESCAPED_UNICODE),
  1145. "SQBSCQQPCH"=>$redticketArry['SQBSCQQPCH'],
  1146. "FPLXDM"=>$ticket['inv_type'],
  1147. ];
  1148. $redticketList[]=["HZSQDTXX"=>$info,"DDMXXX"=>$qdmx];
  1149. $result=$Tax->AllocateRedInvoiceApplication($redticketArry,$redticketList);
  1150. $data['status']=5;
  1151. $data['remark']='红冲申请提交失败';
  1152. if(isset($result['ZTDM']) && $result['ZTDM']=='060000'){
  1153. $resultChild=$result['HZSQDSCJG'][0];
  1154. if($resultChild['ZTDM']=='060000'){
  1155. $data['status']=2;
  1156. $data['XXBBH']=$resultChild['XXBBH'];
  1157. $data['remark']='红冲申请审核通过';
  1158. }
  1159. if($resultChild['ZTDM']=='060001'){
  1160. $data['status']=1;
  1161. $data['XXBBH']=$resultChild['XXBBH'];
  1162. $data['remark']='红冲申请审核中';
  1163. }
  1164. }
  1165. if($data['status']==5){
  1166. throw new \Exception($result['ZTXX'], 10006);
  1167. }
  1168. $up =Db::name("invoice_red")->insert($data);
  1169. if($up) return ["code"=>0,"message"=>"红冲发票申请新建成功","invRed"=>$invRed];
  1170. else throw new \Exception($result['ZTXX'], 1006);
  1171. }
  1172. //获取发票详情
  1173. public function returnRed(){
  1174. $returnCode = isset($this->post['returnCode'])&&$this->post['returnCode']!="" ? trim($this->post['returnCode']):"";
  1175. if($returnCode==""){
  1176. return error_show(1005,"参数 returnCode 不能为空");
  1177. }
  1178. $return= Db::name("invoice_return")->where(["returnCode"=>$returnCode])->find();
  1179. if($return==false){
  1180. return error_show(1005,"退票申请信息未找到");
  1181. }
  1182. $redinv =isset($this->post['redinv'])&&$this->post['redinv']!="" ? trim($this->post['redinv']):"";
  1183. if($redinv==""){
  1184. return error_show(1005,"参数 redinv 不能为空");
  1185. }
  1186. $red =Db::name("invoice_red")->where(["invRed"=>$redinv,"is_del"=>0])->findOrEmpty();
  1187. if(empty($red)) return error_show(1005,"红冲发票信息未找到");
  1188. if($red['status']!=4) return error_show(1005,"红冲发票开票未完成");
  1189. $invinfo = Db::name("invoice_pool")->where(["invNo"=>$return['invNo'],"is_del"=>0])->find();
  1190. if($invinfo==false){
  1191. return error_show(1005,"发票申请信息未找到");
  1192. }
  1193. Db::startTrans();
  1194. try{
  1195. $update=["status"=>2,"red_inv"=>$redinv,"updatetime"=>date("Y-m-d H:i:s")];
  1196. $up =Db::name("invoice_return")->where($return)->update($update);
  1197. if($up){
  1198. $invup = ["status"=>6,"updatetime"=>date("Y-m-d H:i:s")];
  1199. $inv=Db::name("invoice_pool")->where($invinfo)->update($invup);
  1200. if($inv){
  1201. $qrdArr=Db::name("assoc")->where(["viceCode"=>$return['invNo'],"is_del"=>0])->column("id,orderCode,cancel_fee");
  1202. if(!empty($qrdArr)){
  1203. foreach ($qrdArr as $value){
  1204. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  1205. if($qrdinfo==false){
  1206. Db::rollback();
  1207. return error_show(1003,"确认单信息未找到");
  1208. }
  1209. if($qrdinfo['inv_fee']<$value['cancel_fee']){
  1210. Db::rollback();
  1211. return error_show(1003,"确认单信息开票金额不足");
  1212. }
  1213. $update =[
  1214. "winv_fee"=>$qrdinfo['winv_fee']+$value['cancel_fee'],
  1215. "inv_fee"=>$qrdinfo['inv_fee']-$value['cancel_fee'],
  1216. "inv_status"=>$qrdinfo['ainv_fee']==0 &&$qrdinfo['inv_fee']-$value['cancel_fee']==0 ? 1 : 2,
  1217. "status"=>$qrdinfo['ainv_fee']==0 &&$qrdinfo['inv_fee']-$value['cancel_fee']==0 && $qrdinfo['pay_status'] ?0 : 1,
  1218. "updatetime"=>date("Y-m-d H:i:s"),
  1219. ];
  1220. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  1221. if($qrdup==false){
  1222. Db::rollback();
  1223. return error_show(1003,"确认单信息更新失败");
  1224. }
  1225. $assoc=["status"=>3,"updatetime"=>date("Y-m-d H:i:s")];
  1226. $assocup =Db::name("assoc")->where($value)->update($assoc);
  1227. if($assocup==false){
  1228. Db::rollback();
  1229. return error_show(1003,"确认单关联信息更新失败");
  1230. }
  1231. }
  1232. }
  1233. Db::commit();
  1234. return app_show(0,"退票申请信息更新成功");
  1235. }
  1236. }
  1237. Db::rollback();
  1238. return error_show(1005,"退票申请信息更新失败");
  1239. }catch (\Exception $e){
  1240. Db::rollback();
  1241. return error_show(1005,$e->getMessage());
  1242. }
  1243. }
  1244. //开票异常失败后修改票面信息
  1245. public function returnInfo(){
  1246. $returnCode = isset($this->post['returnCode'])&&$this->post['returnCode']!="" ? trim($this->post['returnCode']):"";
  1247. if($returnCode==""){
  1248. return error_show(1005,"参数 returnCode 不能为空");
  1249. }
  1250. $return= Db::name("invoice_return")->where(["returnCode"=>$returnCode])->find();
  1251. if($return==false){
  1252. return error_show(1005,"退票申请信息未找到");
  1253. }
  1254. $invinfo = Db::name("invoice_pool")->where(["invNo"=>$return['invNo'],"is_del"=>0])->find();
  1255. $return['inv_out']= $invinfo['inv_out']??"";
  1256. $return['inv_value']= $invinfo['inv_value']??"";
  1257. $return['inv_apply_id']= $invinfo['apply_id']??"";
  1258. $return['inv_apply_name']= $invinfo['apply_name']??"";
  1259. $return['inv_type']= $invinfo['inv_type']??"";
  1260. $return['open_type']= $invinfo['open_type']??"";
  1261. $return['is_ticket']= $invinfo['is_ticket']??"";
  1262. $return['email']= $invinfo['email']??"";
  1263. $return['post_code']= $invinfo['post_code']??"";
  1264. $return['post_company']= $invinfo['post_company']??"";
  1265. $return['check_remark']= $invinfo['check_remark']??"";
  1266. $poolinfo = Db::name("invoice_pool_info")->where(["invNo"=>$return['invNo']])->find();
  1267. $return['buyer_title'] = $poolinfo['buyer_title']??'';
  1268. $return['buyer_title'] = $poolinfo['buyer_title']??'';
  1269. $return['buyer_code'] = $poolinfo['buyer_code']??'';
  1270. $return['buyer_addr'] = $poolinfo['buyer_addr']??'';
  1271. $return['buyer_mobile'] = $poolinfo['buyer_mobile']??'';
  1272. $return['buyer_bank'] = $poolinfo['buyer_bank']??'';
  1273. $return['buyer_bankNo'] = $poolinfo['buyer_bankNo']??'';
  1274. $return['seller_title'] = $poolinfo['seller_title']??'';
  1275. $return['seller_addr'] = $poolinfo['seller_addr']??'';
  1276. $return['seller_code'] = $poolinfo['seller_code']??'';
  1277. $return['seller_mobile'] = $poolinfo['seller_mobile']??'';
  1278. $return['seller_bank'] = $poolinfo['seller_bank']??'';
  1279. $return['seller_bankNo'] = $poolinfo['seller_bankNo']??'';
  1280. $return['voider'] = $poolinfo['voider']??'';
  1281. $return['payee'] = $poolinfo['payee']??'';
  1282. $return['drawer'] = $poolinfo['drawer']??'';
  1283. $return['reviewer'] = $poolinfo['reviewer']??'';
  1284. $return['ownerPlace'] = $poolinfo['ownerPlace']??'';
  1285. $orderList =Db::name("invoice_good")->where(["invNo"=>$return['invNo'],"is_del"=>0])->select()->toArray();
  1286. $return['goodList']=$orderList;
  1287. $info =Db::name("invoice_ticket")->where(["invNo"=>$return['invNo'],"is_del"=>0,"type"=>1]) ->field("inv_subtotal,inv_total,check_code,inv_number,inv_code,open_date")->find();
  1288. $return['inv_number']=$info['inv_number']??"";
  1289. $return['inv_code']=$info['inv_code']??"";
  1290. $return['open_date']=date("Y-m-d",strtotime($info['open_date']));
  1291. $return['inv_subtotal']=$info['inv_subtotal']??"";
  1292. $return['inv_total']=$info['inv_total']??"";
  1293. $return['check_code']=$info['check_code']??"";
  1294. if(!in_array($return['status'],[2,3,4,5])){
  1295. $opendate =$info['open_date']??"";;
  1296. if($opendate!=''){
  1297. $open_month =date("Y-m",strtotime($opendate));
  1298. $return['is_out_month']= $open_month==date("Y-m")?0:1;
  1299. }
  1300. }
  1301. return app_show(0,"获取成功",$return);
  1302. }
  1303. //退票列表
  1304. /**
  1305. *发票池列表
  1306. */
  1307. public function list(){
  1308. $page=isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) :1;
  1309. $size=isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :15;
  1310. $condition=[["a.is_del","=",0]];
  1311. $start = isset($this->post['start'])&&$this->post['start']!="" ? trim($this->post['start']) :"";
  1312. $end = isset($this->post['end'])&&$this->post['end']!="" ? trim($this->post['end']) :"";
  1313. if($start!=""){
  1314. $condition[]=["a.addtime",">=",$start." 00:00:00"];
  1315. }
  1316. if($end!=""){
  1317. $condition[]=["a.addtime","<=",$end." 23:59:59"];
  1318. }
  1319. $status= isset($this->post['status'])&&$this->post['status']!=="" ? intval($this->post['status']):"";
  1320. if($status!==""){
  1321. $condition[]=["a.status","=",$status];
  1322. }
  1323. $inv_type = isset($this->post['inv_type'])&&$this->post['inv_type']!=="" ? trim($this->post['inv_type']):"";
  1324. if($inv_type!==""){
  1325. $condition[]=["a.inv_type","=",$inv_type];
  1326. }
  1327. $inv_out= isset($this->post['inv_out'])&&$this->post['inv_out']!=="" ? trim($this->post['inv_out']):"";
  1328. if($inv_out!==""){
  1329. $condition[]=["a.inv_out","=",$inv_out];
  1330. }
  1331. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=="" ? trim($this->post['invNo']):"";
  1332. if($invNo!==""){
  1333. $condition[]=["a.invNo","like","%$invNo%"];
  1334. }
  1335. $relaComNo= isset($post['relaComNo'])&&$post['relaComNo']!="" ? trim($post['relaComNo']) :"";
  1336. if($relaComNo!=""){
  1337. $condition[]=["a.inv_out","=",$relaComNo];
  1338. }
  1339. $inv_number = isset($this->post['inv_number'])&&$this->post['inv_number']!=="" ? trim($this->post['inv_number']):"";
  1340. if($inv_number!==""){
  1341. $condition[]=["c.inv_number","like","%$inv_number%"];
  1342. }
  1343. $inv_code = isset($this->post['inv_code'])&&$this->post['inv_code']!=="" ? trim($this->post['inv_code']):"";
  1344. if($inv_code!==""){
  1345. $condition[]=["c.inv_code","like","%$inv_code%"];
  1346. }
  1347. $inv_company = isset($this->post['inv_company'])&&$this->post['inv_company']!=="" ? trim($this->post['inv_company']):"";
  1348. if($inv_company!==""){
  1349. $condition[]=["a.inv_company","like","%$inv_company%"];
  1350. }
  1351. $buyer_name = isset($this->post['buyer_name'])&&$this->post['buyer_name']!=="" ? trim($this->post['buyer_name']):"";
  1352. if($buyer_name!==""){
  1353. $condition[]=["b.buyer_title","like","%$buyer_name%"];
  1354. }
  1355. $apply_id = isset($this->post['apply_id'])&&$this->post['apply_id']!=="" ? intval($this->post['apply_id']):"";
  1356. if($apply_id!==""){
  1357. $condition[]=["a.apply_id","=",$apply_id];
  1358. }
  1359. $apply_name = isset($this->post['apply_name'])&&$this->post['apply_name']!==""?trim($this->post['apply_name']) :"";
  1360. if($apply_name!==""){
  1361. $condition[]=["a.apply_name","like","%$apply_name%"];
  1362. }
  1363. $count=Db::name("invoice_pool")->alias("a")
  1364. ->leftJoin("invoice_pool_info b","a.invNo=b.invNo")
  1365. ->leftJoin("invoice_ticket c","a.invNo=c.invNo and c.type=0")
  1366. ->where($condition)->count();
  1367. $total =ceil($count/$size);
  1368. $page= $page>$total ? intval($total):$page;
  1369. $list=Db::name("invoice_pool")->alias("a")
  1370. ->leftJoin("invoice_pool_info b","a.invNo=b.invNo")
  1371. ->leftJoin("invoice_ticket c","a.invNo=c.invNo and c.type=0 and c.is_del=0")
  1372. ->where($condition)->field("b.*,a.*,c.inv_code,c.inv_number,c.open_date,c.type")
  1373. ->page($page,$size)->order("a.addtime desc")->select()->toArray();
  1374. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  1375. }
  1376. //红冲申请
  1377. public function info(){
  1378. $invNo = isset($this->post['invNo'])&& $this->post['invNo']!='' ? trim($this->post['invNo']):"";
  1379. if($invNo==''){
  1380. return error_show(1004,"参数 invNo 不能为空");
  1381. }
  1382. $poolinfo =Db::name("invoice_pool")->where([["invNo","=",$invNo],["is_del","=",0]])->findOrEmpty();
  1383. if(empty($poolinfo)){
  1384. return error_show(1004,"为找到开票信息");
  1385. }
  1386. $pool = Db::name("invoice_pool_info")->where(["invNo"=>$invNo])->find();
  1387. $poolinfo['buyer_title'] = $pool['buyer_title']??'';
  1388. $poolinfo['buyer_code'] = $pool['buyer_code']??'';
  1389. $poolinfo['buyer_addr'] = $pool['buyer_addr']??'';
  1390. $poolinfo['buyer_mobile'] = $pool['buyer_mobile']??'';
  1391. $poolinfo['buyer_bank'] = $pool['buyer_bank']??'';
  1392. $poolinfo['buyer_bankNo'] = $pool['buyer_bankNo']??'';
  1393. $poolinfo['seller_title'] = $pool['seller_title']??'';
  1394. $poolinfo['seller_addr'] = $pool['seller_addr']??'';
  1395. $poolinfo['seller_code'] = $pool['seller_code']??'';
  1396. $poolinfo['seller_mobile'] = $pool['seller_mobile']??'';
  1397. $poolinfo['seller_bank'] = $pool['seller_bank']??'';
  1398. $poolinfo['seller_bankNo'] = $pool['seller_bankNo']??'';
  1399. $poolinfo['voider'] = $pool['voider']??'';
  1400. $poolinfo['payee'] = $pool['payee']??'';
  1401. $poolinfo['drawer'] = $pool['drawer']??'';
  1402. $poolinfo['reviewer'] = $pool['reviewer']??'';
  1403. $poolinfo['ownerPlace'] = $pool['ownerPlace']??'';
  1404. $orderList =Db::name("invoice_good")->where(["invNo"=>$invNo,"is_del"=>0])->column("*","orderCode");
  1405. $poolinfo['goodList']=$orderList;
  1406. $poolinfo['invinfo']=Db::name("invoice_ticket")->withoutField("pdfstream")->where(["invNo"=>$invNo,"type"=>0,"is_del"=>0])
  1407. ->findOrEmpty();
  1408. $orderinfo = Db::name("assoc")->alias("a")->leftJoin("qrd_info c","a.orderCode=c.sequenceNo")
  1409. ->where(["a.viceCode"=>$invNo,"a.is_del"=>0,"a.status"=>[1,2]])
  1410. ->order("a.addtime desc")
  1411. ->field("c.*,a.cancel_fee")
  1412. ->select()->toArray();
  1413. foreach ($orderinfo as &$item){
  1414. $item['ainv_num'] = Db::name("invoice_pool")
  1415. ->alias("a")
  1416. ->leftJoin("invoice_good b", "a.invNo=b.invNo and b.is_del=0")
  1417. ->where(["a.status" => [0, 1, 2, 3], "b.orderCode" => $item['sequenceNo']])
  1418. ->where('a.invNo', '<>', $invNo)
  1419. ->sum("b.goodNum");
  1420. $item['winv_num'] = $item['goodNum'] - $item['ainv_num'];
  1421. $item['inv_num'] = $orderList[$item['sequenceNo']]['goodNum'];
  1422. }
  1423. $poolinfo['orderinfo']=$orderinfo;
  1424. return app_show(0,"获取成功",$poolinfo);
  1425. }
  1426. //批量申请红冲发票
  1427. public function TicketEdit(){
  1428. $post=$this->request->only([
  1429. "invNo"=>"", //开票申请编号
  1430. "inv_code"=>"",//发票编码
  1431. "inv_number"=>"",//发票号码
  1432. "inv_subtotal"=>"",//发票税前额度
  1433. "inv_total"=>"",//发票额度
  1434. "open_date"=>"",//开票日期
  1435. "check_code"=>"",//发票校验码
  1436. ],"post","trim");
  1437. $valid=Validate::rule([
  1438. "invNo|开票申请编号"=>"require|max:255",
  1439. "inv_code|开票代码"=>"number",
  1440. "inv_number|开票编号"=>"number",
  1441. "inv_subtotal|不含税金额"=>"float",
  1442. "inv_total|价税合计"=>"float",
  1443. "open_date|开票日期"=>"date",
  1444. "check_code|校验码"=>"max:255",
  1445. ]);
  1446. if($valid->check($post)==false) return error_show(1004,$valid->getError());
  1447. $ticketinfo =Db::name("invoice_ticket")->where(["invNo"=>$post['invNo'],"is_del"=>0,"type"=>0])->findOrEmpty();
  1448. if(empty($ticketinfo)) return error_show(1004,"未找到开票数据");
  1449. $pool = Db::name("invoice_pool")->where(["invNo"=>$post['invNo'],"is_del"=>0,"status"=>[5,9]])->findOrEmpty();
  1450. if(empty($pool)) return error_show(1004,"开票申请数据不可修改");
  1451. if($pool['open_type']==1)return error_show(1004,"金税开票数据不可修改");
  1452. if($post['inv_number']==='') return error_show(1004,"参数 inv_number不能为空");
  1453. if($post['open_date']==='') return error_show(1004,"参数 open_date 不能为空");
  1454. if(in_array($pool['inv_type'],['normal','roll',"toll",'electronic'])){
  1455. if($post['check_code']==='') return error_show(1004,"参数 check_code不能为空");
  1456. }
  1457. //全电子发票
  1458. if(in_array($pool['inv_type'],['fully_digitalized_special_electronic','fully_digitalized_normal_electronic'])){
  1459. //全电发票传含税金额
  1460. if($post['inv_total']=='') return error_show(1004,"参数 inv_total 不能为空");
  1461. }else{
  1462. //全电发票无invCode
  1463. if($post['inv_code']==='') return error_show(1004,"参数 inv_code不能为空");
  1464. if($post['inv_subtotal']==='') return error_show(1004,"参数 inv_subtotal 不能为空");
  1465. }
  1466. Db::startTrans();
  1467. try{
  1468. $Ticket=[
  1469. "inv_code"=>$post['inv_code'],//发票编码
  1470. "inv_number"=>$post['inv_number'],//发票号码
  1471. "inv_subtotal"=>$post['inv_subtotal'],//发票税前额度
  1472. "inv_total"=>$post['inv_total'],//发票额度
  1473. "open_date"=>$post['open_date'],//开票日期
  1474. "check_code"=>$post['check_code'],//发票校验码
  1475. "status"=>0,//带校验
  1476. "updatetime"=>date("Y-m-d H:i:s")//发票校验码
  1477. ];
  1478. $ticket =Db::name("invoice_ticket")->where($ticketinfo)->update($Ticket);
  1479. if($ticket==false) throw new \Exception("开票信息更新失败");
  1480. $polup =Db::name("invoice_pool")->where($pool)->update(["status"=>3,"check_remark"=>"","updatetime"=>date("Y-m-d H:i:s")]);
  1481. if($polup==false) throw new \Exception("开票申请信息更新失败");
  1482. Db::commit();
  1483. return app_show(0,"开票信息更新成功");
  1484. }catch (Exception $e){
  1485. Db::rollback();
  1486. return error_show(1005,$e->getMessage());
  1487. }
  1488. }
  1489. //红票申请开票
  1490. public function returnList(){
  1491. $page=isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) :1;
  1492. $size=isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :15;
  1493. $condition=[["b.is_del","=",0]];
  1494. $start = isset($this->post['start'])&&$this->post['start']!="" ? trim($this->post['start']) :"";
  1495. $end = isset($this->post['end'])&&$this->post['end']!="" ? trim($this->post['end']) :"";
  1496. $companyNo = isset($this->post['companyNo'])&&$this->post['companyNo']!="" ? trim($this->post['companyNo']) :"";
  1497. if($companyNo!=""){
  1498. $condition[]=["b.inv_out","=",$companyNo];
  1499. }
  1500. $relaComNo= isset($post['relaComNo'])&&$post['relaComNo']!="" ? trim($post['relaComNo']) :"";
  1501. if($relaComNo!=""){
  1502. $condition[]=["b.inv_out","=",$relaComNo];
  1503. }
  1504. if($start!=""){
  1505. $condition[]=["a.addtime",">=",$start." 00:00:00"];
  1506. }
  1507. if($end!=""){
  1508. $condition[]=["a.addtime","<=",$end." 23:59:59"];
  1509. }
  1510. $inv_type = isset($this->post['inv_type'])&&$this->post['inv_type']!=="" ? trim($this->post['inv_type']):"";
  1511. if($inv_type!==""){
  1512. $condition[]=["b.inv_type","=",$inv_type];
  1513. }
  1514. $apply_id = isset($this->post['apply_id'])&&$this->post['apply_id']!=="" ? intval($this->post['apply_id']):"";
  1515. if($apply_id!==""){
  1516. $condition[]=["a.apply_id","=",$apply_id];
  1517. }
  1518. $apply_name = isset($this->post['apply_name'])&&$this->post['apply_name']!==""?trim($this->post['apply_name']) :"";
  1519. if($apply_name!==""){
  1520. $condition[]=["a.apply_name","like","%$apply_name%"];
  1521. }
  1522. $status= isset($this->post['status'])&&$this->post['status']!=="" ? intval($this->post['status']):"";
  1523. if($status!==""){
  1524. $condition[]=["a.status","=",$status];
  1525. }
  1526. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=="" ? trim($this->post['invNo']):"";
  1527. if($invNo!==""){
  1528. $condition[]=["a.invNo","like","%$invNo%"];
  1529. }
  1530. $returnCode = isset($this->post['returnCode'])&&$this->post['returnCode']!=="" ? trim($this->post['returnCode']):"";
  1531. if($returnCode!==""){
  1532. $condition[]=["a.returnCode","like","%$returnCode%"];
  1533. }
  1534. $count=Db::name("invoice_return")->alias("a")
  1535. ->leftJoin("invoice_pool b","a.invNo=b.invNo")
  1536. ->leftJoin("invoice_pool_info c","a.invNo=c.invNo")
  1537. ->where($condition)->count();
  1538. $total =ceil($count/$size);
  1539. $page= $page>$total ? intval($total):$page;
  1540. $list=Db::name("invoice_return")->alias("a")
  1541. ->leftJoin("invoice_pool b","a.invNo=b.invNo")
  1542. ->leftJoin("invoice_pool_info c","a.invNo=c.invNo")
  1543. ->where($condition)->page($page,$size)->field("a.*,c.buyer_title,c.buyer_code,c.buyer_addr,c.buyer_mobile,c.buyer_bank,
  1544. c.buyer_bankNo,c.seller_title,c.seller_code,c.seller_addr,c.seller_mobile,c.seller_bank,c.seller_bankNo,c.voider,c.payee,
  1545. c.drawer,c.reviewer,c.ownerPlace,b.inv_value,b.inv_out,b.inv_type,b.open_type,is_ticket,b.email,
  1546. b.winv_fee,b.ainv_fee,b.post_fee,b.post_company,b.post_code")->order("id desc")->select()->toArray();
  1547. foreach ($list as &$value){
  1548. $company =Db::name("company_info")->where(["companyNo"=>$value['inv_out']])->find();
  1549. $value['companyName'] = $company['company_name']??"";
  1550. if(!in_array($value['status'],[2,3,4,5])){
  1551. $opendate =Db::name("invoice_ticket")->where(["invNo"=>$value['invNo'],"is_del"=>0,"type"=>0])->value("open_date","");
  1552. if($opendate!=''){
  1553. $open_month =date("Y-m",strtotime($opendate));
  1554. $value['is_out_month']= $open_month==date("Y-m")?0:1;
  1555. }
  1556. }
  1557. }
  1558. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  1559. }
  1560. //红冲票申请列表
  1561. public function applyRed(){
  1562. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=''?trim($this->post['invNo']):"";
  1563. if($invNo=='')return error_show(1004,"参数 invNo 不能为空");
  1564. $invfo =Db::name("invoice_pool")->where(["invNo"=>$invNo,"is_del"=>0])->find();
  1565. if($invfo==false) return error_show(1004,"发票数据未找到");
  1566. if(!in_array($invfo['status'],[1,2,3,4,5,8]))return error_show(1004,"发票数据状态无法申请");
  1567. $ticket =Db::name("invoice_ticket")->where(["invNo"=>$invNo])->findOrEmpty();
  1568. if(empty($ticket)) return error_show(1004,"未找到开票信息");
  1569. $company =Db::name("company_info")->where(["companyNo"=>'GS2207150956046617'])->findOrEmpty();
  1570. if(empty($company)) return error_show(1004,"业务企业信息未找到");
  1571. $invoice=Config::get("invoice");
  1572. $Tax =new \TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  1573. $redticketList=[];
  1574. $redticketArry=[
  1575. "SQBSCQQPCH"=>randomkeys(26).date("YmdHis"),
  1576. "NSRSBH"=>$company['company_license'],
  1577. "FPLXDM"=>$this->kingInvoice[$invfo['inv_type']],
  1578. ];
  1579. $goodinfo =Db::name("invoice_good")
  1580. ->where(["invNo"=>$invNo,"is_del"=>0])
  1581. ->field("0 as FPHXZ,
  1582. catNo as SPBM,
  1583. id as ZXBM,
  1584. is_discount as YHZCBS,
  1585. if(inv_tag=0,'',inv_tag) as LSLBS,
  1586. addTax as ZZSTSGL,
  1587. goodName as XMMC,
  1588. '' as DW,
  1589. '' as SPSL,
  1590. '' as DJ,
  1591. (-totalPrice) as JE,
  1592. 0 HSBZ,
  1593. tax as SL,
  1594. -taxPrice as SE")->select()->toArray();
  1595. if(empty($goodinfo)){
  1596. Db::rollback();
  1597. return error_show(1004,"开票商品信息未找到");
  1598. }
  1599. if(count($goodinfo)>8){
  1600. $len =array_unique(array_column($goodinfo,'SL'));
  1601. $qdmx=["FPHXZ"=>6,
  1602. "SPBM"=>'',
  1603. "XMMC"=>"详见对应正数发票及清单",
  1604. "YHZCBS"=>0,
  1605. "LSLBS"=>'',
  1606. "ZZSTSGL"=>'',
  1607. "DW"=>'',
  1608. "SPSL"=>'',
  1609. "DJ"=>'',
  1610. "JE"=>sprintf("%01.2f", (array_sum(array_column($goodinfo,'JE')))),
  1611. "HSBZ"=>'0',
  1612. "SL"=>count($len)>1?'':$len[0],
  1613. "SE"=>sprintf("%01.2f",array_sum(array_column($goodinfo,'SE'))),
  1614. ];
  1615. }else
  1616. {
  1617. $qdmx=$goodinfo;
  1618. }
  1619. $info=[
  1620. "SQBSCQQLSH"=>randomkeys(26).date("YmdHis"),
  1621. "YYSBZ"=> "0000000000", //营业税标志
  1622. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  1623. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  1624. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  1625. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  1626. "TKSJ"=>date("YmdHis"), //填开时间
  1627. "XHFSBH"=>$ticket['seller_id'],
  1628. "XHFMC"=>$ticket['seller_title'],
  1629. "GMFSBH"=>$ticket['buyer_id'],
  1630. "GMFMC"=> $ticket['buyer_title'],
  1631. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  1632. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  1633. "SQSM"=>"1100000000", //申请说明
  1634. "XXBTSBS"=>"0",//0: 正常;1:成品油发票,涉及销售数量 变更(销货退回、开票有误等原因);2: 成品油发票,仅涉及销售金额变更(销 售折让);3:机动车发票,仅涉及销售数
  1635. //量变更(销货退回、开票有误等原因);4: 机动车发票,仅涉及销售金额变更(销 售折让)
  1636. ];
  1637. $invRed=makeNo("IRE");
  1638. $data=[
  1639. 'invNo'=>$invNo,
  1640. "invRed"=>$invRed,
  1641. "inv_out"=>$invfo['inv_out']??"",
  1642. "apply_id"=>$this->uid,
  1643. "apply_name"=>$this->uname,
  1644. "status"=>0,
  1645. "remark"=>'',
  1646. "addtime"=>date("Y-m-d H:i:s"),
  1647. "updatetime"=>date("Y-m-d H:i:s"),
  1648. "SQBSCQQLSH"=>$info['SQBSCQQLSH'],
  1649. "YYSBZ"=> "0000000000", //营业税标志
  1650. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  1651. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  1652. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  1653. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  1654. "TKSJ"=>date("YmdHis"), //填开时间
  1655. "XHFSBH"=>$ticket['seller_id'],
  1656. "XHFMC"=>$ticket['seller_title'],
  1657. "GMFSBH"=>$ticket['buyer_id'],
  1658. "GMFMC"=> $ticket['buyer_title'],
  1659. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  1660. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  1661. "SQSM"=>"1100000000", //申请说明
  1662. "XXBTSBS"=>"0",
  1663. "DDMXXX"=>json_encode($qdmx,JSON_UNESCAPED_UNICODE),
  1664. "SQBSCQQPCH"=>$redticketArry['SQBSCQQPCH'],
  1665. "FPLXDM"=>$this->kingInvoice[$invfo['inv_type']],
  1666. ];
  1667. $redticketList[]=["HZSQDTXX"=>$info,"DDMXXX"=>$qdmx];
  1668. $result=$Tax->AllocateRedInvoiceApplication($redticketArry,$redticketList);
  1669. $data['status']=5;
  1670. $data['remark']='红冲申请提交失败';
  1671. if(isset($result['ZTDM']) && $result['ZTDM']=='060000'){
  1672. $resultChild=$result['HZSQDSCJG'][0];
  1673. if($resultChild['ZTDM']=='060000'){
  1674. $data['status']=2;
  1675. $data['XXBBH']=$resultChild['XXBBH'];
  1676. $data['remark']='红冲申请审核通过';
  1677. }
  1678. if($resultChild['ZTDM']=='060001'){
  1679. $data['status']=1;
  1680. $data['XXBBH']=$resultChild['XXBBH'];
  1681. $data['remark']='红冲申请审核中';
  1682. }
  1683. }
  1684. if($data['status']==5){
  1685. return error_show(1004,"红冲发票申请新建失败");
  1686. }
  1687. $up =Db::name("invoice_red")->insert($data);
  1688. return $up ? app_show(0,"红冲发票申请新建成功",["invRed"=>$invRed]):error_show(1004,"红冲发票申请新建失败");
  1689. }
  1690. public function batchApplyRed(){
  1691. $invArr = isset($this->post['invArr'])&&!empty($this->post['invArr'])?$this->post['invArr']:[];
  1692. if(empty($invArr))return error_show(1004,"参数 invArr 不能为空");
  1693. $invfo =Db::name("invoice_pool")->where(["invNo"=>$invArr,"is_del"=>0])->select()->toArray();
  1694. if(empty($invfo)) return error_show(1004,"发票数据未找到");
  1695. $insertAll=[];
  1696. $companyCode = array_unique(array_column($invfo,"inv_out"));
  1697. $inv_type = array_unique(array_column($invfo,"inv_type"));
  1698. if(count($companyCode)>1){
  1699. return error_show(1004,"业务企业公司不统一");
  1700. }
  1701. if(count($inv_type)>1){
  1702. return error_show(1004,"发票类型不统一");
  1703. }
  1704. $company =Db::name("company_info")->where(["companyNo"=>$companyCode])->findOrEmpty();
  1705. if(empty($company)) {
  1706. return error_show(1004,"业务企业信息未找到");
  1707. }
  1708. $ticketArr=Db::name("invoice_ticket")->where(["invNo"=>$invArr,"is_del"=>0])->column("*","invNo");
  1709. if(empty($ticketArr)){
  1710. return error_show(1004,"未找到开票信息");
  1711. }
  1712. $invoice=Config::get("invoice");
  1713. $Tax =new \TaxInvoice($invoice['appKey'],$invoice['appSecret'],$invoice['entCode']);
  1714. Db::startTrans();
  1715. try{
  1716. $redticketArry=[
  1717. "SQBSCQQPCH"=>randomkeys(26).date("YmdHis"),
  1718. "NSRSBH"=>$company['company_license'],
  1719. "FPLXDM"=>$this->kingInvoice[$inv_type[0]],
  1720. ];
  1721. $redticketList=[];
  1722. foreach ($invfo as $value){
  1723. if(!in_array($value['status'],[1,2,3,4,5,8])){
  1724. Db::rollback();
  1725. return error_show(1004,"发票数据状态无法申请");
  1726. }
  1727. $ticket =$ticketArr[$value['invNo']] ??[];
  1728. if(empty($ticket)){
  1729. Db::rollback();
  1730. return error_show(1004,"未找到开票信息");
  1731. }
  1732. $goodinfo =Db::name("invoice_good")
  1733. ->where(["invNo"=>$value['invNo'],"is_del"=>0])
  1734. ->field(" 6 as FPHXZ,
  1735. catNo as SPBM,
  1736. id as ZXBM,
  1737. is_discount as YHZCBS,
  1738. if(inv_tag=0,'',inv_tag) as LSLBS,
  1739. addTax as ZZSTSGL,
  1740. goodName as XMMC,
  1741. '' as DW,
  1742. '' as SPSL,
  1743. '' as DJ,
  1744. (-totalPrice) as JE,
  1745. 0 HSBZ,
  1746. tax as SL,
  1747. -taxPrice as SE")
  1748. ->select()->toArray();
  1749. if(empty($goodinfo)){
  1750. Db::rollback();
  1751. return error_show(1004,"开票商品信息未找到");
  1752. }
  1753. $len =array_unique(array_column($goodinfo,'SL'));
  1754. $qdmx=["FPHXZ"=>6,
  1755. "SPBM"=>'',
  1756. "XMMC"=>"详见对应正数发票及清单",
  1757. "YHZCBS"=>0,
  1758. "LSLBS"=>'',
  1759. "ZZSTSGL"=>'',
  1760. "DW"=>'',
  1761. "SPSL"=>'',
  1762. "DJ"=>'',
  1763. "JE"=>sprintf("%01.2f", (array_sum(array_column($goodinfo,'JE')))),
  1764. "HSBZ"=>'0',
  1765. "SL"=>count($len)>1?'':$len[0],
  1766. "SE"=>sprintf("%01.2f",array_sum(array_column($goodinfo,'SE'))),
  1767. ];
  1768. $info=[
  1769. "SQBSCQQLSH"=>randomkeys(26).date("YmdHis"),
  1770. "YYSBZ"=> "0000000000", //营业税标志
  1771. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  1772. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  1773. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  1774. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  1775. "TKSJ"=>date("YmdHis"), //填开时间
  1776. "XHFSBH"=>$ticket['seller_id'],
  1777. "XHFMC"=>$ticket['seller_title'],
  1778. "GMFSBH"=>$ticket['buyer_id'],
  1779. "GMFMC"=> $ticket['buyer_title'],
  1780. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  1781. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  1782. "SQSM"=>"1100000000", //申请说明
  1783. "XXBTSBS"=>"0",//0: 正常;1:成品油发票,涉及销售数量 变更(销货退回、开票有误等原因);2: 成品油发票,仅涉及销售金额变更(销 售折让);3:机动车发票,仅涉及销售数
  1784. //量变更(销货退回、开票有误等原因);4: 机动车发票,仅涉及销售金额变更(销 售折让)
  1785. ];
  1786. $redticketList[]=["HZSQDTXX"=>$info,"DDMXXX"=>$qdmx];
  1787. $data=[
  1788. 'invNo'=>$value['invNo'],
  1789. "invRed"=>makeNo("IRE"),
  1790. "inv_out"=>$value['inv_out']??"",
  1791. "apply_id"=>$this->uid,
  1792. "apply_name"=>$this->uname,
  1793. "status"=>5,
  1794. "remark"=>'红冲申请提交失败',
  1795. "addtime"=>date("Y-m-d H:i:s"),
  1796. "updatetime"=>date("Y-m-d H:i:s"),
  1797. "SQBSCQQLSH"=>$info['SQBSCQQLSH'],
  1798. "YYSBZ"=> "0000000000", //营业税标志
  1799. "XXBLX"=> "0",//信息表类型 0 正常;1 逾期(仅销方开具)
  1800. "YFPDM"=>$ticket['inv_code'], //红字专票购方已抵扣可不填
  1801. "YFPHM"=> $ticket['inv_number'],//红字专票购方已抵扣可不填
  1802. "YFPKPRQ"=>$ticket['open_date'], //红字专票购方已抵扣可不填
  1803. "TKSJ"=>date("YmdHis"), //填开时间
  1804. "XHFSBH"=>$ticket['seller_id'],
  1805. "XHFMC"=>$ticket['seller_title'],
  1806. "GMFSBH"=>$ticket['buyer_id'],
  1807. "GMFMC"=> $ticket['buyer_title'],
  1808. "HJJE"=> "-".$ticket['inv_subtotal'],//合计金额(不含 税)
  1809. "HJSE"=>"-".$ticket['tax_fee'],//合计税额
  1810. "SQSM"=>"1100000000", //申请说明
  1811. "XXBTSBS"=>"0",
  1812. "DDMXXX"=>json_encode($qdmx,JSON_UNESCAPED_UNICODE),
  1813. "SQBSCQQPCH"=>$redticketArry['SQBSCQQPCH'],
  1814. "FPLXDM"=>$this->kingInvoice[$value['inv_type']],
  1815. ];
  1816. $insertAll[$info['SQBSCQQLSH']]=$data;
  1817. }
  1818. $result=$Tax->AllocateRedInvoiceApplication($redticketArry,$redticketList);
  1819. if(isset($result['ZTDM']) && $result['ZTDM']=='060000'){
  1820. if(isset($result['HZSQDSCJG']) && count($result['HZSQDSCJG'])>0){
  1821. foreach ($result['HZSQDSCJG'] as $value){
  1822. if($value['ZTDM']=='060000'){
  1823. $insertAll[$value['SQBSCQQLSH']]['status']=2;
  1824. $insertAll[$value['SQBSCQQLSH']]['remark']="红冲申请审核通过";
  1825. $insertAll[$value['SQBSCQQLSH']]['XXBBH']=$value['XXBBH'];
  1826. continue;
  1827. // $data['status']=2;
  1828. // $data['remark']='红冲申请审核通过';
  1829. }
  1830. if($value['ZTDM']=='060001'){
  1831. $insertAll[$value['SQBSCQQLSH']]['status']=1;
  1832. $insertAll[$value['SQBSCQQLSH']]['remark']="红冲申请审核中";
  1833. $insertAll[$value['SQBSCQQLSH']]['XXBBH']=$value['XXBBH'];
  1834. continue;
  1835. }
  1836. unset($insertAll[$value['SQBSCQQLSH']]);
  1837. }
  1838. }
  1839. }else{
  1840. Db::rollback();
  1841. return error_show(1004,"红冲发票申请失败");
  1842. }
  1843. $uns= Db::name("invoice_red")->insertAll($insertAll);
  1844. if($uns){
  1845. Db::commit();
  1846. return app_show(0,"红冲发票申请新建成功,成功数量{$uns}个");
  1847. }
  1848. Db::rollback();
  1849. return error_show(1004,"红冲发票申请新建失败");
  1850. }catch (\Exception $e){
  1851. Db::rollback();
  1852. return error_show(1004,$e->getMessage());
  1853. }
  1854. }
  1855. public function redOpen(){
  1856. $invRed= isset($this->post['invRed'])&&$this->post['invRed']!=''? $this->post['invRed']:"";
  1857. if($invRed==''){
  1858. return error_show(1004,"参数 invRed 不能为空");
  1859. }
  1860. $redinfo =Db::name("invoice_red")->where(["invRed"=>$invRed,"is_del"=>0])->findOrEmpty();
  1861. if(empty($redinfo)){
  1862. return error_show(1004,"红冲发票申请不存在");
  1863. }
  1864. $redreason = isset($this->post['redreason'])&&$this->post['redreason']!=''? $this->post['redreason']:"";
  1865. if($redreason==''){
  1866. return error_show(1004,"参数 redreason 不能为空");
  1867. }
  1868. if($redinfo['status']!=2){
  1869. return error_show(1004,"数据状态不可提交申请");
  1870. }
  1871. $invinfo = Db::name("invoice_pool")->where(["invNo"=>$redinfo['invNo'],"is_del"=>0])->findOrEmpty();
  1872. if(empty($invinfo)) return error_show(1004,"红冲发票原票信息未找到");
  1873. $invpoolinfo = Db::name("invoice_ticket")->where(["invNo"=>$redinfo['invNo'],"status"=>1,"is_del"=>0])->findOrEmpty();
  1874. if(empty($invpoolinfo)) return error_show(1004,"红冲发票开票信息未找到");
  1875. Db::startTrans();
  1876. try{
  1877. $data=[
  1878. "invNo"=>$invRed,
  1879. "KPLX"=>"1",
  1880. "XHFSBH"=>$invpoolinfo['seller_id'],
  1881. "XHFMC"=>$invpoolinfo['seller_title'],
  1882. "XHFDZ"=>$invpoolinfo['seller_addr'],
  1883. "XHFDH"=>$invpoolinfo['seller_mobile'],
  1884. "XHFYH"=>$invpoolinfo['seller_bank'],
  1885. "XHFZH"=>$invpoolinfo['seller_bankNo'],
  1886. "GMFBM"=>"",
  1887. "GMFSBH"=>$invpoolinfo['buyer_id'],
  1888. "GMFMC"=>$invpoolinfo['buyer_title'],
  1889. "GMFDZ"=>$invpoolinfo['buyer_addr'],
  1890. "GMFDH"=>$invpoolinfo['buyer_mobile'],
  1891. "GMFYH"=>$invpoolinfo['buyer_bank'],
  1892. "GMFZH"=>$invpoolinfo['buyer_bankNo'],
  1893. "GMFLX"=>$invinfo['company_type'],
  1894. "GMFSJH"=>"",
  1895. "GMFDZYX"=>$invinfo['email'],
  1896. "KPR"=>$invpoolinfo['issuer'],
  1897. "SKR"=>$invpoolinfo['reciver'],
  1898. "FHR"=>$invpoolinfo['reviewer'],
  1899. "QDBZ"=>"0",
  1900. "YFPDM"=>$redinfo['YFPDM'],
  1901. "YFPHM"=>$redinfo['YFPHM'],
  1902. "YFPLX"=>$invpoolinfo['inv_type'] == '004' || $invpoolinfo['inv_type'] =='028'||$redreason=='' ?'':$invpoolinfo['inv_type'],
  1903. "YFPKPRQ"=>$invpoolinfo['inv_type'] == '004' || $invpoolinfo['inv_type'] == '028'||$redreason=='' ? '':date("Y-m-d",strtotime($redinfo['YFPKPRQ'])),
  1904. "CHYY"=>$invpoolinfo['inv_type'] == '004' || $invpoolinfo['inv_type'] == '028' ? '':$redreason,
  1905. "TSCHBZ"=>"0",
  1906. "JSHJ"=>"-".$invpoolinfo['inv_total'],
  1907. "HJJE"=>"-".$invpoolinfo['inv_subtotal'],
  1908. "HJSE"=>"-".$invpoolinfo['tax_fee'],
  1909. "BZ"=> $invpoolinfo['inv_type'] == '004' || $invpoolinfo['inv_type'] =='028'?"开具红字增值税专用发票信息表编号{$redinfo['XXBBH']}":"对应正数发票代码:{$redinfo['YFPDM']} 号码:{$redinfo['YFPHM']}",
  1910. "DDMXXX"=>$redinfo['DDMXXX'],
  1911. "FPLXDM"=>$redinfo['FPLXDM'],
  1912. "DDQQPCH"=>"",
  1913. "DDQQLSH"=>randomkeys(26).date("YmdHis"),
  1914. "status"=>"0",
  1915. "result"=>"",
  1916. "addtime"=>date("Y-m-d H:i:s"),
  1917. "updatetime"=>date("Y-m-d H:i:s")
  1918. ];
  1919. $invoice=Db::name("invoice_interface")->insert($data);
  1920. if($invoice==false){
  1921. Db::rollback();
  1922. return error_show(1003,"红冲开票信息生成失败");
  1923. }
  1924. $upred=Db::name("invoice_red")->where(["invRed"=>$invRed])->update(["status"=>3,"red_reason"=>$redreason,"updatetime"=>date("Y-m-d H:i:s")]);
  1925. if($upred==false){
  1926. Db::rollback();
  1927. return error_show(1003,"红冲发票信息更新失败");
  1928. }
  1929. Db::commit();
  1930. return app_show(0,"红冲发票信息开票提交成功");
  1931. }catch (\Exception $e){
  1932. Db::rollback();
  1933. return error_show(1003,$e->getMessage());
  1934. }
  1935. }
  1936. public function redList(){
  1937. $page=isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) :1;
  1938. $size=isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :15;
  1939. $condition=[["is_del","=",0],["FPLXDM","in",["004",'028']]];
  1940. $invRed=isset($this->post["invRed"])&&$this->post["invRed"]!=''?trim($this->post["invRed"]):"";
  1941. if($invRed!=''){
  1942. $condition[]=["invRed","like","%$invRed%"];
  1943. }
  1944. $apply_id=isset($this->post["apply_id"])&&$this->post["apply_id"]!=''?intval($this->post["apply_id"]):"";
  1945. if($apply_id!=''){
  1946. $condition[]=["apply_id","=",$apply_id];
  1947. }
  1948. $invNo=isset($this->post["invNo"])&&$this->post["invNo"]!=''?trim($this->post["invNo"]):"";
  1949. if($invNo!=''){
  1950. $condition[]=["invNo","like","%$invNo%"];
  1951. }
  1952. $companyNo=isset($this->post["companyNo"])&&$this->post["companyNo"]!=''?trim($this->post["companyNo"]):"";
  1953. if($companyNo!=''){
  1954. $condition[]=["inv_out","=",$companyNo];
  1955. }
  1956. $relaComNo= isset($post['relaComNo'])&&$post['relaComNo']!="" ? trim($post['relaComNo']) :"";
  1957. if($relaComNo!=""){
  1958. $condition[]=["inv_out","=",$relaComNo];
  1959. }
  1960. $apply_name=isset($this->post["apply_name"])&&$this->post["apply_name"]!=''?trim($this->post["apply_name"]):"";
  1961. if($apply_name!=''){
  1962. $condition[]=["apply_name","like","%$apply_name%"];
  1963. }
  1964. $start = isset($this->post["start"])&&$this->post["start"]!=''?trim($this->post["start"]):"";
  1965. $end = isset($this->post["end"])&&$this->post["end"]!=''?trim($this->post["end"]):"";
  1966. if($start!=''){
  1967. $condition[]=["addtime",">=",$start];
  1968. }
  1969. if($end!=''){
  1970. $condition[]=["addtime","<=",$end];
  1971. }
  1972. $total_low=isset($this->post["total_low"])&&$this->post["total_low"]!=''?floatval($this->post["total_low"]):"";
  1973. $total_up=isset($this->post["total_up"])&&$this->post["total_up"]!=''?floatval($this->post["total_up"]):"";
  1974. if($total_low!=''){
  1975. $condition[]=["ABS(HJJE)",">=",$total_low];
  1976. }
  1977. if($total_up!=''){
  1978. $condition[]=["ABS(HJJE)","<=",$total_up];
  1979. }
  1980. $count= Db::name("invoice_red")->where($condition)->count();
  1981. $total =ceil($count/$size);
  1982. $page=$total>=$page?$page :intval($total);
  1983. $list =Db::name("invoice_red")->where($condition)->json(["DDMXXX"])->page($page,$size)->order("addtime desc")->select()
  1984. ->toArray();
  1985. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  1986. }
  1987. /**
  1988. * @return \think\response\Json|void
  1989. */
  1990. public function ticketInfo(){
  1991. $num =isset($this->post['number'])&&$this->post['number']!=''?trim($this->post['number']):"";
  1992. if($num==''){
  1993. return error_show(1004,'参数 number 不能为空');
  1994. }
  1995. $condition=[["status","in",[0,1,2]]];
  1996. $condition[]=["inv_number","=",$num];
  1997. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=''?trim($this->post['invNo']):"";
  1998. if($invNo!=='')$condition[]=["invNo","=",$invNo];
  1999. $info =Db::name("invoice_ticket")->json(['item'])->withoutField("pdfstream")->where($condition)->findOrEmpty();
  2000. if(!empty($info)&& isset($info['item'])){
  2001. array_walk($info['item'],function (&$value){
  2002. $value['SL'] = ($value['SL']*100)."%";
  2003. });
  2004. }
  2005. $info['invtype_name'] = $this->typename[$info['inv_type']]??"";
  2006. return empty($info)?error_show(1005,"未找到数据"):app_show(0,"获取成功",$info);
  2007. }
  2008. //退票列表
  2009. public function returnRedList(){
  2010. $page=isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) :1;
  2011. $size=isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :15;
  2012. $condition=[];
  2013. $start = isset($this->post['start'])&&$this->post['start']!="" ? trim($this->post['start']) :"";
  2014. $end = isset($this->post['end'])&&$this->post['end']!="" ? trim($this->post['end']) :"";
  2015. if($start!=""){
  2016. $condition[]=["a.addtime",">=",$start." 00:00:00"];
  2017. }
  2018. if($end!=""){
  2019. $condition[]=["a.addtime","<=",$end." 23:59:59"];
  2020. }
  2021. $inv_type = isset($this->post['inv_type'])&&$this->post['inv_type']!=="" ? trim($this->post['inv_type']):"";
  2022. if($inv_type!==""){
  2023. $condition[]=["c.inv_type","=",$inv_type];
  2024. }
  2025. $companyNo = isset($this->post['companyNo'])&&$this->post['companyNo']!=="" ? trim($this->post['companyNo']):"";
  2026. if($companyNo!==""){
  2027. $condition[]=["c.inv_out","=",$companyNo];
  2028. }
  2029. $relaComNo= isset($post['relaComNo'])&&$post['relaComNo']!="" ? trim($post['relaComNo']) :"";
  2030. if($relaComNo!=""){
  2031. $condition[]=["c.inv_out","=",$relaComNo];
  2032. }
  2033. $apply_id = isset($this->post['apply_id'])&&$this->post['apply_id']!=="" ? intval($this->post['apply_id']):"";
  2034. if($apply_id!==""){
  2035. $condition[]=["a.apply_id","=",$apply_id];
  2036. }
  2037. $apply_name = isset($this->post['apply_name'])&&$this->post['apply_name']!==""?trim($this->post['apply_name']) :"";
  2038. if($apply_name!==""){
  2039. $condition[]=["a.apply_name","like","%$apply_name%"];
  2040. }
  2041. $status= isset($this->post['status'])&&$this->post['status']!=="" ? intval($this->post['status']):"";
  2042. if($status!==""){
  2043. $condition[]=["a.status","=",$status];
  2044. }
  2045. $invNo = isset($this->post['invNo'])&&$this->post['invNo']!=="" ? trim($this->post['invNo']):"";
  2046. if($invNo!==""){
  2047. $condition[]=["a.invNo","like","%$invNo%"];
  2048. }
  2049. $returnCode = isset($this->post['returnCode'])&&$this->post['returnCode']!=="" ? trim($this->post['returnCode']):"";
  2050. if($returnCode!==""){
  2051. $condition[]=["a.returnCode","like","%$returnCode%"];
  2052. }
  2053. $count=Db::name("invoice_return")->alias("a")
  2054. ->leftJoin("invoice_ticket b","a.invNo=b.invNo and b.type=1")
  2055. ->leftJoin("invoice_pool c","a.invNo=c.invNo")
  2056. ->where($condition)->count();
  2057. $total =ceil($count/$size);
  2058. $page= $page>$total ? intval($total):$page;
  2059. $list=Db::name("invoice_return")->alias("a")
  2060. ->leftJoin("invoice_ticket b","a.invNo=b.invNo and b.type=1")
  2061. ->leftJoin("invoice_pool c","a.invNo=c.invNo")
  2062. ->field("b.*,a.*")->withoutField("pdfstream")->json(["item"])->page($page,$size)->where($condition)->select()
  2063. ->toArray();
  2064. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  2065. }
  2066. /**
  2067. * @return \think\response\Json|void
  2068. * @throws \think\db\exception\DataNotFoundException
  2069. * @throws \think\db\exception\DbException
  2070. * @throws \think\db\exception\ModelNotFoundException
  2071. */
  2072. public function tikcetList(){
  2073. $post=$this->request->only(["invNo"=>"","companyNo"=>"","relaComNo"=>"","page"=>1,"size"=>15],"post","trim");
  2074. $where=[];
  2075. if($post["invNo"]!="") $where[]=["a.invNo","=",$post['invNo']];
  2076. if($post["companyNo"]!="") $where[]=["b.inv_out","=",$post['companyNo']];
  2077. if($post["relaComNo"]!="") $where[]=["b.inv_out","=",$post['relaComNo']];
  2078. $count=Db::name("invoice_ticket")->where($where)->count();
  2079. $total =ceil($count/$post['size']);
  2080. $page= $post['page']>$total ? intval($total):intval($post['page']);
  2081. $list = Db::name("invoice_ticket")
  2082. ->alias("a")
  2083. ->leftJoin("invoice_pool b","a.invNo=b.invNo")
  2084. ->where($where)
  2085. ->field("a.*")
  2086. ->json(["a.item"])
  2087. ->page($page,intval($post['size']))
  2088. ->order("a.id desc")
  2089. ->select()->toArray();
  2090. foreach ($list as &$value){
  2091. $value['invtype_name'] = $this->typename[$value['inv_type']]??"";
  2092. }
  2093. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  2094. }
  2095. /** @param array invNo 发票编号集合
  2096. * @return \think\response\Json|void
  2097. */
  2098. public function downorder(){
  2099. $post=$this->request->only(["invNo"=>[]],"post","trim");
  2100. $condition=[["open_type","in",[0,2,3]],["is_del","=",0],["status","=",1]];
  2101. if(!empty($post['invNo'])){
  2102. $condition[]=['invNo',"in",$post['invNo']];
  2103. }
  2104. $invice = Db::name("invoice_pool")->where($condition)->select()->toArray();
  2105. if (empty($invice)){
  2106. return error_show(1003,"未找到数据");
  2107. }
  2108. $data=[];
  2109. foreach ($invice as $value){
  2110. $temp=[];
  2111. $orderNo = Db::name("assoc")->where([["status","=",1],["is_del","=",0],['viceCode',"=",$value['invNo']]])
  2112. ->find();
  2113. if(!$orderNo){
  2114. continue;
  2115. }
  2116. $good = Db::name("qrd_info")->where([['sequenceNo',"=",$orderNo['orderCode']],["status","=",1]])
  2117. ->findOrEmpty();
  2118. if(empty($good)){
  2119. continue;
  2120. }
  2121. if(isset($value['inv_out'])&& $value['inv_out']!=''){
  2122. $invout = Db::name("company_info")->where([['companyNo',"=",$value['inv_out']]])->find();
  2123. }
  2124. $invinfo = Db::name("invoice_pool_info")->where("invNo","=",$value['invNo'])->findOrEmpty();
  2125. // foreach ($good as $val){
  2126. // $qrd = Db::name("qrd_list")->where("sequenceNo","=",$val['goodNo'])->find();
  2127. $temp['invNo'] = $value['invNo'];
  2128. $temp['qrdNo'] = $orderNo['orderCode'];
  2129. $temp['depart'] = $good['department'];
  2130. $temp['apply_name'] =$value['apply_name'];
  2131. $temp['code'] ="";
  2132. $temp['invoice_title'] =$invinfo['buyer_title']??"";
  2133. $temp['invoice_code'] =$invinfo['buyer_code']." ";
  2134. $temp['invoice_addr'] =$invinfo['buyer_addr']??"";
  2135. $temp['invoice_mobile'] =$invinfo['buyer_mobile']??"";
  2136. $temp['invoice_bank'] =$invinfo['buyer_bank']??"";
  2137. $temp['invoice_bankNo'] =$invinfo['buyer_bankNo']." ";
  2138. $temp['company'] =$good['customerName'];
  2139. $temp['goodname'] =$good['goodName'];
  2140. $temp['tax'] =$good['tax'];
  2141. $temp['inv_name'] =$good['goodName'];
  2142. $temp['diff_weight'] =$good['diff_weight'];
  2143. $temp['diff_price'] =$good['diff_fee'];
  2144. $temp['unit'] =$good['goodUnit'];
  2145. $temp['num'] =$good['goodNum'] - $good['thNum'];
  2146. $temp['price'] =$good['goodPrice'];
  2147. $temp['total_fee'] =$good['totalPrice'];
  2148. $temp['inv_type']=$this->invoiceType[$value['inv_type']]?? "-";
  2149. $temp['remark'] =$value['remark'];
  2150. $temp['kp_companyName'] = $invinfo['seller_title']??"";
  2151. $temp['kp_company_address'] = $invinfo['seller_addr']??"";
  2152. $temp['kp_company_license'] = $invinfo['seller_code']." ";
  2153. $temp['kp_bank_name'] = $invinfo['seller_bank']??"";
  2154. $temp['kp_bankNo'] = $invinfo['seller_bankNo']."";
  2155. $temp['kp_contector'] = $invout['contector']??"";
  2156. $temp['kp_mobile'] = $invinfo['seller_mobile']??"";
  2157. $data[]=$temp;
  2158. }
  2159. // }
  2160. if (empty($data)){
  2161. return error_show(1003,"未找到数据");
  2162. }
  2163. $header=[
  2164. "申请编号",
  2165. "公司订单号",
  2166. "申请部门(所属平台)",
  2167. "申请人",
  2168. "代码",
  2169. "发票开具全称",
  2170. "发票开具企业纳税识别号",
  2171. "发票开具企业地址",
  2172. "发票开具企业地址联系方式",
  2173. "发票开具企业收款银行",
  2174. "发票开具企业收款账户",
  2175. "分公司",
  2176. "采购商品名",
  2177. "税率",
  2178. "发票商品名",
  2179. "工差重量",
  2180. "工差金额",
  2181. "单位",
  2182. "数量",
  2183. "单价",
  2184. "总价",
  2185. "开票种类",
  2186. "备注说明",
  2187. '开票企业名称',
  2188. '开票企业地址',
  2189. '开票企业纳税号',
  2190. '开票企业银行名称',
  2191. '开票企业银行账户',
  2192. '开票企业法人',
  2193. '开票企业联系方式'
  2194. ];
  2195. $li = excelExport("待开票",$header,$data);
  2196. }
  2197. public function importInv(){
  2198. $param =$this->request->only(["data"=>[]],"post");
  2199. if(empty($param['data']))return error_show(1004,"参数 data 不能为空");
  2200. $total=[];
  2201. $list=[];
  2202. foreach ($param['data'] as $key=>$value){
  2203. if($value['invNo']==""){
  2204. return error_show(1005,"第".($key+1)."行缺少发票申请编号数据");
  2205. }
  2206. if($value["inv_type"]===""){
  2207. return error_show(1005,"第".($key+1)."行缺少发票类型数据");
  2208. }
  2209. if(!in_array($value['inv_type'],$this->invName)) return error_show(1005,"第".($key+1)."行发票类型数据有误");
  2210. if($value["inv_code"]=="" && !in_array($value['inv_type'],[ "fully_digitalized_special_electronic", "fully_digitalized_normal_electronic"])){
  2211. return error_show(1005,"第".($key+1)."行缺少发票代码数据");
  2212. }
  2213. if($value["inv_number"]==""){
  2214. return error_show(1005,"第".($key+1)."行缺少发票号码数据");
  2215. }
  2216. if($value["inv_total"]==""&& in_array($value['inv_type'],["fully_digitalized_special_electronic", "fully_digitalized_normal_electronic"])){
  2217. return error_show(1005,"第".($key+1)."行缺少发票金额数据");
  2218. }
  2219. if($value["inv_subtotal"]==""){
  2220. return error_show(1005,"第".($key+1)."行缺少发票税后金额数据");
  2221. }
  2222. if($value["open_date"]==""){
  2223. return error_show(1005,"第".($key+1)."行缺少发票开票日期数据");
  2224. }
  2225. //电子票校验码必传
  2226. if($value["check_code"]=="" && in_array($value['inv_type'],['normal','roll',"toll",'electronic'])){
  2227. return error_show(1005,"第".($key+1)."行缺少发票校验码数据");
  2228. }
  2229. // if($value['inv_type']==="000"){
  2230. // if($value['seller_id']=="") return error_show(1005,"第".($key+1)."行缺少销售方纳税识别号数据");
  2231. // if($value['seller_title']=="") return error_show(1005,"第".($key+1)."行缺少销售方名称数据");
  2232. // if($value['seller_addr']=="") return error_show(1005,"第".($key+1)."行缺少销售方地址数据");
  2233. // if($value['seller_mobile']=="") return error_show(1005,"第".($key+1)."行缺少销售方联系方式数据");
  2234. // if($value['seller_bank']=="") return error_show(1005,"第".($key+1)."行缺少销售方银行数据");
  2235. // if($value['seller_bankNo']=="") return error_show(1005,"第".($key+1)."行缺少销售方银行账户数据");
  2236. // if($value['buyer_id']=="") return error_show(1005,"第".($key+1)."行缺少购买方纳税识别号数据");
  2237. // if($value['buyer_title']=="") return error_show(1005,"第".($key+1)."行缺少购买方名称数据");
  2238. // if($value['buyer_addr']=="") return error_show(1005,"第".($key+1)."行缺少购买方地址数据");
  2239. // if($value['buyer_mobile']=="") return error_show(1005,"第".($key+1)."行缺少购买方联系方式数据");
  2240. // if($value['buyer_bank']=="") return error_show(1005,"第".($key+1)."行缺少购买方银行数据");
  2241. // if($value['buyer_bankNo']=="") return error_show(1005,"第".($key+1)."行缺少购买方银行账户数据");
  2242. // if($value['tax_fee']=="") return error_show(1005,"第".($key+1)."行缺少发票税额数据");
  2243. // }
  2244. !isset($total[$value['invNo']]) ? $total[$value['invNo']]['total']=0:"";
  2245. $temp=[];
  2246. $temp['invNo'] = $value["invNo"];
  2247. $temp['type'] = 0;
  2248. $temp['inv_type'] =$value['inv_type'];
  2249. $temp['inv_code'] = $value['inv_code'];
  2250. $temp['inv_number'] = $value['inv_number'];
  2251. $temp['inv_subtotal'] = $value['inv_subtotal'];
  2252. $temp['inv_total'] = $value['inv_total'];
  2253. $temp['check_code'] = $value['check_code']??"";
  2254. $temp['seller_id'] = $value['seller_id']??"";
  2255. $temp['seller_title'] = $value['seller_title']??"";
  2256. $temp['seller_addr'] = $value['seller_addr']??"";
  2257. $temp['seller_mobile'] = $value['seller_mobile']??"";
  2258. $temp['seller_bank'] = $value['seller_bank']??"";
  2259. $temp['seller_bankNo'] = $value['seller_bankNo']??"";
  2260. $temp['buyer_id'] = $value['buyer_id']??"";
  2261. $temp['buyer_title'] = $value['buyer_title']??"";
  2262. $temp['buyer_addr'] = $value['buyer_addr']??"";
  2263. $temp['buyer_mobile'] = $value['buyer_mobile']??"";
  2264. $temp['buyer_bank'] = $value['buyer_bank']??"";
  2265. $temp['buyer_bankNo'] = $value['buyer_bankNo']??"";
  2266. $temp['tax_fee'] = $value['tax_fee']??"";
  2267. $temp['item'] = '';
  2268. $temp['pdfstream'] = '';
  2269. $temp['open_date'] = date("Y-m-d H:i:s",strtotime($value['open_date']));
  2270. $temp['status'] = 0;
  2271. $temp['is_del'] = 0;
  2272. $temp['addtime'] = date("Y-m-d H:i:s");
  2273. $temp['updatetime'] = date("Y-m-d H:i:s");
  2274. $total[$value["invNo"]]=$temp;
  2275. }
  2276. Db::startTrans();
  2277. try{
  2278. $keyarr =array_keys($total);
  2279. $inpool = Db::name("invoice_pool")->where([["invNo","in",$keyarr],["open_type","in",[0,2,3]],["is_del","=",0],["status","=",2]])->column("winv_fee,invNo,inv_value,inv_type","invNo");
  2280. foreach ($total as $key=>$val){
  2281. if(!isset($inpool[$key])) throw new Exception("{$key}发票数据不存在或状态有误");
  2282. if(in_array($val['inv_type'],["fully_digitalized_special_electronic", "fully_digitalized_normal_electronic"]) && $inpool[$key]['winv_fee']!=$val['total']){
  2283. throw new Exception("{$key}全电发票面金额小于未开票金额");
  2284. }
  2285. if($inpool[$key]['inv_type']!= $val['inv_type']) throw new Exception("{$key}发票类型有误");
  2286. $update=[
  2287. "status"=>in_array($val['inv_type'],["fully_digitalized_special_electronic", "fully_digitalized_normal_electronic"])?4:3,
  2288. "open_type"=>$inpool[$key]['open_type']??3,
  2289. "updatetime"=>date("Y-m-d H:i:s")
  2290. ];
  2291. $up =Db::name("invoice_pool")->where([["invNo","=",$key],["is_del","=",0]])->save($update);
  2292. if(!$up){
  2293. Db::rollback();
  2294. return error_show(1005,"发票状态更新失败");
  2295. }
  2296. if($update['status']==4){
  2297. $qrdArr=Db::name("assoc")->where(["viceCode"=>$key,"is_del"=>0])->column("id,orderCode,cancel_fee");
  2298. if(!empty($qrdArr)){
  2299. foreach ($qrdArr as $value){
  2300. $qrdinfo =Db::name("qrd_info")->where(["sequenceNo"=>$value['orderCode']])->find();
  2301. if($qrdinfo==false){
  2302. Db::rollback();
  2303. return error_show(1003,"确认单信息未找到");
  2304. }
  2305. if($qrdinfo['inv_fee']<$value['cancel_fee']){
  2306. Db::rollback();
  2307. return error_show(1003,"确认单信息开票金额不足");
  2308. }
  2309. $update =[
  2310. "ainv_fee"=>$qrdinfo['ainv_fee']+$value['cancel_fee'],
  2311. "inv_fee"=>$qrdinfo['inv_fee']-$value['cancel_fee'],
  2312. "invtime"=>date("Y-m-d H:i:s"),
  2313. "inv_status"=>$qrdinfo['winv_fee']==0 &&($qrdinfo['inv_fee']-$value['cancel_fee'])==0 ? 3 : 2,
  2314. "updatetime"=>date("Y-m-d H:i:s"),
  2315. ];
  2316. $qrdup = Db::name("qrd_info")->where($qrdinfo)->update($update);
  2317. if($qrdup==false){
  2318. Db::rollback();
  2319. return error_show(1003,"确认单信息更新失败");
  2320. }
  2321. $assoc=["status"=>2,"assoc_time"=>date("Y-m-d H:i:s"),"updatetime"=>date("Y-m-d H:i:s")];
  2322. $assocup =Db::name("assoc")->where($value)->update($assoc);
  2323. if($assocup==false){
  2324. Db::rollback();
  2325. return error_show(1003,"确认单关联信息更新失败");
  2326. }
  2327. }
  2328. }
  2329. }
  2330. $val['inv_type'] = $this->kingInvoice[$val['inv_type']];
  2331. $list[]=$val;
  2332. }
  2333. $inticket =Db::name("invoice_ticket")->insertAll($list);
  2334. if(!$inticket){
  2335. Db::rollback();
  2336. return error_show(1005,"发票数据录入失败");
  2337. }
  2338. Db::commit();
  2339. return app_show(0,"发票数据录入成功");
  2340. }catch (\Exception $e){
  2341. Db::rollback();
  2342. return error_show(1008,$e->getMessage());
  2343. }
  2344. }
  2345. }