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