Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 6e08e454

Von Thomas Heck vor mehr als 11 Jahren hinzugefügt

taxincluded von Rose laden lassen

Unterschiede anzeigen:

bin/mozilla/oe.pl
45 45
use SL::ReportGenerator;
46 46
use List::MoreUtils qw(any none);
47 47
use List::Util qw(min max reduce sum);
48
use SL::DBUtils;
49 48
use Data::Dumper;
50 49

  
50
use SL::DB::Customer;
51

  
51 52
require "bin/mozilla/io.pl";
52 53
require "bin/mozilla/arap.pl";
53 54
require "bin/mozilla/reportgenerator.pl";
......
482 483
  $TMPL_VAR{notes}    = qq|<textarea name=notes rows="$rows" cols="25">| . H($form->{notes}) . qq|</textarea>|;
483 484
  $TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|;
484 485

  
485
  if ( $form->{type} =~ /sales_(order|quotation)/ && $form->{vc} eq 'customer' && !$form->{taxincluded_changed_by_user} ) {
486
    my $query = '
487
      SELECT
488
        taxincluded_checked
489
      FROM
490
        customer
491
      WHERE
492
        id = ?';
493
    my $res = selectfirst_hashref_query($::form, $::form->get_standard_dbh(), $query, conv_i($::form->{customer_id}));
494

  
495
    $form->{taxincluded} = ($res && defined($res->{taxincluded_checked})) ? $res->{taxincluded_checked} : $myconfig{taxincluded_checked};
486
  if ($form->{customer_id}) {
487
    my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
488
    $form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
496 489
  }
497 490

  
498 491
  if (!$form->{taxincluded}) {

Auch abrufbar als: Unified diff