DBO Update - alle normalen Models hinzugefĆ¼gt.
[kivitendo-erp.git] / SL / DB / Helpers / ALL.pm
1 package SL::DB::Helpers::ALL;
2
3 use strict;
4
5 use SL::DB::Assembly;
6 use SL::DB::BankAccount;
7 use SL::DB::Bin;
8 use SL::DB::Buchungsgruppe;
9 use SL::DB::Business;
10 use SL::DB::Chart;
11 use SL::DB::Contact;
12 use SL::DB::CustomVariable;
13 use SL::DB::CustomVariableConfig;
14 use SL::DB::CustomVariableValidity;
15 use SL::DB::Customer;
16 use SL::DB::DeliveryOrder;
17 use SL::DB::DeliveryOrderItem;
18 use SL::DB::DeliveryOrderItemsStock;
19 use SL::DB::Draft;
20 use SL::DB::Dunning;
21 use SL::DB::DunningConfig;
22 use SL::DB::Employee;
23 use SL::DB::FollowUp;
24 use SL::DB::FollowUpLink;
25 use SL::DB::GLTransaction;
26 use SL::DB::GenericTranslation;
27 use SL::DB::History;
28 use SL::DB::Invoice;
29 use SL::DB::InvoiceItem;
30 use SL::DB::Language;
31 use SL::DB::Licemse;
32 use SL::DB::Note;
33 use SL::DB::Order;
34 use SL::DB::OrderItem;
35 use SL::DB::Part;
36 use SL::DB::PaymentTerm;
37 use SL::DB::PriceFactor;
38 use SL::DB::Pricegroup;
39 use SL::DB::Printer;
40 use SL::DB::Project;
41 use SL::DB::PurchaseInvoice;
42 use SL::DB::RMA;
43 use SL::DB::SepaExport;
44 use SL::DB::SepaExportItem;
45 use SL::DB::Shipto;
46 use SL::DB::Tax;
47 use SL::DB::Taxkey;
48 use SL::DB::TransferType;
49 use SL::DB::Unit;
50 use SL::DB::Vendor;
51 use SL::DB::Warehouse;
52
53
54
55 1;
56
57 __END__
58
59 =pod
60
61 =head1 NAME
62
63 SL::DB::Helpers::ALL: Dependency-only package for all SL::DB::* modules
64
65 =head1 SYNOPSIS
66
67   use SL::DB::Helpers::ALL;
68
69 =head1 DESCRIPTION
70
71 This module depends on all modules in SL/DB/*.pm for the convenience
72 of being able to write a simple \C<use SL::DB::Helpers::ALL> and
73 having everything loaded. This is supposed to be used only in the
74 Lx-Office console. Normal modules should C<use> only the modules they
75 actually need.
76
77 =head1 AUTHOR
78
79 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
80
81 =cut