Revision 09e4a554
Von Moritz Bunkus vor fast 9 Jahren hinzugefügt
SL/DB/Buchungsgruppe.pm | ||
---|---|---|
6 | 6 |
use SL::DB::Manager::Buchungsgruppe; |
7 | 7 |
use SL::DB::Helper::ActsAsList; |
8 | 8 |
|
9 |
__PACKAGE__->meta->add_relationship( |
|
10 |
inventory_account => { |
|
11 |
type => 'many to one', |
|
12 |
class => 'SL::DB::Chart', |
|
13 |
column_map => { inventory_accno_id => 'id' }, |
|
14 |
}, |
|
15 |
); |
|
16 |
|
|
17 | 9 |
__PACKAGE__->meta->initialize; |
18 | 10 |
|
11 |
sub inventory_account { goto &inventory_accno; } |
|
12 |
|
|
19 | 13 |
sub validate { |
20 | 14 |
my ($self) = @_; |
21 | 15 |
|
Auch abrufbar als: Unified diff
SL::DB::Buchungsgruppe: Relationsnamen inventory_account gefixt
Aus irgend einem Grund registriert Rose keine neue Relationship, wenn es
bereits eine (mit leicht anderem Namen) als Foreign Key für dieselbe
Spalte gibt.