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