Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision bdd97244

Von Kivitendo Admin vor fast 9 Jahren hinzugefügt

  • ID bdd97244a89851cafbd132757e5e184a1464ee1a
  • Vorgänger ed71ba59
  • Nachfolger 7fc95c36

Neue Chart Methode new_chart_valid

die prüft, ob es für das Konto ein Folgekonto gibt, und ob das aktuelle
Tagesdatum >= dem Folgedatum ist, d.h. ob eigentlich das Folgekonto
benutzt werden soll. Diese Abfrage war bisher allerdings kaputt und wird
wahrscheinlich auch nirgends sinnvoll genutzt.

Unterschiede anzeigen:

SL/DB/Chart.pm
87 87
  $self->db->dbh->selectrow_array('select exists(select 1 from acc_trans where chart_id = ?)', {}, $self->id);
88 88
}
89 89

  
90
sub new_chart_valid {
91
  my ($self) = @_;
92

  
93
  if ( $self->valid_from && DateTime->today >= $self->valid_from ) {
94
    return 1;
95
  } else {
96
    return 0;
97
  };
98
}
99

  
90 100
sub displayable_name {
91 101
  my ($self) = @_;
92 102

  
......
170 180
Returns the date of the last transaction of the chart in the database, which
171 181
may lie in the future.
172 182

  
183
=item C<new_chart_valid>
184

  
185
Checks whether a follow-up chart is configured, and returns 1 or 0 depending on
186
whether the valid_from date is before or after the current date.
187
Is this even used anywhere?
188

  
173 189
=back
174 190

  
175 191
=head1 BUGS

Auch abrufbar als: Unified diff