Revision f85f858c
Von Jan Büren vor fast 3 Jahren hinzugefügt
SL/Controller/PayPostingImport.pm | ||
---|---|---|
82 | 82 |
# optional KOST1 - KOST2 ? |
83 | 83 |
$department_name = $row->[36]; |
84 | 84 |
if ($department_name) { |
85 |
$department = SL::DB::Manager::Department->get_first(description => { like => $department_name . '%' });
|
|
85 |
$department = SL::DB::Manager::Department->get_first(where => [ description => { ilike => $department_name . '%' } ]);
|
|
86 | 86 |
} |
87 | 87 |
|
88 | 88 |
my $amount = $::form->parse_amount({ numberformat => '1000,00' }, $row->[0]); |
Auch abrufbar als: Unified diff
Abteilung bei Lohnbuchhaltung zuordnen, get_first mit richtigen Parameteraufruf