Belegvorlagen: Datenbankschema, Rose-Models
[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::AssortmentItem;
8 use SL::DB::AuthClient;
9 use SL::DB::AuthClientUser;
10 use SL::DB::AuthClientGroup;
11 use SL::DB::AuthGroup;
12 use SL::DB::AuthGroupRight;
13 use SL::DB::AuthMasterRight;
14 use SL::DB::AuthSchemaInfo;
15 use SL::DB::AuthSession;
16 use SL::DB::AuthSessionContent;
17 use SL::DB::AuthUser;
18 use SL::DB::AuthUserConfig;
19 use SL::DB::AuthUserGroup;
20 use SL::DB::BackgroundJob;
21 use SL::DB::BackgroundJobHistory;
22 use SL::DB::BankAccount;
23 use SL::DB::BankTransaction;
24 use SL::DB::Bin;
25 use SL::DB::Buchungsgruppe;
26 use SL::DB::Business;
27 use SL::DB::Chart;
28 use SL::DB::Contact;
29 use SL::DB::CsvImportProfile;
30 use SL::DB::CsvImportProfileSetting;
31 use SL::DB::CsvImportReport;
32 use SL::DB::CsvImportReportRow;
33 use SL::DB::CsvImportReportStatus;
34 use SL::DB::Currency;
35 use SL::DB::CustomVariable;
36 use SL::DB::CustomVariableConfig;
37 use SL::DB::CustomVariableConfigPartsgroup;
38 use SL::DB::CustomVariableValidity;
39 use SL::DB::Customer;
40 use SL::DB::Datev;
41 use SL::DB::Default;
42 use SL::DB::DeliveryOrder;
43 use SL::DB::DeliveryOrderItem;
44 use SL::DB::DeliveryOrderItemsStock;
45 use SL::DB::DeliveryTerm;
46 use SL::DB::Department;
47 use SL::DB::Draft;
48 use SL::DB::Dunning;
49 use SL::DB::DunningConfig;
50 use SL::DB::EmailJournal;
51 use SL::DB::EmailJournalAttachment;
52 use SL::DB::Employee;
53 use SL::DB::Exchangerate;
54 use SL::DB::Finanzamt;
55 use SL::DB::FollowUp;
56 use SL::DB::FollowUpAccess;
57 use SL::DB::FollowUpLink;
58 use SL::DB::GLTransaction;
59 use SL::DB::GenericTranslation;
60 use SL::DB::History;
61 use SL::DB::Inventory;
62 use SL::DB::Invoice;
63 use SL::DB::InvoiceItem;
64 use SL::DB::Language;
65 use SL::DB::Letter;
66 use SL::DB::LetterDraft;
67 use SL::DB::MakeModel;
68 use SL::DB::Note;
69 use SL::DB::Object::Hooks;
70 use SL::DB::Object;
71 use SL::DB::Order;
72 use SL::DB::OrderItem;
73 use SL::DB::Part;
74 use SL::DB::PartClassification;
75 use SL::DB::PartsGroup;
76 use SL::DB::PartsPriceHistory;
77 use SL::DB::PaymentTerm;
78 use SL::DB::PeriodicInvoice;
79 use SL::DB::PeriodicInvoicesConfig;
80 use SL::DB::PriceFactor;
81 use SL::DB::Pricegroup;
82 use SL::DB::Price;
83 use SL::DB::PriceRule;
84 use SL::DB::PriceRuleItem;
85 use SL::DB::Printer;
86 use SL::DB::Project;
87 use SL::DB::ProjectParticipant;
88 use SL::DB::ProjectPhase;
89 use SL::DB::ProjectPhaseParticipant;
90 use SL::DB::ProjectRole;
91 use SL::DB::ProjectStatus;
92 use SL::DB::ProjectType;
93 use SL::DB::PurchaseInvoice;
94 use SL::DB::ReconciliationLink;
95 use SL::DB::RecordLink;
96 use SL::DB::RecordTemplate;
97 use SL::DB::RecordTemplateItem;
98 use SL::DB::RequirementSpecAcceptanceStatus;
99 use SL::DB::RequirementSpecComplexity;
100 use SL::DB::RequirementSpecDependency;
101 use SL::DB::RequirementSpecItem;
102 use SL::DB::RequirementSpecOrder;
103 use SL::DB::RequirementSpecPart;
104 use SL::DB::RequirementSpecPicture;
105 use SL::DB::RequirementSpecPredefinedText;
106 use SL::DB::RequirementSpecRisk;
107 use SL::DB::RequirementSpecStatus;
108 use SL::DB::RequirementSpecTextBlock;
109 use SL::DB::RequirementSpecType;
110 use SL::DB::RequirementSpecVersion;
111 use SL::DB::RequirementSpec;
112 use SL::DB::SchemaInfo;
113 use SL::DB::SepaExport;
114 use SL::DB::SepaExportItem;
115 use SL::DB::SepaExportMessageId;
116 use SL::DB::Shipto;
117 use SL::DB::Status;
118 use SL::DB::Tax;
119 use SL::DB::TaxKey;
120 use SL::DB::TaxZone;
121 use SL::DB::TaxzoneChart;
122 use SL::DB::TodoUserConfig;
123 use SL::DB::TransferType;
124 use SL::DB::Translation;
125 use SL::DB::TriggerInformation;
126 use SL::DB::Unit;
127 use SL::DB::UnitsLanguage;
128 use SL::DB::UserPreference;
129 use SL::DB::VC;
130 use SL::DB::Vendor;
131 use SL::DB::Warehouse;
132
133 1;
134
135 __END__
136
137 =pod
138
139 =head1 NAME
140
141 SL::DB::Helper::ALL: Dependency-only package for all SL::DB::* modules
142
143 =head1 SYNOPSIS
144
145   use SL::DB::Helper::ALL;
146
147 =head1 DESCRIPTION
148
149 This module depends on all modules in SL/DB/*.pm for the convenience
150 of being able to write a simple \C<use SL::DB::Helper::ALL> and
151 having everything loaded. This is supposed to be used only in the
152 kivitendo console. Normal modules should C<use> only the modules they
153 actually need.
154
155 =head1 AUTHOR
156
157 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
158
159 =cut