use parent statt use base in MetaSetup
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 24 Sep 2015 12:10:56 +0000 (14:10 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 24 Sep 2015 12:10:56 +0000 (14:10 +0200)
103 files changed:
SL/DB/MetaSetup/AccTransaction.pm
SL/DB/MetaSetup/Assembly.pm
SL/DB/MetaSetup/BackgroundJob.pm
SL/DB/MetaSetup/BackgroundJobHistory.pm
SL/DB/MetaSetup/BankAccount.pm
SL/DB/MetaSetup/BankTransaction.pm
SL/DB/MetaSetup/Bin.pm
SL/DB/MetaSetup/Buchungsgruppe.pm
SL/DB/MetaSetup/Business.pm
SL/DB/MetaSetup/Chart.pm
SL/DB/MetaSetup/Contact.pm
SL/DB/MetaSetup/CsvImportProfile.pm
SL/DB/MetaSetup/CsvImportProfileSetting.pm
SL/DB/MetaSetup/CsvImportReport.pm
SL/DB/MetaSetup/CsvImportReportRow.pm
SL/DB/MetaSetup/CsvImportReportStatus.pm
SL/DB/MetaSetup/Currency.pm
SL/DB/MetaSetup/CustomVariable.pm
SL/DB/MetaSetup/CustomVariableConfig.pm
SL/DB/MetaSetup/CustomVariableConfigPartsgroup.pm
SL/DB/MetaSetup/CustomVariableValidity.pm
SL/DB/MetaSetup/Customer.pm
SL/DB/MetaSetup/Datev.pm
SL/DB/MetaSetup/Default.pm
SL/DB/MetaSetup/DeliveryOrder.pm
SL/DB/MetaSetup/DeliveryOrderItem.pm
SL/DB/MetaSetup/DeliveryOrderItemsStock.pm
SL/DB/MetaSetup/DeliveryTerm.pm
SL/DB/MetaSetup/Department.pm
SL/DB/MetaSetup/Draft.pm
SL/DB/MetaSetup/Dunning.pm
SL/DB/MetaSetup/DunningConfig.pm
SL/DB/MetaSetup/Employee.pm
SL/DB/MetaSetup/Exchangerate.pm
SL/DB/MetaSetup/Finanzamt.pm
SL/DB/MetaSetup/FollowUp.pm
SL/DB/MetaSetup/FollowUpAccess.pm
SL/DB/MetaSetup/FollowUpLink.pm
SL/DB/MetaSetup/GLTransaction.pm
SL/DB/MetaSetup/GenericTranslation.pm
SL/DB/MetaSetup/History.pm
SL/DB/MetaSetup/Inventory.pm
SL/DB/MetaSetup/Invoice.pm
SL/DB/MetaSetup/InvoiceItem.pm
SL/DB/MetaSetup/Language.pm
SL/DB/MetaSetup/Letter.pm
SL/DB/MetaSetup/LetterDraft.pm
SL/DB/MetaSetup/MakeModel.pm
SL/DB/MetaSetup/Note.pm
SL/DB/MetaSetup/Order.pm
SL/DB/MetaSetup/OrderItem.pm
SL/DB/MetaSetup/Part.pm
SL/DB/MetaSetup/PartsGroup.pm
SL/DB/MetaSetup/PaymentTerm.pm
SL/DB/MetaSetup/PeriodicInvoice.pm
SL/DB/MetaSetup/PeriodicInvoicesConfig.pm
SL/DB/MetaSetup/Price.pm
SL/DB/MetaSetup/PriceFactor.pm
SL/DB/MetaSetup/PriceRule.pm
SL/DB/MetaSetup/PriceRuleItem.pm
SL/DB/MetaSetup/Pricegroup.pm
SL/DB/MetaSetup/Printer.pm
SL/DB/MetaSetup/Project.pm
SL/DB/MetaSetup/ProjectParticipant.pm
SL/DB/MetaSetup/ProjectPhase.pm
SL/DB/MetaSetup/ProjectPhaseParticipant.pm
SL/DB/MetaSetup/ProjectRole.pm
SL/DB/MetaSetup/ProjectStatus.pm
SL/DB/MetaSetup/ProjectType.pm
SL/DB/MetaSetup/PurchaseInvoice.pm
SL/DB/MetaSetup/ReconciliationLink.pm
SL/DB/MetaSetup/RecordLink.pm
SL/DB/MetaSetup/RequirementSpec.pm
SL/DB/MetaSetup/RequirementSpecAcceptanceStatus.pm
SL/DB/MetaSetup/RequirementSpecComplexity.pm
SL/DB/MetaSetup/RequirementSpecDependency.pm
SL/DB/MetaSetup/RequirementSpecItem.pm
SL/DB/MetaSetup/RequirementSpecOrder.pm
SL/DB/MetaSetup/RequirementSpecPart.pm
SL/DB/MetaSetup/RequirementSpecPicture.pm
SL/DB/MetaSetup/RequirementSpecPredefinedText.pm
SL/DB/MetaSetup/RequirementSpecRisk.pm
SL/DB/MetaSetup/RequirementSpecStatus.pm
SL/DB/MetaSetup/RequirementSpecTextBlock.pm
SL/DB/MetaSetup/RequirementSpecType.pm
SL/DB/MetaSetup/RequirementSpecVersion.pm
SL/DB/MetaSetup/SchemaInfo.pm
SL/DB/MetaSetup/SepaExport.pm
SL/DB/MetaSetup/SepaExportItem.pm
SL/DB/MetaSetup/Shipto.pm
SL/DB/MetaSetup/Status.pm
SL/DB/MetaSetup/Tax.pm
SL/DB/MetaSetup/TaxKey.pm
SL/DB/MetaSetup/TaxZone.pm
SL/DB/MetaSetup/TaxzoneChart.pm
SL/DB/MetaSetup/TodoUserConfig.pm
SL/DB/MetaSetup/TransferType.pm
SL/DB/MetaSetup/Translation.pm
SL/DB/MetaSetup/TriggerInformation.pm
SL/DB/MetaSetup/Unit.pm
SL/DB/MetaSetup/UnitsLanguage.pm
SL/DB/MetaSetup/Vendor.pm
SL/DB/MetaSetup/Warehouse.pm

index a3fedeb..23a1b17 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::AccTransaction;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('acc_trans');
 
index d8de331..5107340 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Assembly;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('assembly');
 
index 6b19131..5b674aa 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::BackgroundJob;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('background_jobs');
 
index 24ce17f..ca784fd 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::BackgroundJobHistory;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('background_job_histories');
 
index 8f1abea..b72a170 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::BankAccount;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('bank_accounts');
 
index a2dd295..9f6e17d 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::BankTransaction;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('bank_transactions');
 
index 223276e..02ca5db 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Bin;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('bin');
 
index 55d600c..fde083a 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Buchungsgruppe;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('buchungsgruppen');
 
index ff6e3d0..64adf69 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Business;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('business');
 
index 5d04127..865296e 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Chart;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('chart');
 
index 7f82175..8d71fcc 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Contact;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('contacts');
 
index 7a163b2..2366802 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CsvImportProfile;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('csv_import_profiles');
 
index 4331539..b628496 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CsvImportProfileSetting;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('csv_import_profile_settings');
 
index 3a8433c..1959132 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CsvImportReport;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('csv_import_reports');
 
index 0dea93e..eac145d 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CsvImportReportRow;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('csv_import_report_rows');
 
index f816079..2bca425 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CsvImportReportStatus;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('csv_import_report_status');
 
index 5d7d613..2426feb 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Currency;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('currencies');
 
index 82307c0..d6c805e 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CustomVariable;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('custom_variables');
 
index fb89589..af6d690 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CustomVariableConfig;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('custom_variable_configs');
 
index 95222d9..b326cbe 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CustomVariableConfigPartsgroup;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('custom_variable_config_partsgroups');
 
index a3750b7..6b9dcd8 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::CustomVariableValidity;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('custom_variables_validity');
 
index f88df86..173cb75 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Customer;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('customer');
 
index 0b187c5..1f1c148 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Datev;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('datev');
 
index 2622d40..2f407ea 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Default;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('defaults');
 
index a3a2181..d242fcd 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::DeliveryOrder;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('delivery_orders');
 
index aabf2b5..3a6cd9a 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::DeliveryOrderItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('delivery_order_items');
 
index 4324c93..a3f87fb 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::DeliveryOrderItemsStock;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('delivery_order_items_stock');
 
index 672aba1..cfaabde 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::DeliveryTerm;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('delivery_terms');
 
index f3e0498..ab1ed8d 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Department;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('department');
 
index 997167f..afb5c83 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Draft;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('drafts');
 
index b38a0b0..a0098e7 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Dunning;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('dunning');
 
index 91a504a..ef4c594 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::DunningConfig;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('dunning_config');
 
index 6cdc930..9e2d542 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Employee;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('employee');
 
index 7b90ab2..b2136ad 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Exchangerate;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('exchangerate');
 
index cd44abb..cc4d997 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Finanzamt;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('finanzamt');
 
index a6702b6..b9119fb 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::FollowUp;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('follow_ups');
 
index c2fccb1..fa6898e 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::FollowUpAccess;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('follow_up_access');
 
index d6946a6..bcc8eef 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::FollowUpLink;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('follow_up_links');
 
index 14f386a..3b829d5 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::GLTransaction;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('gl');
 
index 863cd3f..81bd6d8 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::GenericTranslation;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('generic_translations');
 
index ed15384..1c6e68a 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::History;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('history_erp');
 
index b9df3fb..14d1ea1 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Inventory;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('inventory');
 
index 15f9bc0..b88c2f5 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Invoice;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('ar');
 
index af759ab..2da0d7f 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::InvoiceItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('invoice');
 
index ccf4f83..9aa8039 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Language;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('language');
 
index a0b394c..0d29b9f 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Letter;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('letter');
 
index 6b450d0..1ef3fb8 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::LetterDraft;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('letter_draft');
 
index f210e63..6ec58a2 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::MakeModel;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('makemodel');
 
index 1e94da7..9a704a8 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Note;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('notes');
 
index 5e67aac..b359c07 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Order;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('oe');
 
index 53ded97..9de8b7e 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::OrderItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('orderitems');
 
index 556ff8e..2008fef 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Part;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('parts');
 
index ec2d603..f9915d5 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PartsGroup;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('partsgroup');
 
index 7c863cd..bc0587e 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PaymentTerm;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('payment_terms');
 
index 3e6f1ea..703cb59 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PeriodicInvoice;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('periodic_invoices');
 
index dfc43f4..0c05453 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PeriodicInvoicesConfig;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('periodic_invoices_configs');
 
index bef0794..29c0de3 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Price;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('prices');
 
index a67b805..7060c4d 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PriceFactor;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('price_factors');
 
index a3e7028..889dde7 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PriceRule;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('price_rules');
 
index d1fe506..f1804a6 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PriceRuleItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('price_rule_items');
 
index 176d426..60a7f20 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Pricegroup;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('pricegroup');
 
index 92bb73f..0e961d4 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Printer;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('printers');
 
index 255cc93..f651042 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Project;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project');
 
index 9058aa5..5704af1 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ProjectParticipant;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project_participants');
 
index 20df676..4627742 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ProjectPhase;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project_phases');
 
index 73c0f04..bd2e2ca 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ProjectPhaseParticipant;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project_phase_participants');
 
index efe9392..d7963c8 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ProjectRole;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project_roles');
 
index e7f4a4c..a002988 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ProjectStatus;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project_statuses');
 
index cbe78ba..d336b7e 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ProjectType;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('project_types');
 
index cc5eb4d..c9c74f0 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::PurchaseInvoice;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('ap');
 
index 9b5c969..00eb2d2 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::ReconciliationLink;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('reconciliation_links');
 
index 3daa6c4..cf2c696 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RecordLink;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('record_links');
 
index 667f39a..ce25749 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpec;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_specs');
 
index 67ec1c6..fb4fc87 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecAcceptanceStatus;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_acceptance_statuses');
 
index a497732..fbcb09a 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecComplexity;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_complexities');
 
index d453d25..5193bfc 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecDependency;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_item_dependencies');
 
index 79c1ca0..07bac07 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_items');
 
index 33499bf..b4755e4 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecOrder;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_orders');
 
index c4627ae..e57fee1 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecPart;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_parts');
 
index 731c5ca..c09a884 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecPicture;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_pictures');
 
index ec9847b..a8a95c5 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecPredefinedText;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_predefined_texts');
 
index 763f902..cb84ccd 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecRisk;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_risks');
 
index c601566..098f2c1 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecStatus;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_statuses');
 
index cfccd49..c1fff72 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecTextBlock;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_text_blocks');
 
index 53a8be1..521b6d0 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecType;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_types');
 
index 21e23b7..b03a28c 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::RequirementSpecVersion;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('requirement_spec_versions');
 
index 0518867..0df16d7 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::SchemaInfo;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('schema_info');
 
index bade321..d44cb22 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::SepaExport;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('sepa_export');
 
index 6f5051b..c0cd5d7 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::SepaExportItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('sepa_export_items');
 
index b0a9f99..beab032 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Shipto;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('shipto');
 
index 6dd6f87..bcc96b6 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Status;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('status');
 
index 4db493f..f4a2e2d 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Tax;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('tax');
 
index 399f637..a5bb5ff 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::TaxKey;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('taxkeys');
 
index 5529d89..0ca5fd8 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::TaxZone;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('tax_zones');
 
index d11587a..64b1494 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::TaxzoneChart;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('taxzone_charts');
 
index 1f986dd..f745dae 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::TodoUserConfig;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('todo_user_config');
 
index 7facb04..e9c4594 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::TransferType;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('transfer_type');
 
index 5f0ee97..19211bd 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Translation;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('translation');
 
index 2ea3197..364c90c 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::TriggerInformation;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('trigger_information');
 
index d0ef2f7..ec23013 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Unit;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('units');
 
index b85e5d4..07a4f5a 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::UnitsLanguage;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('units_language');
 
index 6a0969f..54e9d07 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Vendor;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('vendor');
 
index d06c129..4a4b089 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::Warehouse;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('warehouse');