summaryrefslogtreecommitdiff
path: root/LedgerSMB/IS.pm
blob: 5232b02bfa9edbedc99dfc0d6eaef8a9efb04fdb (plain)
  1. #=====================================================================
  2. # LedgerSMB
  3. # Small Medium Business Accounting software
  4. # http://www.ledgersmb.org/
  5. #
  6. # Copyright (C) 2006
  7. # This work contains copyrighted information from a number of sources all used
  8. # with permission.
  9. #
  10. # This file contains source code included with or based on SQL-Ledger which
  11. # is Copyright Dieter Simader and DWS Systems Inc. 2000-2005 and licensed
  12. # under the GNU General Public License version 2 or, at your option, any later
  13. # version. For a full list including contact information of contributors,
  14. # maintainers, and copyright holders, see the CONTRIBUTORS file.
  15. #
  16. # Original Copyright Notice from SQL-Ledger 2.6.17 (before the fork):
  17. # Copyright (C) 2000
  18. #
  19. # Author: DWS Systems Inc.
  20. # Web: http://www.sql-ledger.org
  21. #
  22. # Contributors: Jim Rawlings <jim@your-dba.com>
  23. #`
  24. #======================================================================
  25. #
  26. # This file has undergone whitespace cleanup.
  27. #
  28. #======================================================================
  29. #
  30. # Inventory invoicing module
  31. #
  32. #======================================================================
  33. package IS;
  34. use LedgerSMB::Tax;
  35. use LedgerSMB::PriceMatrix;
  36. use LedgerSMB::Sysconfig;
  37. sub invoice_details {
  38. use LedgerSMB::CP;
  39. my ( $self, $myconfig, $form ) = @_;
  40. $form->{duedate} = $form->{transdate} unless ( $form->{duedate} );
  41. # connect to database
  42. my $dbh = $form->{dbh};
  43. my $query = qq|
  44. SELECT ?::date - ?::date
  45. AS terms, value
  46. FROM defaults
  47. WHERE setting_key = 'weightunit'|;
  48. my $sth = $dbh->prepare($query);
  49. $sth->execute( $form->{duedate}, $form->{transdate} )
  50. || $form->dberror($query);
  51. ( $form->{terms}, $form->{weightunit} ) = $sth->fetchrow_array;
  52. $sth->finish;
  53. # this is for the template
  54. $form->{invdate} = $form->{transdate};
  55. my $tax = 0;
  56. my $item;
  57. my $i;
  58. my @sortlist = ();
  59. my $projectnumber;
  60. my $projectdescription;
  61. my $projectnumber_id;
  62. my $translation;
  63. my $partsgroup;
  64. my @taxaccounts;
  65. my %taxaccounts;
  66. my $tax;
  67. my $taxrate;
  68. my $taxamount;
  69. my %translations;
  70. $query = qq|
  71. SELECT p.description, t.description
  72. FROM project p
  73. LEFT JOIN translation t
  74. ON (t.trans_id = p.id
  75. AND t.language_code = ?)
  76. WHERE id = ?|;
  77. my $prh = $dbh->prepare($query) || $form->dberror($query);
  78. $query = qq|
  79. SELECT inventory_accno_id, income_accno_id,
  80. expense_accno_id, assembly, weight FROM parts
  81. WHERE id = ?|;
  82. my $pth = $dbh->prepare($query) || $form->dberror($query);
  83. my $sortby;
  84. # sort items by project and partsgroup
  85. for $i ( 1 .. $form->{rowcount} - 1 ) {
  86. # account numbers
  87. $pth->execute( $form->{"id_$i"} );
  88. $ref = $pth->fetchrow_hashref(NAME_lc);
  89. $form->db_parse_numeric(sth=>$pth, hashref=>$ref);
  90. for ( keys %$ref ) { $form->{"${_}_$i"} = $ref->{$_} }
  91. $pth->finish;
  92. $projectnumber_id = 0;
  93. $projectnumber = "";
  94. $form->{partsgroup} = "";
  95. $form->{projectnumber} = "";
  96. if ( $form->{groupprojectnumber} || $form->{grouppartsgroup} ) {
  97. $inventory_accno_id =
  98. ( $form->{"inventory_accno_id_$i"} || $form->{"assembly_$i"} )
  99. ? "1"
  100. : "";
  101. if ( $form->{groupprojectnumber} ) {
  102. ( $projectnumber, $projectnumber_id ) =
  103. split /--/, $form->{"projectnumber_$i"};
  104. }
  105. if ( $form->{grouppartsgroup} ) {
  106. ( $form->{partsgroup} ) =
  107. split /--/, $form->{"partsgroup_$i"};
  108. }
  109. if ( $projectnumber_id && $form->{groupprojectnumber} ) {
  110. if ( $translation{$projectnumber_id} ) {
  111. $form->{projectnumber} = $translation{$projectnumber_id};
  112. }
  113. else {
  114. # get project description
  115. $prh->execute( $projectnumber_id, $form->{language_code} );
  116. ( $projectdescription, $translation ) =
  117. $prh->fetchrow_array;
  118. $prh->finish;
  119. $form->{projectnumber} =
  120. ($translation)
  121. ? "$projectnumber, $translation"
  122. : "$projectnumber, " . "$projectdescription";
  123. $translation{$projectnumber_id} = $form->{projectnumber};
  124. }
  125. }
  126. if ( $form->{grouppartsgroup} && $form->{partsgroup} ) {
  127. $form->{projectnumber} .= " / "
  128. if $projectnumber_id;
  129. $form->{projectnumber} .= $form->{partsgroup};
  130. }
  131. $form->format_string(projectnumber);
  132. }
  133. $sortby = qq|$projectnumber$form->{partsgroup}|;
  134. if ( $form->{sortby} ne 'runningnumber' ) {
  135. for (qw(partnumber description bin)) {
  136. $sortby .= $form->{"${_}_$i"}
  137. if $form->{sortby} eq $_;
  138. }
  139. }
  140. push @sortlist,
  141. [
  142. $i,
  143. qq|$projectnumber$form->{partsgroup}| . qq|$inventory_accno_id|,
  144. $form->{projectnumber},
  145. $projectnumber_id,
  146. $form->{partsgroup},
  147. $sortby
  148. ];
  149. }
  150. # sort the whole thing by project and group
  151. @sortlist = sort { $a->[5] cmp $b->[5] } @sortlist;
  152. my $runningnumber = 1;
  153. my $sameitem = "";
  154. my $subtotal;
  155. my $k = scalar @sortlist;
  156. my $j = 0;
  157. foreach $item (@sortlist) {
  158. $i = $item->[0];
  159. $j++;
  160. # heading
  161. if ( $form->{groupprojectnumber} || $form->{grouppartsgroup} ) {
  162. if ( $item->[1] ne $sameitem ) {
  163. $sameitem = $item->[1];
  164. $ok = 0;
  165. if ( $form->{groupprojectnumber} ) {
  166. $ok = $form->{"projectnumber_$i"};
  167. }
  168. if ( $form->{grouppartsgroup} ) {
  169. $ok = $form->{"partsgroup_$i"}
  170. unless $ok;
  171. }
  172. if ($ok) {
  173. if ( $form->{"inventory_accno_id_$i"}
  174. || $form->{"assembly_$i"} )
  175. {
  176. push( @{ $form->{part} }, "" );
  177. push( @{ $form->{service} }, NULL );
  178. }
  179. else {
  180. push( @{ $form->{part} }, NULL );
  181. push( @{ $form->{service} }, "" );
  182. }
  183. push( @{ $form->{description} }, $item->[2] );
  184. for (
  185. qw(taxrates runningnumber number
  186. sku serialnumber bin qty ship
  187. unit deliverydate projectnumber
  188. sellprice listprice netprice
  189. discount discountrate linetotal
  190. weight itemnotes)
  191. )
  192. {
  193. push( @{ $form->{$_} }, "" );
  194. }
  195. push( @{ $form->{lineitems} }, { amount => 0, tax => 0 } );
  196. }
  197. }
  198. }
  199. $form->{"qty_$i"} = $form->parse_amount( $myconfig, $form->{"qty_$i"} );
  200. if ( $form->{"qty_$i"} ) {
  201. $form->{totalqty} += $form->{"qty_$i"};
  202. $form->{totalship} += $form->{"qty_$i"};
  203. $form->{totalweight} +=
  204. ( $form->{"qty_$i"} * $form->{"weight_$i"} );
  205. $form->{totalweightship} +=
  206. ( $form->{"qty_$i"} * $form->{"weight_$i"} );
  207. # add number, description and qty to $form->{number}...
  208. push( @{ $form->{runningnumber} }, $runningnumber++ );
  209. push( @{ $form->{number} }, $form->{"partnumber_$i"} );
  210. push( @{ $form->{sku} }, $form->{"sku_$i"} );
  211. push( @{ $form->{serialnumber} }, $form->{"serialnumber_$i"} );
  212. push( @{ $form->{bin} }, $form->{"bin_$i"} );
  213. push( @{ $form->{description} }, $form->{"description_$i"} );
  214. push( @{ $form->{itemnotes} }, $form->{"notes_$i"} );
  215. push(
  216. @{ $form->{qty} },
  217. $form->format_amount( $myconfig, $form->{"qty_$i"} )
  218. );
  219. push(
  220. @{ $form->{ship} },
  221. $form->format_amount( $myconfig, $form->{"qty_$i"} )
  222. );
  223. push( @{ $form->{unit} }, $form->{"unit_$i"} );
  224. push( @{ $form->{deliverydate} }, $form->{"deliverydate_$i"} );
  225. push( @{ $form->{projectnumber} }, $form->{"projectnumber_$i"} );
  226. push( @{ $form->{sellprice} }, $form->{"sellprice_$i"} );
  227. push( @{ $form->{listprice} }, $form->{"listprice_$i"} );
  228. push(
  229. @{ $form->{weight} },
  230. $form->format_amount(
  231. $myconfig, $form->{"weight_$i"} * $form->{"qty_$i"}
  232. )
  233. );
  234. my $sellprice =
  235. $form->parse_amount( $myconfig, $form->{"sellprice_$i"} );
  236. my ($dec) = ( $sellprice =~ /\.(\d+)/ );
  237. $dec = length $dec;
  238. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  239. my $discount = $form->round_amount(
  240. $sellprice *
  241. $form->parse_amount( $myconfig, $form->{"discount_$i"} ) /
  242. 100,
  243. $decimalplaces
  244. );
  245. # keep a netprice as well, (sellprice - discount)
  246. $form->{"netprice_$i"} = $sellprice - $discount;
  247. my $linetotal =
  248. $form->round_amount( $form->{"qty_$i"} * $form->{"netprice_$i"},
  249. 2 );
  250. if ( $form->{"inventory_accno_id_$i"}
  251. || $form->{"assembly_$i"} )
  252. {
  253. push( @{ $form->{part} }, $form->{"sku_$i"} );
  254. push( @{ $form->{service} }, NULL );
  255. $form->{totalparts} += $linetotal;
  256. }
  257. else {
  258. push( @{ $form->{service} }, $form->{"sku_$i"} );
  259. push( @{ $form->{part} }, NULL );
  260. $form->{totalservices} += $linetotal;
  261. }
  262. push(
  263. @{ $form->{netprice} },
  264. ( $form->{"netprice_$i"} )
  265. ? $form->format_amount( $myconfig, $form->{"netprice_$i"},
  266. $decimalplaces )
  267. : " "
  268. );
  269. $discount =
  270. ($discount)
  271. ? $form->format_amount( $myconfig, $discount * -1,
  272. $decimalplaces )
  273. : " ";
  274. push( @{ $form->{discount} }, $discount );
  275. push(
  276. @{ $form->{discountrate} },
  277. $form->format_amount( $myconfig, $form->{"discount_$i"} )
  278. );
  279. $form->{total} += $linetotal;
  280. # this is for the subtotals for grouping
  281. $subtotal += $linetotal;
  282. $form->{"linetotal_$i"} =
  283. $form->format_amount( $myconfig, $linetotal, 2 );
  284. $form->{"linetotal_$i"} = '0.00' unless $form->{"linetotal_$i"};
  285. push( @{ $form->{linetotal} }, $form->{"linetotal_$i"} );
  286. @taxaccounts = Tax::init_taxes(
  287. $form,
  288. $form->{"taxaccounts_$i"},
  289. $form->{"taxaccounts"}
  290. );
  291. my $ml = 1;
  292. my @taxrates = ();
  293. $tax = 0;
  294. if ( $form->{taxincluded} ) {
  295. $taxamount =
  296. Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 1 );
  297. $taxbase = ( $linetotal - $taxamount );
  298. $tax += Tax::extract_taxes( \@taxaccounts, $form, $linetotal );
  299. }
  300. else {
  301. $taxamount =
  302. Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 0 );
  303. $tax += Tax::apply_taxes( \@taxaccounts, $form, $linetotal );
  304. }
  305. foreach $item (@taxaccounts) {
  306. push @taxrates, 100 * $item->rate;
  307. $taxaccounts{ $item->account } += $item->value;
  308. if ( $form->{taxincluded} ) {
  309. $taxbase{ $item->account } += $taxbase;
  310. }
  311. else {
  312. $taxbase{ $item->account } += $linetotal;
  313. }
  314. }
  315. push(
  316. @{ $form->{lineitems} },
  317. {
  318. amount => $linetotal,
  319. tax => $form->round_amount( $tax, 2 )
  320. }
  321. );
  322. push( @{ $form->{taxrates} },
  323. join ' ', sort { $a <=> $b } @taxrates );
  324. if ( $form->{"assembly_$i"} ) {
  325. $form->{stagger} = -1;
  326. &assembly_details( $myconfig, $form, $dbh, $form->{"id_$i"},
  327. $oid{ $myconfig->{dbdriver} },
  328. $form->{"qty_$i"} );
  329. }
  330. }
  331. # add subtotal
  332. if ( $form->{groupprojectnumber} || $form->{grouppartsgroup} ) {
  333. if ($subtotal) {
  334. if ( $j < $k ) {
  335. # look at next item
  336. if ( $sortlist[$j]->[1] ne $sameitem ) {
  337. if ( $form->{"inventory_accno_id_$j"}
  338. || $form->{"assembly_$i"} )
  339. {
  340. push( @{ $form->{part} }, "" );
  341. push( @{ $form->{service} }, NULL );
  342. }
  343. else {
  344. push( @{ $form->{service} }, "" );
  345. push( @{ $form->{part} }, NULL );
  346. }
  347. for (
  348. qw(taxrates
  349. runningnumber number sku
  350. serialnumber bin qty
  351. ship unit deliverydate
  352. projectnumber sellprice
  353. listprice netprice
  354. discount discountrate
  355. weight itemnotes)
  356. )
  357. {
  358. push( @{ $form->{$_} }, "" );
  359. }
  360. push(
  361. @{ $form->{description} },
  362. $form->{groupsubtotaldescription}
  363. );
  364. push(
  365. @{ $form->{lineitems} },
  366. {
  367. amount => 0,
  368. tax => 0
  369. }
  370. );
  371. if ( $form->{groupsubtotaldescription} ne "" ) {
  372. push(
  373. @{ $form->{linetotal} },
  374. $form->format_amount( $myconfig, $subtotal, 2 )
  375. );
  376. }
  377. else {
  378. push( @{ $form->{linetotal} }, "" );
  379. }
  380. $subtotal = 0;
  381. }
  382. }
  383. else {
  384. # got last item
  385. if ( $form->{groupsubtotaldescription} ne "" ) {
  386. if ( $form->{"inventory_accno_id_$j"}
  387. || $form->{"assembly_$i"} )
  388. {
  389. push( @{ $form->{part} }, "" );
  390. push( @{ $form->{service} }, NULL );
  391. }
  392. else {
  393. push( @{ $form->{service} }, "" );
  394. push( @{ $form->{part} }, NULL );
  395. }
  396. for (
  397. qw(taxrates
  398. runningnumber number sku
  399. serialnumber bin qty
  400. ship unit deliverydate
  401. projectnumber sellprice
  402. listprice netprice
  403. discount discountrate
  404. weight itemnotes)
  405. )
  406. {
  407. push( @{ $form->{$_} }, "" );
  408. }
  409. push(
  410. @{ $form->{description} },
  411. $form->{groupsubtotaldescription}
  412. );
  413. push(
  414. @{ $form->{linetotal} },
  415. $form->format_amount( $myconfig, $subtotal, 2 )
  416. );
  417. push(
  418. @{ $form->{lineitems} },
  419. {
  420. amount => 0,
  421. tax => 0
  422. }
  423. );
  424. }
  425. }
  426. }
  427. }
  428. }
  429. $tax = 0;
  430. foreach my $item ( sort keys %taxaccounts ) {
  431. if ( $form->round_amount( $taxaccounts{$item}, 2 ) ) {
  432. $tax += $taxamount = $form->round_amount( $taxaccounts{$item}, 2 );
  433. push(
  434. @{ $form->{taxbaseinclusive} },
  435. $form->{"${item}_taxbaseinclusive"} =
  436. $form->format_amount( $myconfig, $taxbase{$item} + $tax, 2 )
  437. );
  438. push(
  439. @{ $form->{taxbase} },
  440. $form->{"${item}_taxbase"} =
  441. $form->format_amount( $myconfig, $taxbase{$item}, 2 )
  442. );
  443. push(
  444. @{ $form->{tax} },
  445. $form->{"${item}_tax"} =
  446. $form->format_amount( $myconfig, $taxamount, 2 )
  447. );
  448. push( @{ $form->{taxdescription} },
  449. $form->{"${item}_description"} );
  450. $form->{"${item}_taxrate"} =
  451. $form->format_amount( $myconfig, $form->{"${item}_rate"} * 100 );
  452. push( @{ $form->{taxrate} }, $form->{"${item}_taxrate"} );
  453. push( @{ $form->{taxnumber} }, $form->{"${item}_taxnumber"} );
  454. }
  455. }
  456. # adjust taxes for lineitems
  457. my $total = 0;
  458. for ( @{ $form->{lineitems} } ) {
  459. $total += $_->{tax};
  460. }
  461. if ( $form->round_amount( $total, 2 ) != $form->round_amount( $tax, 2 ) ) {
  462. # get largest amount
  463. for ( reverse sort { $a->{tax} <=> $b->{tax} } @{ $form->{lineitems} } )
  464. {
  465. $_->{tax} -= $total - $tax;
  466. last;
  467. }
  468. }
  469. $i = 1;
  470. for ( @{ $form->{lineitems} } ) {
  471. push(
  472. @{ $form->{linetax} },
  473. $form->format_amount( $myconfig, $_->{tax}, 2, "" )
  474. );
  475. }
  476. for $i ( 1 .. $form->{paidaccounts} ) {
  477. if ( $form->{"paid_$i"} ) {
  478. push( @{ $form->{payment} }, $form->{"paid_$i"} );
  479. my ( $accno, $description ) = split /--/, $form->{"AR_paid_$i"};
  480. push( @{ $form->{paymentaccount} }, $description );
  481. push( @{ $form->{paymentdate} }, $form->{"datepaid_$i"} );
  482. push( @{ $form->{paymentsource} }, $form->{"source_$i"} );
  483. push( @{ $form->{paymentmemo} }, $form->{"memo_$i"} );
  484. $form->{paid} +=
  485. $form->parse_amount( $myconfig, $form->{"paid_$i"} );
  486. }
  487. }
  488. for (qw(totalparts totalservices)) {
  489. $form->{$_} = $form->format_amount( $myconfig, $form->{$_}, 2 );
  490. }
  491. for (qw(totalqty totalship totalweight)) {
  492. $form->{$_} = $form->format_amount( $myconfig, $form->{$_} );
  493. }
  494. $form->{subtotal} = $form->format_amount( $myconfig, $form->{total}, 2 );
  495. $form->{subtotal} = '0.00' unless $form->{subtotal};
  496. $form->{invtotal} =
  497. ( $form->{taxincluded} ) ? $form->{total} : $form->{total} + $tax;
  498. my $c;
  499. if ( $form->{language_code} ne "" ) {
  500. $c = new CP $form->{language_code};
  501. }
  502. else {
  503. $c = new CP $myconfig->{countrycode};
  504. }
  505. $c->init;
  506. my $whole;
  507. ( $whole, $form->{decimal} ) = split /\./, $form->{invtotal};
  508. $form->{decimal} .= "00";
  509. $form->{decimal} = substr( $form->{decimal}, 0, 2 );
  510. $form->{text_decimal} = $c->num2text( $form->{decimal} * 1 );
  511. $form->{text_amount} = $c->num2text($whole);
  512. $form->{integer_amount} = $form->format_amount( $myconfig, $whole );
  513. $form->format_string(qw(text_amount text_decimal));
  514. $form->{total} =
  515. $form->format_amount( $myconfig, $form->{invtotal} - $form->{paid}, 2 );
  516. $form->{invtotal} = $form->format_amount( $myconfig, $form->{invtotal}, 2 );
  517. $form->{paid} = $form->format_amount( $myconfig, $form->{paid}, 2 );
  518. $dbh->commit;
  519. }
  520. sub assembly_details {
  521. my ( $myconfig, $form, $dbh2, $id, $oid, $qty ) = @_;
  522. $dbh = $form->{dbh};
  523. my $sm = "";
  524. my $spacer;
  525. $form->{stagger}++;
  526. if ( $form->{format} eq 'html' ) {
  527. $spacer = "&nbsp;" x ( 3 * ( $form->{stagger} - 1 ) )
  528. if $form->{stagger} > 1;
  529. }
  530. if ( $form->{format} =~ /(postscript|pdf)/ ) {
  531. if ( $form->{stagger} > 1 ) {
  532. $spacer = ( $form->{stagger} - 1 ) * 3;
  533. $spacer = '\rule{' . $spacer . 'mm}{0mm}';
  534. }
  535. }
  536. # get parts and push them onto the stack
  537. my $sortorder = "";
  538. if ( $form->{grouppartsgroup} ) {
  539. $sortorder = qq|ORDER BY pg.partsgroup|;
  540. }
  541. my $query = qq|
  542. SELECT p.partnumber, p.description, p.unit, a.qty,
  543. pg.partsgroup, p.partnumber AS sku
  544. FROM assembly a
  545. JOIN parts p ON (a.parts_id = p.id)
  546. LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
  547. WHERE a.bom = '1'
  548. AND a.id = ?
  549. $sortorder|;
  550. my $sth = $dbh->prepare($query);
  551. $sth->execute($id) || $form->dberror($query);
  552. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  553. for (qw(partnumber description partsgroup)) {
  554. $form->{"a_$_"} = $ref->{$_};
  555. $form->format_string("a_$_");
  556. }
  557. if ( $form->{grouppartsgroup} && $ref->{partsgroup} ne $sm ) {
  558. for (
  559. qw(taxrates runningnumber number sku
  560. serialnumber unit qty ship bin deliverydate
  561. projectnumber sellprice listprice netprice
  562. discount discountrate linetotal weight
  563. itemnotes)
  564. )
  565. {
  566. push( @{ $form->{$_} }, "" );
  567. }
  568. $sm =
  569. ( $form->{"a_partsgroup"} )
  570. ? $form->{"a_partsgroup"}
  571. : "--";
  572. push( @{ $form->{description} }, "$spacer$sm" );
  573. push( @{ $form->{lineitems} }, { amount => 0, tax => 0 } );
  574. }
  575. if ( $form->{stagger} ) {
  576. push(
  577. @{ $form->{description} },
  578. $form->format_amount( $myconfig,
  579. $ref->{qty} * $form->{"qty_$i"} )
  580. . qq| -- $form->{"a_partnumber"}|
  581. . qq|, $form->{"a_description"}|
  582. );
  583. for (
  584. qw(taxrates runningnumber number sku
  585. serialnumber unit qty ship bin deliverydate
  586. projectnumber sellprice listprice netprice
  587. discount discountrate linetotal weight
  588. itemnotes)
  589. )
  590. {
  591. push( @{ $form->{$_} }, "" );
  592. }
  593. }
  594. else {
  595. push( @{ $form->{description} }, qq|$form->{"a_description"}| );
  596. push( @{ $form->{number} }, $form->{"a_partnumber"} );
  597. push( @{ $form->{sku} }, $form->{"a_partnumber"} );
  598. for (
  599. qw(taxrates runningnumber ship serialnumber
  600. reqdate projectnumber sellprice listprice
  601. netprice discount discountrate linetotal weight
  602. itemnotes)
  603. )
  604. {
  605. push( @{ $form->{$_} }, "" );
  606. }
  607. }
  608. push( @{ $form->{lineitems} }, { amount => 0, tax => 0 } );
  609. push(
  610. @{ $form->{qty} },
  611. $form->format_amount( $myconfig, $ref->{qty} * $qty )
  612. );
  613. for (qw(unit bin)) {
  614. $form->{"a_$_"} = $ref->{$_};
  615. $form->format_string("a_$_");
  616. push( @{ $form->{$_} }, $form->{"a_$_"} );
  617. }
  618. }
  619. $sth->finish;
  620. $form->{stagger}--;
  621. }
  622. sub project_description {
  623. my ( $self, $dbh2, $id ) = @_;
  624. $dbh = $form->{dbh};
  625. my $query = qq|
  626. SELECT description
  627. FROM project
  628. WHERE id = ?|;
  629. $sth = $dbh->prepare($query);
  630. $sth->execute($id);
  631. ($_) = $sth->fetchrow_array;
  632. $_;
  633. }
  634. sub customer_details {
  635. my ( $self, $myconfig, $form ) = @_;
  636. my $dbh = $form->{dbh};
  637. # get rest for the customer
  638. my $query = qq|
  639. SELECT customernumber, name, address1, address2, city,
  640. state, zipcode, country,
  641. contact, phone as customerphone, fax as customerfax,
  642. taxnumber AS customertaxnumber, sic_code AS sic, iban,
  643. bic, startdate, enddate
  644. FROM customer
  645. WHERE id = ?|;
  646. my $sth = $dbh->prepare($query);
  647. $sth->execute( $form->{customer_id} ) || $form->dberror($query);
  648. $ref = $sth->fetchrow_hashref(NAME_lc);
  649. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  650. $sth->finish;
  651. }
  652. sub post_invoice {
  653. my ( $self, $myconfig, $form ) = @_;
  654. my $dbh = $form->{dbh};
  655. $form->{invnumber} = $form->update_defaults( $myconfig, "sinumber", $dbh )
  656. unless $form->{invnumber};
  657. my $query;
  658. my $sth;
  659. my $null;
  660. my $project_id;
  661. my $exchangerate = 0;
  662. my $keepcleared = 0;
  663. %$form->{acc_trans} = ();
  664. ( $null, $form->{employee_id} ) = split /--/, $form->{employee};
  665. unless ( $form->{employee_id} ) {
  666. ( $form->{employee}, $form->{employee_id} ) = $form->get_employee($dbh);
  667. }
  668. ( $null, $form->{department_id} ) = split( /--/, $form->{department} );
  669. $form->{department_id} *= 1;
  670. $query = qq|
  671. SELECT (SELECT value FROM defaults
  672. WHERE setting_key = 'fxgain_accno_id')
  673. AS fxgain_accno_id,
  674. (SELECT value FROM defaults
  675. WHERE setting_key = 'fxloss_accno_id')
  676. AS fxloss_accno_id|;
  677. my ( $fxgain_accno_id, $fxloss_accno_id ) = $dbh->selectrow_array($query);
  678. $query = qq|
  679. SELECT p.assembly, p.inventory_accno_id,
  680. p.income_accno_id, p.expense_accno_id, p.project_id
  681. FROM parts p
  682. WHERE p.id = ?|;
  683. my $pth = $dbh->prepare($query) || $form->dberror($query);
  684. if ( $form->{id} ) {
  685. $keepcleared = 1;
  686. $query = qq|SELECT id FROM ar WHERE id = ?|;
  687. $sth = $dbh->prepare($query);
  688. $sth->execute( $form->{id} );
  689. if ( $sth->fetchrow_array ) {
  690. &reverse_invoice( $dbh, $form );
  691. }
  692. else {
  693. $query = qq|INSERT INTO ar (id) VALUES (?)|;
  694. $sth = $dbh->prepare($query);
  695. $sth->execute( $form->{id} ) || $form->dberror($query);
  696. }
  697. }
  698. my $uid = localtime;
  699. $uid .= "$$";
  700. if ( !$form->{id} ) {
  701. $query = qq|
  702. INSERT INTO ar (invnumber, employee_id)
  703. VALUES ('$uid', ?)|;
  704. $sth = $dbh->prepare($query);
  705. $sth->execute( $form->{employee_id} ) || $form->dberror($query);
  706. $query = qq|SELECT id FROM ar WHERE invnumber = '$uid'|;
  707. $sth = $dbh->prepare($query);
  708. $sth->execute || $form->dberror($query);
  709. ( $form->{id} ) = $sth->fetchrow_array;
  710. $sth->finish;
  711. @queries = $form->run_custom_queries( 'ar', 'INSERT' );
  712. }
  713. if ( $form->{currency} eq $form->{defaultcurrency} ) {
  714. $form->{exchangerate} = 1;
  715. }
  716. else {
  717. $exchangerate =
  718. $form->check_exchangerate( $myconfig, $form->{currency},
  719. $form->{transdate}, 'buy' );
  720. }
  721. $form->{exchangerate} =
  722. ($exchangerate)
  723. ? $exchangerate
  724. : $form->parse_amount( $myconfig, $form->{exchangerate} );
  725. my $i;
  726. my $item;
  727. my $allocated = 0;
  728. my $taxrate;
  729. my $tax;
  730. my $fxtax;
  731. my @taxaccounts;
  732. my $amount;
  733. my $grossamount;
  734. my $invamount = 0;
  735. my $invnetamount = 0;
  736. my $diff = 0;
  737. my $ml;
  738. my $invoice_id;
  739. my $ndx;
  740. foreach $i ( 1 .. $form->{rowcount} ) {
  741. $form->{"qty_$i"} = $form->parse_amount( $myconfig, $form->{"qty_$i"} );
  742. if ( $form->{"qty_$i"} ) {
  743. $pth->execute( $form->{"id_$i"} );
  744. $ref = $pth->fetchrow_hashref(NAME_lc);
  745. for ( keys %$ref ) { $form->{"${_}_$i"} = $ref->{$_} }
  746. $pth->finish;
  747. # project
  748. if ( $form->{"projectnumber_$i"} ) {
  749. ( $null, $project_id ) = split /--/,
  750. $form->{"projectnumber_$i"};
  751. }
  752. $project_id = $form->{"project_id_$i"}
  753. if $form->{"project_id_$i"};
  754. # keep entered selling price
  755. my $fxsellprice =
  756. $form->parse_amount( $myconfig, $form->{"sellprice_$i"} );
  757. my ($dec) = ( $fxsellprice =~ /\.(\d+)/ );
  758. $dec = length $dec;
  759. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  760. # undo discount formatting
  761. $form->{"discount_$i"} =
  762. $form->parse_amount( $myconfig, $form->{"discount_$i"} ) / 100;
  763. # deduct discount
  764. $form->{"sellprice_$i"} = $fxsellprice -
  765. $form->round_amount( $fxsellprice * $form->{"discount_$i"},
  766. $decimalplaces );
  767. # linetotal
  768. my $fxlinetotal =
  769. $form->round_amount( $form->{"sellprice_$i"} * $form->{"qty_$i"},
  770. 2 );
  771. $amount = $fxlinetotal * $form->{exchangerate};
  772. my $linetotal = $form->round_amount( $amount, 2 );
  773. $fxdiff += $amount - $linetotal;
  774. @taxaccounts = Tax::init_taxes(
  775. $form,
  776. $form->{"taxaccounts_$i"},
  777. $form->{"taxaccounts"}
  778. );
  779. $ml = 1;
  780. $tax = Math::BigFloat->bzero();
  781. $fxtax = Math::BigFloat->bzero();
  782. if ( $form->{taxincluded} ) {
  783. $tax += $amount =
  784. Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 1 );
  785. $form->{"sellprice_$i"} -= $amount / $form->{"qty_$i"};
  786. $fxtax +=
  787. Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 1 );
  788. }
  789. else {
  790. $tax += $amount =
  791. Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 0 );
  792. $fxtax +=
  793. Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 0 );
  794. }
  795. for (@taxaccounts) {
  796. $form->{acc_trans}{ $form->{id} }{ $_->account }{amount} +=
  797. $_->value;
  798. }
  799. $grossamount = $form->round_amount( $linetotal, 2 );
  800. if ( $form->{taxincluded} ) {
  801. $amount = $form->round_amount( $tax, 2 );
  802. $linetotal -= $form->round_amount( $tax - $diff, 2 );
  803. $diff = ( $amount - $tax );
  804. }
  805. # add linetotal to income
  806. $amount = $form->round_amount( $linetotal, 2 );
  807. push @{ $form->{acc_trans}{lineitems} },
  808. {
  809. chart_id => $form->{"income_accno_id_$i"},
  810. amount => $amount,
  811. fxgrossamount => $fxlinetotal + $fxtax,
  812. grossamount => $grossamount,
  813. project_id => $project_id
  814. };
  815. $ndx = $#{ @{ $form->{acc_trans}{lineitems} } };
  816. $form->{"sellprice_$i"} =
  817. $form->round_amount(
  818. $form->{"sellprice_$i"} * $form->{exchangerate},
  819. $decimalplaces );
  820. if ( $form->{"inventory_accno_id_$i"}
  821. || $form->{"assembly_$i"} )
  822. {
  823. if ( $form->{"assembly_$i"} ) {
  824. # If the assembly consists of all
  825. # services, we don't keep inventory,
  826. # so we should not update it
  827. $query = qq|
  828. SELECT sum(
  829. p.inventory_accno_id),
  830. p.assembly
  831. FROM parts p
  832. JOIN assembly a
  833. ON (a.parts_id = p.id)
  834. WHERE a.id = ?
  835. GROUP BY p.assembly|;
  836. $sth = $dbh->prepare($query);
  837. $sth->execute( $form->{"id_$i"} )
  838. || $form->dberror($query);
  839. my ( $inv, $assembly ) = $sth->fetchrow_array;
  840. $sth->finish;
  841. if ( $inv || $assembly ) {
  842. $form->update_balance(
  843. $dbh, "parts", "onhand",
  844. qq|id = | . qq|$form->{"id_$i"}|,
  845. $form->{"qty_$i"} * -1
  846. ) unless $form->{shipped};
  847. }
  848. &process_assembly( $dbh, $form, $form->{"id_$i"},
  849. $form->{"qty_$i"}, $project_id );
  850. }
  851. else {
  852. $form->update_balance(
  853. $dbh, "parts", "onhand",
  854. qq|id = $form->{"id_$i"}|,
  855. $form->{"qty_$i"} * -1
  856. ) unless $form->{shipped};
  857. if($form->{"qty_$i"}>0) {
  858. $query = qq|
  859. SELECT i.id, i.qty, i.allocated, a.transdate
  860. FROM invoice i
  861. JOIN parts p ON (p.id = i.parts_id)
  862. JOIN ar a ON (a.id = i.trans_id)
  863. WHERE i.parts_id = ?
  864. AND (i.qty + i.allocated) < 0
  865. AND i.sellprice = ?
  866. ORDER BY transdate|;
  867. $sth = $dbh->prepare($query);
  868. $sth->execute( $form->{"id_$i"}, $form->{"sellprice_$i"}) || $form->dberror($query);
  869. my $totalqty = $form->{"qty_$i"};
  870. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  871. $form->db_parse_numeric(sth=>$sth, hashref => $ref);
  872. my $qty = $ref->{qty} + $ref->{allocated};
  873. if ( ( $qty + $totalqty ) < 0 ) { $qty = -$totalqty; }
  874. # update allocated for sold item
  875. $form->update_balance( $dbh, "invoice", "allocated", qq|id = $ref->{id}|, (-1)*$qty);
  876. $allocated += $qty;
  877. last if ( ( $totalqty += $qty ) <= 0 );
  878. }
  879. } else {
  880. my $total_inventory = 0;
  881. $query = qq|
  882. SELECT i.id, i.qty, i.allocated, a.transdate
  883. FROM invoice i
  884. JOIN parts p ON (p.id = i.parts_id)
  885. JOIN ar a ON (a.id = i.trans_id)
  886. WHERE i.parts_id = ? AND (i.qty + i.allocated) > 0 AND i.sellprice = ?
  887. ORDER BY transdate
  888. |;
  889. $sth = $dbh->prepare($query);
  890. $sth->execute(
  891. $form->{"id_$i"}, $form->{"sellprice_$i"}
  892. ) || $form->dberror($query);
  893. my $totalqty = $form->{"qty_$i"};
  894. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  895. $form->db_parse_numeric(sth=>$sth, hashref => $ref);
  896. my $qty = $ref->{qty} + $ref->{allocated};
  897. if ( ( $qty + $totalqty ) > 0 ) { $qty = -$totalqty; }
  898. # update allocated for sold item
  899. $form->update_balance(
  900. $dbh, "invoice", "allocated",
  901. qq|id = $ref->{id}|, $qty * -1
  902. );
  903. $allocated += $qty;
  904. my $linetotal = $qty*$ref->{sellprice};
  905. $query = qq|
  906. INSERT INTO acc_trans
  907. (trans_id, chart_id, amount,
  908. transdate, project_id, invoice_id)
  909. VALUES (?, ?, ?, ?, ?, ?)|;
  910. my $sth1 = $dbh->prepare($query);
  911. $sth1->execute(
  912. $form->{id}, $form->{"expense_accno_id_$i"},
  913. $linetotal, $form->{transdate},
  914. $form->{"project_id_$i"}, $ref->{id}
  915. ) || $form->dberror($query);
  916. $linetotal = (-1)*$linetotal;
  917. $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, invoice_id) VALUES (?, ?, ?, ?, ?, ?)|;
  918. $sth1 = $dbh->prepare($query);
  919. $sth1->execute(
  920. $form->{id}, $form->{"inventory_accno_id_$i"},
  921. $linetotal, $form->{transdate},
  922. $form->{"project_id_$i"}, $ref->{id}
  923. ) || $form->dberror($query);
  924. last if ( ( $totalqty += $qty ) >= 0 );
  925. }
  926. }
  927. }
  928. }
  929. # save detail record in invoice table
  930. $query = qq|
  931. INSERT INTO invoice (description)
  932. VALUES ('$uid')|;
  933. $dbh->do($query) || $form->dberror($query);
  934. $query = qq|
  935. SELECT id FROM invoice
  936. WHERE description = '$uid'|;
  937. ($invoice_id) = $dbh->selectrow_array($query);
  938. unless ( $form->{"deliverydate_$i"} ) {
  939. undef $form->{"deliverydate_$i"};
  940. }
  941. $query = qq|
  942. UPDATE invoice
  943. SET trans_id = ?,
  944. parts_id = ?,
  945. description = ?,
  946. qty = ?,
  947. sellprice = ?,
  948. fxsellprice = ?,
  949. discount = ?,
  950. allocated = ?,
  951. unit = ?,
  952. deliverydate = ?,
  953. project_id = ?,
  954. serialnumber = ?,
  955. notes = ?
  956. WHERE id = ?|;
  957. $sth = $dbh->prepare($query);
  958. $sth->execute(
  959. $form->{id}, $form->{"id_$i"},
  960. $form->{"description_$i"}, $form->{"qty_$i"},
  961. $form->{"sellprice_$i"}, $fxsellprice,
  962. $form->{"discount_$i"}, $allocated,
  963. $form->{"unit_$i"}, $form->{"deliverydate_$i"},
  964. $project_id, $form->{"serialnumber_$i"},
  965. $form->{"notes_$i"}, $invoice_id
  966. ) || $form->dberror($query);
  967. # add invoice_id
  968. $form->{acc_trans}{lineitems}[$ndx]->{invoice_id} = $invoice_id;
  969. }
  970. }
  971. $form->{paid} = 0;
  972. for $i ( 1 .. $form->{paidaccounts} ) {
  973. $form->{"paid_$i"} =
  974. $form->parse_amount( $myconfig, $form->{"paid_$i"} );
  975. $form->{paid} += $form->{"paid_$i"};
  976. $form->{datepaid} = $form->{"datepaid_$i"}
  977. if ( $form->{"paid_$i"} );
  978. }
  979. # add lineitems + tax
  980. $amount = 0;
  981. $grossamount = 0;
  982. $fxgrossamount = 0;
  983. for ( @{ $form->{acc_trans}{lineitems} } ) {
  984. $amount += $_->{amount};
  985. $grossamount += $_->{grossamount};
  986. $fxgrossamount += $_->{fxgrossamount};
  987. }
  988. $invnetamount = $amount;
  989. $amount = 0;
  990. for ( split / /, $form->{taxaccounts} ) {
  991. $amount += $form->{acc_trans}{ $form->{id} }{$_}{amount} =
  992. $form->round_amount( $form->{acc_trans}{ $form->{id} }{$_}{amount},
  993. 2 );
  994. }
  995. $invamount = $invnetamount + $amount;
  996. $diff = 0;
  997. if ( $form->{taxincluded} ) {
  998. $diff = $form->round_amount( $grossamount - $invamount, 2 );
  999. $invamount += $diff;
  1000. }
  1001. $fxdiff = $form->round_amount( $fxdiff, 2 );
  1002. $invnetamount += $fxdiff;
  1003. $invamount += $fxdiff;
  1004. if ( $form->round_amount( $form->{paid} - $fxgrossamount, 2 ) == 0 ) {
  1005. $form->{paid} = $invamount;
  1006. }
  1007. else {
  1008. $form->{paid} =
  1009. $form->round_amount( $form->{paid} * $form->{exchangerate}, 2 );
  1010. }
  1011. foreach $ref ( sort { $b->{amount} <=> $a->{amount} }
  1012. @{ $form->{acc_trans}{lineitems} } )
  1013. {
  1014. $amount = $ref->{amount} + $diff + $fxdiff;
  1015. $query = qq|
  1016. INSERT INTO acc_trans
  1017. (trans_id, chart_id, amount,
  1018. transdate, project_id, invoice_id)
  1019. VALUES (?, ?, ?, ?, ?, ?)|;
  1020. $sth = $dbh->prepare($query);
  1021. $sth->execute( $form->{id}, $ref->{chart_id}, $amount,
  1022. $form->{transdate}, $ref->{project_id}, $ref->{invoice_id} )
  1023. || $form->dberror($query);
  1024. $diff = 0;
  1025. $fxdiff = 0;
  1026. }
  1027. $form->{receivables} = $invamount * -1;
  1028. delete $form->{acc_trans}{lineitems};
  1029. # update exchangerate
  1030. if ( ( $form->{currency} ne $form->{defaultcurrency} ) && !$exchangerate ) {
  1031. $form->update_exchangerate( $dbh, $form->{currency}, $form->{transdate},
  1032. $form->{exchangerate}, 0 );
  1033. }
  1034. # record receivable
  1035. if ( $form->{receivables} ) {
  1036. ($accno) = split /--/, $form->{AR};
  1037. $query = qq|
  1038. INSERT INTO acc_trans
  1039. (trans_id, chart_id, amount, transdate)
  1040. VALUES (?, (SELECT id FROM chart WHERE accno = ?),
  1041. ?, ?)|;
  1042. $sth = $dbh->prepare($query);
  1043. $sth->execute( $form->{id}, $accno, $form->{receivables},
  1044. $form->{transdate} )
  1045. || $form->dberror($query);
  1046. }
  1047. foreach my $trans_id ( keys %{ $form->{acc_trans} } ) {
  1048. foreach my $accno ( keys %{ $form->{acc_trans}{$trans_id} } ) {
  1049. $amount =
  1050. $form->round_amount(
  1051. $form->{acc_trans}{$trans_id}{$accno}{amount}, 2 );
  1052. if ($amount) {
  1053. $query = qq|
  1054. INSERT INTO acc_trans
  1055. (trans_id, chart_id, amount,
  1056. transdate)
  1057. VALUES (?, (SELECT id FROM chart
  1058. WHERE accno = ?),
  1059. ?, ?)|;
  1060. $sth = $dbh->prepare($query);
  1061. $sth->execute( $trans_id, $accno, $amount, $form->{transdate} )
  1062. || $form->dberror($query);
  1063. }
  1064. }
  1065. }
  1066. # if there is no amount but a payment record receivable
  1067. if ( $invamount == 0 ) {
  1068. $form->{receivables} = 1;
  1069. }
  1070. my $cleared = 0;
  1071. # record payments and offsetting AR
  1072. for $i ( 1 .. $form->{paidaccounts} ) {
  1073. if ( $form->{"paid_$i"} ) {
  1074. my ($accno) = split /--/, $form->{"AR_paid_$i"};
  1075. $form->{"datepaid_$i"} = $form->{transdate}
  1076. unless ( $form->{"datepaid_$i"} );
  1077. $form->{datepaid} = $form->{"datepaid_$i"};
  1078. $exchangerate = 0;
  1079. if ( $form->{currency} eq $form->{defaultcurrency} ) {
  1080. $form->{"exchangerate_$i"} = 1;
  1081. }
  1082. else {
  1083. $exchangerate =
  1084. $form->check_exchangerate( $myconfig, $form->{currency},
  1085. $form->{"datepaid_$i"}, 'buy' );
  1086. $form->{"exchangerate_$i"} =
  1087. ($exchangerate)
  1088. ? $exchangerate
  1089. : $form->parse_amount( $myconfig,
  1090. $form->{"exchangerate_$i"} );
  1091. }
  1092. # record AR
  1093. $amount =
  1094. $form->round_amount( $form->{"paid_$i"} * $form->{exchangerate},
  1095. 2 );
  1096. if ( $form->{receivables} ) {
  1097. $query = qq|
  1098. INSERT INTO acc_trans
  1099. (trans_id, chart_id, amount,
  1100. transdate)
  1101. VALUES (?, (SELECT id FROM chart
  1102. WHERE accno = ?),
  1103. ?, ?)|;
  1104. $sth = $dbh->prepare($query);
  1105. $sth->execute( $form->{id}, $form->{AR}, $amount,
  1106. $form->{"datepaid_$i"} )
  1107. || $form->dberror($query);
  1108. }
  1109. # record payment
  1110. $amount = $form->{"paid_$i"} * -1;
  1111. if ($keepcleared) {
  1112. $cleared = ( $form->{"cleared_$i"} ) ? 1 : 0;
  1113. }
  1114. $query = qq|
  1115. INSERT INTO acc_trans
  1116. (trans_id, chart_id, amount,
  1117. transdate, source, memo, cleared)
  1118. VALUES (?, (SELECT id FROM chart
  1119. WHERE accno = ?),
  1120. ?, ?, ?, ?, ?)|;
  1121. $sth = $dbh->prepare($query);
  1122. $sth->execute( $form->{id}, $accno, $amount, $form->{"datepaid_$i"},
  1123. $form->{"source_$i"}, $form->{"memo_$i"}, $cleared )
  1124. || $form->dberror($query);
  1125. # exchangerate difference
  1126. $amount = $form->round_amount(
  1127. (
  1128. $form->round_amount(
  1129. $form->{"paid_$i"} * $form->{"exchangerate_$i"} -
  1130. $form->{"paid_$i"},
  1131. 2
  1132. )
  1133. ) * -1,
  1134. 2
  1135. );
  1136. if ($amount) {
  1137. $query = qq|
  1138. INSERT INTO acc_trans
  1139. (trans_id, chart_id, amount,
  1140. transdate, source,
  1141. fx_transaction, cleared)
  1142. VALUES (?, (SELECT id FROM chart
  1143. WHERE accno = ?),
  1144. ?, ?, ?, '1', ?)|;
  1145. $sth = $dbh->prepare($query);
  1146. $sth->execute( $form->{id}, $accno, $amount,
  1147. $form->{"datepaid_$i"},
  1148. $form->{"source_$i"}, $cleared )
  1149. || $form->dberror($query);
  1150. }
  1151. # gain/loss
  1152. $amount = $form->round_amount(
  1153. (
  1154. $form->round_amount(
  1155. $form->{"paid_$i"} * $form->{exchangerate}, 2 ) -
  1156. $form->round_amount(
  1157. $form->{"paid_$i"} * $form->{"exchangerate_$i"}, 2
  1158. )
  1159. ) * -1,
  1160. 2
  1161. );
  1162. if ($amount) {
  1163. my $accno_id =
  1164. ( $amount > 0 )
  1165. ? $fxgain_accno_id
  1166. : $fxloss_accno_id;
  1167. $query = qq|
  1168. INSERT INTO acc_trans (
  1169. trans_id, chart_id, amount,
  1170. transdate, fx_transaction,
  1171. cleared)
  1172. VALUES (?, ?, ?, ?, '1', ?)|;
  1173. $sth = $dbh->prepare($query);
  1174. $sth->execute( $form->{id}, $accno_id, $amount,
  1175. $form->{"datepaid_$i"}, $cleared )
  1176. || $form->dberror($query);
  1177. }
  1178. # update exchange rate
  1179. if ( ( $form->{currency} ne $form->{defaultcurrency} )
  1180. && !$exchangerate )
  1181. {
  1182. $form->update_exchangerate(
  1183. $dbh, $form->{currency},
  1184. $form->{"datepaid_$i"},
  1185. $form->{"exchangerate_$i"}, 0
  1186. );
  1187. }
  1188. }
  1189. }
  1190. # set values which could be empty to 0
  1191. $form->{terms} *= 1;
  1192. $form->{taxincluded} *= 1;
  1193. # save AR record
  1194. $query = qq|
  1195. UPDATE ar set
  1196. invnumber = ?,
  1197. ordnumber = ?,
  1198. quonumber = ?,
  1199. transdate = ?,
  1200. customer_id = ?,
  1201. amount = ?,
  1202. netamount = ?,
  1203. paid = ?,
  1204. datepaid = ?,
  1205. duedate = ?,
  1206. invoice = '1',
  1207. shippingpoint = ?,
  1208. shipvia = ?,
  1209. terms = ?,
  1210. notes = ?,
  1211. intnotes = ?,
  1212. taxincluded = ?,
  1213. curr = ?,
  1214. department_id = ?,
  1215. employee_id = ?,
  1216. till = ?,
  1217. language_code = ?,
  1218. ponumber = ?
  1219. WHERE id = ?
  1220. |;
  1221. $sth = $dbh->prepare($query);
  1222. $sth->execute(
  1223. $form->{invnumber}, $form->{ordnumber},
  1224. $form->{quonumber}, $form->{transdate},
  1225. $form->{customer_id}, $invamount,
  1226. $invnetamount, $form->{paid},
  1227. $form->{datepaid}, $form->{duedate},
  1228. $form->{shippingpoint}, $form->{shipvia},
  1229. $form->{terms}, $form->{notes},
  1230. $form->{intnotes}, $form->{taxincluded},
  1231. $form->{currency}, $form->{department_id},
  1232. $form->{employee_id}, $form->{till},
  1233. $form->{language_code}, $form->{ponumber},
  1234. $form->{id}
  1235. ) || $form->dberror($query);
  1236. # add shipto
  1237. $form->{name} = $form->{customer};
  1238. $form->{name} =~ s/--$form->{customer_id}//;
  1239. $form->add_shipto( $dbh, $form->{id} );
  1240. # save printed, emailed and queued
  1241. $form->save_status($dbh);
  1242. my %audittrail = (
  1243. tablename => 'ar',
  1244. reference => $form->{invnumber},
  1245. formname => $form->{type},
  1246. action => 'posted',
  1247. id => $form->{id}
  1248. );
  1249. $form->audittrail( $dbh, "", \%audittrail );
  1250. $form->save_recurring( $dbh, $myconfig );
  1251. my $rc = $dbh->commit;
  1252. $rc;
  1253. }
  1254. sub process_assembly {
  1255. my ( $dbh2, $form, $id, $totalqty, $project_id ) = @_;
  1256. my $dbh = $form->{dbh};
  1257. my $query = qq|
  1258. SELECT a.parts_id, a.qty, p.assembly,
  1259. p.partnumber, p.description, p.unit,
  1260. p.inventory_accno_id, p.income_accno_id,
  1261. p.expense_accno_id
  1262. FROM assembly a
  1263. JOIN parts p ON (a.parts_id = p.id)
  1264. WHERE a.id = ?|;
  1265. my $sth = $dbh->prepare($query);
  1266. $sth->execute($id) || $form->dberror($query);
  1267. my $allocated;
  1268. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1269. $allocated = 0;
  1270. $ref->{inventory_accno_id} *= 1;
  1271. $ref->{expense_accno_id} *= 1;
  1272. # multiply by number of assemblies
  1273. $ref->{qty} *= $totalqty;
  1274. if ( $ref->{assembly} ) {
  1275. &process_assembly( $dbh, $form, $ref->{parts_id}, $ref->{qty},
  1276. $project_id );
  1277. next;
  1278. }
  1279. else {
  1280. if ( $ref->{inventory_accno_id} ) {
  1281. $allocated =
  1282. &cogs( $dbh, $form, $ref->{parts_id}, $ref->{qty},
  1283. $project_id );
  1284. }
  1285. }
  1286. $query = qq|
  1287. INSERT INTO invoice
  1288. (trans_id, description, parts_id, qty,
  1289. sellprice, fxsellprice, allocated,
  1290. assemblyitem, unit)
  1291. VALUES (?, ?, ?, ?, 0, 0, ?, 't', ?)|;
  1292. my $sth = $dbh->prepare($query);
  1293. $sth->execute( $form->{id}, $ref->{description}, $ref->{parts_id},
  1294. $ref->{qty}, $allocated, $ref->{unit} )
  1295. || $form->dberror($query);
  1296. }
  1297. $sth->finish;
  1298. }
  1299. sub cogs {
  1300. my ( $dbh2, $form, $id, $totalqty, $project_id ) = @_;
  1301. my $dbh = $form->{dbh};
  1302. my $query = qq|
  1303. SELECT i.id, i.trans_id, i.qty, i.allocated, i.sellprice,
  1304. i.fxsellprice, p.inventory_accno_id,
  1305. p.expense_accno_id
  1306. FROM invoice i, parts p, ap a
  1307. WHERE i.parts_id = p.id
  1308. AND i.trans_id = a.id
  1309. AND i.parts_id = ?
  1310. AND (i.qty + i.allocated) < 0
  1311. ORDER BY trans_id|;
  1312. my $sth = $dbh->prepare($query);
  1313. $sth->execute($id) || $form->dberror($query);
  1314. my $allocated = 0;
  1315. my $qty;
  1316. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1317. $form->db_parse_numeric(sth=>$sth, hashref=>$ref);
  1318. if ( ( $qty = ( ( $ref->{qty} * -1 ) - $ref->{allocated} ) ) >
  1319. $totalqty )
  1320. {
  1321. $qty = $totalqty;
  1322. }
  1323. $form->update_balance( $dbh, "invoice", "allocated",
  1324. qq|id = $ref->{id}|, $qty );
  1325. # total expenses and inventory
  1326. # sellprice is the cost of the item
  1327. my $linetotal = $form->round_amount( $ref->{sellprice} * $qty, 2 );
  1328. # add expense
  1329. push @{ $form->{acc_trans}{lineitems} },
  1330. {
  1331. chart_id => $ref->{expense_accno_id},
  1332. amount => $linetotal * -1,
  1333. project_id => $project_id,
  1334. invoice_id => $ref->{id}
  1335. };
  1336. # deduct inventory
  1337. push @{ $form->{acc_trans}{lineitems} },
  1338. {
  1339. chart_id => $ref->{inventory_accno_id},
  1340. amount => $linetotal,
  1341. project_id => $project_id,
  1342. invoice_id => $ref->{id}
  1343. };
  1344. # add allocated
  1345. $allocated += -$qty;
  1346. last if ( ( $totalqty -= $qty ) <= 0 );
  1347. }
  1348. $sth->finish;
  1349. $allocated;
  1350. }
  1351. sub reverse_invoice {
  1352. my ( $dbh2, $form ) = @_;
  1353. my $dbh = $form->{dbh};
  1354. my $query = qq|
  1355. SELECT id FROM ar
  1356. WHERE id = ?|;
  1357. my $sth;
  1358. $sth = $dbh->prepare($query);
  1359. $sth->execute( $form->{id} );
  1360. my ($id) = $sth->fetchrow_array;
  1361. return unless $id;
  1362. # reverse inventory items
  1363. my $query = qq|
  1364. SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly,
  1365. p.inventory_accno_id
  1366. FROM invoice i
  1367. JOIN parts p ON (i.parts_id = p.id)
  1368. WHERE i.trans_id = ?|;
  1369. my $sth = $dbh->prepare($query);
  1370. $sth->execute( $form->{id} ) || $form->dberror($query);
  1371. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1372. if ( $ref->{inventory_accno_id} || $ref->{assembly} ) {
  1373. # if the invoice item is not an assemblyitem
  1374. # adjust parts onhand
  1375. if ( !$ref->{assemblyitem} ) {
  1376. # adjust onhand in parts table
  1377. $form->update_balance( $dbh, "parts", "onhand",
  1378. qq|id = $ref->{parts_id}|,
  1379. $ref->{qty} );
  1380. }
  1381. # loop if it is an assembly
  1382. next if ( $ref->{assembly} );
  1383. # de-allocated purchases
  1384. $query = qq|
  1385. SELECT id, trans_id, allocated
  1386. FROM invoice
  1387. WHERE parts_id = ?
  1388. AND allocated > 0
  1389. ORDER BY trans_id DESC|;
  1390. my $sth = $dbh->prepare($query);
  1391. $sth->execute( $ref->{parts_id} )
  1392. || $form->dberror($query);
  1393. while ( my $inhref = $sth->fetchrow_hashref(NAME_lc) ) {
  1394. $qty = $ref->{qty};
  1395. if ( ( $ref->{qty} - $inhref->{allocated} ) > 0 ) {
  1396. $qty = $inhref->{allocated};
  1397. }
  1398. # update invoice
  1399. $form->update_balance( $dbh, "invoice", "allocated",
  1400. qq|id = $inhref->{id}|,
  1401. $qty * -1 );
  1402. last if ( ( $ref->{qty} -= $qty ) <= 0 );
  1403. }
  1404. $sth->finish;
  1405. }
  1406. }
  1407. $sth->finish;
  1408. # delete acc_trans
  1409. $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
  1410. $sth = $dbh->prepare($query);
  1411. $sth->execute( $form->{id} ) || $form->dberror($query);
  1412. # delete invoice entries
  1413. $query = qq|DELETE FROM invoice WHERE trans_id = ?|;
  1414. $sth = $dbh->prepare($query);
  1415. $sth->execute( $form->{id} ) || $form->dberror($query);
  1416. $query = qq|DELETE FROM shipto WHERE trans_id = ?|;
  1417. $sth = $dbh->prepare($query);
  1418. $sth->execute( $form->{id} ) || $form->dberror($query);
  1419. $dbh->commit;
  1420. }
  1421. sub delete_invoice {
  1422. my ( $self, $myconfig, $form ) = @_;
  1423. my $dbh = $form->{dbh};
  1424. my $sth;
  1425. &reverse_invoice( $dbh, $form );
  1426. my %audittrail = (
  1427. tablename => 'ar',
  1428. reference => $form->{invnumber},
  1429. formname => $form->{type},
  1430. action => 'deleted',
  1431. id => $form->{id}
  1432. );
  1433. $form->audittrail( $dbh, "", \%audittrail );
  1434. # delete AR record
  1435. my $query = qq|DELETE FROM ar WHERE id = ?|;
  1436. $sth = $dbh->prepare($query);
  1437. $sth->execute( $form->{id} ) || $form->dberror($query);
  1438. # delete spool files
  1439. $query = qq|
  1440. SELECT spoolfile FROM status
  1441. WHERE trans_id = ? AND spoolfile IS NOT NULL|;
  1442. $sth = $dbh->prepare($query);
  1443. $sth->execute( $form->{id} ) || $form->dberror($query);
  1444. my $spoolfile;
  1445. my @spoolfiles = ();
  1446. while ( ($spoolfile) = $sth->fetchrow_array ) {
  1447. push @spoolfiles, $spoolfile;
  1448. }
  1449. $sth->finish;
  1450. # delete status entries
  1451. $query = qq|DELETE FROM status WHERE trans_id = ?|;
  1452. $sth = $dbh->prepare($query);
  1453. $sth->execute( $form->{id} ) || $form->dberror($query);
  1454. my $rc = $dbh->commit;
  1455. if ($rc) {
  1456. foreach $spoolfile (@spoolfiles) {
  1457. unlink "${LedgerSMB::Sysconfig::spool}/$spoolfile"
  1458. if $spoolfile;
  1459. }
  1460. }
  1461. $rc;
  1462. }
  1463. sub retrieve_invoice {
  1464. my ( $self, $myconfig, $form ) = @_;
  1465. my $dbh = $form->{dbh};
  1466. my $query;
  1467. if ( $form->{id} ) {
  1468. # get default accounts and last invoice number
  1469. $query = qq|
  1470. SELECT value AS currencies FROM defaults
  1471. WHERE setting_key = 'curr'|;
  1472. }
  1473. else {
  1474. $query = qq|
  1475. SELECT value AS currencies, current_date AS transdate
  1476. FROM defaults
  1477. WHERE setting_key = 'curr'|;
  1478. }
  1479. my $sth = $dbh->prepare($query);
  1480. $sth->execute || $form->dberror($query);
  1481. my $ref = $sth->fetchrow_hashref(NAME_lc);
  1482. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1483. $sth->finish;
  1484. if ( $form->{id} ) {
  1485. # retrieve invoice
  1486. $query = qq|
  1487. SELECT a.invnumber, a.ordnumber, a.quonumber,
  1488. a.transdate, a.paid,
  1489. a.shippingpoint, a.shipvia, a.terms, a.notes,
  1490. a.intnotes,
  1491. a.duedate, a.taxincluded, a.curr AS currency,
  1492. a.employee_id, e.name AS employee, a.till,
  1493. a.customer_id,
  1494. a.language_code, a.ponumber
  1495. FROM ar a
  1496. LEFT JOIN employee e ON (e.id = a.employee_id)
  1497. WHERE a.id = ?|;
  1498. $sth = $dbh->prepare($query);
  1499. $sth->execute( $form->{id} ) || $form->dberror($query);
  1500. $ref = $sth->fetchrow_hashref(NAME_lc);
  1501. $form->db_parse_numeric(sth=> $sth, hashref=>$ref_);
  1502. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1503. $sth->finish;
  1504. # get shipto
  1505. $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
  1506. $sth = $dbh->prepare($query);
  1507. $sth->execute( $form->{id} ) || $form->dberror($query);
  1508. $ref = $sth->fetchrow_hashref(NAME_lc);
  1509. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1510. $sth->finish;
  1511. # retrieve individual items
  1512. $query = qq|
  1513. SELECT i.description, i.qty, i.fxsellprice,
  1514. i.sellprice, i.discount, i.parts_id AS id,
  1515. i.unit, i.deliverydate, i.project_id,
  1516. pr.projectnumber, i.serialnumber, i.notes,
  1517. p.partnumber, p.assembly, p.bin,
  1518. pg.partsgroup, p.partsgroup_id,
  1519. p.partnumber AS sku, p.listprice, p.lastcost,
  1520. p.weight, p.onhand, p.inventory_accno_id,
  1521. p.income_accno_id, p.expense_accno_id,
  1522. t.description AS partsgrouptranslation
  1523. FROM invoice i
  1524. JOIN parts p ON (i.parts_id = p.id)
  1525. LEFT JOIN project pr ON (i.project_id = pr.id)
  1526. LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
  1527. LEFT JOIN translation t
  1528. ON (t.trans_id = p.partsgroup_id
  1529. AND t.language_code
  1530. = ?)
  1531. WHERE i.trans_id = ?
  1532. AND NOT i.assemblyitem = '1'
  1533. ORDER BY i.id|;
  1534. $sth = $dbh->prepare($query);
  1535. $sth->execute( $form->{language_code}, $form->{id} )
  1536. || $form->dberror($query);
  1537. # foreign currency
  1538. &exchangerate_defaults( $dbh, $form );
  1539. # query for price matrix
  1540. my $pmh = PriceMatrix::price_matrix_query( $dbh, $form );
  1541. # taxes
  1542. $query = qq|
  1543. SELECT c.accno
  1544. FROM chart c
  1545. JOIN partstax pt ON (pt.chart_id = c.id)
  1546. WHERE pt.parts_id = ?|;
  1547. my $tth = $dbh->prepare($query) || $form->dberror($query);
  1548. my $taxrate;
  1549. my $ptref;
  1550. while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1551. $form->db_parse_numeric(sth=>$sth, hashref => $ref);
  1552. my ($dec) = ( $ref->{fxsellprice} =~ /\.(\d+)/ );
  1553. $dec = length $dec;
  1554. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  1555. $tth->execute( $ref->{id} );
  1556. $ref->{taxaccounts} = "";
  1557. $taxrate = 0;
  1558. while ( $ptref = $tth->fetchrow_hashref(NAME_lc) ) {
  1559. $ref->{taxaccounts} .= "$ptref->{accno} ";
  1560. $taxrate += $form->{"$ptref->{accno}_rate"};
  1561. }
  1562. $tth->finish;
  1563. chop $ref->{taxaccounts};
  1564. # price matrix
  1565. $ref->{sellprice} =
  1566. ( $ref->{fxsellprice} * $form->{ $form->{currency} } );
  1567. PriceMatrix::price_matrix( $pmh, $ref, $form->{transdate},
  1568. $decimalplaces, $form, $myconfig );
  1569. $ref->{sellprice} = $ref->{fxsellprice};
  1570. $ref->{partsgroup} = $ref->{partsgrouptranslation}
  1571. if $ref->{partsgrouptranslation};
  1572. push @{ $form->{invoice_details} }, $ref;
  1573. }
  1574. $sth->finish;
  1575. }
  1576. @queries = $form->run_custom_queries( 'ar', 'SELECT' );
  1577. my $rc = $dbh->commit;
  1578. $rc;
  1579. }
  1580. sub retrieve_item {
  1581. my ( $self, $myconfig, $form ) = @_;
  1582. my $dbh = $form->{dbh};
  1583. my $i = $form->{rowcount};
  1584. my $null;
  1585. my $var;
  1586. my $where = "WHERE p.obsolete = '0' AND NOT p.income_accno_id IS NULL";
  1587. if ( $form->{"partnumber_$i"} ne "" ) {
  1588. $var = $dbh->quote( $form->like( lc $form->{"partnumber_$i"} ) );
  1589. $where .= " AND lower(p.partnumber) LIKE $var";
  1590. }
  1591. if ( $form->{"description_$i"} ne "" ) {
  1592. $var = $dbh->quote( $form->like( lc $form->{"description_$i"} ) );
  1593. if ( $form->{language_code} ne "" ) {
  1594. $where .= " AND lower(t1.description) LIKE $var";
  1595. }
  1596. else {
  1597. $where .= " AND lower(p.description) LIKE $var";
  1598. }
  1599. }
  1600. if ( $form->{"partsgroup_$i"} ne "" ) {
  1601. ( $null, $var ) = split /--/, $form->{"partsgroup_$i"};
  1602. if ( ! $var ) {
  1603. # search by partsgroup, this is for the POS
  1604. $where .=
  1605. qq| AND pg.partsgroup = |
  1606. . $dbh->quote( $form->{"partsgroup_$i"} );
  1607. }
  1608. else {
  1609. $var = $dbh->quote($var);
  1610. $where .= qq| AND p.partsgroup_id = $var|;
  1611. }
  1612. }
  1613. if ( $form->{"description_$i"} ne "" ) {
  1614. $where .= " ORDER BY 3";
  1615. }
  1616. else {
  1617. $where .= " ORDER BY 2";
  1618. }
  1619. my $query = qq|
  1620. SELECT p.id, p.partnumber, p.description, p.sellprice,
  1621. p.listprice, p.lastcost, p.unit, p.assembly, p.bin,
  1622. p.onhand, p.notes, p.inventory_accno_id,
  1623. p.income_accno_id, p.expense_accno_id, pg.partsgroup,
  1624. p.partsgroup_id, p.partnumber AS sku, p.weight,
  1625. t1.description AS translation,
  1626. t2.description AS grouptranslation
  1627. FROM parts p
  1628. LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
  1629. LEFT JOIN translation t1
  1630. ON (t1.trans_id = p.id AND t1.language_code = ?)
  1631. LEFT JOIN translation t2
  1632. ON (t2.trans_id = p.partsgroup_id
  1633. AND t2.language_code = ?)
  1634. $where|;
  1635. my $sth = $dbh->prepare($query);
  1636. $sth->execute( $form->{language_code}, $form->{language_code} )
  1637. || $form->dberror($query);
  1638. my $ref;
  1639. my $ptref;
  1640. # setup exchange rates
  1641. &exchangerate_defaults( $dbh, $form );
  1642. # taxes
  1643. $query = qq|
  1644. SELECT c.accno
  1645. FROM chart c
  1646. JOIN partstax pt ON (c.id = pt.chart_id)
  1647. WHERE pt.parts_id = ?|;
  1648. my $tth = $dbh->prepare($query) || $form->dberror($query);
  1649. # price matrix
  1650. my $pmh = PriceMatrix::price_matrix_query( $dbh, $form );
  1651. my $transdate = $form->datetonum( $myconfig, $form->{transdate} );
  1652. while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1653. $form->db_parse_numeric(sth => $sth, hashref => $ref);
  1654. my ($dec) = ( $ref->{sellprice} =~ /\.(\d+)/ );
  1655. $dec = length $dec;
  1656. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  1657. # get taxes for part
  1658. $tth->execute( $ref->{id} );
  1659. $ref->{taxaccounts} = "";
  1660. while ( $ptref = $tth->fetchrow_hashref(NAME_lc) ) {
  1661. $ref->{taxaccounts} .= "$ptref->{accno} ";
  1662. }
  1663. $tth->finish;
  1664. chop $ref->{taxaccounts};
  1665. # get matrix
  1666. PriceMatrix::price_matrix( $pmh, $ref, $transdate, $decimalplaces,
  1667. $form, $myconfig );
  1668. $ref->{description} = $ref->{translation}
  1669. if $ref->{translation};
  1670. $ref->{partsgroup} = $ref->{grouptranslation}
  1671. if $ref->{grouptranslation};
  1672. push @{ $form->{item_list} }, $ref;
  1673. }
  1674. $sth->finish;
  1675. }
  1676. sub exchangerate_defaults {
  1677. my ( $dbh2, $form ) = @_;
  1678. $dbh = $form->{dbh};
  1679. my $var;
  1680. # get default currencies
  1681. my $query = qq|
  1682. SELECT substr(value,1,3), value FROM defaults
  1683. WHERE setting_key = 'curr'|;
  1684. my $eth = $dbh->prepare($query) || $form->dberror($query);
  1685. $eth->execute;
  1686. ( $form->{defaultcurrency}, $form->{currencies} ) = $eth->fetchrow_array;
  1687. $eth->finish;
  1688. $query = qq|
  1689. SELECT buy
  1690. FROM exchangerate
  1691. WHERE curr = ?
  1692. AND transdate = ?|;
  1693. my $eth1 = $dbh->prepare($query) || $form->dberror($query);
  1694. $query = qq/
  1695. SELECT max(transdate || ' ' || buy || ' ' || curr)
  1696. FROM exchangerate
  1697. WHERE curr = ?/;
  1698. my $eth2 = $dbh->prepare($query) || $form->dberror($query);
  1699. # get exchange rates for transdate or max
  1700. foreach $var ( split /:/, substr( $form->{currencies}, 4 ) ) {
  1701. $eth1->execute( $var, $form->{transdate} );
  1702. ( $form->{$var} ) = $eth1->fetchrow_array;
  1703. if ( !$form->{$var} ) {
  1704. $eth2->execute($var);
  1705. ( $form->{$var} ) = $eth2->fetchrow_array;
  1706. ( $null, $form->{$var} ) = split / /, $form->{$var};
  1707. $form->{$var} = 1 unless $form->{$var};
  1708. $eth2->finish;
  1709. }
  1710. $eth1->finish;
  1711. }
  1712. $form->{ $form->{currency} } = $form->{exchangerate}
  1713. if $form->{exchangerate};
  1714. $form->{ $form->{currency} } ||= 1;
  1715. $form->{ $form->{defaultcurrency} } = 1;
  1716. }
  1717. 1;