Revision 4d041eef
Von Jan Büren vor fast 8 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
634 | 634 |
|
635 | 635 |
if (($form->{previous_vendor_id} || $form->{vendor_id}) != $form->{vendor_id}) { |
636 | 636 |
IR->get_vendor(\%::myconfig, $form); |
637 |
if (($form->{rowcount} == 1) && ($form->{amount_1} == 0)) { |
|
638 |
my $last_used_ap_chart = SL::DB::Vendor->load_cached($form->{vendor_id})->last_used_ap_chart; |
|
639 |
$form->{"AP_amount_chart_id_1"} = $last_used_ap_chart->id if $last_used_ap_chart; |
|
640 |
} |
|
637 | 641 |
} |
638 | 642 |
|
639 | 643 |
$form->{rowcount} = $count + ($params{dont_add_new_row} ? 0 : 1); |
bin/mozilla/ar.pl | ||
---|---|---|
611 | 611 |
|
612 | 612 |
if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) { |
613 | 613 |
IS->get_customer(\%myconfig, $form); |
614 |
if (($form->{rowcount} == 1) && ($form->{amount_1} == 0)) { |
|
615 |
my $last_used_ar_chart = SL::DB::Customer->load_cached($form->{customer_id})->last_used_ar_chart; |
|
616 |
$form->{"AR_amount_chart_id_1"} = $last_used_ar_chart->id if $last_used_ar_chart; |
|
617 |
} |
|
614 | 618 |
} |
615 | 619 |
|
616 | 620 |
$form->{invtotal} = |
Auch abrufbar als: Unified diff
Kreditoren/Debitoren-Buchung zuletzt bebuchtes Konto laden
Wenn nur ein Konto ohne Wert vorhanden ist, gehen wir davon aus,
dass der Anwender einen anderen Kunden/Lieferanten buchen möchten und
hier das zuletzt bebuchte Konto als Default möchte