Revision cae9317b
Von Bernd Bleßmann vor mehr als 6 Jahren hinzugefügt
SL/Controller/CsvImport/Base.pm | ||
---|---|---|
603 | 603 |
: $self->controller->{type} eq 'ar_transactions' ? 'invnumber_' . $object->invnumber |
604 | 604 |
: ''; |
605 | 605 |
|
606 |
my $what_done = $self->controller->{type} eq 'orders' ? 'sales_order' |
|
607 |
: ''; |
|
606 |
my $what_done = ''; |
|
607 |
if ($self->controller->{type} eq 'orders') { |
|
608 |
$what_done = $object->customer_id ? 'sales_order' : 'purchase_order'; |
|
609 |
} |
|
608 | 610 |
|
609 | 611 |
SL::DB::History->new( |
610 | 612 |
trans_id => $object->id, |
Auch abrufbar als: Unified diff
CSV-Import Aufträge: Bei History-Eintrag zwischen Ver- und Einkauf unterscheiden