Revision 2ea07c13
Von Sven Schöling vor mehr als 9 Jahren hinzugefügt
SL/DB/MetaSetup/AccTransaction.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('acc_trans'); |
10 | 10 |
|
SL/DB/MetaSetup/Assembly.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('assembly'); |
10 | 10 |
|
SL/DB/MetaSetup/BackgroundJob.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('background_jobs'); |
10 | 10 |
|
SL/DB/MetaSetup/BackgroundJobHistory.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('background_job_histories'); |
10 | 10 |
|
SL/DB/MetaSetup/BankAccount.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('bank_accounts'); |
10 | 10 |
|
SL/DB/MetaSetup/BankTransaction.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('bank_transactions'); |
10 | 10 |
|
SL/DB/MetaSetup/Bin.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('bin'); |
10 | 10 |
|
SL/DB/MetaSetup/Buchungsgruppe.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('buchungsgruppen'); |
10 | 10 |
|
SL/DB/MetaSetup/Business.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('business'); |
10 | 10 |
|
SL/DB/MetaSetup/Chart.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('chart'); |
10 | 10 |
|
SL/DB/MetaSetup/Contact.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('contacts'); |
10 | 10 |
|
SL/DB/MetaSetup/CsvImportProfile.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('csv_import_profiles'); |
10 | 10 |
|
SL/DB/MetaSetup/CsvImportProfileSetting.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('csv_import_profile_settings'); |
10 | 10 |
|
SL/DB/MetaSetup/CsvImportReport.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('csv_import_reports'); |
10 | 10 |
|
SL/DB/MetaSetup/CsvImportReportRow.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('csv_import_report_rows'); |
10 | 10 |
|
SL/DB/MetaSetup/CsvImportReportStatus.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('csv_import_report_status'); |
10 | 10 |
|
SL/DB/MetaSetup/Currency.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('currencies'); |
10 | 10 |
|
SL/DB/MetaSetup/CustomVariable.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('custom_variables'); |
10 | 10 |
|
SL/DB/MetaSetup/CustomVariableConfig.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('custom_variable_configs'); |
10 | 10 |
|
SL/DB/MetaSetup/CustomVariableConfigPartsgroup.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('custom_variable_config_partsgroups'); |
10 | 10 |
|
SL/DB/MetaSetup/CustomVariableValidity.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('custom_variables_validity'); |
10 | 10 |
|
SL/DB/MetaSetup/Customer.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('customer'); |
10 | 10 |
|
SL/DB/MetaSetup/Datev.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('datev'); |
10 | 10 |
|
SL/DB/MetaSetup/Default.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('defaults'); |
10 | 10 |
|
SL/DB/MetaSetup/DeliveryOrder.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('delivery_orders'); |
10 | 10 |
|
SL/DB/MetaSetup/DeliveryOrderItem.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('delivery_order_items'); |
10 | 10 |
|
SL/DB/MetaSetup/DeliveryOrderItemsStock.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('delivery_order_items_stock'); |
10 | 10 |
|
SL/DB/MetaSetup/DeliveryTerm.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('delivery_terms'); |
10 | 10 |
|
SL/DB/MetaSetup/Department.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('department'); |
10 | 10 |
|
SL/DB/MetaSetup/Draft.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('drafts'); |
10 | 10 |
|
SL/DB/MetaSetup/Dunning.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('dunning'); |
10 | 10 |
|
SL/DB/MetaSetup/DunningConfig.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('dunning_config'); |
10 | 10 |
|
SL/DB/MetaSetup/Employee.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('employee'); |
10 | 10 |
|
SL/DB/MetaSetup/Exchangerate.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('exchangerate'); |
10 | 10 |
|
SL/DB/MetaSetup/Finanzamt.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('finanzamt'); |
10 | 10 |
|
SL/DB/MetaSetup/FollowUp.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('follow_ups'); |
10 | 10 |
|
SL/DB/MetaSetup/FollowUpAccess.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('follow_up_access'); |
10 | 10 |
|
SL/DB/MetaSetup/FollowUpLink.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('follow_up_links'); |
10 | 10 |
|
SL/DB/MetaSetup/GLTransaction.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('gl'); |
10 | 10 |
|
SL/DB/MetaSetup/GenericTranslation.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('generic_translations'); |
10 | 10 |
|
SL/DB/MetaSetup/History.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('history_erp'); |
10 | 10 |
|
SL/DB/MetaSetup/Inventory.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('inventory'); |
10 | 10 |
|
SL/DB/MetaSetup/Invoice.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('ar'); |
10 | 10 |
|
SL/DB/MetaSetup/InvoiceItem.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('invoice'); |
10 | 10 |
|
SL/DB/MetaSetup/Language.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('language'); |
10 | 10 |
|
SL/DB/MetaSetup/Letter.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('letter'); |
10 | 10 |
|
SL/DB/MetaSetup/LetterDraft.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('letter_draft'); |
10 | 10 |
|
SL/DB/MetaSetup/MakeModel.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('makemodel'); |
10 | 10 |
|
SL/DB/MetaSetup/Note.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('notes'); |
10 | 10 |
|
SL/DB/MetaSetup/Order.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('oe'); |
10 | 10 |
|
SL/DB/MetaSetup/OrderItem.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('orderitems'); |
10 | 10 |
|
SL/DB/MetaSetup/Part.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('parts'); |
10 | 10 |
|
SL/DB/MetaSetup/PartsGroup.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('partsgroup'); |
10 | 10 |
|
SL/DB/MetaSetup/PaymentTerm.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('payment_terms'); |
10 | 10 |
|
SL/DB/MetaSetup/PeriodicInvoice.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('periodic_invoices'); |
10 | 10 |
|
SL/DB/MetaSetup/PeriodicInvoicesConfig.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('periodic_invoices_configs'); |
10 | 10 |
|
SL/DB/MetaSetup/Price.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('prices'); |
10 | 10 |
|
SL/DB/MetaSetup/PriceFactor.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('price_factors'); |
10 | 10 |
|
SL/DB/MetaSetup/PriceRule.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('price_rules'); |
10 | 10 |
|
SL/DB/MetaSetup/PriceRuleItem.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('price_rule_items'); |
10 | 10 |
|
SL/DB/MetaSetup/Pricegroup.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('pricegroup'); |
10 | 10 |
|
SL/DB/MetaSetup/Printer.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('printers'); |
10 | 10 |
|
SL/DB/MetaSetup/Project.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('project'); |
10 | 10 |
|
SL/DB/MetaSetup/ProjectParticipant.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('project_participants'); |
10 | 10 |
|
SL/DB/MetaSetup/ProjectPhase.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('project_phases'); |
10 | 10 |
|
SL/DB/MetaSetup/ProjectPhaseParticipant.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('project_phase_participants'); |
10 | 10 |
|
SL/DB/MetaSetup/ProjectRole.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('project_roles'); |
10 | 10 |
|
SL/DB/MetaSetup/ProjectStatus.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('project_statuses'); |
10 | 10 |
|
SL/DB/MetaSetup/ProjectType.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('project_types'); |
10 | 10 |
|
SL/DB/MetaSetup/PurchaseInvoice.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('ap'); |
10 | 10 |
|
SL/DB/MetaSetup/ReconciliationLink.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('reconciliation_links'); |
10 | 10 |
|
SL/DB/MetaSetup/RecordLink.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('record_links'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpec.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('requirement_specs'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecAcceptanceStatus.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('requirement_spec_acceptance_statuses'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecComplexity.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('requirement_spec_complexities'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecDependency.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('requirement_spec_item_dependencies'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecItem.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('requirement_spec_items'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecOrder.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('requirement_spec_orders'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecPart.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('requirement_spec_parts'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecPicture.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('requirement_spec_pictures'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecPredefinedText.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('requirement_spec_predefined_texts'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecRisk.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('requirement_spec_risks'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecStatus.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('requirement_spec_statuses'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecTextBlock.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('requirement_spec_text_blocks'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecType.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('requirement_spec_types'); |
10 | 10 |
|
SL/DB/MetaSetup/RequirementSpecVersion.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('requirement_spec_versions'); |
10 | 10 |
|
SL/DB/MetaSetup/SchemaInfo.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('schema_info'); |
10 | 10 |
|
SL/DB/MetaSetup/SepaExport.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('sepa_export'); |
10 | 10 |
|
SL/DB/MetaSetup/SepaExportItem.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('sepa_export_items'); |
10 | 10 |
|
SL/DB/MetaSetup/Shipto.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('shipto'); |
10 | 10 |
|
SL/DB/MetaSetup/Status.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('status'); |
10 | 10 |
|
SL/DB/MetaSetup/Tax.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('tax'); |
10 | 10 |
|
SL/DB/MetaSetup/TaxKey.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('taxkeys'); |
10 | 10 |
|
SL/DB/MetaSetup/TaxZone.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('tax_zones'); |
10 | 10 |
|
SL/DB/MetaSetup/TaxzoneChart.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('taxzone_charts'); |
10 | 10 |
|
SL/DB/MetaSetup/TodoUserConfig.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('todo_user_config'); |
10 | 10 |
|
SL/DB/MetaSetup/TransferType.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('transfer_type'); |
10 | 10 |
|
SL/DB/MetaSetup/Translation.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('translation'); |
10 | 10 |
|
SL/DB/MetaSetup/TriggerInformation.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('trigger_information'); |
10 | 10 |
|
SL/DB/MetaSetup/Unit.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('units'); |
10 | 10 |
|
SL/DB/MetaSetup/UnitsLanguage.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('units_language'); |
10 | 10 |
|
SL/DB/MetaSetup/Vendor.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('vendor'); |
10 | 10 |
|
SL/DB/MetaSetup/Warehouse.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('warehouse'); |
10 | 10 |
|
Auch abrufbar als: Unified diff
use parent statt use base in MetaSetup