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