Revision 3fc0694d
Von Kivitendo Admin vor mehr als 8 Jahren hinzugefügt
SL/DB/MetaSetup/Shop.pm | ||
---|---|---|
4 | 4 |
|
5 | 5 |
use strict; |
6 | 6 |
|
7 |
use base qw(SL::DB::Object);
|
|
7 |
use parent qw(SL::DB::Object);
|
|
8 | 8 |
|
9 | 9 |
__PACKAGE__->meta->table('shops'); |
10 | 10 |
|
SL/DB/MetaSetup/ShopOrder.pm | ||
---|---|---|
4 | 4 |
|
5 | 5 |
use strict; |
6 | 6 |
|
7 |
use base qw(SL::DB::Object);
|
|
7 |
use parent qw(SL::DB::Object);
|
|
8 | 8 |
|
9 | 9 |
__PACKAGE__->meta->table('shop_orders'); |
10 | 10 |
|
SL/DB/MetaSetup/ShopOrderItem.pm | ||
---|---|---|
4 | 4 |
|
5 | 5 |
use strict; |
6 | 6 |
|
7 |
use base qw(SL::DB::Object);
|
|
7 |
use parent qw(SL::DB::Object);
|
|
8 | 8 |
|
9 | 9 |
__PACKAGE__->meta->table('shop_order_items'); |
10 | 10 |
|
SL/DB/MetaSetup/ShopPart.pm | ||
---|---|---|
4 | 4 |
|
5 | 5 |
use strict; |
6 | 6 |
|
7 |
use base qw(SL::DB::Object);
|
|
7 |
use parent qw(SL::DB::Object);
|
|
8 | 8 |
|
9 | 9 |
__PACKAGE__->meta->table('shop_parts'); |
10 | 10 |
|
Auch abrufbar als: Unified diff
Shop - MetaSetup base -> parent