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