summaryrefslogtreecommitdiff
path: root/LedgerSMB/IS.pm
blob: a45e0000e8b1e9b67792d89bfa1ebcee4b33d49a (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. my $allocated1 = 0;
  925. my $totalqty1 = $qty;
  926. my $query_ap = qq|SELECT i.id, i.qty, i.allocated, a.transdate
  927. FROM invoice i
  928. JOIN parts p ON (p.id = i.parts_id)
  929. JOIN ap a ON (a.id = i.trans_id)
  930. WHERE i.parts_id = ? AND (i.qty + i.allocated) > 0 AND i.sellprice = ?
  931. ORDER BY transdate|;
  932. my $sth1 = $dbh->prepare($query_ap);
  933. $sth1->execute(
  934. $form->{"id_$i"}, $ref->{"sellprice"}
  935. ) || $form->dberror($query_ap);
  936. while ( my $ref1 = $sth1->fetchrow_hashref(NAME_lc) ) {
  937. $form->db_parse_numeric(sth=>$sth1, hashref => $ref1);
  938. my $qty = $ref1->{qty} + $ref1->{allocated};
  939. if ( ( $qty - $totalqty ) > 0 ) { $qty = $totalqty; }
  940. $form->update_balance(
  941. $dbh, "invoice", "allocated",
  942. qq|id = $ref1->{id}|, $qty );
  943. $allocated1 += $qty;
  944. last if ( ( $totalqty1 -= $qty ) <= 0 );
  945. }
  946. $form->update_balance( $dbh, "invoice", "allocated", qq|id = $ref->{id}|, $allocated1 * -1 );
  947. last if ( ( $totalqty += $qty ) >= 0 );
  948. }
  949. }
  950. }
  951. }
  952. # save detail record in invoice table
  953. $query = qq|
  954. INSERT INTO invoice (description)
  955. VALUES ('$uid')|;
  956. $dbh->do($query) || $form->dberror($query);
  957. $query = qq|
  958. SELECT id FROM invoice
  959. WHERE description = '$uid'|;
  960. ($invoice_id) = $dbh->selectrow_array($query);
  961. unless ( $form->{"deliverydate_$i"} ) {
  962. undef $form->{"deliverydate_$i"};
  963. }
  964. $query = qq|
  965. UPDATE invoice
  966. SET trans_id = ?,
  967. parts_id = ?,
  968. description = ?,
  969. qty = ?,
  970. sellprice = ?,
  971. fxsellprice = ?,
  972. discount = ?,
  973. allocated = ?,
  974. unit = ?,
  975. deliverydate = ?,
  976. project_id = ?,
  977. serialnumber = ?,
  978. notes = ?
  979. WHERE id = ?|;
  980. $sth = $dbh->prepare($query);
  981. $sth->execute(
  982. $form->{id}, $form->{"id_$i"},
  983. $form->{"description_$i"}, $form->{"qty_$i"},
  984. $form->{"sellprice_$i"}, $fxsellprice,
  985. $form->{"discount_$i"}, $allocated,
  986. $form->{"unit_$i"}, $form->{"deliverydate_$i"},
  987. $project_id, $form->{"serialnumber_$i"},
  988. $form->{"notes_$i"}, $invoice_id
  989. ) || $form->dberror($query);
  990. # add invoice_id
  991. $form->{acc_trans}{lineitems}[$ndx]->{invoice_id} = $invoice_id;
  992. }
  993. }
  994. $form->{paid} = 0;
  995. for $i ( 1 .. $form->{paidaccounts} ) {
  996. $form->{"paid_$i"} =
  997. $form->parse_amount( $myconfig, $form->{"paid_$i"} );
  998. $form->{paid} += $form->{"paid_$i"};
  999. $form->{datepaid} = $form->{"datepaid_$i"}
  1000. if ( $form->{"paid_$i"} );
  1001. }
  1002. # add lineitems + tax
  1003. $amount = 0;
  1004. $grossamount = 0;
  1005. $fxgrossamount = 0;
  1006. for ( @{ $form->{acc_trans}{lineitems} } ) {
  1007. $amount += $_->{amount};
  1008. $grossamount += $_->{grossamount};
  1009. $fxgrossamount += $_->{fxgrossamount};
  1010. }
  1011. $invnetamount = $amount;
  1012. $amount = 0;
  1013. for ( split / /, $form->{taxaccounts} ) {
  1014. $amount += $form->{acc_trans}{ $form->{id} }{$_}{amount} =
  1015. $form->round_amount( $form->{acc_trans}{ $form->{id} }{$_}{amount},
  1016. 2 );
  1017. }
  1018. $invamount = $invnetamount + $amount;
  1019. $diff = 0;
  1020. if ( $form->{taxincluded} ) {
  1021. $diff = $form->round_amount( $grossamount - $invamount, 2 );
  1022. $invamount += $diff;
  1023. }
  1024. $fxdiff = $form->round_amount( $fxdiff, 2 );
  1025. $invnetamount += $fxdiff;
  1026. $invamount += $fxdiff;
  1027. if ( $form->round_amount( $form->{paid} - $fxgrossamount, 2 ) == 0 ) {
  1028. $form->{paid} = $invamount;
  1029. }
  1030. else {
  1031. $form->{paid} =
  1032. $form->round_amount( $form->{paid} * $form->{exchangerate}, 2 );
  1033. }
  1034. foreach $ref ( sort { $b->{amount} <=> $a->{amount} }
  1035. @{ $form->{acc_trans}{lineitems} } )
  1036. {
  1037. $amount = $ref->{amount} + $diff + $fxdiff;
  1038. $query = qq|
  1039. INSERT INTO acc_trans
  1040. (trans_id, chart_id, amount,
  1041. transdate, project_id, invoice_id)
  1042. VALUES (?, ?, ?, ?, ?, ?)|;
  1043. $sth = $dbh->prepare($query);
  1044. $sth->execute( $form->{id}, $ref->{chart_id}, $amount,
  1045. $form->{transdate}, $ref->{project_id}, $ref->{invoice_id} )
  1046. || $form->dberror($query);
  1047. $diff = 0;
  1048. $fxdiff = 0;
  1049. }
  1050. $form->{receivables} = $invamount * -1;
  1051. delete $form->{acc_trans}{lineitems};
  1052. # update exchangerate
  1053. if ( ( $form->{currency} ne $form->{defaultcurrency} ) && !$exchangerate ) {
  1054. $form->update_exchangerate( $dbh, $form->{currency}, $form->{transdate},
  1055. $form->{exchangerate}, 0 );
  1056. }
  1057. # record receivable
  1058. if ( $form->{receivables} ) {
  1059. ($accno) = split /--/, $form->{AR};
  1060. $query = qq|
  1061. INSERT INTO acc_trans
  1062. (trans_id, chart_id, amount, transdate)
  1063. VALUES (?, (SELECT id FROM chart WHERE accno = ?),
  1064. ?, ?)|;
  1065. $sth = $dbh->prepare($query);
  1066. $sth->execute( $form->{id}, $accno, $form->{receivables},
  1067. $form->{transdate} )
  1068. || $form->dberror($query);
  1069. }
  1070. foreach my $trans_id ( keys %{ $form->{acc_trans} } ) {
  1071. foreach my $accno ( keys %{ $form->{acc_trans}{$trans_id} } ) {
  1072. $amount =
  1073. $form->round_amount(
  1074. $form->{acc_trans}{$trans_id}{$accno}{amount}, 2 );
  1075. if ($amount) {
  1076. $query = qq|
  1077. INSERT INTO acc_trans
  1078. (trans_id, chart_id, amount,
  1079. transdate)
  1080. VALUES (?, (SELECT id FROM chart
  1081. WHERE accno = ?),
  1082. ?, ?)|;
  1083. $sth = $dbh->prepare($query);
  1084. $sth->execute( $trans_id, $accno, $amount, $form->{transdate} )
  1085. || $form->dberror($query);
  1086. }
  1087. }
  1088. }
  1089. # if there is no amount but a payment record receivable
  1090. if ( $invamount == 0 ) {
  1091. $form->{receivables} = 1;
  1092. }
  1093. my $cleared = 0;
  1094. # record payments and offsetting AR
  1095. for $i ( 1 .. $form->{paidaccounts} ) {
  1096. if ( $form->{"paid_$i"} ) {
  1097. my ($accno) = split /--/, $form->{"AR_paid_$i"};
  1098. $form->{"datepaid_$i"} = $form->{transdate}
  1099. unless ( $form->{"datepaid_$i"} );
  1100. $form->{datepaid} = $form->{"datepaid_$i"};
  1101. $exchangerate = 0;
  1102. if ( $form->{currency} eq $form->{defaultcurrency} ) {
  1103. $form->{"exchangerate_$i"} = 1;
  1104. }
  1105. else {
  1106. $exchangerate =
  1107. $form->check_exchangerate( $myconfig, $form->{currency},
  1108. $form->{"datepaid_$i"}, 'buy' );
  1109. $form->{"exchangerate_$i"} =
  1110. ($exchangerate)
  1111. ? $exchangerate
  1112. : $form->parse_amount( $myconfig,
  1113. $form->{"exchangerate_$i"} );
  1114. }
  1115. # record AR
  1116. $amount =
  1117. $form->round_amount( $form->{"paid_$i"} * $form->{exchangerate},
  1118. 2 );
  1119. if ( $form->{receivables} ) {
  1120. $query = qq|
  1121. INSERT INTO acc_trans
  1122. (trans_id, chart_id, amount,
  1123. transdate)
  1124. VALUES (?, (SELECT id FROM chart
  1125. WHERE accno = ?),
  1126. ?, ?)|;
  1127. $sth = $dbh->prepare($query);
  1128. $sth->execute( $form->{id}, $form->{AR}, $amount,
  1129. $form->{"datepaid_$i"} )
  1130. || $form->dberror($query);
  1131. }
  1132. # record payment
  1133. $amount = $form->{"paid_$i"} * -1;
  1134. if ($keepcleared) {
  1135. $cleared = ( $form->{"cleared_$i"} ) ? 1 : 0;
  1136. }
  1137. $query = qq|
  1138. INSERT INTO acc_trans
  1139. (trans_id, chart_id, amount,
  1140. transdate, source, memo, cleared)
  1141. VALUES (?, (SELECT id FROM chart
  1142. WHERE accno = ?),
  1143. ?, ?, ?, ?, ?)|;
  1144. $sth = $dbh->prepare($query);
  1145. $sth->execute( $form->{id}, $accno, $amount, $form->{"datepaid_$i"},
  1146. $form->{"source_$i"}, $form->{"memo_$i"}, $cleared )
  1147. || $form->dberror($query);
  1148. # exchangerate difference
  1149. $amount = $form->round_amount(
  1150. (
  1151. $form->round_amount(
  1152. $form->{"paid_$i"} * $form->{"exchangerate_$i"} -
  1153. $form->{"paid_$i"},
  1154. 2
  1155. )
  1156. ) * -1,
  1157. 2
  1158. );
  1159. if ($amount) {
  1160. $query = qq|
  1161. INSERT INTO acc_trans
  1162. (trans_id, chart_id, amount,
  1163. transdate, source,
  1164. fx_transaction, cleared)
  1165. VALUES (?, (SELECT id FROM chart
  1166. WHERE accno = ?),
  1167. ?, ?, ?, '1', ?)|;
  1168. $sth = $dbh->prepare($query);
  1169. $sth->execute( $form->{id}, $accno, $amount,
  1170. $form->{"datepaid_$i"},
  1171. $form->{"source_$i"}, $cleared )
  1172. || $form->dberror($query);
  1173. }
  1174. # gain/loss
  1175. $amount = $form->round_amount(
  1176. (
  1177. $form->round_amount(
  1178. $form->{"paid_$i"} * $form->{exchangerate}, 2 ) -
  1179. $form->round_amount(
  1180. $form->{"paid_$i"} * $form->{"exchangerate_$i"}, 2
  1181. )
  1182. ) * -1,
  1183. 2
  1184. );
  1185. if ($amount) {
  1186. my $accno_id =
  1187. ( $amount > 0 )
  1188. ? $fxgain_accno_id
  1189. : $fxloss_accno_id;
  1190. $query = qq|
  1191. INSERT INTO acc_trans (
  1192. trans_id, chart_id, amount,
  1193. transdate, fx_transaction,
  1194. cleared)
  1195. VALUES (?, ?, ?, ?, '1', ?)|;
  1196. $sth = $dbh->prepare($query);
  1197. $sth->execute( $form->{id}, $accno_id, $amount,
  1198. $form->{"datepaid_$i"}, $cleared )
  1199. || $form->dberror($query);
  1200. }
  1201. # update exchange rate
  1202. if ( ( $form->{currency} ne $form->{defaultcurrency} )
  1203. && !$exchangerate )
  1204. {
  1205. $form->update_exchangerate(
  1206. $dbh, $form->{currency},
  1207. $form->{"datepaid_$i"},
  1208. $form->{"exchangerate_$i"}, 0
  1209. );
  1210. }
  1211. }
  1212. }
  1213. # set values which could be empty to 0
  1214. $form->{terms} *= 1;
  1215. $form->{taxincluded} *= 1;
  1216. # save AR record
  1217. $query = qq|
  1218. UPDATE ar set
  1219. invnumber = ?,
  1220. ordnumber = ?,
  1221. quonumber = ?,
  1222. transdate = ?,
  1223. customer_id = ?,
  1224. amount = ?,
  1225. netamount = ?,
  1226. paid = ?,
  1227. datepaid = ?,
  1228. duedate = ?,
  1229. invoice = '1',
  1230. shippingpoint = ?,
  1231. shipvia = ?,
  1232. terms = ?,
  1233. notes = ?,
  1234. intnotes = ?,
  1235. taxincluded = ?,
  1236. curr = ?,
  1237. department_id = ?,
  1238. employee_id = ?,
  1239. till = ?,
  1240. language_code = ?,
  1241. ponumber = ?
  1242. WHERE id = ?
  1243. |;
  1244. $sth = $dbh->prepare($query);
  1245. $sth->execute(
  1246. $form->{invnumber}, $form->{ordnumber},
  1247. $form->{quonumber}, $form->{transdate},
  1248. $form->{customer_id}, $invamount,
  1249. $invnetamount, $form->{paid},
  1250. $form->{datepaid}, $form->{duedate},
  1251. $form->{shippingpoint}, $form->{shipvia},
  1252. $form->{terms}, $form->{notes},
  1253. $form->{intnotes}, $form->{taxincluded},
  1254. $form->{currency}, $form->{department_id},
  1255. $form->{employee_id}, $form->{till},
  1256. $form->{language_code}, $form->{ponumber},
  1257. $form->{id}
  1258. ) || $form->dberror($query);
  1259. # add shipto
  1260. $form->{name} = $form->{customer};
  1261. $form->{name} =~ s/--$form->{customer_id}//;
  1262. $form->add_shipto( $dbh, $form->{id} );
  1263. # save printed, emailed and queued
  1264. $form->save_status($dbh);
  1265. my %audittrail = (
  1266. tablename => 'ar',
  1267. reference => $form->{invnumber},
  1268. formname => $form->{type},
  1269. action => 'posted',
  1270. id => $form->{id}
  1271. );
  1272. $form->audittrail( $dbh, "", \%audittrail );
  1273. $form->save_recurring( $dbh, $myconfig );
  1274. my $rc = $dbh->commit;
  1275. $rc;
  1276. }
  1277. sub process_assembly {
  1278. my ( $dbh2, $form, $id, $totalqty, $project_id ) = @_;
  1279. my $dbh = $form->{dbh};
  1280. my $query = qq|
  1281. SELECT a.parts_id, a.qty, p.assembly,
  1282. p.partnumber, p.description, p.unit,
  1283. p.inventory_accno_id, p.income_accno_id,
  1284. p.expense_accno_id
  1285. FROM assembly a
  1286. JOIN parts p ON (a.parts_id = p.id)
  1287. WHERE a.id = ?|;
  1288. my $sth = $dbh->prepare($query);
  1289. $sth->execute($id) || $form->dberror($query);
  1290. my $allocated;
  1291. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1292. $allocated = 0;
  1293. $ref->{inventory_accno_id} *= 1;
  1294. $ref->{expense_accno_id} *= 1;
  1295. # multiply by number of assemblies
  1296. $ref->{qty} *= $totalqty;
  1297. if ( $ref->{assembly} ) {
  1298. &process_assembly( $dbh, $form, $ref->{parts_id}, $ref->{qty},
  1299. $project_id );
  1300. next;
  1301. }
  1302. else {
  1303. if ( $ref->{inventory_accno_id} ) {
  1304. $allocated =
  1305. &cogs( $dbh, $form, $ref->{parts_id}, $ref->{qty},
  1306. $project_id );
  1307. }
  1308. }
  1309. $query = qq|
  1310. INSERT INTO invoice
  1311. (trans_id, description, parts_id, qty,
  1312. sellprice, fxsellprice, allocated,
  1313. assemblyitem, unit)
  1314. VALUES (?, ?, ?, ?, 0, 0, ?, 't', ?)|;
  1315. my $sth = $dbh->prepare($query);
  1316. $sth->execute( $form->{id}, $ref->{description}, $ref->{parts_id},
  1317. $ref->{qty}, $allocated, $ref->{unit} )
  1318. || $form->dberror($query);
  1319. }
  1320. $sth->finish;
  1321. }
  1322. sub cogs {
  1323. my ( $dbh2, $form, $id, $totalqty, $project_id ) = @_;
  1324. my $dbh = $form->{dbh};
  1325. my $query = qq|
  1326. SELECT i.id, i.trans_id, i.qty, i.allocated, i.sellprice,
  1327. i.fxsellprice, p.inventory_accno_id,
  1328. p.expense_accno_id
  1329. FROM invoice i, parts p, ap a
  1330. WHERE i.parts_id = p.id
  1331. AND i.trans_id = a.id
  1332. AND i.parts_id = ?
  1333. AND (i.qty + i.allocated) < 0
  1334. ORDER BY trans_id|;
  1335. my $sth = $dbh->prepare($query);
  1336. $sth->execute($id) || $form->dberror($query);
  1337. my $allocated = 0;
  1338. my $qty;
  1339. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1340. $form->db_parse_numeric(sth=>$sth, hashref=>$ref);
  1341. if ( ( $qty = ( ( $ref->{qty} * -1 ) - $ref->{allocated} ) ) >
  1342. $totalqty )
  1343. {
  1344. $qty = $totalqty;
  1345. }
  1346. $form->update_balance( $dbh, "invoice", "allocated",
  1347. qq|id = $ref->{id}|, $qty );
  1348. # total expenses and inventory
  1349. # sellprice is the cost of the item
  1350. my $linetotal = $form->round_amount( $ref->{sellprice} * $qty, 2 );
  1351. # add expense
  1352. push @{ $form->{acc_trans}{lineitems} },
  1353. {
  1354. chart_id => $ref->{expense_accno_id},
  1355. amount => $linetotal * -1,
  1356. project_id => $project_id,
  1357. invoice_id => $ref->{id}
  1358. };
  1359. # deduct inventory
  1360. push @{ $form->{acc_trans}{lineitems} },
  1361. {
  1362. chart_id => $ref->{inventory_accno_id},
  1363. amount => $linetotal,
  1364. project_id => $project_id,
  1365. invoice_id => $ref->{id}
  1366. };
  1367. # add allocated
  1368. $allocated += -$qty;
  1369. last if ( ( $totalqty -= $qty ) <= 0 );
  1370. }
  1371. $sth->finish;
  1372. $allocated;
  1373. }
  1374. sub reverse_invoice {
  1375. my ( $dbh2, $form ) = @_;
  1376. my $dbh = $form->{dbh};
  1377. my $query = qq|
  1378. SELECT id FROM ar
  1379. WHERE id = ?|;
  1380. my $sth;
  1381. $sth = $dbh->prepare($query);
  1382. $sth->execute( $form->{id} );
  1383. my ($id) = $sth->fetchrow_array;
  1384. return unless $id;
  1385. # reverse inventory items
  1386. my $query = qq|
  1387. SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly,
  1388. p.inventory_accno_id
  1389. FROM invoice i
  1390. JOIN parts p ON (i.parts_id = p.id)
  1391. WHERE i.trans_id = ?|;
  1392. my $sth = $dbh->prepare($query);
  1393. $sth->execute( $form->{id} ) || $form->dberror($query);
  1394. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1395. if ( $ref->{inventory_accno_id} || $ref->{assembly} ) {
  1396. # if the invoice item is not an assemblyitem
  1397. # adjust parts onhand
  1398. if ( !$ref->{assemblyitem} ) {
  1399. # adjust onhand in parts table
  1400. $form->update_balance( $dbh, "parts", "onhand",
  1401. qq|id = $ref->{parts_id}|,
  1402. $ref->{qty} );
  1403. }
  1404. # loop if it is an assembly
  1405. next if ( $ref->{assembly} );
  1406. # de-allocated purchases
  1407. $query = qq|
  1408. SELECT id, trans_id, allocated
  1409. FROM invoice
  1410. WHERE parts_id = ?
  1411. AND allocated > 0
  1412. ORDER BY trans_id DESC|;
  1413. my $sth = $dbh->prepare($query);
  1414. $sth->execute( $ref->{parts_id} )
  1415. || $form->dberror($query);
  1416. while ( my $inhref = $sth->fetchrow_hashref(NAME_lc) ) {
  1417. $qty = $ref->{qty};
  1418. if ( ( $ref->{qty} - $inhref->{allocated} ) > 0 ) {
  1419. $qty = $inhref->{allocated};
  1420. }
  1421. # update invoice
  1422. $form->update_balance( $dbh, "invoice", "allocated",
  1423. qq|id = $inhref->{id}|,
  1424. $qty * -1 );
  1425. last if ( ( $ref->{qty} -= $qty ) <= 0 );
  1426. }
  1427. $sth->finish;
  1428. }
  1429. }
  1430. $sth->finish;
  1431. # delete acc_trans
  1432. $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
  1433. $sth = $dbh->prepare($query);
  1434. $sth->execute( $form->{id} ) || $form->dberror($query);
  1435. # delete invoice entries
  1436. $query = qq|DELETE FROM invoice WHERE trans_id = ?|;
  1437. $sth = $dbh->prepare($query);
  1438. $sth->execute( $form->{id} ) || $form->dberror($query);
  1439. $query = qq|DELETE FROM shipto WHERE trans_id = ?|;
  1440. $sth = $dbh->prepare($query);
  1441. $sth->execute( $form->{id} ) || $form->dberror($query);
  1442. $dbh->commit;
  1443. }
  1444. sub delete_invoice {
  1445. my ( $self, $myconfig, $form ) = @_;
  1446. my $dbh = $form->{dbh};
  1447. my $sth;
  1448. &reverse_invoice( $dbh, $form );
  1449. my %audittrail = (
  1450. tablename => 'ar',
  1451. reference => $form->{invnumber},
  1452. formname => $form->{type},
  1453. action => 'deleted',
  1454. id => $form->{id}
  1455. );
  1456. $form->audittrail( $dbh, "", \%audittrail );
  1457. # delete AR record
  1458. my $query = qq|DELETE FROM ar WHERE id = ?|;
  1459. $sth = $dbh->prepare($query);
  1460. $sth->execute( $form->{id} ) || $form->dberror($query);
  1461. # delete spool files
  1462. $query = qq|
  1463. SELECT spoolfile FROM status
  1464. WHERE trans_id = ? AND spoolfile IS NOT NULL|;
  1465. $sth = $dbh->prepare($query);
  1466. $sth->execute( $form->{id} ) || $form->dberror($query);
  1467. my $spoolfile;
  1468. my @spoolfiles = ();
  1469. while ( ($spoolfile) = $sth->fetchrow_array ) {
  1470. push @spoolfiles, $spoolfile;
  1471. }
  1472. $sth->finish;
  1473. # delete status entries
  1474. $query = qq|DELETE FROM status WHERE trans_id = ?|;
  1475. $sth = $dbh->prepare($query);
  1476. $sth->execute( $form->{id} ) || $form->dberror($query);
  1477. my $rc = $dbh->commit;
  1478. if ($rc) {
  1479. foreach $spoolfile (@spoolfiles) {
  1480. unlink "${LedgerSMB::Sysconfig::spool}/$spoolfile"
  1481. if $spoolfile;
  1482. }
  1483. }
  1484. $rc;
  1485. }
  1486. sub retrieve_invoice {
  1487. my ( $self, $myconfig, $form ) = @_;
  1488. my $dbh = $form->{dbh};
  1489. my $query;
  1490. if ( $form->{id} ) {
  1491. # get default accounts and last invoice number
  1492. $query = qq|
  1493. SELECT value AS currencies FROM defaults
  1494. WHERE setting_key = 'curr'|;
  1495. }
  1496. else {
  1497. $query = qq|
  1498. SELECT value AS currencies, current_date AS transdate
  1499. FROM defaults
  1500. WHERE setting_key = 'curr'|;
  1501. }
  1502. my $sth = $dbh->prepare($query);
  1503. $sth->execute || $form->dberror($query);
  1504. my $ref = $sth->fetchrow_hashref(NAME_lc);
  1505. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1506. $sth->finish;
  1507. if ( $form->{id} ) {
  1508. # retrieve invoice
  1509. $query = qq|
  1510. SELECT a.invnumber, a.ordnumber, a.quonumber,
  1511. a.transdate, a.paid,
  1512. a.shippingpoint, a.shipvia, a.terms, a.notes,
  1513. a.intnotes,
  1514. a.duedate, a.taxincluded, a.curr AS currency,
  1515. a.employee_id, e.name AS employee, a.till,
  1516. a.customer_id,
  1517. a.language_code, a.ponumber
  1518. FROM ar a
  1519. LEFT JOIN employee e ON (e.id = a.employee_id)
  1520. WHERE a.id = ?|;
  1521. $sth = $dbh->prepare($query);
  1522. $sth->execute( $form->{id} ) || $form->dberror($query);
  1523. $ref = $sth->fetchrow_hashref(NAME_lc);
  1524. $form->db_parse_numeric(sth=> $sth, hashref=>$ref_);
  1525. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1526. $sth->finish;
  1527. # get shipto
  1528. $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
  1529. $sth = $dbh->prepare($query);
  1530. $sth->execute( $form->{id} ) || $form->dberror($query);
  1531. $ref = $sth->fetchrow_hashref(NAME_lc);
  1532. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1533. $sth->finish;
  1534. # retrieve individual items
  1535. $query = qq|
  1536. SELECT i.description, i.qty, i.fxsellprice,
  1537. i.sellprice, i.discount, i.parts_id AS id,
  1538. i.unit, i.deliverydate, i.project_id,
  1539. pr.projectnumber, i.serialnumber, i.notes,
  1540. p.partnumber, p.assembly, p.bin,
  1541. pg.partsgroup, p.partsgroup_id,
  1542. p.partnumber AS sku, p.listprice, p.lastcost,
  1543. p.weight, p.onhand, p.inventory_accno_id,
  1544. p.income_accno_id, p.expense_accno_id,
  1545. t.description AS partsgrouptranslation
  1546. FROM invoice i
  1547. JOIN parts p ON (i.parts_id = p.id)
  1548. LEFT JOIN project pr ON (i.project_id = pr.id)
  1549. LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
  1550. LEFT JOIN translation t
  1551. ON (t.trans_id = p.partsgroup_id
  1552. AND t.language_code
  1553. = ?)
  1554. WHERE i.trans_id = ?
  1555. AND NOT i.assemblyitem = '1'
  1556. ORDER BY i.id|;
  1557. $sth = $dbh->prepare($query);
  1558. $sth->execute( $form->{language_code}, $form->{id} )
  1559. || $form->dberror($query);
  1560. # foreign currency
  1561. &exchangerate_defaults( $dbh, $form );
  1562. # query for price matrix
  1563. my $pmh = PriceMatrix::price_matrix_query( $dbh, $form );
  1564. # taxes
  1565. $query = qq|
  1566. SELECT c.accno
  1567. FROM chart c
  1568. JOIN partstax pt ON (pt.chart_id = c.id)
  1569. WHERE pt.parts_id = ?|;
  1570. my $tth = $dbh->prepare($query) || $form->dberror($query);
  1571. my $taxrate;
  1572. my $ptref;
  1573. while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1574. $form->db_parse_numeric(sth=>$sth, hashref => $ref);
  1575. my ($dec) = ( $ref->{fxsellprice} =~ /\.(\d+)/ );
  1576. $dec = length $dec;
  1577. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  1578. $tth->execute( $ref->{id} );
  1579. $ref->{taxaccounts} = "";
  1580. $taxrate = 0;
  1581. while ( $ptref = $tth->fetchrow_hashref(NAME_lc) ) {
  1582. $ref->{taxaccounts} .= "$ptref->{accno} ";
  1583. $taxrate += $form->{"$ptref->{accno}_rate"};
  1584. }
  1585. $tth->finish;
  1586. chop $ref->{taxaccounts};
  1587. # price matrix
  1588. $ref->{sellprice} =
  1589. ( $ref->{fxsellprice} * $form->{ $form->{currency} } );
  1590. PriceMatrix::price_matrix( $pmh, $ref, $form->{transdate},
  1591. $decimalplaces, $form, $myconfig );
  1592. $ref->{sellprice} = $ref->{fxsellprice};
  1593. $ref->{partsgroup} = $ref->{partsgrouptranslation}
  1594. if $ref->{partsgrouptranslation};
  1595. push @{ $form->{invoice_details} }, $ref;
  1596. }
  1597. $sth->finish;
  1598. }
  1599. @queries = $form->run_custom_queries( 'ar', 'SELECT' );
  1600. my $rc = $dbh->commit;
  1601. $rc;
  1602. }
  1603. sub retrieve_item {
  1604. my ( $self, $myconfig, $form ) = @_;
  1605. my $dbh = $form->{dbh};
  1606. my $i = $form->{rowcount};
  1607. my $null;
  1608. my $var;
  1609. my $where = "WHERE p.obsolete = '0' AND NOT p.income_accno_id IS NULL";
  1610. if ( $form->{"partnumber_$i"} ne "" ) {
  1611. $var = $dbh->quote( $form->like( lc $form->{"partnumber_$i"} ) );
  1612. $where .= " AND lower(p.partnumber) LIKE $var";
  1613. }
  1614. if ( $form->{"description_$i"} ne "" ) {
  1615. $var = $dbh->quote( $form->like( lc $form->{"description_$i"} ) );
  1616. if ( $form->{language_code} ne "" ) {
  1617. $where .= " AND lower(t1.description) LIKE $var";
  1618. }
  1619. else {
  1620. $where .= " AND lower(p.description) LIKE $var";
  1621. }
  1622. }
  1623. if ( $form->{"partsgroup_$i"} ne "" ) {
  1624. ( $null, $var ) = split /--/, $form->{"partsgroup_$i"};
  1625. if ( ! $var ) {
  1626. # search by partsgroup, this is for the POS
  1627. $where .=
  1628. qq| AND pg.partsgroup = |
  1629. . $dbh->quote( $form->{"partsgroup_$i"} );
  1630. }
  1631. else {
  1632. $var = $dbh->quote($var);
  1633. $where .= qq| AND p.partsgroup_id = $var|;
  1634. }
  1635. }
  1636. if ( $form->{"description_$i"} ne "" ) {
  1637. $where .= " ORDER BY 3";
  1638. }
  1639. else {
  1640. $where .= " ORDER BY 2";
  1641. }
  1642. my $query = qq|
  1643. SELECT p.id, p.partnumber, p.description, p.sellprice,
  1644. p.listprice, p.lastcost, p.unit, p.assembly, p.bin,
  1645. p.onhand, p.notes, p.inventory_accno_id,
  1646. p.income_accno_id, p.expense_accno_id, pg.partsgroup,
  1647. p.partsgroup_id, p.partnumber AS sku, p.weight,
  1648. t1.description AS translation,
  1649. t2.description AS grouptranslation
  1650. FROM parts p
  1651. LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
  1652. LEFT JOIN translation t1
  1653. ON (t1.trans_id = p.id AND t1.language_code = ?)
  1654. LEFT JOIN translation t2
  1655. ON (t2.trans_id = p.partsgroup_id
  1656. AND t2.language_code = ?)
  1657. $where|;
  1658. my $sth = $dbh->prepare($query);
  1659. $sth->execute( $form->{language_code}, $form->{language_code} )
  1660. || $form->dberror($query);
  1661. my $ref;
  1662. my $ptref;
  1663. # setup exchange rates
  1664. &exchangerate_defaults( $dbh, $form );
  1665. # taxes
  1666. $query = qq|
  1667. SELECT c.accno
  1668. FROM chart c
  1669. JOIN partstax pt ON (c.id = pt.chart_id)
  1670. WHERE pt.parts_id = ?|;
  1671. my $tth = $dbh->prepare($query) || $form->dberror($query);
  1672. # price matrix
  1673. my $pmh = PriceMatrix::price_matrix_query( $dbh, $form );
  1674. my $transdate = $form->datetonum( $myconfig, $form->{transdate} );
  1675. while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1676. $form->db_parse_numeric(sth => $sth, hashref => $ref);
  1677. my ($dec) = ( $ref->{sellprice} =~ /\.(\d+)/ );
  1678. $dec = length $dec;
  1679. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  1680. # get taxes for part
  1681. $tth->execute( $ref->{id} );
  1682. $ref->{taxaccounts} = "";
  1683. while ( $ptref = $tth->fetchrow_hashref(NAME_lc) ) {
  1684. $ref->{taxaccounts} .= "$ptref->{accno} ";
  1685. }
  1686. $tth->finish;
  1687. chop $ref->{taxaccounts};
  1688. # get matrix
  1689. PriceMatrix::price_matrix( $pmh, $ref, $transdate, $decimalplaces,
  1690. $form, $myconfig );
  1691. $ref->{description} = $ref->{translation}
  1692. if $ref->{translation};
  1693. $ref->{partsgroup} = $ref->{grouptranslation}
  1694. if $ref->{grouptranslation};
  1695. push @{ $form->{item_list} }, $ref;
  1696. }
  1697. $sth->finish;
  1698. }
  1699. sub exchangerate_defaults {
  1700. my ( $dbh2, $form ) = @_;
  1701. $dbh = $form->{dbh};
  1702. my $var;
  1703. # get default currencies
  1704. my $query = qq|
  1705. SELECT substr(value,1,3), value FROM defaults
  1706. WHERE setting_key = 'curr'|;
  1707. my $eth = $dbh->prepare($query) || $form->dberror($query);
  1708. $eth->execute;
  1709. ( $form->{defaultcurrency}, $form->{currencies} ) = $eth->fetchrow_array;
  1710. $eth->finish;
  1711. $query = qq|
  1712. SELECT buy
  1713. FROM exchangerate
  1714. WHERE curr = ?
  1715. AND transdate = ?|;
  1716. my $eth1 = $dbh->prepare($query) || $form->dberror($query);
  1717. $query = qq/
  1718. SELECT max(transdate || ' ' || buy || ' ' || curr)
  1719. FROM exchangerate
  1720. WHERE curr = ?/;
  1721. my $eth2 = $dbh->prepare($query) || $form->dberror($query);
  1722. # get exchange rates for transdate or max
  1723. foreach $var ( split /:/, substr( $form->{currencies}, 4 ) ) {
  1724. $eth1->execute( $var, $form->{transdate} );
  1725. ( $form->{$var} ) = $eth1->fetchrow_array;
  1726. if ( !$form->{$var} ) {
  1727. $eth2->execute($var);
  1728. ( $form->{$var} ) = $eth2->fetchrow_array;
  1729. ( $null, $form->{$var} ) = split / /, $form->{$var};
  1730. $form->{$var} = 1 unless $form->{$var};
  1731. $eth2->finish;
  1732. }
  1733. $eth1->finish;
  1734. }
  1735. $form->{ $form->{currency} } = $form->{exchangerate}
  1736. if $form->{exchangerate};
  1737. $form->{ $form->{currency} } ||= 1;
  1738. $form->{ $form->{defaultcurrency} } = 1;
  1739. }
  1740. 1;