Merge branch 'gewicht'
[kivitendo-erp.git] / SL / DB / Helper / ALL.pm
1 package SL::DB::Helper::ALL;
2
3 use strict;
4
5 use SL::DB::AccTransaction;
6 use SL::DB::Assembly;
7 use SL::DB::AuditTrail;
8 use SL::DB::AuthGroup;
9 use SL::DB::AuthGroupRight;
10 use SL::DB::AuthUser;
11 use SL::DB::AuthUserConfig;
12 use SL::DB::AuthUserGroup;
13 use SL::DB::BackgroundJob;
14 use SL::DB::BackgroundJobHistory;
15 use SL::DB::BankAccount;
16 use SL::DB::Bin;
17 use SL::DB::Buchungsgruppe;
18 use SL::DB::Business;
19 use SL::DB::Chart;
20 use SL::DB::Contact;
21 use SL::DB::CsvImportProfile;
22 use SL::DB::CsvImportProfileSetting;
23 use SL::DB::Currency;
24 use SL::DB::CustomVariable;
25 use SL::DB::CustomVariableConfig;
26 use SL::DB::CustomVariableValidity;
27 use SL::DB::Customer;
28 use SL::DB::Datev;
29 use SL::DB::Default;
30 use SL::DB::DeliveryOrder;
31 use SL::DB::DeliveryOrderItem;
32 use SL::DB::DeliveryOrderItemsStock;
33 use SL::DB::Department;
34 use SL::DB::DptTrans;
35 use SL::DB::Draft;
36 use SL::DB::Dunning;
37 use SL::DB::DunningConfig;
38 use SL::DB::Employee;
39 use SL::DB::Exchangerate;
40 use SL::DB::Finanzamt;
41 use SL::DB::FollowUp;
42 use SL::DB::FollowUpAccess;
43 use SL::DB::FollowUpLink;
44 use SL::DB::GLTransaction;
45 use SL::DB::GenericTranslation;
46 use SL::DB::History;
47 use SL::DB::Inventory;
48 use SL::DB::Invoice;
49 use SL::DB::InvoiceItem;
50 use SL::DB::Language;
51 use SL::DB::MakeModel;
52 use SL::DB::Note;
53 use SL::DB::Object::Hooks;
54 use SL::DB::Object;
55 use SL::DB::Order;
56 use SL::DB::OrderItem;
57 use SL::DB::Part;
58 use SL::DB::PartsGroup;
59 use SL::DB::PaymentTerm;
60 use SL::DB::PeriodicInvoice;
61 use SL::DB::PeriodicInvoicesConfig;
62 use SL::DB::PriceFactor;
63 use SL::DB::Pricegroup;
64 use SL::DB::Price;
65 use SL::DB::Printer;
66 use SL::DB::Project;
67 use SL::DB::PurchaseInvoice;
68 use SL::DB::RecordLink;
69 use SL::DB::SchemaInfo;
70 use SL::DB::SepaExport;
71 use SL::DB::SepaExportItem;
72 use SL::DB::Shipto;
73 use SL::DB::Status;
74 use SL::DB::Tax;
75 use SL::DB::TaxKey;
76 use SL::DB::TaxZone;
77 use SL::DB::TodoUserConfig;
78 use SL::DB::TransferType;
79 use SL::DB::Translation;
80 use SL::DB::TranslationPaymentTerm;
81 use SL::DB::Unit;
82 use SL::DB::UnitsLanguage;
83 use SL::DB::VC;
84 use SL::DB::Vendor;
85 use SL::DB::Warehouse;
86
87 1;
88
89 __END__
90
91 =pod
92
93 =head1 NAME
94
95 SL::DB::Helper::ALL: Dependency-only package for all SL::DB::* modules
96
97 =head1 SYNOPSIS
98
99   use SL::DB::Helper::ALL;
100
101 =head1 DESCRIPTION
102
103 This module depends on all modules in SL/DB/*.pm for the convenience
104 of being able to write a simple \C<use SL::DB::Helper::ALL> and
105 having everything loaded. This is supposed to be used only in the
106 kivitendo console. Normal modules should C<use> only the modules they
107 actually need.
108
109 =head1 AUTHOR
110
111 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
112
113 =cut