Revision 0e0ff150
Von Jan Büren vor fast 14 Jahren hinzugefügt
SL/IS.pm | ||
---|---|---|
2159 | 2159 |
return $result; |
2160 | 2160 |
} |
2161 | 2161 |
|
2162 |
sub get_standard_accno_current_assets { |
|
2163 |
$main::lxdebug->enter_sub(); |
|
2164 |
|
|
2165 |
my ($self, $myconfig, $form) = @_; |
|
2166 |
|
|
2167 |
my $dbh = $form->dbconnect($myconfig); |
|
2168 |
|
|
2169 |
my $query = qq| SELECT accno FROM chart WHERE id = (SELECT ar_paid_accno_id FROM defaults)|; |
|
2170 |
my ($result) = selectrow_query($form, $dbh, $query); |
|
2171 |
|
|
2172 |
$dbh->disconnect(); |
|
2173 |
|
|
2174 |
$main::lxdebug->leave_sub(); |
|
2175 |
|
|
2176 |
return $result; |
|
2177 |
} |
|
2178 |
|
|
2162 | 2179 |
1; |
Auch abrufbar als: Unified diff
Standard-Auswahl für Umlaufvermögenskonto (Bank) mandantenweit setzen. Ferner yearend aus AM.pm entfernt und schliessende </options> für selectAP_paid Array hinzugefügt