summaryrefslogtreecommitdiff
path: root/LedgerSMB/IS.pm
blob: 489f16d4d7c81a3a953c029d0adbd9cb9df6e048 (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 customernumber, name, address1, address2, city,
  639. state, zipcode, country,
  640. contact, phone as customerphone, fax as customerfax,
  641. taxnumber AS customertaxnumber, sic_code AS sic, iban,
  642. bic, startdate, enddate
  643. FROM customer
  644. WHERE id = ?|;
  645. my $sth = $dbh->prepare($query);
  646. $sth->execute( $form->{customer_id} ) || $form->dberror($query);
  647. $ref = $sth->fetchrow_hashref(NAME_lc);
  648. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  649. $sth->finish;
  650. }
  651. sub post_invoice {
  652. my ( $self, $myconfig, $form ) = @_;
  653. $form->{invnumber} = $form->update_defaults( $myconfig, "sinumber", $dbh )
  654. unless $form->{invnumber};
  655. my $dbh = $form->{dbh};
  656. my $query;
  657. my $sth;
  658. my $null;
  659. my $project_id;
  660. my $exchangerate = 0;
  661. my $keepcleared = 0;
  662. %$form->{acc_trans} = ();
  663. ( $null, $form->{employee_id} ) = split /--/, $form->{employee};
  664. unless ( $form->{employee_id} ) {
  665. ( $form->{employee}, $form->{employee_id} ) = $form->get_employee($dbh);
  666. }
  667. ( $null, $form->{department_id} ) = split( /--/, $form->{department} );
  668. $form->{department_id} *= 1;
  669. $query = qq|
  670. SELECT (SELECT value FROM defaults
  671. WHERE setting_key = 'fxgain_accno_id')
  672. AS fxgain_accno_id,
  673. (SELECT value FROM defaults
  674. WHERE setting_key = 'fxloss_accno_id')
  675. AS fxloss_accno_id|;
  676. my ( $fxgain_accno_id, $fxloss_accno_id ) = $dbh->selectrow_array($query);
  677. $query = qq|
  678. SELECT p.assembly, p.inventory_accno_id,
  679. p.income_accno_id, p.expense_accno_id, p.project_id
  680. FROM parts p
  681. WHERE p.id = ?|;
  682. my $pth = $dbh->prepare($query) || $form->dberror($query);
  683. if ( $form->{id} ) {
  684. $keepcleared = 1;
  685. $query = qq|SELECT id FROM ar WHERE id = ?|;
  686. $sth = $dbh->prepare($query);
  687. $sth->execute( $form->{id} );
  688. if ( $sth->fetchrow_array ) {
  689. &reverse_invoice( $dbh, $form );
  690. }
  691. else {
  692. $query = qq|INSERT INTO ar (id) VALUES (?)|;
  693. $sth = $dbh->prepare($query);
  694. $sth->execute( $form->{id} ) || $form->dberror($query);
  695. }
  696. }
  697. my $uid = localtime;
  698. $uid .= "$$";
  699. if ( !$form->{id} ) {
  700. $query = qq|
  701. INSERT INTO ar (invnumber, person_id)
  702. VALUES ('$uid', ?)|;
  703. $sth = $dbh->prepare($query);
  704. $sth->execute( $form->{employee_id} ) || $form->dberror($query);
  705. $query = qq|SELECT id FROM ar WHERE invnumber = '$uid'|;
  706. $sth = $dbh->prepare($query);
  707. $sth->execute || $form->dberror($query);
  708. ( $form->{id} ) = $sth->fetchrow_array;
  709. $sth->finish;
  710. @queries = $form->run_custom_queries( 'ar', 'INSERT' );
  711. }
  712. if ( $form->{currency} eq $form->{defaultcurrency} ) {
  713. $form->{exchangerate} = 1;
  714. }
  715. else {
  716. $exchangerate =
  717. $form->check_exchangerate( $myconfig, $form->{currency},
  718. $form->{transdate}, 'buy' );
  719. }
  720. $form->{exchangerate} =
  721. ($exchangerate)
  722. ? $exchangerate
  723. : $form->parse_amount( $myconfig, $form->{exchangerate} );
  724. my $i;
  725. my $item;
  726. my $allocated = 0;
  727. my $taxrate;
  728. my $tax;
  729. my $fxtax;
  730. my @taxaccounts;
  731. my $amount;
  732. my $grossamount;
  733. my $invamount = 0;
  734. my $invnetamount = 0;
  735. my $diff = 0;
  736. my $ml;
  737. my $invoice_id;
  738. my $ndx;
  739. foreach $i ( 1 .. $form->{rowcount} ) {
  740. $form->{"qty_$i"} = $form->parse_amount( $myconfig, $form->{"qty_$i"} );
  741. if ($form->{reverse}){
  742. $form->{"qty_$i"} *= -1;
  743. }
  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. #start patch bug 1755355
  861. # check for unallocated entries at the same price to match our entry
  862. $query = qq|
  863. SELECT i.id, i.qty, i.allocated, a.transdate
  864. FROM invoice i
  865. JOIN parts p ON (p.id = i.parts_id)
  866. JOIN ar a ON (a.id = i.trans_id)
  867. WHERE i.parts_id = ? AND (i.qty + i.allocated) < 0 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. $allocated += &cogs( $dbh, $form, $form->{"id_$i"}, $totalqty, $project_id );
  882. #stop patch bug 1755355
  883. }
  884. else {
  885. $query = qq|
  886. SELECT i.id, i.qty, i.allocated, a.transdate
  887. FROM invoice i
  888. JOIN parts p ON (p.id = i.parts_id)
  889. JOIN ar a ON (a.id = i.trans_id)
  890. WHERE i.parts_id = ? AND (i.qty + i.allocated) > 0 AND i.sellprice = ?
  891. ORDER BY transdate
  892. |;
  893. $sth = $dbh->prepare($query);
  894. $sth->execute(
  895. $form->{"id_$i"}, $form->{"sellprice_$i"}
  896. ) || $form->dberror($query);
  897. my $totalqty = $form->{"qty_$i"};
  898. my $total_inventory = 0;
  899. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  900. $form->db_parse_numeric(sth=>$sth, hashref => $ref);
  901. my $qty = $ref->{qty} + $ref->{allocated};
  902. if ( ( $qty + $totalqty ) > 0 ) { $qty = -$totalqty; }
  903. # update allocated for sold item
  904. $form->update_balance(
  905. $dbh, "invoice", "allocated",
  906. qq|id = $ref->{id}|, $qty * -1
  907. );
  908. my $linetotal = $qty*$ref->{sellprice};
  909. $allocated += $qty;
  910. $query = qq|
  911. INSERT INTO acc_trans
  912. (trans_id, chart_id, amount,
  913. transdate, project_id, invoice_id)
  914. VALUES (?, ?, ?, ?, ?, ?)|;
  915. my $sth1 = $dbh->prepare($query);
  916. $sth1->execute(
  917. $form->{id}, $form->{"expense_accno_id_$i"},
  918. $linetotal, $form->{transdate},
  919. $form->{"project_id_$i"}, $ref->{id}
  920. ) || $form->dberror($query);
  921. $linetotal = (-1)*$linetotal;
  922. $query = qq|
  923. INSERT INTO acc_trans
  924. (trans_id, chart_id, amount,
  925. transdate, project_id, invoice_id)
  926. VALUES (?, ?, ?, ?, ?, ?)|;
  927. $sth1 = $dbh->prepare($query);
  928. $sth1->execute(
  929. $form->{id}, $form->{"inventory_accno_id_$i"},
  930. $linetotal, $form->{transdate},
  931. $form->{"project_id_$i"}, $ref->{id}
  932. ) || $form->dberror($query);
  933. # start patch bug 1755928 ################################################################################
  934. my $allocated1 = 0;
  935. my $totalqty1 = $qty;
  936. my $query_ap = qq|SELECT i.id, i.qty, i.allocated, a.transdate
  937. FROM invoice i
  938. JOIN parts p ON (p.id = i.parts_id)
  939. JOIN ap a ON (a.id = i.trans_id)
  940. WHERE i.parts_id = ? AND (i.qty + i.allocated) > 0 AND i.sellprice = ?
  941. ORDER BY transdate|;
  942. my $sth1 = $dbh->prepare($query_ap);
  943. $sth1->execute( $form->{"id_$i"}, $ref->{"sellprice"}) || $form->dberror($query_ap);
  944. while ( my $ref1 = $sth1->fetchrow_hashref(NAME_lc) ) {
  945. $form->db_parse_numeric(sth=>$sth1, hashref => $ref1);
  946. my $qty = $ref1->{qty} + $ref1->{allocated};
  947. if ( ( $qty - $totalqty ) > 0 ) { $qty = $totalqty; }
  948. $form->update_balance( $dbh, "invoice", "allocated", qq|id = $ref1->{id}|, $qty );
  949. $allocated1 += $qty;
  950. last if ( ( $totalqty1 -= $qty ) <= 0 );
  951. }
  952. $form->update_balance( $dbh, "invoice", "allocated", qq|id = $ref->{id}|, $allocated1 * -1 );
  953. # stop patch bug 1755928 ################################################################################
  954. last if ( ( $totalqty += $qty ) >= 0 );
  955. }
  956. }
  957. }
  958. }
  959. # save detail record in invoice table
  960. $query = qq|
  961. INSERT INTO invoice (description)
  962. VALUES ('$uid')|;
  963. $dbh->do($query) || $form->dberror($query);
  964. $query = qq|
  965. SELECT id FROM invoice
  966. WHERE description = '$uid'|;
  967. ($invoice_id) = $dbh->selectrow_array($query);
  968. unless ( $form->{"deliverydate_$i"} ) {
  969. undef $form->{"deliverydate_$i"};
  970. }
  971. $query = qq|
  972. UPDATE invoice
  973. SET trans_id = ?,
  974. parts_id = ?,
  975. description = ?,
  976. qty = ?,
  977. sellprice = ?,
  978. fxsellprice = ?,
  979. discount = ?,
  980. allocated = ?,
  981. unit = ?,
  982. deliverydate = ?,
  983. project_id = ?,
  984. serialnumber = ?,
  985. notes = ?
  986. WHERE id = ?|;
  987. $sth = $dbh->prepare($query);
  988. $sth->execute(
  989. $form->{id}, $form->{"id_$i"},
  990. $form->{"description_$i"}, $form->{"qty_$i"},
  991. $form->{"sellprice_$i"}, $fxsellprice,
  992. $form->{"discount_$i"}, $allocated,
  993. $form->{"unit_$i"}, $form->{"deliverydate_$i"},
  994. $project_id, $form->{"serialnumber_$i"},
  995. $form->{"notes_$i"},
  996. $invoice_id
  997. ) || $form->dberror($query);
  998. if (defined $form->{approved}) {
  999. $query = qq| UPDATE ar SET approved = ? WHERE id = ?|;
  1000. $dbh->prepare($query)->execute($form->{approved}, $form->{id})
  1001. || $form->dberror($query);
  1002. if (!$form->{approved}){
  1003. if (not defined $form->{batch_id}){
  1004. $form->error($locale->text('Batch ID Missing'));
  1005. }
  1006. $query = qq|
  1007. INSERT INTO voucher (batch_id, trans_id) VALUES (?, ?)|;
  1008. $sth = $dbh->prepare($query);
  1009. $sth->execute($form->{batch_id}, $form->{id}) ||
  1010. $form->dberror($query);
  1011. }
  1012. }
  1013. # add invoice_id
  1014. $form->{acc_trans}{lineitems}[$ndx]->{invoice_id} = $invoice_id;
  1015. }
  1016. }
  1017. $form->{paid} = 0;
  1018. for $i ( 1 .. $form->{paidaccounts} ) {
  1019. $form->{"paid_$i"} =
  1020. $form->parse_amount( $myconfig, $form->{"paid_$i"} );
  1021. $form->{paid} += $form->{"paid_$i"};
  1022. $form->{datepaid} = $form->{"datepaid_$i"}
  1023. if ( $form->{"paid_$i"} );
  1024. }
  1025. # add lineitems + tax
  1026. $amount = 0;
  1027. $grossamount = 0;
  1028. $fxgrossamount = 0;
  1029. for ( @{ $form->{acc_trans}{lineitems} } ) {
  1030. $amount += $_->{amount};
  1031. $grossamount += $_->{grossamount};
  1032. $fxgrossamount += $_->{fxgrossamount};
  1033. }
  1034. $invnetamount = $amount;
  1035. $amount = 0;
  1036. for ( split / /, $form->{taxaccounts} ) {
  1037. $amount += $form->{acc_trans}{ $form->{id} }{$_}{amount} =
  1038. $form->round_amount( $form->{acc_trans}{ $form->{id} }{$_}{amount},
  1039. 2 );
  1040. }
  1041. $invamount = $invnetamount + $amount;
  1042. $diff = 0;
  1043. if ( $form->{taxincluded} ) {
  1044. $diff = $form->round_amount( $grossamount - $invamount, 2 );
  1045. $invamount += $diff;
  1046. }
  1047. $fxdiff = $form->round_amount( $fxdiff, 2 );
  1048. $invnetamount += $fxdiff;
  1049. $invamount += $fxdiff;
  1050. if ( $form->round_amount( $form->{paid} - $fxgrossamount, 2 ) == 0 ) {
  1051. $form->{paid} = $invamount;
  1052. }
  1053. else {
  1054. $form->{paid} =
  1055. $form->round_amount( $form->{paid} * $form->{exchangerate}, 2 );
  1056. }
  1057. foreach $ref ( sort { $b->{amount} <=> $a->{amount} }
  1058. @{ $form->{acc_trans}{lineitems} } )
  1059. {
  1060. $amount = $ref->{amount} + $diff + $fxdiff;
  1061. $query = qq|
  1062. INSERT INTO acc_trans
  1063. (trans_id, chart_id, amount,
  1064. transdate, project_id, invoice_id)
  1065. VALUES (?, ?, ?, ?, ?, ?)|;
  1066. $sth = $dbh->prepare($query);
  1067. $sth->execute( $form->{id}, $ref->{chart_id}, $amount,
  1068. $form->{transdate}, $ref->{project_id}, $ref->{invoice_id} )
  1069. || $form->dberror($query);
  1070. $diff = 0;
  1071. $fxdiff = 0;
  1072. }
  1073. $form->{receivables} = $invamount * -1;
  1074. delete $form->{acc_trans}{lineitems};
  1075. # update exchangerate
  1076. if ( ( $form->{currency} ne $form->{defaultcurrency} ) && !$exchangerate ) {
  1077. $form->update_exchangerate( $dbh, $form->{currency}, $form->{transdate},
  1078. $form->{exchangerate}, 0 );
  1079. }
  1080. # record receivable
  1081. if ( $form->{receivables} ) {
  1082. ($accno) = split /--/, $form->{AR};
  1083. $query = qq|
  1084. INSERT INTO acc_trans
  1085. (trans_id, chart_id, amount, transdate)
  1086. VALUES (?, (SELECT id FROM chart WHERE accno = ?),
  1087. ?, ?)|;
  1088. $sth = $dbh->prepare($query);
  1089. $sth->execute( $form->{id}, $accno, $form->{receivables},
  1090. $form->{transdate} )
  1091. || $form->dberror($query);
  1092. }
  1093. foreach my $trans_id ( keys %{ $form->{acc_trans} } ) {
  1094. foreach my $accno ( keys %{ $form->{acc_trans}{$trans_id} } ) {
  1095. $amount =
  1096. $form->round_amount(
  1097. $form->{acc_trans}{$trans_id}{$accno}{amount}, 2 );
  1098. if ($amount) {
  1099. $query = qq|
  1100. INSERT INTO acc_trans
  1101. (trans_id, chart_id, amount,
  1102. transdate)
  1103. VALUES (?, (SELECT id FROM chart
  1104. WHERE accno = ?),
  1105. ?, ?)|;
  1106. $sth = $dbh->prepare($query);
  1107. $sth->execute( $trans_id, $accno, $amount, $form->{transdate} )
  1108. || $form->dberror($query);
  1109. }
  1110. }
  1111. }
  1112. # if there is no amount but a payment record receivable
  1113. if ( $invamount == 0 ) {
  1114. $form->{receivables} = 1;
  1115. }
  1116. my $cleared = 0;
  1117. # record payments and offsetting AR
  1118. for $i ( 1 .. $form->{paidaccounts} ) {
  1119. if ( $form->{"paid_$i"} ) {
  1120. my ($accno) = split /--/, $form->{"AR_paid_$i"};
  1121. $form->{"datepaid_$i"} = $form->{transdate}
  1122. unless ( $form->{"datepaid_$i"} );
  1123. $form->{datepaid} = $form->{"datepaid_$i"};
  1124. $exchangerate = 0;
  1125. if ( $form->{currency} eq $form->{defaultcurrency} ) {
  1126. $form->{"exchangerate_$i"} = 1;
  1127. }
  1128. else {
  1129. $exchangerate =
  1130. $form->check_exchangerate( $myconfig, $form->{currency},
  1131. $form->{"datepaid_$i"}, 'buy' );
  1132. $form->{"exchangerate_$i"} =
  1133. ($exchangerate)
  1134. ? $exchangerate
  1135. : $form->parse_amount( $myconfig,
  1136. $form->{"exchangerate_$i"} );
  1137. }
  1138. # record AR
  1139. $amount =
  1140. $form->round_amount( $form->{"paid_$i"} * $form->{exchangerate},
  1141. 2 );
  1142. if ( $form->{receivables} ) {
  1143. $query = qq|
  1144. INSERT INTO acc_trans
  1145. (trans_id, chart_id, amount,
  1146. transdate)
  1147. VALUES (?, (SELECT id FROM chart
  1148. WHERE accno = ?),
  1149. ?, ?)|;
  1150. $sth = $dbh->prepare($query);
  1151. $sth->execute( $form->{id}, $form->{AR}, $amount,
  1152. $form->{"datepaid_$i"} )
  1153. || $form->dberror($query);
  1154. }
  1155. # record payment
  1156. $amount = $form->{"paid_$i"} * -1;
  1157. if ($keepcleared) {
  1158. $cleared = ( $form->{"cleared_$i"} ) ? 1 : 0;
  1159. }
  1160. $query = qq|
  1161. INSERT INTO acc_trans
  1162. (trans_id, chart_id, amount,
  1163. transdate, source, memo, cleared)
  1164. VALUES (?, (SELECT id FROM chart
  1165. WHERE accno = ?),
  1166. ?, ?, ?, ?, ?)|;
  1167. $sth = $dbh->prepare($query);
  1168. $sth->execute( $form->{id}, $accno, $amount, $form->{"datepaid_$i"},
  1169. $form->{"source_$i"}, $form->{"memo_$i"}, $cleared )
  1170. || $form->dberror($query);
  1171. # exchangerate difference
  1172. $amount = $form->round_amount(
  1173. (
  1174. $form->round_amount(
  1175. $form->{"paid_$i"} * $form->{"exchangerate_$i"} -
  1176. $form->{"paid_$i"},
  1177. 2
  1178. )
  1179. ) * -1,
  1180. 2
  1181. );
  1182. if ($amount) {
  1183. $query = qq|
  1184. INSERT INTO acc_trans
  1185. (trans_id, chart_id, amount,
  1186. transdate, source,
  1187. fx_transaction, cleared)
  1188. VALUES (?, (SELECT id FROM chart
  1189. WHERE accno = >),
  1190. ?, ?, ?, '1', ?)|;
  1191. $sth = $dbh->prepare($query);
  1192. $sth->execute( $form->{id}, $accno, $amount,
  1193. $form->{"datepaid_$i"},
  1194. $form->{"source_$i"}, $cleared )
  1195. || $form->dberror($query);
  1196. }
  1197. # gain/loss
  1198. $amount = $form->round_amount(
  1199. (
  1200. $form->round_amount(
  1201. $form->{"paid_$i"} * $form->{exchangerate}, 2 ) -
  1202. $form->round_amount(
  1203. $form->{"paid_$i"} * $form->{"exchangerate_$i"}, 2
  1204. )
  1205. ) * -1,
  1206. 2
  1207. );
  1208. if ($amount) {
  1209. my $accno_id =
  1210. ( $amount > 0 )
  1211. ? $fxgain_accno_id
  1212. : $fxloss_accno_id;
  1213. $query = qq|
  1214. INSERT INTO acc_trans (
  1215. trans_id, chart_id, amount,
  1216. transdate, fx_transaction,
  1217. cleared)
  1218. VALUES (?, ?, ?, ?, '1', ?)|;
  1219. $sth = $dbh->prepare($query);
  1220. $sth->execute( $form->{id}, $accno_id, $amount,
  1221. $form->{"datepaid_$i"}, $cleared )
  1222. || $form->dberror($query);
  1223. }
  1224. # update exchange rate
  1225. if ( ( $form->{currency} ne $form->{defaultcurrency} )
  1226. && !$exchangerate )
  1227. {
  1228. $form->update_exchangerate(
  1229. $dbh, $form->{currency},
  1230. $form->{"datepaid_$i"},
  1231. $form->{"exchangerate_$i"}, 0
  1232. );
  1233. }
  1234. }
  1235. }
  1236. # set values which could be empty to 0
  1237. $form->{terms} *= 1;
  1238. $form->{taxincluded} *= 1;
  1239. # save AR record
  1240. $query = qq|
  1241. UPDATE ar set
  1242. invnumber = ?,
  1243. ordnumber = ?,
  1244. quonumber = ?,
  1245. transdate = ?,
  1246. entity_id = ?,
  1247. amount = ?,
  1248. netamount = ?,
  1249. paid = ?,
  1250. datepaid = ?,
  1251. duedate = ?,
  1252. invoice = '1',
  1253. shippingpoint = ?,
  1254. shipvia = ?,
  1255. terms = ?,
  1256. notes = ?,
  1257. intnotes = ?,
  1258. taxincluded = ?,
  1259. curr = ?,
  1260. department_id = ?,
  1261. person_id = ?,
  1262. till = ?,
  1263. language_code = ?,
  1264. ponumber = ?
  1265. WHERE id = ?
  1266. |;
  1267. $sth = $dbh->prepare($query);
  1268. $sth->execute(
  1269. $form->{invnumber}, $form->{ordnumber},
  1270. $form->{quonumber}, $form->{transdate} || 'now',
  1271. $form->{customer_id}, $invamount,
  1272. $invnetamount, $form->{paid},
  1273. $form->{datepaid} || 'now', $form->{duedate} || 'now',
  1274. $form->{shippingpoint}, $form->{shipvia},
  1275. $form->{terms}, $form->{notes},
  1276. $form->{intnotes}, $form->{taxincluded},
  1277. $form->{currency}, $form->{department_id},
  1278. $form->{employee_id}, $form->{till},
  1279. $form->{language_code}, $form->{ponumber},
  1280. $form->{id}
  1281. ) || $form->dberror($query);
  1282. # add shipto
  1283. $form->{name} = $form->{customer};
  1284. $form->{name} =~ s/--$form->{customer_id}//;
  1285. $form->add_shipto( $dbh, $form->{id} );
  1286. # save printed, emailed and queued
  1287. $form->save_status($dbh);
  1288. my %audittrail = (
  1289. tablename => 'ar',
  1290. reference => $form->{invnumber},
  1291. formname => $form->{type},
  1292. action => 'posted',
  1293. id => $form->{id}
  1294. );
  1295. $form->audittrail( $dbh, "", \%audittrail );
  1296. $form->save_recurring( $dbh, $myconfig );
  1297. my $rc = $dbh->commit;
  1298. $rc;
  1299. }
  1300. sub process_assembly {
  1301. my ( $dbh2, $form, $id, $totalqty, $project_id ) = @_;
  1302. my $dbh = $form->{dbh};
  1303. my $query = qq|
  1304. SELECT a.parts_id, a.qty, p.assembly,
  1305. p.partnumber, p.description, p.unit,
  1306. p.inventory_accno_id, p.income_accno_id,
  1307. p.expense_accno_id
  1308. FROM assembly a
  1309. JOIN parts p ON (a.parts_id = p.id)
  1310. WHERE a.id = ?|;
  1311. my $sth = $dbh->prepare($query);
  1312. $sth->execute($id) || $form->dberror($query);
  1313. my $allocated;
  1314. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1315. $allocated = 0;
  1316. $ref->{inventory_accno_id} *= 1;
  1317. $ref->{expense_accno_id} *= 1;
  1318. # multiply by number of assemblies
  1319. $ref->{qty} *= $totalqty;
  1320. if ( $ref->{assembly} ) {
  1321. &process_assembly( $dbh, $form, $ref->{parts_id}, $ref->{qty},
  1322. $project_id );
  1323. next;
  1324. }
  1325. else {
  1326. if ( $ref->{inventory_accno_id} ) {
  1327. $allocated =
  1328. &cogs( $dbh, $form, $ref->{parts_id}, $ref->{qty},
  1329. $project_id );
  1330. }
  1331. }
  1332. $query = qq|
  1333. INSERT INTO invoice
  1334. (trans_id, description, parts_id, qty,
  1335. sellprice, fxsellprice, allocated,
  1336. assemblyitem, unit)
  1337. VALUES (?, ?, ?, ?, 0, 0, ?, 't', ?)|;
  1338. my $sth = $dbh->prepare($query);
  1339. $sth->execute( $form->{id}, $ref->{description}, $ref->{parts_id},
  1340. $ref->{qty}, $allocated, $ref->{unit} )
  1341. || $form->dberror($query);
  1342. }
  1343. $sth->finish;
  1344. }
  1345. sub cogs {
  1346. my ( $dbh2, $form, $id, $totalqty, $project_id ) = @_;
  1347. my $dbh = $form->{dbh};
  1348. my $query = qq|
  1349. SELECT i.id, i.trans_id, i.qty, i.allocated, i.sellprice,
  1350. i.fxsellprice, p.inventory_accno_id,
  1351. p.expense_accno_id
  1352. FROM invoice i, parts p, ap a
  1353. WHERE i.parts_id = p.id
  1354. AND i.trans_id = a.id
  1355. AND i.parts_id = ?
  1356. AND (i.qty + i.allocated) < 0
  1357. ORDER BY trans_id|;
  1358. my $sth = $dbh->prepare($query);
  1359. $sth->execute($id) || $form->dberror($query);
  1360. my $allocated = 0;
  1361. my $qty;
  1362. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1363. $form->db_parse_numeric(sth=>$sth, hashref=>$ref);
  1364. if ( ( $qty = ( ( $ref->{qty} * -1 ) - $ref->{allocated} ) ) >
  1365. $totalqty )
  1366. {
  1367. $qty = $totalqty;
  1368. }
  1369. $form->update_balance( $dbh, "invoice", "allocated",
  1370. qq|id = $ref->{id}|, $qty );
  1371. # total expenses and inventory
  1372. # sellprice is the cost of the item
  1373. my $linetotal = $form->round_amount( $ref->{sellprice} * $qty, 2 );
  1374. # add expense
  1375. push @{ $form->{acc_trans}{lineitems} },
  1376. {
  1377. chart_id => $ref->{expense_accno_id},
  1378. amount => $linetotal * -1,
  1379. project_id => $project_id,
  1380. invoice_id => $ref->{id}
  1381. };
  1382. # deduct inventory
  1383. push @{ $form->{acc_trans}{lineitems} },
  1384. {
  1385. chart_id => $ref->{inventory_accno_id},
  1386. amount => $linetotal,
  1387. project_id => $project_id,
  1388. invoice_id => $ref->{id}
  1389. };
  1390. # add allocated
  1391. $allocated += -$qty;
  1392. last if ( ( $totalqty -= $qty ) <= 0 );
  1393. }
  1394. $sth->finish;
  1395. $allocated;
  1396. }
  1397. sub reverse_invoice {
  1398. my ( $dbh2, $form ) = @_;
  1399. my $dbh = $form->{dbh};
  1400. my $query = qq|
  1401. SELECT id FROM ar
  1402. WHERE id = ?|;
  1403. my $sth;
  1404. $sth = $dbh->prepare($query);
  1405. $sth->execute( $form->{id} );
  1406. my ($id) = $sth->fetchrow_array;
  1407. return unless $id;
  1408. # reverse inventory items
  1409. my $query = qq|
  1410. SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly,
  1411. p.inventory_accno_id
  1412. FROM invoice i
  1413. JOIN parts p ON (i.parts_id = p.id)
  1414. WHERE i.trans_id = ?|;
  1415. my $sth = $dbh->prepare($query);
  1416. $sth->execute( $form->{id} ) || $form->dberror($query);
  1417. while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1418. if ( $ref->{inventory_accno_id} || $ref->{assembly} ) {
  1419. # if the invoice item is not an assemblyitem
  1420. # adjust parts onhand
  1421. if ( !$ref->{assemblyitem} ) {
  1422. # adjust onhand in parts table
  1423. $form->update_balance( $dbh, "parts", "onhand",
  1424. qq|id = $ref->{parts_id}|,
  1425. $ref->{qty} );
  1426. }
  1427. # loop if it is an assembly
  1428. next if ( $ref->{assembly} );
  1429. # de-allocated purchases
  1430. $query = qq|
  1431. SELECT id, trans_id, allocated
  1432. FROM invoice
  1433. WHERE parts_id = ?
  1434. AND allocated > 0
  1435. ORDER BY trans_id DESC|;
  1436. my $sth = $dbh->prepare($query);
  1437. $sth->execute( $ref->{parts_id} )
  1438. || $form->dberror($query);
  1439. while ( my $inhref = $sth->fetchrow_hashref(NAME_lc) ) {
  1440. $qty = $ref->{qty};
  1441. if ( ( $ref->{qty} - $inhref->{allocated} ) > 0 ) {
  1442. $qty = $inhref->{allocated};
  1443. }
  1444. # update invoice
  1445. $form->update_balance( $dbh, "invoice", "allocated",
  1446. qq|id = $inhref->{id}|,
  1447. $qty * -1 );
  1448. last if ( ( $ref->{qty} -= $qty ) <= 0 );
  1449. }
  1450. $sth->finish;
  1451. }
  1452. }
  1453. $sth->finish;
  1454. # delete acc_trans
  1455. $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
  1456. $sth = $dbh->prepare($query);
  1457. $sth->execute( $form->{id} ) || $form->dberror($query);
  1458. # delete invoice entries
  1459. $query = qq|DELETE FROM invoice WHERE trans_id = ?|;
  1460. $sth = $dbh->prepare($query);
  1461. $sth->execute( $form->{id} ) || $form->dberror($query);
  1462. $query = qq|DELETE FROM shipto WHERE trans_id = ?|;
  1463. $sth = $dbh->prepare($query);
  1464. $sth->execute( $form->{id} ) || $form->dberror($query);
  1465. $dbh->commit;
  1466. }
  1467. sub delete_invoice {
  1468. my ( $self, $myconfig, $form ) = @_;
  1469. my $dbh = $form->{dbh};
  1470. my $sth;
  1471. &reverse_invoice( $dbh, $form );
  1472. my %audittrail = (
  1473. tablename => 'ar',
  1474. reference => $form->{invnumber},
  1475. formname => $form->{type},
  1476. action => 'deleted',
  1477. id => $form->{id}
  1478. );
  1479. $form->audittrail( $dbh, "", \%audittrail );
  1480. # delete AR record
  1481. my $query = qq|DELETE FROM ar WHERE id = ?|;
  1482. $sth = $dbh->prepare($query);
  1483. $sth->execute( $form->{id} ) || $form->dberror($query);
  1484. # delete spool files
  1485. $query = qq|
  1486. SELECT spoolfile FROM status
  1487. WHERE trans_id = ? AND spoolfile IS NOT NULL|;
  1488. $sth = $dbh->prepare($query);
  1489. $sth->execute( $form->{id} ) || $form->dberror($query);
  1490. my $spoolfile;
  1491. my @spoolfiles = ();
  1492. while ( ($spoolfile) = $sth->fetchrow_array ) {
  1493. push @spoolfiles, $spoolfile;
  1494. }
  1495. $sth->finish;
  1496. # delete status entries
  1497. $query = qq|DELETE FROM status WHERE trans_id = ?|;
  1498. $sth = $dbh->prepare($query);
  1499. $sth->execute( $form->{id} ) || $form->dberror($query);
  1500. my $rc = $dbh->commit;
  1501. if ($rc) {
  1502. foreach $spoolfile (@spoolfiles) {
  1503. unlink "${LedgerSMB::Sysconfig::spool}/$spoolfile"
  1504. if $spoolfile;
  1505. }
  1506. }
  1507. $rc;
  1508. }
  1509. sub retrieve_invoice {
  1510. my ( $self, $myconfig, $form ) = @_;
  1511. my $dbh = $form->{dbh};
  1512. my $query;
  1513. if ( $form->{id} ) {
  1514. # get default accounts and last invoice number
  1515. $query = qq|
  1516. SELECT value AS currencies FROM defaults
  1517. WHERE setting_key = 'curr'|;
  1518. }
  1519. else {
  1520. $query = qq|
  1521. SELECT value AS currencies, current_date AS transdate
  1522. FROM defaults
  1523. WHERE setting_key = 'curr'|;
  1524. }
  1525. my $sth = $dbh->prepare($query);
  1526. $sth->execute || $form->dberror($query);
  1527. my $ref = $sth->fetchrow_hashref(NAME_lc);
  1528. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1529. $sth->finish;
  1530. if ( $form->{id} ) {
  1531. # retrieve invoice
  1532. $query = qq|
  1533. SELECT a.invnumber, a.ordnumber, a.quonumber,
  1534. a.transdate, a.paid,
  1535. a.shippingpoint, a.shipvia, a.terms, a.notes,
  1536. a.intnotes,
  1537. a.duedate, a.taxincluded, a.curr AS currency,
  1538. a.person_id, e.name AS employee, a.till,
  1539. a.entity_id, a.reverse
  1540. a.language_code, a.ponumber,
  1541. a.on_hold
  1542. FROM ar a
  1543. LEFT JOIN employee e ON (e.entity_id = a.person_id)
  1544. WHERE a.id = ?|;
  1545. $sth = $dbh->prepare($query);
  1546. $sth->execute( $form->{id} ) || $form->dberror($query);
  1547. $ref = $sth->fetchrow_hashref(NAME_lc);
  1548. $form->db_parse_numeric(sth=> $sth, hashref=>$ref_);
  1549. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1550. $sth->finish;
  1551. # get shipto
  1552. $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
  1553. $sth = $dbh->prepare($query);
  1554. $sth->execute( $form->{id} ) || $form->dberror($query);
  1555. $ref = $sth->fetchrow_hashref(NAME_lc);
  1556. for ( keys %$ref ) { $form->{$_} = $ref->{$_} }
  1557. $sth->finish;
  1558. # retrieve individual items
  1559. $query = qq|
  1560. SELECT i.description, i.qty, i.fxsellprice,
  1561. i.sellprice, i.discount, i.parts_id AS id,
  1562. i.unit, i.deliverydate, i.project_id,
  1563. pr.projectnumber, i.serialnumber, i.notes,
  1564. p.partnumber, p.assembly, p.bin,
  1565. pg.partsgroup, p.partsgroup_id,
  1566. p.partnumber AS sku, p.listprice, p.lastcost,
  1567. p.weight, p.onhand, p.inventory_accno_id,
  1568. p.income_accno_id, p.expense_accno_id,
  1569. t.description AS partsgrouptranslation
  1570. FROM invoice i
  1571. JOIN parts p ON (i.parts_id = p.id)
  1572. LEFT JOIN project pr ON (i.project_id = pr.id)
  1573. LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
  1574. LEFT JOIN translation t
  1575. ON (t.trans_id = p.partsgroup_id
  1576. AND t.language_code
  1577. = ?)
  1578. WHERE i.trans_id = ?
  1579. AND NOT i.assemblyitem = '1'
  1580. ORDER BY i.id|;
  1581. $sth = $dbh->prepare($query);
  1582. $sth->execute( $form->{language_code}, $form->{id} )
  1583. || $form->dberror($query);
  1584. # foreign currency
  1585. &exchangerate_defaults( $dbh, $form );
  1586. # query for price matrix
  1587. my $pmh = PriceMatrix::price_matrix_query( $dbh, $form );
  1588. # taxes
  1589. $query = qq|
  1590. SELECT c.accno
  1591. FROM chart c
  1592. JOIN partstax pt ON (pt.chart_id = c.id)
  1593. WHERE pt.parts_id = ?|;
  1594. my $tth = $dbh->prepare($query) || $form->dberror($query);
  1595. my $taxrate;
  1596. my $ptref;
  1597. while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1598. $form->db_parse_numeric(sth=>$sth, hashref => $ref);
  1599. $ref->{qty} *= -1 if $form->{reverse};
  1600. my ($dec) = ( $ref->{fxsellprice} =~ /\.(\d+)/ );
  1601. $dec = length $dec;
  1602. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  1603. $tth->execute( $ref->{id} );
  1604. $ref->{taxaccounts} = "";
  1605. $taxrate = 0;
  1606. while ( $ptref = $tth->fetchrow_hashref(NAME_lc) ) {
  1607. $ref->{taxaccounts} .= "$ptref->{accno} ";
  1608. $taxrate += $form->{"$ptref->{accno}_rate"};
  1609. }
  1610. $tth->finish;
  1611. chop $ref->{taxaccounts};
  1612. # price matrix
  1613. $ref->{sellprice} =
  1614. ( $ref->{fxsellprice} * $form->{ $form->{currency} } );
  1615. PriceMatrix::price_matrix( $pmh, $ref, $form->{transdate},
  1616. $decimalplaces, $form, $myconfig );
  1617. $ref->{sellprice} = $ref->{fxsellprice};
  1618. $ref->{partsgroup} = $ref->{partsgrouptranslation}
  1619. if $ref->{partsgrouptranslation};
  1620. push @{ $form->{invoice_details} }, $ref;
  1621. }
  1622. $sth->finish;
  1623. }
  1624. @queries = $form->run_custom_queries( 'ar', 'SELECT' );
  1625. my $rc = $dbh->commit;
  1626. $rc;
  1627. }
  1628. sub retrieve_item {
  1629. my ( $self, $myconfig, $form ) = @_;
  1630. my $dbh = $form->{dbh};
  1631. my $i = $form->{rowcount};
  1632. my $null;
  1633. my $var;
  1634. my $where = "WHERE p.obsolete = '0' AND NOT p.income_accno_id IS NULL";
  1635. if ( $form->{"partnumber_$i"} ne "" ) {
  1636. $var = $dbh->quote( $form->like( lc $form->{"partnumber_$i"} ) );
  1637. $where .= " AND lower(p.partnumber) LIKE $var";
  1638. }
  1639. if ( $form->{"description_$i"} ne "" ) {
  1640. $var = $dbh->quote( $form->like( lc $form->{"description_$i"} ) );
  1641. if ( $form->{language_code} ne "" ) {
  1642. $where .= " AND lower(t1.description) LIKE $var";
  1643. }
  1644. else {
  1645. $where .= " AND lower(p.description) LIKE $var";
  1646. }
  1647. }
  1648. if ( $form->{"partsgroup_$i"} ne "" ) {
  1649. ( $null, $var ) = split /--/, $form->{"partsgroup_$i"};
  1650. if ( ! $var ) {
  1651. # search by partsgroup, this is for the POS
  1652. $where .=
  1653. qq| AND pg.partsgroup = |
  1654. . $dbh->quote( $form->{"partsgroup_$i"} );
  1655. }
  1656. else {
  1657. $var = $dbh->quote($var);
  1658. $where .= qq| AND p.partsgroup_id = $var|;
  1659. }
  1660. }
  1661. if ( $form->{"description_$i"} ne "" ) {
  1662. $where .= " ORDER BY 3";
  1663. }
  1664. else {
  1665. $where .= " ORDER BY 2";
  1666. }
  1667. my $query = qq|
  1668. SELECT p.id, p.partnumber, p.description, p.sellprice,
  1669. p.listprice, p.lastcost, p.unit, p.assembly, p.bin,
  1670. p.onhand, p.notes, p.inventory_accno_id,
  1671. p.income_accno_id, p.expense_accno_id, pg.partsgroup,
  1672. p.partsgroup_id, p.partnumber AS sku, p.weight,
  1673. t1.description AS translation,
  1674. t2.description AS grouptranslation
  1675. FROM parts p
  1676. LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
  1677. LEFT JOIN translation t1
  1678. ON (t1.trans_id = p.id AND t1.language_code = ?)
  1679. LEFT JOIN translation t2
  1680. ON (t2.trans_id = p.partsgroup_id
  1681. AND t2.language_code = ?)
  1682. $where|;
  1683. my $sth = $dbh->prepare($query);
  1684. $sth->execute( $form->{language_code}, $form->{language_code} )
  1685. || $form->dberror($query);
  1686. my $ref;
  1687. my $ptref;
  1688. # setup exchange rates
  1689. &exchangerate_defaults( $dbh, $form );
  1690. # taxes
  1691. $query = qq|
  1692. SELECT c.accno
  1693. FROM chart c
  1694. JOIN partstax pt ON (c.id = pt.chart_id)
  1695. WHERE pt.parts_id = ?|;
  1696. my $tth = $dbh->prepare($query) || $form->dberror($query);
  1697. # price matrix
  1698. my $pmh = PriceMatrix::price_matrix_query( $dbh, $form );
  1699. my $transdate = $form->datetonum( $myconfig, $form->{transdate} );
  1700. while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) {
  1701. $form->db_parse_numeric(sth => $sth, hashref => $ref);
  1702. my ($dec) = ( $ref->{sellprice} =~ /\.(\d+)/ );
  1703. $dec = length $dec;
  1704. my $decimalplaces = ( $dec > 2 ) ? $dec : 2;
  1705. # get taxes for part
  1706. $tth->execute( $ref->{id} );
  1707. $ref->{taxaccounts} = "";
  1708. while ( $ptref = $tth->fetchrow_hashref(NAME_lc) ) {
  1709. $ref->{taxaccounts} .= "$ptref->{accno} ";
  1710. }
  1711. $tth->finish;
  1712. chop $ref->{taxaccounts};
  1713. # get matrix
  1714. PriceMatrix::price_matrix( $pmh, $ref, $transdate, $decimalplaces,
  1715. $form, $myconfig );
  1716. $ref->{description} = $ref->{translation}
  1717. if $ref->{translation};
  1718. $ref->{partsgroup} = $ref->{grouptranslation}
  1719. if $ref->{grouptranslation};
  1720. push @{ $form->{item_list} }, $ref;
  1721. }
  1722. $sth->finish;
  1723. }
  1724. sub exchangerate_defaults {
  1725. my ( $dbh2, $form ) = @_;
  1726. $dbh = $form->{dbh};
  1727. my $var;
  1728. # get default currencies
  1729. my $query = qq|
  1730. SELECT substr(value,1,3), value FROM defaults
  1731. WHERE setting_key = 'curr'|;
  1732. my $eth = $dbh->prepare($query) || $form->dberror($query);
  1733. $eth->execute;
  1734. ( $form->{defaultcurrency}, $form->{currencies} ) = $eth->fetchrow_array;
  1735. $eth->finish;
  1736. $query = qq|
  1737. SELECT buy
  1738. FROM exchangerate
  1739. WHERE curr = ?
  1740. AND transdate = ?|;
  1741. my $eth1 = $dbh->prepare($query) || $form->dberror($query);
  1742. $query = qq/
  1743. SELECT max(transdate || ' ' || buy || ' ' || curr)
  1744. FROM exchangerate
  1745. WHERE curr = ?/;
  1746. my $eth2 = $dbh->prepare($query) || $form->dberror($query);
  1747. # get exchange rates for transdate or max
  1748. foreach $var ( split /:/, substr( $form->{currencies}, 4 ) ) {
  1749. $eth1->execute( $var, $form->{transdate} );
  1750. ( $form->{$var} ) = $eth1->fetchrow_array;
  1751. if ( !$form->{$var} ) {
  1752. $eth2->execute($var);
  1753. ( $form->{$var} ) = $eth2->fetchrow_array;
  1754. ( $null, $form->{$var} ) = split / /, $form->{$var};
  1755. $form->{$var} = 1 unless $form->{$var};
  1756. $eth2->finish;
  1757. }
  1758. $eth1->finish;
  1759. }
  1760. $form->{ $form->{currency} } = $form->{exchangerate}
  1761. if $form->{exchangerate};
  1762. $form->{ $form->{currency} } ||= 1;
  1763. $form->{ $form->{defaultcurrency} } = 1;
  1764. }
  1765. =pod
  1766. =cut
  1767. sub toggle_on_hold {
  1768. my $self = shift @_;
  1769. my $form = shift @_;
  1770. if ($form->{id}) { # it's an existing (.. probably) invoice.
  1771. my $dbh = $form->{dbh};
  1772. my $sth = $dbh->prepare("SELECT on_hold from ar where ar.id = ?");
  1773. $sth->execute($form->{id});
  1774. my $state = $sth->fetchrow_array;
  1775. my $sth;
  1776. my $n_s; # new state
  1777. if ($state[0] == 't') {
  1778. # Turn it off
  1779. $n_s = 'f';
  1780. } else {
  1781. $n_s = 't';
  1782. }
  1783. my $sth = $dbh->prepare("update ar set on_hold = ?::boolean where ar.id = ?");
  1784. my $code = $dbh->execute($ns, $form->{id});
  1785. return 1;
  1786. } else { # This shouldn't even be possible, but check for it anyway.
  1787. # Definitely, DEFINITELY check it.
  1788. # happily return 0. Find out about proper error states.
  1789. return 0;
  1790. }
  1791. }
  1792. 1;