Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 573d7fd1

Von Jan Büren vor mehr als 8 Jahren hinzugefügt

  • ID 573d7fd17b43a09a21e1acb2423b0160523819a8
  • Vorgänger 26ee3490
  • Nachfolger f5b13074

new_lastmtime um optionalen dbh erweitert

Unterschiede anzeigen:

SL/Form.pm
}
sub new_lastmtime {
my ($self, $table, $option) = @_;
$main::lxdebug->enter_sub();
my ($self, $table, $provided_dbh) = @_;
my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh;
return unless $self->{id};
croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
my $query = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
my $ref = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
$ref->{mtime} ||= $ref->{itime};
$self->{lastmtime} = $ref->{mtime};
$main::lxdebug->message(LXDebug->DEBUG2(),"new lastmtime=".$self->{lastmtime});
$main::lxdebug->leave_sub();
}
sub mtime_ischanged {

Auch abrufbar als: Unified diff