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