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