1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (c) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 #  Contributors: Reed White <alta@alta-research.com>
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # customer/vendor module
 
  33 #======================================================================
 
  35 # $locale->text('Customers')
 
  36 # $locale->text('Vendors')
 
  37 # $locale->text('Add Customer')
 
  38 # $locale->text('Add Vendor')
 
  39 # $locale->text('Edit Customer')
 
  40 # $locale->text('Edit Vendor')
 
  41 # $locale->text('Customer saved!')
 
  42 # $locale->text('Vendor saved!')
 
  43 # $locale->text('Customer deleted!')
 
  44 # $locale->text('Cannot delete customer!')
 
  45 # $locale->text('Vendor deleted!')
 
  46 # $locale->text('Cannot delete vendor!')
 
  48 use POSIX qw(strftime);
 
  52 use SL::Request qw(flatten);
 
  55 use SL::Helper::Flash;
 
  56 use SL::ReportGenerator;
 
  58 require "bin/mozilla/common.pl";
 
  59 require "bin/mozilla/reportgenerator.pl";
 
  67   $main::lxdebug->enter_sub();
 
  69   $main::auth->assert('customer_vendor_edit');
 
  71   my $form     = $main::form;
 
  72   my %myconfig = %main::myconfig;
 
  74   $form->{title}    = "Add";
 
  75   $form->{callback} = "$form->{script}?action=add&db=$form->{db}" unless $form->{callback};
 
  77   CT->populate_drop_down_boxes(\%myconfig, \%$form);
 
  82   $main::lxdebug->leave_sub();
 
  86   $main::lxdebug->enter_sub();
 
  88   $main::auth->assert('customer_vendor_edit');
 
  90   my $form     = $main::form;
 
  91   my $locale   = $main::locale;
 
  93   $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
 
  95   $form->get_lists("business_types" => "ALL_BUSINESS_TYPES");
 
  96   $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
 
  98   $form->{CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
 
  99   ($form->{CUSTOM_VARIABLES_FILTER_CODE},
 
 100    $form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CUSTOM_VARIABLES},
 
 101                                                                            'include_prefix' => 'l_',
 
 102                                                                            'include_value'  => 'Y');
 
 104   $form->{jsscript} = 1;
 
 105   $form->{title}    = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors');
 
 106   $form->{fokus}    = 'Form.name';
 
 109   print $form->parse_html_template('ct/search');
 
 111   $main::lxdebug->leave_sub();
 
 115   $::lxdebug->enter_sub;
 
 116   $::auth->assert('customer_vendor_edit');
 
 118   $::form->{CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'Contacts');
 
 119   ($::form->{CUSTOM_VARIABLES_FILTER_CODE},
 
 120    $::form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'    => $::form->{CUSTOM_VARIABLES},
 
 121                                                                            'include_prefix' => 'l.',
 
 122                                                                            'filter_prefix'  => 'filter.',
 
 123                                                                            'include_value'  => 'Y');
 
 125   $::form->{title} = $::locale->text('Search contacts');
 
 127   print $::form->parse_html_template('ct/search_contact');
 
 129   $::lxdebug->leave_sub;
 
 133   $main::lxdebug->enter_sub();
 
 135   $main::auth->assert('customer_vendor_edit');
 
 137   my $form     = $main::form;
 
 138   my %myconfig = %main::myconfig;
 
 139   my $locale   = $main::locale;
 
 141   $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
 
 143   report_generator_set_default_sort('name', 1);
 
 145   CT->search(\%myconfig, \%$form);
 
 147   my $cvar_configs = CVar->get_configs('module' => 'CT');
 
 150   if ($form->{status} eq 'all') {
 
 151     push @options, $locale->text('All');
 
 152   } elsif ($form->{status} eq 'orphaned') {
 
 153     push @options, $locale->text('Orphaned');
 
 156   push @options, $locale->text('Name') . " : $form->{name}"                                    if $form->{name};
 
 157   push @options, $locale->text('Contact') . " : $form->{contact}"                              if $form->{contact};
 
 158   push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}|                 if $form->{"$form->{db}number"};
 
 159   push @options, $locale->text('E-mail') . " : $form->{email}"                                 if $form->{email};
 
 160   push @options, $locale->text('Contact person (surname)')           . " : $form->{cp_name}"   if $form->{cp_name};
 
 161   push @options, $locale->text('Billing/shipping address (city)')    . " : $form->{addr_city}" if $form->{addr_city};
 
 162   push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{zipcode}"   if $form->{addr_zipcode};
 
 163   push @options, $locale->text('Billing/shipping address (street)')  . " : $form->{street}"    if $form->{addr_street};
 
 165   if ($form->{business_id}) {
 
 166     my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id});
 
 168       my $label = $form->{IS_CUSTOMER} ? $::locale->text('Customer type') : $::locale->text('Vendor type');
 
 169       push @options, $label . " : " . $business->description;
 
 174     'id',        'name',      "$form->{db}number",   'contact',  'phone',
 
 175     'fax',       'email',     'taxnumber',           'street',   'zipcode' , 'city',
 
 176     'business',  'invnumber', 'ordnumber',           'quonumber'
 
 179   my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
 
 180   my @searchable_custom_variables  = grep { $_->{searchable} }  @{ $cvar_configs };
 
 181   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
 
 183   push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
 
 186     'id'                => { 'text' => $locale->text('ID'), },
 
 187     "$form->{db}number" => { 'text' => $locale->text('Number'), },
 
 188     'name'              => { 'text' => $form->{IS_CUSTOMER} ? $::locale->text('Customer Name') : $::locale->text('Vendor Name'), },
 
 189     'contact'           => { 'text' => $locale->text('Contact'), },
 
 190     'phone'             => { 'text' => $locale->text('Phone'), },
 
 191     'fax'               => { 'text' => $locale->text('Fax'), },
 
 192     'email'             => { 'text' => $locale->text('E-mail'), },
 
 193     'cc'                => { 'text' => $locale->text('Cc'), },
 
 194     'taxnumber'         => { 'text' => $locale->text('Tax Number'), },
 
 195     'business'          => { 'text' => $locale->text('Type of Business'), },
 
 196     'invnumber'         => { 'text' => $locale->text('Invoice'), },
 
 197     'ordnumber'         => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Sales Order') : $locale->text('Purchase Order'), },
 
 198     'quonumber'         => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Quotation')   : $locale->text('Request for Quotation'), },
 
 199     'street'            => { 'text' => $locale->text('Street'), },
 
 200     'zipcode'           => { 'text' => $locale->text('Zipcode'), },
 
 201     'city'              => { 'text' => $locale->text('City'), },
 
 205   map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns;
 
 207   my @hidden_variables  = ( qw(
 
 208       db status obsolete name contact email cp_name addr_street addr_zipcode
 
 209       addr_city business_id
 
 210     ), "$form->{db}number",
 
 211     map({ "cvar_$_->{name}" } @searchable_custom_variables),
 
 212     map({ "l_$_" } @columns),
 
 215   my @hidden_nondefault = grep({ $form->{$_} } @hidden_variables);
 
 216   my $callback          = build_std_url('action=list_names', grep { $form->{$_} } @hidden_nondefault);
 
 217   $form->{callback}     = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir});
 
 220     my $sortdir              = $form->{sort} eq $_ ? 1 - $form->{sortdir} : $form->{sortdir};
 
 221     $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=${sortdir}";
 
 224   my ($ordertype, $quotationtype, $attachment_basename);
 
 225   if ($form->{IS_CUSTOMER}) {
 
 226     $form->{title}       = $locale->text('Customers');
 
 227     $ordertype           = 'sales_order';
 
 228     $quotationtype       = 'sales_quotation';
 
 229     $attachment_basename = $locale->text('customer_list');
 
 232     $form->{title}       = $locale->text('Vendors');
 
 233     $ordertype           = 'purchase_order';
 
 234     $quotationtype       = 'request_quotation';
 
 235     $attachment_basename = $locale->text('vendor_list');
 
 238   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 240   $report->set_options('top_info_text'         => join("\n", @options),
 
 241                        'raw_bottom_info_text'  => $form->parse_html_template('ct/list_names_bottom'),
 
 242                        'output_format'         => 'HTML',
 
 243                        'title'                 => $form->{title},
 
 244                        'attachment_basename'   => $attachment_basename . strftime('_%Y%m%d', localtime time),
 
 246   $report->set_options_from_form();
 
 247   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 249   $report->set_columns(%column_defs);
 
 250   $report->set_column_order(@columns);
 
 252   $report->set_export_options('list_names', @hidden_variables, qw(sort sortdir));
 
 254   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
 256   CVar->add_custom_variables_to_report('module'         => 'CT',
 
 257                                        'trans_id_field' => 'id',
 
 258                                        'configs'        => $cvar_configs,
 
 259                                        'column_defs'    => \%column_defs,
 
 260                                        'data'           => $form->{CT});
 
 264   foreach my $ref (@{ $form->{CT} }) {
 
 265     my $row = { map { $_ => { 'data' => '' } } @columns };
 
 267     if ($ref->{id} ne $previous_id) {
 
 268       $previous_id = $ref->{id};
 
 269       map { $row->{$_}->{data} = $ref->{$_} } @columns;
 
 271       $row->{name}->{link}  = build_std_url('action=edit', 'id=' . E($ref->{id}), 'callback', @hidden_nondefault);
 
 272       $row->{email}->{link} = 'mailto:' . E($ref->{email});
 
 275     my $base_url              = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault);
 
 276     $row->{invnumber}->{link} = $base_url;
 
 277     $row->{ordnumber}->{link} = $base_url . "&type=${ordertype}";
 
 278     $row->{quonumber}->{link} = $base_url . "&type=${quotationtype}";
 
 279     my $column                = $ref->{formtype} eq 'invoice' ? 'invnumber' : $ref->{formtype} eq 'order' ? 'ordnumber' : 'quonumber';
 
 280     $row->{$column}->{data}   = $ref->{$column};
 
 282     $report->add_data($row);
 
 285   $report->generate_with_headers();
 
 287   $main::lxdebug->leave_sub();
 
 291   $::lxdebug->enter_sub;
 
 292   $::auth->assert('customer_vendor_edit');
 
 294   $::form->{sortdir} = 1 unless defined $::form->{sortdir};
 
 296   my @contacts     = CT->search_contacts(
 
 297     search_term => $::form->{search_term},
 
 298     filter      => $::form->{filter},
 
 301   my $cvar_configs = CVar->get_configs('module' => 'Contacts');
 
 304     cp_id vcname vcnumber cp_name cp_givenname cp_street cp_zipcode cp_city cp_phone1 cp_phone2
 
 305     cp_mobile1 cp_mobile2 cp_email cp_abteilung cp_birthday cp_gender
 
 308   my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
 
 309   my @searchable_custom_variables  = grep { $_->{searchable} }  @{ $cvar_configs };
 
 310   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
 
 312   push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
 
 316     @visible_columns = grep { $::form->{l}{$_} } @columns;
 
 317     push @visible_columns, qw(cp_phone1 cp_phone2)   if $::form->{l}{cp_phone};
 
 318     push @visible_columns, qw(cp_mobile1 cp_mobile2) if $::form->{l}{cp_mobile};
 
 320    @visible_columns = qw(vcname vcnumber cp_name cp_givenname cp_phone1 cp_phone2 cp_mobile1 cp_email);
 
 324     'cp_id'        => { 'text' => $::locale->text('ID'), },
 
 325     'vcname'       => { 'text' => $::locale->text('Customer/Vendor'), },
 
 326     'vcnumber'     => { 'text' => $::locale->text('Customer/Vendor Number'), },
 
 327     'cp_name'      => { 'text' => $::locale->text('Name'), },
 
 328     'cp_givenname' => { 'text' => $::locale->text('Given Name'), },
 
 329     'cp_street'    => { 'text' => $::locale->text('Street'), },
 
 330     'cp_zipcode'   => { 'text' => $::locale->text('Zipcode'), },
 
 331     'cp_city'      => { 'text' => $::locale->text('City'), },
 
 332     'cp_phone1'    => { 'text' => $::locale->text('Phone1'), },
 
 333     'cp_phone2'    => { 'text' => $::locale->text('Phone2'), },
 
 334     'cp_mobile1'   => { 'text' => $::locale->text('Mobile1'), },
 
 335     'cp_mobile2'   => { 'text' => $::locale->text('Mobile2'), },
 
 336     'cp_email'     => { 'text' => $::locale->text('E-mail'), },
 
 337     'cp_abteilung' => { 'text' => $::locale->text('Department'), },
 
 338     'cp_birthday'  => { 'text' => $::locale->text('Birthday'), },
 
 339     'cp_gender'    => { 'text' => $::locale->text('Gender'), },
 
 343   map { $column_defs{$_}->{visible} = 1 } @visible_columns;
 
 345   my @hidden_variables  = (qw(search_term filter l));
 
 346   my $hide_vars         = { map { $_ => $::form->{$_} } @hidden_variables };
 
 347   my @hidden_nondefault = grep({ $::form->{$_} } @hidden_variables);
 
 348   my $callback          = build_std_url('action=list_contacts', join '&', map { E($_->[0]) . '=' . E($_->[1]) } @{ flatten($hide_vars) });
 
 349   $::form->{callback}     = "$callback&sort=" . E($::form->{sort});
 
 351   map { $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=" . ($::form->{sort} eq $_ ? 1 - $::form->{sortdir} : $::form->{sortdir}) } @columns;
 
 353   $::form->{title} = $::locale->text('Contacts');
 
 355   my $report     = SL::ReportGenerator->new(\%::myconfig, $::form);
 
 358   push @options, $::locale->text('Search term') . ': ' . $::form->{search_term} if $::form->{search_term};
 
 359   for (qw(cp_name cp_givenname cp_title cp_email cp_abteilung cp_project)) {
 
 360     push @options, $column_defs{$_}{text} . ': ' . $::form->{filter}{$_} if $::form->{filter}{$_};
 
 362   if ($::form->{filter}{status}) {
 
 363     push @options, $::locale->text('Status') . ': ' . (
 
 364       $::form->{filter}{status} =~ /active/   ? $::locale->text('Active')   :
 
 365       $::form->{filter}{status} =~ /orphaned/ ? $::locale->text('Orphaned') :
 
 366       $::form->{filter}{status} =~ /all/      ? $::locale->text('All')      : ''
 
 371   $report->set_options('top_info_text'       => join("\n", @options),
 
 372                        'output_format'       => 'HTML',
 
 373                        'title'               => $::form->{title},
 
 374                        'attachment_basename' => $::locale->text('contact_list') . strftime('_%Y%m%d', localtime time),
 
 376   $report->set_options_from_form;
 
 378   $report->set_columns(%column_defs);
 
 379   $report->set_column_order(@columns);
 
 381   $report->set_export_options('list_contacts', @hidden_variables);
 
 383   $report->set_sort_indicator($::form->{sort}, $::form->{sortdir});
 
 385   CVar->add_custom_variables_to_report('module'         => 'Contacts',
 
 386                                        'trans_id_field' => 'cp_id',
 
 387                                        'configs'        => $cvar_configs,
 
 388                                        'column_defs'    => \%column_defs,
 
 389                                        'data'           => \@contacts);
 
 392   foreach my $ref (@contacts) {
 
 393     my $row = { map { $_ => { 'data' => $ref->{$_} } } @columns };
 
 395     $row->{vcname}->{link}   = build_std_url('action=edit', 'id=' . E($ref->{vcid}), 'db=' . E($ref->{db}), 'callback', @hidden_nondefault);
 
 396     $row->{vcnumber}->{link} = $row->{vcname}->{link};
 
 397     $row->{cp_email}->{link} = 'mailto:' . E($ref->{cp_email});
 
 399     $report->add_data($row);
 
 402   $report->generate_with_headers;
 
 404   $::lxdebug->leave_sub;
 
 408   $main::lxdebug->enter_sub();
 
 410   $main::auth->assert('customer_vendor_edit');
 
 412   my $form     = $main::form;
 
 413   my %myconfig = %main::myconfig;
 
 415   # show history button
 
 416   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
 
 417   #/show hhistory button
 
 419   CT->get_tuple(\%myconfig, \%$form);
 
 420   CT->populate_drop_down_boxes(\%myconfig, \%$form);
 
 422   $form->{title} = "Edit";
 
 425   $form->{discount} *= 100;
 
 427   $form->{homepage} = 'http://' . $form->{homepage} unless ((!$form->{homepage}) || $form->{homepage} =~ m|^https?://|);
 
 432   $main::lxdebug->leave_sub();
 
 437   join('; ', grep { $_ } map { $s->{"shipto$_"} } qw(name department_1 street city)) || ' '
 
 440 sub _contacts_label {
 
 441   join ", ", grep { $_ } $_[0]->{cp_name}, $_[0]->{cp_givenname};
 
 445   $main::lxdebug->enter_sub();
 
 447   $main::auth->assert('customer_vendor_edit');
 
 449   my $form     = $main::form;
 
 450   my %myconfig = %main::myconfig;
 
 451   my $locale   = $main::locale;
 
 453   $form->get_lists(taxzones   => "ALL_TAXZONES",
 
 454                    currencies => "ALL_CURRENCIES");
 
 455   $form->get_pricegroup(\%myconfig, { all => 1 });
 
 457   $form->get_lists(customers => { key => "ALL_SALESMAN_CUSTOMERS", business_is_salesman => 1 }) if $::lx_office_conf{features}->{vertreter};
 
 458   $form->{ALL_EMPLOYEES}          = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{FU_created_for_user},  deleted => 0 ] ]);
 
 459   $form->{ALL_SALESMEN}           = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id},  deleted => 0 ] ]);
 
 460   $form->{USER}                   = SL::DB::Manager::Employee->current;
 
 462   $form->{taxincluded}    = ($form->{taxincluded}) ? "checked" : "";
 
 463   $form->{is_customer}    = $form->{db}     eq 'customer';
 
 464   $form->{shipto_label}   = \&_shipto_label;
 
 465   $form->{contacts_label} = \&_contacts_label;
 
 466   $form->{taxzone_id}     = 0                                                               if !$form->{id};
 
 467   $form->{jsscript}       = 1;
 
 468   $form->{fokus}          = "ct.greeting";
 
 469   $form->{SHIPTO_ALL}     = [ +{ shipto_id => '0', shiptoname => $::locale->text('All') }, @{ $form->{SHIPTO} } ];
 
 471   $form->{title} = $form->{title_save}
 
 472                 || $locale->text("$form->{title} " . ucfirst $form->{db}) . ($form->{title} eq "Edit" ? " $form->{name}" : '');
 
 474   CT->query_titles_and_greetings(\%myconfig, \%$form);
 
 475   map { $form->{"MB_$_"} = [ map +{ id => $_, description => $_ }, @{ $form->{$_} } ] } qw(COMPANY_GREETINGS);
 
 477   $form->{NOTES} ||= [ ];
 
 479   if (!$form->{'language_id'}) {
 
 480     my $l_id = SL::DB::Default->get->{'language_id'};
 
 482       $form->{'default_language_id'} = $l_id;
 
 486   if (!$form->{'id'}) {
 
 487     $form->{'currency'} = $form->get_default_currency(\%myconfig);
 
 489     $form->{currency} = $form->{curr};
 
 492   $::form->{CUSTOM_VARIABLES} = { };
 
 493   my %specs = ( CT       => { field => 'id',    name_prefix => '',   },
 
 494                 Contacts => { field => 'cp_id', name_prefix => 'cp', },
 
 497   for my $module (keys %specs) {
 
 498     my $spec = $specs{$module};
 
 500     $::form->{CUSTOM_VARIABLES}->{$module} = CVar->get_custom_variables(module => $module, trans_id => $::form->{ $spec->{field} });
 
 501     CVar->render_inputs(variables => $::form->{CUSTOM_VARIABLES}->{$module}, name_prefix => $spec->{name_prefix})
 
 502       if scalar @{ $::form->{CUSTOM_VARIABLES}->{$module} };
 
 506   print $form->parse_html_template('ct/form_header');
 
 508   $main::lxdebug->leave_sub();
 
 512   $main::lxdebug->enter_sub();
 
 514   $main::auth->assert('customer_vendor_edit');
 
 516   my $form     = $main::form;
 
 518   print $form->parse_html_template('ct/form_footer', { is_orphaned => $form->{status} eq 'orphaned',
 
 519                                                        is_customer => $form->{db}     eq 'customer' });
 
 520   $main::lxdebug->leave_sub();
 
 524   $main::auth->assert('customer_vendor_edit');
 
 526   $::form->isblank("name", $::locale->text("Name missing!"));
 
 528   if ($::form->{new_salesman_id} && $::lx_office_conf{features}->{vertreter}) {
 
 529     $::form->{salesman_id} = $::form->{new_salesman_id};
 
 530     delete $::form->{new_salesman_id};
 
 533   my $res = $::form->{db} eq 'customer' ? CT->save_customer(\%::myconfig, $::form) : CT->save_vendor(\%::myconfig, $::form);
 
 536     if ($::form->{"db"} eq "customer") {
 
 537       $::form->error($::locale->text('This customer number is already in use.'));
 
 539       $::form->error($::locale->text('This vendor number is already in use.'));
 
 544 sub add_transaction {
 
 545   $main::lxdebug->enter_sub();
 
 547   $main::auth->assert('customer_vendor_edit & ' .
 
 548                 '(general_ledger         | invoice_edit         | vendor_invoice_edit | ' .
 
 549                 ' request_quotation_edit | sales_quotation_edit | sales_order_edit    | purchase_order_edit)');
 
 551   my $form     = $main::form;
 
 552   my %myconfig = %main::myconfig;
 
 553   my $locale   = $main::locale;
 
 555 #  # saving the history
 
 556 #  if(!exists $form->{addition}) {
 
 557 #    $form->{addition} = "ADD TRANSACTION";
 
 558 #    $form->save_history;
 
 560 #  # /saving the history
 
 564   $form->{callback} = $form->escape($form->{callback}, 1);
 
 565   my $name = $form->escape("$form->{name}", 1);
 
 568     "$form->{script}?action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&callback=$form->{callback}";
 
 571   $main::lxdebug->leave_sub();
 
 574 sub save_and_ap_transaction {
 
 575   $main::lxdebug->enter_sub();
 
 577   $main::auth->assert('customer_vendor_edit & general_ledger');
 
 579   my $form     = $main::form;
 
 580   my %myconfig = %main::myconfig;
 
 582   $form->{script} = "ap.pl";
 
 584   if(!exists $form->{addition}) {
 
 585     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 586     $form->{addition} = "SAVED";
 
 589   # /saving the history
 
 591   $main::lxdebug->leave_sub();
 
 594 sub save_and_ar_transaction {
 
 595   $main::lxdebug->enter_sub();
 
 597   $main::auth->assert('customer_vendor_edit & general_ledger');
 
 599   my $form     = $main::form;
 
 600   my %myconfig = %main::myconfig;
 
 602   $form->{script} = "ar.pl";
 
 604   if(!exists $form->{addition}) {
 
 605     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 606     $form->{addition} = "SAVED";
 
 609   # /saving the history
 
 611   $main::lxdebug->leave_sub();
 
 614 sub save_and_invoice {
 
 615   $main::lxdebug->enter_sub();
 
 617   my $form     = $main::form;
 
 618   my %myconfig = %main::myconfig;
 
 620   if ($form->{db} eq 'customer') {
 
 621     $main::auth->assert('customer_vendor_edit & invoice_edit');
 
 623     $main::auth->assert('customer_vendor_edit & vendor_invoice_edit');
 
 626   $form->{script} = ($form->{db} eq 'customer') ? "is.pl" : "ir.pl";
 
 627   $form->{type} = "invoice";
 
 629   if(!exists $form->{addition}) {
 
 630     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 631     $form->{addition} = "SAVED";
 
 634   # /saving the history
 
 636   $main::lxdebug->leave_sub();
 
 640   $main::lxdebug->enter_sub();
 
 642   $main::auth->assert('customer_vendor_edit & request_quotation_edit');
 
 644   my $form     = $main::form;
 
 645   my %myconfig = %main::myconfig;
 
 647   $form->{script} = "oe.pl";
 
 648   $form->{type}   = "request_quotation";
 
 650   if(!exists $form->{addition}) {
 
 651     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
 652     $form->{addition} = "SAVED";
 
 655   # /saving the history
 
 657   $main::lxdebug->leave_sub();
 
 660 sub save_and_quotation {
 
 661   $main::lxdebug->enter_sub();
 
 663   $main::auth->assert('customer_vendor_edit & sales_quotation_edit');
 
 665   my $form     = $main::form;
 
 666   my %myconfig = %main::myconfig;
 
 668   $form->{script} = "oe.pl";
 
 669   $form->{type}   = "sales_quotation";
 
 671   if(!exists $form->{addition}) {
 
 672     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
 673     $form->{addition} = "SAVED";
 
 676   # /saving the history
 
 678   $main::lxdebug->leave_sub();
 
 682   $main::lxdebug->enter_sub();
 
 684   my $form     = $main::form;
 
 685   my %myconfig = %main::myconfig;
 
 687   if ($form->{db} eq 'customer') {
 
 688     $main::auth->assert('customer_vendor_edit & sales_order_edit');
 
 690     $main::auth->assert('customer_vendor_edit & purchase_order_edit');
 
 693   $form->{script} = "oe.pl";
 
 695     ($form->{db} eq 'customer') ? "sales_order" : "purchase_order";
 
 697   if(!exists $form->{addition}) {
 
 698     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
 699     $form->{addition} = "SAVED";
 
 702   # /saving the history
 
 704   $main::lxdebug->leave_sub();
 
 708   $main::lxdebug->enter_sub();
 
 710   $main::auth->assert('customer_vendor_edit');
 
 712   my $form     = $main::form;
 
 713   my %myconfig = %main::myconfig;
 
 714   my $locale   = $main::locale;
 
 716   my $msg = ucfirst $form->{db};
 
 722   if(!exists $form->{addition}) {
 
 723     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
 
 724     $form->{addition} = "SAVED";
 
 727   # /saving the history
 
 728   $form->redirect($locale->text($msg));
 
 730   $main::lxdebug->leave_sub();
 
 734   $main::lxdebug->enter_sub();
 
 736   $main::auth->assert('customer_vendor_edit');
 
 738   my $form     = $main::form;
 
 739   my %myconfig = %main::myconfig;
 
 740   my $locale   = $main::locale;
 
 742   my $msg = ucfirst $form->{db};
 
 748   if(!exists $form->{addition}) {
 
 749     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
 
 750     $form->{addition} = "SAVED";
 
 753   # /saving the history
 
 756   $main::lxdebug->leave_sub();
 
 761   $main::lxdebug->enter_sub();
 
 763   $main::auth->assert('customer_vendor_edit');
 
 765   my $form     = $main::form;
 
 766   my %myconfig = %main::myconfig;
 
 767   my $locale   = $main::locale;
 
 769   CT->delete(\%myconfig, \%$form);
 
 771   my $msg = ucfirst $form->{db};
 
 774   if(!exists $form->{addition}) {
 
 775     $form->{snumbers} = ($form->{"db"} eq "customer" ? qq|customernumber_| . $form->{customernumber} : qq|vendornumber_| . $form->{vendornumber});
 
 776     $form->{addition} = "DELETED";
 
 779   # /saving the history
 
 780   $form->redirect($locale->text($msg));
 
 782   $main::lxdebug->leave_sub();
 
 786   $main::lxdebug->enter_sub();
 
 788   $main::auth->assert('customer_vendor_edit');
 
 790   my $form     = $main::form;
 
 795   $main::lxdebug->leave_sub();
 
 799   $main::lxdebug->enter_sub();
 
 801   $main::auth->assert('customer_vendor_edit');
 
 803   my $form     = $main::form;
 
 806   $main::lxdebug->leave_sub();
 
 810   $main::lxdebug->enter_sub();
 
 812   $main::auth->assert('customer_vendor_edit');
 
 814   CT->populate_drop_down_boxes(\%::myconfig, $::form);
 
 815   CT->query_titles_and_greetings(\%::myconfig, $::form);
 
 816   CT->get_contact(\%::myconfig, $::form) if $::form->{cp_id};
 
 818   $::form->{CUSTOM_VARIABLES}{Contacts} = CVar->get_custom_variables(module => 'Contacts', trans_id => $::form->{cp_id});
 
 819   CVar->render_inputs(variables => $::form->{CUSTOM_VARIABLES}{Contacts}, name_prefix => 'cp')
 
 820     if scalar @{ $::form->{CUSTOM_VARIABLES}->{Contacts} };
 
 822   $::form->{contacts_label} = \&_contacts_label;
 
 824   print $::form->ajax_response_header(), $::form->parse_html_template('ct/_contact');
 
 826   $main::lxdebug->leave_sub();
 
 830   $main::lxdebug->enter_sub();
 
 832   $main::auth->assert('customer_vendor_edit');
 
 834   CT->populate_drop_down_boxes(\%::myconfig, $::form);
 
 835   CT->get_shipto(\%::myconfig, $::form) if $::form->{shipto_id};
 
 837   $::form->{shipto_label} = \&_shipto_label;
 
 839   print $::form->ajax_response_header(), $::form->parse_html_template('ct/_shipto');
 
 841   $main::lxdebug->leave_sub();
 
 845   $::lxdebug->enter_sub;
 
 847   $::auth->assert('customer_vendor_edit');
 
 848   $::auth->assert('sales_all_edit');
 
 850   CT->get_delivery(\%::myconfig, $::form );
 
 852   print $::form->ajax_response_header,
 
 853         $::form->parse_html_template('ct/get_delivery', {
 
 854           is_customer =>  $::form->{db} eq 'customer',
 
 857   $::lxdebug->leave_sub;
 
 861   $::lxdebug->enter_sub;
 
 862   $::auth->assert('customer_vendor_edit');
 
 864   if (!$::form->{shipto_id}) {
 
 865     flash('error', $::locale->text('No shipto selected to delete'));
 
 868     CT->get_shipto(\%::myconfig, $::form);
 
 870     my $shipto = SL::DB::Manager::Shipto->find_by(shipto_id => $::form->{shipto_id});
 
 873       $shipto->detach->save;
 
 874       flash('info', $::locale->text('Shipto is in use and was flagged invalid.'));
 
 877       flash('info', $::locale->text('Shipto deleted.'));
 
 879     delete $::form->{$_} for grep /^shipto/, keys %$::form;
 
 884   $::lxdebug->leave_sub;
 
 888   $::lxdebug->enter_sub;
 
 889   $::auth->assert('customer_vendor_edit');
 
 891   if (!$::form->{cp_id}) {
 
 892     flash('error', $::locale->text('No contact selected to delete'));
 
 895     CT->get_contact(\%::myconfig, $::form);
 
 897     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
 
 899     if ($contact->used) {
 
 900       $contact->detach->save;
 
 901       flash('info', $::locale->text('Contact is in use and was flagged invalid.'));
 
 904       flash('info', $::locale->text('Contact deleted.'));
 
 906     delete $::form->{$_} for grep /^cp_/, keys %$::form;
 
 911   $::lxdebug->leave_sub;
 
 914 sub ajax_autocomplete {
 
 915   $main::lxdebug->enter_sub();
 
 917   my $form     = $main::form;
 
 918   my %myconfig = %main::myconfig;
 
 920   $form->{column}          = 'name'     unless $form->{column} =~ /^name$/;
 
 921   $form->{vc}              = 'customer' unless $form->{vc} =~ /^customer|vendor$/;
 
 922   $form->{db}              = $form->{vc}; # CT expects this
 
 923   $form->{$form->{column}} = $form->{q}           || '';
 
 924   $form->{limit}           = ($form->{limit} * 1) || 10;
 
 925   $form->{searchitems}   ||= '';
 
 927   CT->search(\%myconfig, $form);
 
 929   print $form->ajax_response_header(),
 
 930         $form->parse_html_template('ct/ajax_autocomplete');
 
 932   $main::lxdebug->leave_sub();
 
 935 sub continue { call_sub($main::form->{nextsub}); }