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