Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a7e23c08

Von Kivitendo Admin vor fast 11 Jahren hinzugefügt

  • ID a7e23c08f2f06cc58950a37bc7bf7a0de957be53
  • Vorgänger 86f5b962
  • Nachfolger 32020b3a

BWA aus Druckvorlagen in Webvorlagen verschoben

Damit wird das BWA-Formular zentral gepflegt, die Version in den
Benutzerdruckvorlagen wird nicht mehr verwendet.

Außerdem wird in der BWA noch das oben das Berichtsdatum und die
Versteuerungsart des Berichts (Soll/Ist) mit ausgegeben.

Unterschiede anzeigen:

bin/mozilla/rp.pl
1648 1648
  my %myconfig = %main::myconfig;
1649 1649
  my $locale   = $main::locale;
1650 1650

  
1651
  my $defaults = SL::DB::Default->get;
1652
  $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
1653
  $form->{templates} = $defaults->templates;
1654

  
1655 1651
  $form->{padding} = "  ";
1656 1652
  $form->{bold}    = "<b>";
1657 1653
  $form->{endbold} = "</b>";
......
1839 1835
      . qq| $longtodate|;
1840 1836
  }
1841 1837

  
1842
  $form->{IN} = "bwa.html";
1838
  $form->{report_date} = $locale->text('Report date') . ": " . $form->current_date;
1843 1839

  
1844
  $form->parse_template;
1840
  if ( $form->{method} eq 'cash' ) {
1841
    $form->{accounting_method} = $locale->text('Cash accounting');
1842
  } elsif ( $form->{method} eq 'accrual' ) {
1843
    $form->{accounting_method} = $locale->text('Accrual accounting');
1844
  } else {
1845
    $form->{accounting_method} = "";
1846
  };
1847

  
1848
  $form->{title} = $locale->text('BWA');
1849

  
1850
  $form->header;
1851
  print $form->parse_html_template('rp/bwa');
1845 1852

  
1846 1853
  $main::lxdebug->leave_sub();
1847 1854
}

Auch abrufbar als: Unified diff