summaryrefslogtreecommitdiff
path: root/scripts/payment.pl
blob: 9037aca8dd76e3036f5d1de0b41402e0683f1d99 (plain)
  1. =pod
  2. =head1 NAME
  3. LedgerSMB::Scripts::payment - LedgerSMB class defining the Controller functions for payment handling.
  4. =head1 SYNOPSIS
  5. Defines the controller functions and workflow logic for payment processing.
  6. =head1 COPYRIGHT
  7. Portions Copyright (c) 2007, David Mora R and Christian Ceballos B.
  8. Licensed to the public under the terms of the GNU GPL version 2 or later.
  9. Original copyright notice below.
  10. #=====================================================================
  11. # PLAXIS
  12. # Copyright (c) 2007
  13. #
  14. # Author: David Mora R
  15. # Christian Ceballos B
  16. #
  17. #
  18. #
  19. #
  20. #
  21. # This program is free software; you can redistribute it and/or modify
  22. # it under the terms of the GNU General Public License as published by
  23. # the Free Software Foundation; either version 2 of the License, or
  24. # (at your option) any later version.
  25. #
  26. # This program is distributed in the hope that it will be useful,
  27. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  28. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  29. # GNU General Public License for more details.
  30. # You should have received a copy of the GNU General Public License
  31. # along with this program; if not, write to the Free Software
  32. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  33. =head1 METHODS
  34. =cut
  35. package LedgerSMB::Scripts::payment;
  36. use LedgerSMB::Template;
  37. use LedgerSMB::Sysconfig;
  38. use LedgerSMB::DBObject::Payment;
  39. use LedgerSMB::DBObject::Date;
  40. use Error::Simple;
  41. use strict;
  42. # CT: A few notes for future refactoring of this code:
  43. # 1: I don't think it is a good idea to make the UI too dependant on internal
  44. # code structures but I don't see a good alternative at the moment.
  45. # 2: CamelCasing: -1
  46. =pod
  47. =item payment
  48. This method is used to set the filter screen and prints it, using the
  49. TT2 system.
  50. =back
  51. =cut
  52. sub payments {
  53. my ($request) = @_;
  54. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  55. $payment->get_metadata();
  56. if (!defined $payment->{batch_date}){
  57. $payment->error("No Batch Date!");
  58. }
  59. my $template = LedgerSMB::Template->new(
  60. user => $request->{_user},
  61. locale => $request->{_locale},
  62. path => 'UI/payments',
  63. template => 'payments_filter',
  64. format => 'HTML',
  65. );
  66. $template->render($payment);
  67. }
  68. sub get_search_criteria {
  69. my ($request) = @_;
  70. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  71. $payment->get_metadata();
  72. if ($payment->{batch_id} && $payment->{batch_date}){
  73. $payment->{date_reversed} = $payment->{batch_date};
  74. }
  75. my $template = LedgerSMB::Template->new(
  76. user => $request->{_user},
  77. locale => $request->{_locale},
  78. path => 'UI/payments',
  79. template => 'search',
  80. format => 'HTML',
  81. );
  82. $template->render($payment);
  83. }
  84. sub get_search_results {
  85. my ($request) = @_;
  86. my $rows = [];
  87. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  88. my @search_results = $payment->search;
  89. my $template = LedgerSMB::Template->new(
  90. user => $request->{_user},
  91. locale => $request->{_locale},
  92. path => 'UI',
  93. template => 'form-dynatable',
  94. format => ($payment->{format}) ? $payment->{format} : 'HTML',
  95. );
  96. my $base_url = "payment.pl?";
  97. my $search_url = "$base_url";
  98. for my $key (keys %{$request->take_top_level}){
  99. if ($base_url =~ /\?$/){
  100. $base_url .= "$key=$request->{key}";
  101. } else {
  102. $base_url .= "&$key=$request->{key}";
  103. }
  104. }
  105. my @columns = qw(selected meta_number date_paid amount source company_paid);
  106. my $contact_type = ($payment->{account_class} == 1) ? 'Vendor' : 'Customer';
  107. # CT: Locale strings for gettext:
  108. # $request->{_locale}->text("Vendor Number");
  109. # $request->{_locale}->text("Customer Number");
  110. my $heading = {
  111. selected => $request->{_locale}->text('Selected'),
  112. company_paid => {
  113. text => $request->{_locale}->text('Company Name'),
  114. href => "$search_url&orderby=company_paid",
  115. },
  116. meta_number => {
  117. text => $request->{_locale}->text(
  118. "$contact_type Number"
  119. ),
  120. href => "$search_url&orderby=meta_number",
  121. },
  122. date_paid => {
  123. text => $request->{_locale}->text('Date Paid'),
  124. href => "$search_url&orderby=date_paid",
  125. },
  126. amount => {
  127. text => $request->{_locale}->text('Total Paid'),
  128. href => "$search_url&orderby=amount",
  129. },
  130. source => {
  131. text => $request->{_locale}->text('Source'),
  132. href => "$search_url&orderby=source",
  133. },
  134. };
  135. my $classcount;
  136. $classcount = 0;
  137. my $rowcount;
  138. $rowcount = 1;
  139. for my $line (@search_results){
  140. $classcount ||= 0;
  141. $rowcount += 1;
  142. push(@$rows, {
  143. company_paid => $line->{company_paid},
  144. amount => $request->format_amount(amount => $line->{amount}),
  145. i => "$classcount",
  146. date_paid => $line->{date_paid},
  147. source => $line->{source},
  148. meta_number => $line->{meta_number},
  149. selected => {
  150. input => {
  151. type => "checkbox",
  152. name => "payment_$rowcount",
  153. value => "1",
  154. },
  155. }
  156. });
  157. $payment->{"credit_id_$rowcount"} = $line->{credit_id};
  158. $payment->{"date_paid_$rowcount"} = $line->{date_paid};
  159. $payment->{"source_$rowcount"} = $line->{source};
  160. $classcount = ($classcount + 1) % 2;
  161. ++$rowcount;
  162. }
  163. $payment->{rowcount} = $rowcount;
  164. $payment->{script} = 'payment.pl';
  165. $payment->{title} = $request->{_locale}->text("Payment Results");
  166. my $hiddens = $payment->take_top_level;
  167. $template->render({
  168. form => $payment,
  169. columns => \@columns,
  170. heading => $heading,
  171. hiddens => $payment->take_top_level,
  172. rows => $rows,
  173. buttons => [{
  174. value => 'reverse_payments',
  175. name => 'action',
  176. class => 'submit',
  177. type => 'submit',
  178. text => $request->{_locale}->text('Reverse Payments'),
  179. }]
  180. });
  181. }
  182. sub get_search_results_reverse_payments {
  183. my ($request) = @_;
  184. my $payment = LedgerSMB::DBObject::Payment->new({base => $request});
  185. for my $count (1 .. $payment->{rowcount}){
  186. if ($payment->{"payment_$count"}){
  187. $payment->{credit_id} = $payment->{"credit_id_$count"};
  188. $payment->{date_paid} = $payment->{"date_paid_$count"};
  189. $payment->{source} = $payment->{"source_$count"};
  190. $payment->reverse;
  191. }
  192. }
  193. get_search_criteria($payment);
  194. }
  195. sub check_job {
  196. my ($request) = @_;
  197. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  198. $payment->check_job;
  199. my $template = LedgerSMB::Template->new(
  200. user => $request->{_user},
  201. locale => $request->{_locale},
  202. path => 'UI/payments',
  203. template => 'check_job',
  204. format => 'HTML',
  205. );
  206. $template->render($payment);
  207. }
  208. sub post_payments_bulk {
  209. my ($request) = @_;
  210. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  211. $payment->post_bulk();
  212. my $template;
  213. if ($payment->{queue_payments}){
  214. $payment->{job_label} = 'Payments';
  215. $template = LedgerSMB::Template->new(
  216. user => $request->{_user},
  217. locale => $request->{_locale},
  218. path => 'UI/payments',
  219. template => 'check_job',
  220. format => 'HTML',
  221. );
  222. } else {
  223. payments($request);
  224. }
  225. $template->render($payment);
  226. }
  227. sub print {
  228. use LedgerSMB::DBObject::Company;
  229. use LedgerSMB::Batch;
  230. my ($request) = @_;
  231. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  232. $payment->{company} = $payment->{_user}->{company};
  233. $payment->{address} = $payment->{_user}->{address};
  234. my $template;
  235. if ($payment->{batch_id}){
  236. my $batch = LedgerSMB::Batch->new(
  237. {base => $payment,
  238. copy => 'base' }
  239. );
  240. $batch->{id} = $payment->{batch_id};
  241. $batch->get;
  242. $payment->{batch_description} = $batch->{description};
  243. $payment->{batch_control_code} = $batch->{control_code};
  244. }
  245. $payment->{format_amount} = sub {return $payment->format_amount(@_); };
  246. if ($payment->{multiple}){
  247. $payment->{checks} = [];
  248. print "Multiple checks printing";
  249. for my $line (1 .. $payment->{contact_count}){
  250. my $id = $payment->{"contact_$line"};
  251. next if !defined $payment->{"id_$id"};
  252. my $check = LedgerSMB::DBObject::Company->new(
  253. {base => $request, copy => 'base' }
  254. );
  255. $check->{entity_class} = $payment->{account_class};
  256. $check->{id} = $id;
  257. $check->get_billing_info;
  258. $check->{amount} = $check->parse_amount(amount => '0');
  259. $check->{invoices} = [];
  260. $check->{source} = $payment->{"source_$id"};
  261. my $inv_count;
  262. if ($LedgerSMB::Sysconfig::check_max_invoices >
  263. $payment->{"invoice_count_$id"})
  264. {
  265. $inv_count = $payment->{"invoice_count_$id"};
  266. } else {
  267. $inv_count = $LedgerSMB::Sysconfig::check_max_invoices;
  268. }
  269. for my $inv (1 .. $inv_count){
  270. my $invhash = {};
  271. my $inv_id = $payment->{"invoice_${id}_$inv"};
  272. for (qw(invnumber invdate)){
  273. $invhash->{$_} = $payment->{"${_}_$inv_id"};
  274. }
  275. if ($payment->{"paid_$id"} eq 'some'){
  276. $invhash->{paid} = $payment->parse_amount(amount => $payment->{"payment_$inv_id"});
  277. } elsif ($payment->{"paid_$id"} eq 'all'){
  278. $invhash->{paid} = $payment->parse_amount(amount => $payment->{"net_$inv_id"});
  279. } else {
  280. $payment->error("Invalid Payment Amount Option");
  281. }
  282. $check->{amount} += $invhash->{paid};
  283. $invhash->{paid} = $check->format_amount(amount => $invhash->{paid});
  284. push @{$check->{invoices}}, $invhash;
  285. }
  286. my $amt = $check->{amount}->copy;
  287. $amt->bfloor();
  288. $check->{text_amount} = $payment->text_amount($amt);
  289. $check->{amount} = $check->format_amount(amount => $check->{amount},
  290. format => '1000.00');
  291. $check->{decimal} = $check->format_amount(amount => ($check->{amount} - $amt) * 100);
  292. push @{$payment->{checks}}, $check;
  293. }
  294. $template = LedgerSMB::Template->new(
  295. user => $payment->{_user}, template => 'check_multiple',
  296. format => uc $payment->{'format'},
  297. no_auto_output => 1,
  298. output_args => $payment,
  299. );
  300. try {
  301. $template->render($payment);
  302. $template->output(%$payment);
  303. }
  304. catch Error::Simple with {
  305. my $E = shift;
  306. $payment->error( $E->stacktrace );
  307. };
  308. } else {
  309. }
  310. }
  311. sub update_payments {
  312. display_payments(@_);
  313. }
  314. sub display_payments {
  315. my ($request) = @_;
  316. my $payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  317. $payment->get_payment_detail_data();
  318. for (@{$payment->{contact_invoices}}){
  319. $_->{total_due} = $payment->format_amount(amount => $_->{total_due});
  320. }
  321. @{$payment->{media_options}} = (
  322. {text => $request->{_locale}->text('Screen'),
  323. value => 'screen'});
  324. for (keys %LedgerSMB::Sysconfig::printer){
  325. push @{$payment->{media_options}},
  326. {text => $_,
  327. value => $LedgerSMB::Sysconfig::printer{$_}};
  328. }
  329. if ($LedgerSMB::Sysconfig::latex){
  330. @{$payment->{format_options}} = (
  331. {text => 'PDF', value => 'PDF'},
  332. {text => 'Postscript', value => 'Postscript'},
  333. );
  334. $payment->{can_print} = 1;
  335. }
  336. my $template = LedgerSMB::Template->new(
  337. user => $request->{_user},
  338. locale => $request->{_locale},
  339. path => 'UI/payments',
  340. template => 'payments_detail',
  341. format => 'HTML',
  342. );
  343. $template->render($payment);
  344. }
  345. =item payment
  346. This method is used to set the filter screen and prints it, using the
  347. TT2 system.
  348. =back
  349. =cut
  350. sub payment {
  351. my ($request) = @_;
  352. my $locale = $request->{_locale};
  353. my $dbPayment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  354. # Lets get the project data...
  355. my @projectOptions;
  356. my @arrayOptions = $dbPayment->list_open_projects();
  357. push @projectOptions, {}; #A blank field on the select box
  358. for my $ref (0 .. $#arrayOptions) {
  359. push @projectOptions, { value => $arrayOptions[$ref]->{id}."--".$arrayOptions[$ref]->{projectnumber}."--".$arrayOptions[$ref]->{description},
  360. text => $arrayOptions[$ref]->{projectnumber}."--".$arrayOptions[$ref]->{description}};
  361. }
  362. # Lets get the departments data...
  363. my @departmentOptions;
  364. my $role = $request->{type} eq 'receipt' ? 'P' : 'C';
  365. @arrayOptions = $dbPayment->list_departments($role);
  366. push @departmentOptions, {}; # A blank field on the select box
  367. for my $ref (0 .. $#arrayOptions) {
  368. push @departmentOptions, { value => $arrayOptions[$ref]->{id}."--".$arrayOptions[$ref]->{description},
  369. text => $arrayOptions[$ref]->{description}};
  370. }
  371. # Lets get the currencies (this uses the $dbPayment->{account_class} property)
  372. my @currOptions;
  373. @arrayOptions = $dbPayment->get_open_currencies();
  374. for my $ref (0 .. $#arrayOptions) {
  375. push @currOptions, { value => $arrayOptions[$ref]->{payments_get_open_currencies},
  376. text => $arrayOptions[$ref]->{payments_get_open_currencies} };
  377. }
  378. # Lets build filter by period
  379. my $date = LedgerSMB::DBObject::Date->new({base => $request});
  380. $date->build_filter_by_period($locale);
  381. # Lets set the data in a hash for the template system. :)
  382. my $select = {
  383. stylesheet => $request->{_user}->{stylesheet},
  384. login => { name => 'login',
  385. value => $request->{_user}->{login} },
  386. projects => {
  387. name => 'projects',
  388. options => \@projectOptions
  389. },
  390. department => {
  391. name => 'department',
  392. options => \@departmentOptions
  393. },
  394. curr => {
  395. name => 'curr',
  396. options => \@currOptions
  397. },
  398. month => {
  399. name => 'month',
  400. options => $date->{monthsOptions}
  401. },
  402. year => {
  403. name => 'year',
  404. options => $date->{yearsOptions}
  405. },
  406. interval_radios => $date->{radioOptions},
  407. amountfrom => {
  408. name => 'amountfrom',
  409. },
  410. amountto => {
  411. name => 'amountto',
  412. },
  413. accountclass => {
  414. name => 'account_class',
  415. value => $dbPayment->{account_class}
  416. },
  417. type => {
  418. name => 'type',
  419. value => $request->{type}
  420. },
  421. action => {
  422. name => 'action',
  423. value => 'payment1_5',
  424. text => $locale->text("Continue"),
  425. }
  426. };
  427. my $template;
  428. $template = LedgerSMB::Template->new(
  429. user => $request->{_user},
  430. locale => $request->{_locale},
  431. path => 'UI/payments',
  432. template => 'payment1',
  433. format => 'HTML' );
  434. $template->render($select);# And finally, Lets print the screen :)
  435. }
  436. =pod
  437. =item payment1_5
  438. This method is called between payment and payment2, it will search the database
  439. for entity_credit_accounts that match the parameter, if only one is found it will
  440. run unnoticed by the user, if more than one is found it will ask the user to pick
  441. one to handle the payment against
  442. =back
  443. =cut
  444. sub payment1_5 {
  445. my ($request) = @_;
  446. my $locale = $request->{_locale};
  447. my $dbPayment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  448. my @array_options = $dbPayment->get_entity_credit_account();
  449. if ($#array_options == -1) {
  450. &payment($request);
  451. } elsif ($#array_options == 0) {
  452. $request->{'vendor-customer'} = $array_options[0]->{id}.'--'.$array_options[0]->{name};
  453. &payment2($request);
  454. } else {
  455. # Lets call upon the template system
  456. my @company_options;
  457. for my $ref (0 .. $#array_options) {
  458. push @company_options, { id => $array_options[$ref]->{id},
  459. name => $array_options[$ref]->{name}};
  460. }
  461. my $select = {
  462. companies => \@company_options,
  463. stylesheet => $request->{_user}->{stylesheet},
  464. login => { name => 'login',
  465. value => $request->{_user}->{login}},
  466. department => { name => 'department',
  467. value => $request->{department}},
  468. currency => { name => 'curr',
  469. value => $request->{curr}},
  470. datefrom => { name => 'datefrom',
  471. value => $request->{datefrom}},
  472. dateto => { name => 'dateto',
  473. value => $request->{dateto}},
  474. amountfrom => { name => 'amountfrom',
  475. value => $request->{datefrom}},
  476. amountto => { name => 'amountto',
  477. value => $request->{dateto}},
  478. accountclass => { name => 'account_class',
  479. value => $dbPayment->{account_class}},
  480. type => { name => 'type',
  481. value => $request->{type}},
  482. action => { name => 'action',
  483. value => 'payment2',
  484. text => $locale->text("Continue")}
  485. };
  486. my $template;
  487. $template = LedgerSMB::Template->new(
  488. user => $request->{_user},
  489. locale => $request->{_locale},
  490. path => 'UI/payments',
  491. template => 'payment1_5',
  492. format => 'HTML' );
  493. eval {$template->render($select) };
  494. if ($@) { $request->error("$@"); } # PRINT ERRORS ON THE UI
  495. }
  496. }
  497. =pod
  498. =item payment2
  499. This method is used for the payment module, it is a consecuence of the payment sub,
  500. and its used for all the mechanics of an invoices payment module.
  501. =back
  502. =cut
  503. sub payment2 {
  504. my ($request) = @_;
  505. my $locale = $request->{_locale};
  506. my $Payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  507. # VARIABLES
  508. my ($project_id, $project_number, $project_name, $department_id, $department_name );
  509. my @array_options;
  510. my @project;
  511. my @selected_checkboxes;
  512. my @department;
  513. my @array_options;
  514. my @currency_options;
  515. my $exchangerate;
  516. # LETS GET THE CUSTOMER/VENDOR INFORMATION
  517. ($Payment->{entity_credit_id}, $Payment->{company_name}) = split /--/ , $request->{'vendor-customer'};
  518. # WE NEED TO RETRIEVE A BILLING LOCATION, THIS IS HARDCODED FOR NOW... Should we change it?
  519. $Payment->{location_class_id} = '1';
  520. my @vc_options;
  521. @vc_options = $Payment->get_vc_info();
  522. # LETS BUILD THE PROJECTS INFO
  523. # I DONT KNOW IF I NEED ALL THIS, BUT AS IT IS AVAILABLE I'LL STORE IT FOR LATER USAGE.
  524. if ($request->{projects}) {
  525. ($project_id, $project_number, $project_name) = split /--/ , $request->{projects} ;
  526. @project = { name => 'projects', text => $project_number.' '.$project_name, value => $request->{projects}};
  527. }
  528. # LETS GET THE DEPARTMENT INFO
  529. # WE HAVE TO SET $dbPayment->{department_id} NOW, THIS DATA WILL BE USED LATER WHEN WE
  530. # CALL FOR payment_get_open_invoices. :)
  531. if ($request->{department}) {
  532. ($Payment->{department_id}, $department_name) = split /--/, $request->{department};
  533. @department = { name => 'department', text => $department_name, value => $request->{department}};
  534. }
  535. # LETS GET ALL THE ACCOUNTS
  536. my @account_options = $Payment->list_accounting();
  537. # LETS GET THE POSSIBLE SOURCES
  538. my @sources_options = $Payment->get_sources(\%$locale);
  539. # WE MUST PREPARE THE ENTITY INFORMATION
  540. #@array_options = $Payment->get_vc_info();# IS THIS WORKING?
  541. # LETS BUILD THE CURRENCIES INFORMATION
  542. # FIRST, WE NEED TO KNOW THE DEFAULT CURRENCY
  543. my $default_currency = $Payment->get_default_currency();
  544. # LETS BUILD THE COLUMN HEADERS WE ALWAYS NEED
  545. # THE OTHER HEADERS WILL BE BUILT IF THE RIGHT CONDITIONS ARE MET.
  546. # -----------------------------------------------
  547. # SOME USERS WONT USE MULTIPLE CURRENCIES, AND WONT LIKE THE FACT CURRENCY BEING
  548. # ON THE SCREEN ALL THE TIME, SO IF THEY ARE USING THE DEFAULT CURRENCY WE WONT PRINT IT
  549. my $currency_text = $request->{curr} eq $default_currency ? '' : '('.$request->{curr}.')';
  550. my $default_currency_text = $currency_text ? '('.$default_currency.')' : '';
  551. my @column_headers = ({text => $locale->text('Invoice')},
  552. {text => $locale->text('Date')},
  553. {text => $locale->text('Total').$default_currency_text},
  554. {text => $locale->text('Paid').$default_currency_text},
  555. {text => $locale->text('Discount').$default_currency_text},
  556. {text => $locale->text('Apply Disc')},
  557. {text => $locale->text('Amount Due').$default_currency_text},
  558. {text => $locale->text('To pay').$default_currency_text}
  559. );
  560. # WE NEED TO KNOW IF WE ARE USING A CURRENCY THAT NEEDS AN EXCHANGERATE
  561. if ($default_currency ne $request->{curr} ) {
  562. # FIRST WE PUSH THE OTHER COLUMN HEADERS WE NEED
  563. push @column_headers, {text => $locale->text('Exchange Rate')},
  564. {text => $locale->text('Amount Due').$currency_text},
  565. {text => $locale->text('To pay').$currency_text};
  566. # WE SET THEM IN THE RIGHT ORDER FOR THE TABLE INSIDE THE UI
  567. @column_headers[6,7,8] = @column_headers[7,8,6];
  568. # DOES THE CURRENCY IN USE HAS AN EXCHANGE RATE?, IF SO
  569. # WE MUST SET THE VALUE, OTHERWISE THE UI WILL HANDLE IT
  570. $exchangerate = $request->{exrate} ?
  571. $request->{exrate} :
  572. $Payment->get_exchange_rate($request->{curr},
  573. $request->{datepaid} ? $request->{datepaid} : $Payment->{current_date});
  574. if ($exchangerate) {
  575. @currency_options = {
  576. name => 'exrate',
  577. value => "$exchangerate", #THERE IS A STRANGE BEHAVIOUR WITH THIS,
  578. text => "$exchangerate" #IF I DONT USE THE DOUBLE QUOTES, IT WILL PRINT THE ADDRESS
  579. #THERE MUST BE A REASON FOR THIS, I MUST RETURN TO IT LATER
  580. };
  581. } else {
  582. @currency_options = {
  583. name => 'exrate'};
  584. }
  585. } else {
  586. # WE MUST SET EXCHANGERATE TO 1 FOR THE MATHS SINCE WE
  587. # ARE USING THE DEFAULT CURRENCY
  588. $exchangerate = 1;
  589. @currency_options = {
  590. name => 'exrate',
  591. value => 1,
  592. text => 1
  593. };
  594. }
  595. # FINALLY WE ADD TO THE COLUMN HEADERS A LAST FIELD TO PRINT THE CLOSE INVOICE CHECKBOX TRICK :)
  596. push @column_headers, {text => 'X'};
  597. # WE NEED TO QUERY THE DATABASE TO CHECK FOR OPEN INVOICES
  598. # WE WONT DO ANYTHING IF WE DONT FIND ANY INVOICES, THE USER CAN STILL POST A PREPAYMENT
  599. my @invoice_data;
  600. my @topay_state; # WE WILL USE THIS TO HELP UI TO DETERMINE WHAT IS VISIBLE
  601. @array_options = $Payment->get_open_invoices();
  602. my $unhandled_overpayment;
  603. for my $ref (0 .. $#array_options) {
  604. if ( !$request->{"checkbox_$array_options[$ref]->{invoice_id}"}) {
  605. # SHOULD I APPLY DISCCOUNTS?
  606. $request->{"optional_discount_$array_options[$ref]->{invoice_id}"} = $request->{first_load}? "on": $request->{"optional_discount_$array_options[$ref]->{invoice_id}"};
  607. # LETS SET THE EXCHANGERATE VALUES
  608. my $due_fx; my $topay_fx_value;
  609. if ("$exchangerate") {
  610. $topay_fx_value = $due_fx = $request->round_amount("$array_options[$ref]->{due}"/"$exchangerate");
  611. if ($request->{"optional_discount_$array_options[$ref]->{invoice_id}"}) {
  612. $topay_fx_value = $due_fx = $request->round_amount($due_fx - "$array_options[$ref]->{discount}"/"$exchangerate");
  613. }
  614. } else {
  615. $topay_fx_value = $due_fx = "N/A";
  616. }
  617. # We need to check for unhandled overpayment, see the post function for details
  618. # First we will see if the discount should apply?
  619. my $temporary_discount = 0;
  620. if (($request->{"optional_discount_$array_options[$ref]->{invoice_id}"})&&($due_fx <= $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} + $request->round_amount($array_options[$ref]->{discount}/"$exchangerate"))) {
  621. $temporary_discount = $request->round_amount("$array_options[$ref]->{discount}"/"$exchangerate");
  622. }
  623. # We need to compute the unhandled_overpayment, notice that all the values inside the if already have
  624. # the exchangerate applied
  625. if ( $due_fx < $request->{"topay_fx_$array_options[$ref]->{invoice_id}"}) {
  626. # We need to store all the overpayments so we can use it on the screen
  627. $unhandled_overpayment = $request->round_amount($unhandled_overpayment + $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} - $due_fx );
  628. $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} = "$due_fx";
  629. }
  630. push @invoice_data, { invoice => { number => $array_options[$ref]->{invnumber},
  631. id => $array_options[$ref]->{invoice_id},
  632. href => 'ar.pl?id='."$array_options[$ref]->{invoice_id}"
  633. },
  634. invoice_date => "$array_options[$ref]->{invoice_date}",
  635. amount => "$array_options[$ref]->{amount}",
  636. due => $request->{"optional_discount_$array_options[$ref]->{invoice_id}"}? "$array_options[$ref]->{due}" - "$array_options[$ref]->{discount}": "$array_options[$ref]->{due}",
  637. paid => "$array_options[$ref]->{amount}" - "$array_options[$ref]->{due}",
  638. discount => $request->{"optional_discount_$array_options[$ref]->{invoice_id}"} ? "$array_options[$ref]->{discount}" : 0 ,
  639. optional_discount => $request->{"optional_discount_$array_options[$ref]->{invoice_id}"},
  640. exchange_rate => "$exchangerate",
  641. due_fx => "$due_fx", # This was set at the begining of the for statement
  642. topay => "$array_options[$ref]->{due}" - "$array_options[$ref]->{discount}",
  643. source_text => $request->{"source_text_$array_options[$ref]->{invoice_id}"},
  644. optional => $request->{"optional_pay_$array_options[$ref]->{invoice_id}"},
  645. selected_account => $request->{"account_$array_options[$ref]->{invoice_id}"},
  646. selected_source => $request->{"source_$array_options[$ref]->{invoice_id}"},
  647. topay_fx => { name => "topay_fx_$array_options[$ref]->{invoice_id}",
  648. value => $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} ?
  649. $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} eq 'N/A' ?
  650. "$topay_fx_value" :
  651. $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} :
  652. "$topay_fx_value"
  653. # Ugly hack, but works ;) ...
  654. }#END HASH
  655. };# END PUSH
  656. push @topay_state, {
  657. id => "topaystate_$array_options[$ref]->{invoice_id}",
  658. value => $request->{"topaystate_$array_options[$ref]->{invoice_id}"}
  659. }; #END PUSH
  660. }
  661. else {
  662. push @selected_checkboxes, {name => "checkbox_$array_options[$ref]->{invoice_id}",
  663. value => "checked"} ;
  664. } #END IF
  665. }# END FOR
  666. # And finally, we are going to store the information for the overpayment / prepayment / advanced payment
  667. # and all the stuff, this is only needed for the update function.
  668. my @overpayment;
  669. my @overpayment_account;
  670. # Got to build the account selection box first.
  671. my @overpayment_account = $Payment->list_overpayment_accounting();
  672. # Now we build the structure for the UI
  673. for (my $i=1 ; $i <= $request->{overpayment_qty}; $i++) {
  674. if (!$request->{"overpayment_checkbox_$i"}) {
  675. if ( $request->{"overpayment_topay_$i"} ) {
  676. # Now we split the account selected options
  677. my ($id, $accno, $description) = split(/--/, $request->{"overpayment_account_$i"});
  678. my ($cashid, $cashaccno, $cashdescription ) = split(/--/, $request->{"overpayment_cash_account_$i"});
  679. push @overpayment, {amount => $request->{"overpayment_topay_$i"},
  680. source1 => $request->{"overpayment_source1_$i"},
  681. source2 => $request->{"overpayment_source2_$i"},
  682. memo => $request->{"overpayment_memo_$i"},
  683. account => { id => $id,
  684. accno => $accno,
  685. description => $description
  686. },
  687. cashaccount => { id => $cashid,
  688. accno => $cashaccno,
  689. description => $cashdescription
  690. }
  691. };
  692. } else {
  693. $i = $request->{overpayment_qty} + 1;
  694. }
  695. }
  696. }
  697. # We need to set the availible media and format from printing
  698. my @media_options;
  699. push @media_options, {value => 1, text => "Screen"};
  700. if ($#{LedgerSMB::Sysconfig::printer}) {
  701. for (keys %{LedgerSMB::Sysconfig::printer}) {
  702. push @media_options, {value => 1, text => $_};
  703. }
  704. }
  705. #$request->error("@media_options");
  706. my @format_options;
  707. push @format_options, {value => 1, text => "HTML"};
  708. if (${LedgerSMB::Sysconfig::latex}) {
  709. push @format_options, {value => 2, text => "PDF" }, {value => 3, text => "POSTSCRIPT" };
  710. }
  711. # LETS BUILD THE SELECTION FOR THE UI
  712. # Notice that the first data inside this selection is the firs_load, this
  713. # will help payment2.html to know wether it is beeing called for the first time
  714. my $select = {
  715. first_load => $request->{first_load},
  716. stylesheet => $request->{_user}->{stylesheet},
  717. header => { text => $request->{type} eq 'receipt' ? $locale->text('Receipt') : $locale->text('Payment') },
  718. type => { name => 'type',
  719. value => $request->{type} },
  720. login => { name => 'login',
  721. value => $request->{_user}->{login} },
  722. accountclass => {
  723. name => 'account_class',
  724. value => $Payment->{account_class}
  725. },
  726. project => @project ? @project : '' , # WE NEED TO VERIFY THAT THE ARRAY EXISTS, IF IT DOESNT,
  727. department => @department ? @department : '', # WE WILL PASS A NULL STRING, THIS FIXES THE ISSUES
  728. # I WAS HAVING WITH THE NULL ARRAYS, STILL UGLY :P
  729. account => \@account_options,
  730. selected_account => $request->{account},
  731. datepaid => {
  732. name => 'datepaid',
  733. value => $request->{datepaid} ? $request->{datepaid} : $Payment->{current_date}
  734. },
  735. source => \@sources_options,
  736. selected_source => $request->{source},
  737. source_value => $request->{source_value},
  738. defaultcurrency => {
  739. text => $default_currency
  740. },
  741. curr => { name => 'curr',
  742. value => $request->{curr},
  743. },
  744. column_headers => \@column_headers,
  745. rows => \@invoice_data,
  746. topay_state => \@topay_state,
  747. vendorcustomer => { name => 'vendor-customer',
  748. value => $request->{'vendor-customer'}
  749. },
  750. unhandled_overpayment => { name => 'unhandledoverpayment', value => "$unhandled_overpayment" } ,
  751. vc => { name => $Payment->{company_name}, # We will assume that the first Billing Information as default
  752. address => [ {text => $vc_options[0]->{'line_one'}},
  753. {text => $vc_options[0]->{'line_two'}},
  754. {text => $vc_options[0]->{'line_three'}},
  755. {text => $vc_options[0]->{city}},
  756. {text => $vc_options[0]->{state}},
  757. {text => $vc_options[0]->{country}}]
  758. },
  759. format => {
  760. name => 'FORMAT',
  761. options => \@format_options
  762. },
  763. media => {
  764. name => 'MEDIA',
  765. options => \@media_options
  766. },
  767. exrate => @currency_options,
  768. selectedcheckboxes => @selected_checkboxes ? \@selected_checkboxes : '',
  769. notes => $request->{notes},
  770. overpayment => \@overpayment,
  771. overpayment_account => \@overpayment_account
  772. };
  773. my $template = LedgerSMB::Template->new(
  774. user => $request->{_user},
  775. locale => $request->{_locale},
  776. path => 'UI/payments',
  777. template => 'payment2',
  778. format => 'HTML' );
  779. eval {$template->render($select) };
  780. if ($@) { $request->error("$@"); } # PRINT ERRORS ON THE UI
  781. }
  782. =pod
  783. =item post_payment
  784. This method is used for the payment module (not the bulk payment),
  785. and its used for all the mechanics of storing a payment.
  786. =back
  787. =cut
  788. sub post_payment {
  789. my ($request) = @_;
  790. my $locale = $request->{_locale};
  791. my $Payment = LedgerSMB::DBObject::Payment->new({'base' => $request});
  792. # LETS GET THE CUSTOMER/VENDOR INFORMATION
  793. ($Payment->{entity_credit_id}, $Payment->{company_name}) = split /--/ , $request->{'vendor-customer'};
  794. # LETS GET THE DEPARTMENT INFO
  795. # WE HAVE TO SET $dbPayment->{department_id} in order to process
  796. if ($request->{department}) {
  797. $request->{department} =~ /^(\d+)--*/;
  798. $Payment->{department_id} = $1;
  799. }
  800. #
  801. # We want to set a gl_description,
  802. # since we are using two tables there is no need to use doubled information,
  803. # we could specify this gl is the result of a payment movement...
  804. #
  805. $Payment->{gl_description} = $locale->text('This gl movement, is the result of a payment transaction');
  806. #
  807. # Im not sure what this is for... gotta comment this later
  808. $Payment->{approved} = 'true';
  809. #
  810. # We have to setup a lot of things before we can process the payment
  811. # they are related to payment_post sql function, so if you have any doubts
  812. # look there.
  813. #-------------------------------------------------------------------------
  814. #
  815. # Variable definition
  816. #
  817. # We use the prefix op to refer to the overpayment variables.
  818. my $unhandled_overpayment = 0; # This variable might be fuzzy, we are using it to handle invalid data
  819. # i.e. a user set an overpayment qty inside an invoice.
  820. my @array_options;
  821. my @amount;
  822. my @discount;
  823. my @cash_account_id;
  824. my @source;
  825. my @transaction_id;
  826. my @op_amount;
  827. my @op_cash_account_id;
  828. my @op_source;
  829. my @op_memo;
  830. my @op_account_id;
  831. #
  832. # We need the invoices in order to process the income data, this is done this way
  833. # since the data we have isn't indexed in any way.
  834. #
  835. # Ok, we want to use the disccount information in order to do some accounting movements,
  836. # we will process it with the same logic for a regular payment, and see where does this leave us.
  837. @array_options = $Payment->get_entity_credit_account();# We need to know the disccount account
  838. my $discount_account_id = $array_options[0]->{discount};
  839. @array_options = $Payment->get_open_invoices();
  840. for my $ref (0 .. $#array_options) {
  841. if ( !$request->{"checkbox_$array_options[$ref]->{invoice_id}"}) {
  842. # First i have to determine if discounts will apply
  843. # we will assume that a discount should apply only
  844. # if this is the last payment of an invoice
  845. my $temporary_discount = 0;
  846. if (($request->{"optional_discount_$array_options[$ref]->{invoice_id}"})&&("$array_options[$ref]->{due}"/"$request->{exrate}" <= $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} + $array_options[$ref]->{discount})) {
  847. $temporary_discount = $array_options[$ref]->{discount};
  848. }
  849. #
  850. # The prefix cash is to set the movements of the cash accounts,
  851. # same names are used for ap/ar accounts w/o the cash prefix.
  852. #
  853. if ( "$array_options[$ref]->{due}"/"$request->{exrate}" < $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} + $temporary_discount ) {
  854. # We need to store all the overpayments so we can use it on a new payment2 screen
  855. $unhandled_overpayment = $request->round_amount($unhandled_overpayment + $request->{"topay_fx_$array_options[$ref]->{invoice_id}"} + $temporary_discount - $array_options[$ref]->{amount}) ;
  856. }
  857. if ($request->{"optional_discount_$array_options[$ref]->{invoice_id}"}) {
  858. push @amount, $array_options[$ref]->{discount};
  859. push @cash_account_id, $discount_account_id;
  860. push @source, $locale->text('Applied discount');
  861. push @transaction_id, $array_options[$ref]->{invoice_id};
  862. }
  863. push @amount, $request->{"topay_fx_$array_options[$ref]->{invoice_id}"}; # We'll use this for both cash and ap/ar accounts
  864. push @cash_account_id, $request->{"optional_pay_$array_options[$ref]->{invoice_id}"} ? $request->{"account_$array_options[$ref]->{invoice_id}"} : $request->{account};
  865. push @source, $request->{"source1_$array_options[$ref]->{invoice_id}"}.' '.$request->{"source2_$array_options[$ref]->{invoice_id}"}; # We'll use this for both source and ap/ar accounts
  866. push @transaction_id, $array_options[$ref]->{invoice_id};
  867. }
  868. }
  869. # Check if there is an unhandled overpayment and run payment2 as needed
  870. if ($unhandled_overpayment) {
  871. &payment2($request);
  872. return 0;
  873. }
  874. #
  875. # Now we need the overpayment information.
  876. #
  877. # We will use the prefix op to indicate it is an overpayment information.
  878. #
  879. # note: I love the for's C-like syntax.
  880. for (my $i=1 ; $i <= $request->{overpayment_qty}; $i++) {
  881. if (!$request->{"overpayment_checkbox_$i"}) { # Is overpayment marked as deleted ?
  882. if ( $request->{"overpayment_topay_$i"} ) { # Is this overpayment an used field?
  883. # Now we split the account selected options, using the namespace the if statement
  884. # provides for us.
  885. $request->{"overpayment_account_$i"} =~ /^(\d+)--*/;
  886. my $id = $1;
  887. $request->{"overpayment_cash_account_$i"} =~ /^(\d+)--*/;
  888. my $cashid = $1;
  889. push @op_amount, $request->{"overpayment_topay_$i"};
  890. push @op_cash_account_id, $cashid;
  891. push @op_source, $request->{"overpayment_source1_$i"}.' '.$request->{"overpayment_source2_$i"};
  892. push @op_memo, $request->{"overpayment_memo_$i"};
  893. push @op_account_id, $id;
  894. }
  895. }
  896. }
  897. # Finally we store all the data inside the LedgerSMB::DBObject::Payment object.
  898. $Payment->{cash_account_id} = $Payment->_db_array_scalars(@cash_account_id);
  899. $Payment->{amount} = $Payment->_db_array_scalars(@amount);
  900. $Payment->{source} = $Payment->_db_array_scalars(@source);
  901. $Payment->{transaction_id} = $Payment->_db_array_scalars(@transaction_id);
  902. $Payment->{op_amount} = $Payment->_db_array_scalars(@op_amount);
  903. $Payment->{op_cash_account_id} = $Payment->_db_array_scalars(@op_cash_account_id);
  904. $Payment->{op_source} = $Payment->_db_array_scalars(@op_source);
  905. $Payment->{op_memo} = $Payment->_db_array_scalars(@op_memo);
  906. $Payment->{op_account_id} = $Payment->_db_array_scalars(@op_account_id);
  907. # Ok, hoping for the best...
  908. $Payment->post_payment();
  909. # We've gotta print anything, in the near future this will redirect to a new payment.
  910. my $select = {};
  911. my $template = LedgerSMB::Template->new(
  912. user => $request->{_user},
  913. locale => $request->{_locale},
  914. path => 'UI/payments',
  915. template => 'payment2',
  916. format => 'HTML' );
  917. eval {$template->render($select) };
  918. if ($@) { $request->error("$@"); } # PRINT ERRORS ON THE UI
  919. }
  920. eval { do "scripts/custom/payment.pl"};
  921. 1;