summaryrefslogtreecommitdiff
path: root/scripts/vouchers.pl
blob: 047afcb7b9b03fb50da243f01ec596e8adcf7152 (plain)
  1. #!/usr/bin/perl
  2. # This file is copyright (C) 2007the LedgerSMB core team and licensed under
  3. # the GNU General Public License. For more information please see the included
  4. # LICENSE and COPYRIGHT files
  5. # THIS FILE NEEDS POD
  6. package LedgerSMB::Scripts::vouchers;
  7. our $VERSION = '0.1';
  8. $menufile = "menu.ini";
  9. use LedgerSMB::Batch;
  10. use LedgerSMB::Voucher;
  11. use LedgerSMB::Template;
  12. use strict;
  13. # custom_batch_types hash provides hooks for handling additional batch types
  14. # beyond the default types. Entries can be added in a custom file.
  15. # Each entry is a hash, keyed by name, with the following keys:
  16. # * map_to int (maps to another type, not needed for new types in batch_class
  17. # table)
  18. # * select_method (maps to the selection stored proc)
  19. #
  20. # for example:
  21. # $custom_batch_types->{ap_sample} =
  22. # {map_to => 1,
  23. # select_method => 'custom_sample_ap_select'};
  24. #
  25. # --CT
  26. our $custom_batch_types = {};
  27. eval { do "scripts/custom/vouchers.pl"};
  28. sub create_batch {
  29. my ($request) = @_;
  30. $request->{hidden} = [
  31. {name => "batch_type", value => $request->{batch_type}},
  32. ];
  33. my $batch = LedgerSMB::Batch->new({base => $request});
  34. $batch->{class_id} = $batch->get_class_id($batch->{batch_type});
  35. $batch->get_search_results({mini => 1});
  36. my $template = LedgerSMB::Template->new(
  37. user =>$request->{_user},
  38. locale => $request->{_locale},
  39. path => 'UI',
  40. template => 'create_batch',
  41. format => 'HTML'
  42. );
  43. $template->render($batch);
  44. }
  45. sub create_vouchers {
  46. my ($request) = shift @_;
  47. my $batch = LedgerSMB::Batch->new({base => $request});
  48. $batch->{batch_class} = $request->{batch_type};
  49. $batch->create;
  50. add_vouchers($batch);
  51. }
  52. sub add_vouchers {
  53. # This function is not safe for caching as long as the scripts are in bin.
  54. # This is because these scripts import all functions into the *current*
  55. # namespace. People using fastcgi and modperl should *not* cache this
  56. # module at the moment. -- CT
  57. # Also-- request is in 'our' scope here due to the redirect logic.
  58. our ($request) = shift @_;
  59. use LedgerSMB::Form;
  60. my $batch = LedgerSMB::Batch->new({base => $request});
  61. our $vouchers_dispatch =
  62. {
  63. payable => {script => 'bin/ap.pl', function => sub {add()}},
  64. receivable => {script => 'bin/ar.pl', function => sub {add()}},
  65. gl => {script => 'bin/gl.pl', function => sub {add()}},
  66. receipt => {script => 'scripts/payment.pl',
  67. function => sub {
  68. my ($request) = @_;
  69. $request->{account_class} = 2;
  70. LedgerSMB::Scripts::payment::payments($request);
  71. }},
  72. payment => {script => 'scripts/payment.pl',
  73. function => sub {
  74. my ($request) = @_;
  75. $request->{account_class} = 1;
  76. LedgerSMB::Scripts::payment::payments($request);
  77. }},
  78. payment_reversal => {
  79. script => 'scripts/payment.pl',
  80. function => sub {
  81. my ($request) = @_;
  82. $request->{account_class} = 1;
  83. LedgerSMB::Scripts::payment::get_search_criteria($request, $custom_batch_types);
  84. }},
  85. receipt_reversal => {
  86. script => 'scripts/payment.pl',
  87. function => sub {
  88. my ($request) = @_;
  89. $request->{account_class} = 2;
  90. LedgerSMB::Scripts::payment::get_search_criteria($request, $custom_batch_types);
  91. }},
  92. };
  93. our $form = new Form;
  94. our $locale = $request->{_locale};
  95. for (keys %$request){
  96. $form->{$_} = $request->{$_};
  97. }
  98. $form->{batch_id} = $batch->{id};
  99. $form->{approved} = 0;
  100. $form->{transdate} = $request->{batch_date};
  101. $request->{batch_id} = $batch->{id};
  102. $request->{approved} = 0;
  103. $request->{transdate} = $request->{batch_date};
  104. my $script = $vouchers_dispatch->{$request->{batch_type}}{script};
  105. $form->{script} = $script;
  106. $form->{script} =~ s|.*/||;
  107. if ($script =~ /^bin/){
  108. # Note that the line below is generally considered incredibly bad form.
  109. # However, the code we are including is going to require it for now.
  110. # -- CT
  111. { no strict; no warnings 'redefine'; do $script; }
  112. } elsif ($script =~ /scripts/) {
  113. # Maybe we should move this to a require statement? --CT
  114. { do $script }
  115. }
  116. $vouchers_dispatch->{$request->{batch_type}}{function}($request);
  117. }
  118. sub search_batch {
  119. my ($request) = @_;
  120. my $batch_request = LedgerSMB::Batch->new(base => $request);
  121. $batch_request->get_search_criteria($custom_batch_types);
  122. my $template = LedgerSMB::Template->new(
  123. user => $request->{_user},
  124. locale => $request->{_locale},
  125. path => 'UI/batch',
  126. template => 'filter',
  127. format => 'HTML',
  128. );
  129. $template->render($batch_request);
  130. }
  131. sub list_batches {
  132. my ($request) = @_;
  133. my $batch = LedgerSMB::Batch->new(base => $request);
  134. my @search_results = $batch->get_search_results({custom_types => $custom_batch_types});
  135. $batch->{script} = "vouchers.pl";
  136. my @columns =
  137. qw(select id control_code description transaction_total payment_total);
  138. my $base_href = "vouchers.pl";
  139. my $search_href = "$base_href?action=list_batches";
  140. my $batch_href = "$base_href?action=get_batch";
  141. for my $key (
  142. qw(class_id approved created_by description amount_gt amount_lt)
  143. ){
  144. $search_href .= "&$key=$batch->{key}";
  145. }
  146. my %column_heading = (
  147. 'select' => $batch->{_locale}->text('Select'),
  148. transaction_total => {
  149. text => $batch->{_locale}->text('AR/AP/GL Total'),
  150. href => "$search_href&order_by=transaction_total"
  151. },
  152. payment_total => {
  153. text => $batch->{_locale}->text('Paid/Received Total'),
  154. href => "$search_href&order_by=payment_total"
  155. },
  156. description => {
  157. text => $batch->{_locale}->text('Description'),
  158. href => "$search_href&order_by=description"
  159. },
  160. control_code => {
  161. text => $batch->{_locale}->text('Batch Number'),
  162. href => "$search_href&order_by=control_code"
  163. },
  164. id => {
  165. text => $batch->{_locale}->text('ID'),
  166. href => "$search_href&order_by=control_code"
  167. },
  168. );
  169. my $count = 0;
  170. my @rows;
  171. for my $result (@search_results){
  172. ++$count;
  173. $batch->{"row_$count"} = $result->{id};
  174. push @rows, {
  175. 'select' => {
  176. input => {
  177. type => 'checkbox',
  178. value => 1,
  179. name => "batch_$result->{id}"
  180. }
  181. },
  182. transaction_total => $batch->format_amount(
  183. amount => $result->{transaction_total}
  184. ),
  185. payment_total => $batch->format_amount (
  186. amount => $result->{payment_total}
  187. ),
  188. description => $result->{description},
  189. control_code => {
  190. text => $result->{control_code},
  191. href => "$batch_href&batch_id=$result->{id}",
  192. },
  193. id => $result->{id},
  194. };
  195. }
  196. $batch->{rowcount} = $count;
  197. my $template = LedgerSMB::Template->new(
  198. user => $request->{_user},
  199. locale => $request->{_locale},
  200. path => 'UI',
  201. template => 'form-dynatable',
  202. format => ($batch->{format}) ? $batch->{format} : 'HTML',
  203. );
  204. my $hiddens = $batch->take_top_level();
  205. $batch->{rowcount} = "$count";
  206. delete $batch->{search_results};
  207. $template->render({
  208. form => $batch,
  209. columns => \@columns,
  210. heading => \%column_heading,
  211. rows => \@rows,
  212. hiddens => $hiddens,
  213. buttons => [{
  214. name => 'action',
  215. type => 'submit',
  216. text => $request->{_locale}->text('Post'),
  217. value => 'batch_approve',
  218. class => 'submit',
  219. },{
  220. name => 'action',
  221. type => 'submit',
  222. text => $request->{_locale}->text('Delete'),
  223. value => 'batch_delete',
  224. class => 'submit',
  225. }]
  226. });
  227. }
  228. sub get_batch {
  229. my ($request) = @_;
  230. my $batch = LedgerSMB::Batch->new(base => $request);
  231. $batch->{script} = 'vouchers.pl';
  232. my $rows = [];
  233. $batch->{id} ||= $batch->{batch_id};
  234. # $batch->get;
  235. my @vouchers = $batch->list_vouchers;
  236. my $base_href = "vouchers.pl?action=get_batch&batch_id=$batch->{batch_id}";
  237. my @columns = qw(selected id description batch_class reference amount date);
  238. my $heading = {
  239. selected => $request->{_locale}->text('Selected'),
  240. id => {
  241. text => $request->{_locale}->text('ID'),
  242. href => "$base_href&order_by=id"
  243. },
  244. description => {
  245. href => "$base_href&order_by=description",
  246. text => $request->{_locale}->text('Description'),
  247. },
  248. batch_class => {
  249. text => $request->{_locale}->text('Class'),
  250. href => "$base_href&order_by=class"
  251. },
  252. amount => {
  253. text => $request->{_locale}->text('Amount'),
  254. href => "$base_href&order_by=amount"
  255. },
  256. reference => {
  257. text => $request->{_locale}->text('Source/Reference'),
  258. href => "$base_href&order_by=reference"
  259. },
  260. date => {
  261. text => $request->{_locale}->text('Date'),
  262. href => "$base_href&order_by=date"
  263. }
  264. };
  265. my $classcount;
  266. my $count = 1;
  267. for my $row (@vouchers) {
  268. $classcount = ($classcount + 1) % 2;
  269. $classcount ||= 0;
  270. push @$rows, {
  271. description => $row->{description},
  272. id => $row->{id},
  273. batch_class => $row->{batch_class},
  274. amount => $batch->format_amount(amount => $row->{amount}),
  275. date => $row->{transaction_date},
  276. reference => $row->{reference},
  277. i => "$classcount",
  278. selected => {
  279. input => {
  280. type => 'checkbox',
  281. name => "voucher_$row->{id}",
  282. value => "1"
  283. }
  284. }
  285. };
  286. $batch->{"row_$count"} = $row->{id};
  287. ++$count;
  288. }
  289. $batch->{rowcount} = $count;
  290. $batch->{title} = "Batch ID: $batch->{batch_id}";
  291. my $template = LedgerSMB::Template->new(
  292. user => $request->{_user},
  293. locale => $request->{_locale},
  294. path => 'UI',
  295. template => 'form-dynatable',
  296. format => ($batch->{format}) ? $batch->{format} : 'HTML',
  297. );
  298. my $hiddens = $batch->take_top_level();
  299. $template->render({
  300. form => $batch,
  301. columns => \@columns,
  302. heading => $heading,
  303. rows => $rows,
  304. hiddens => $hiddens,
  305. buttons => [{
  306. name => 'action',
  307. type => 'submit',
  308. text => $request->{_locale}->text('Post Batch'),
  309. value => 'batch_approve',
  310. class => 'submit',
  311. },{
  312. name => 'action',
  313. type => 'submit',
  314. text => $request->{_locale}->text('Delete Batch'),
  315. value => 'batch_delete',
  316. class => 'submit',
  317. },{
  318. name => 'action',
  319. type => 'submit',
  320. text => $request->{_locale}->text('Delete Vouchers'),
  321. value => 'voucher_delete',
  322. class => 'submit',
  323. }]
  324. });
  325. }
  326. sub list_batches_batch_delete {
  327. batch_delete(@_);
  328. }
  329. sub list_batches_batch_approve {
  330. batch_approve(@_);
  331. }
  332. sub get_batch__batch_approve {
  333. batch_approve(@_);
  334. }
  335. sub get_batch_voucher_delete {
  336. my ($request) = @_;
  337. my $batch = LedgerSMB::Batch->new(base => $request);
  338. for my $count (1 .. $batch->{rowcount}){
  339. my $voucher_id = $batch->{"row_$count"};
  340. next unless $batch->{"voucher_$voucher_id"};
  341. $batch->delete_voucher($voucher_id);
  342. }
  343. search_batch($request);
  344. }
  345. sub batch_approve {
  346. my ($request) = @_;
  347. my $batch = LedgerSMB::Batch->new(base => $request);
  348. for my $count (1 .. $batch->{rowcount}){
  349. next unless $batch->{"batch_" . $batch->{"row_$count"}};
  350. $batch->{batch_id} = $batch->{"row_$count"};
  351. $batch->post;
  352. }
  353. search_batch($request);
  354. }
  355. sub batch_delete {
  356. my ($request) = @_;
  357. my $batch = LedgerSMB::Batch->new(base => $request);
  358. for my $count (1 .. $batch->{rowcount}){
  359. next unless $batch->{"batch_" . $batch->{"row_$count"}};
  360. $batch->{batch_id} = $batch->{"row_$count"};
  361. $batch->delete;
  362. }
  363. search_batch($request);
  364. }
  365. eval { do "scripts/custom/vouchers.pl"};
  366. 1;