X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/4440782f0737cd715dbd96851ecc2dbd8cd639f2..82515b2d93dc5632f24d6e0b6f8f05f3fd19fbb0:/SL/DB/Helpers/ALL.pm diff --git a/SL/DB/Helpers/ALL.pm b/SL/DB/Helpers/ALL.pm new file mode 100644 index 000000000..d55613b04 --- /dev/null +++ b/SL/DB/Helpers/ALL.pm @@ -0,0 +1,55 @@ +package SL::DB::Helpers::ALL; + +use strict; + +use SL::DB::Assembly; +use SL::DB::Bin; +use SL::DB::Business; +use SL::DB::Chart; +use SL::DB::Customer; +use SL::DB::DeliveryOrder; +use SL::DB::DeliveryOrderItem; +use SL::DB::DeliveryOrderItemsStock; +use SL::DB::GLTransaction; +use SL::DB::Invoice; +use SL::DB::InvoiceItem; +use SL::DB::Order; +use SL::DB::OrderItem; +use SL::DB::Part; +use SL::DB::PriceFactor; +use SL::DB::Printer; +use SL::DB::Project; +use SL::DB::PurchaseInvoice; +use SL::DB::Shipto; +use SL::DB::TransferType; +use SL::DB::Unit; +use SL::DB::Vendor; +use SL::DB::Warehouse; + +1; + +__END__ + +=pod + +=head1 NAME + +SL::DB::Helpers::ALL: Dependency-only package for all SL::DB::* modules + +=head1 SYNOPSIS + + use SL::DB::Helpers::ALL; + +=head1 DESCRIPTION + +This module depends on all modules in SL/DB/*.pm for the convenience +of being able to write a simple \C and +having everything loaded. This is supposed to be used only in the +Lx-Office console. Normal modules should C only the modules they +actually need. + +=head1 AUTHOR + +Moritz Bunkus Em.bunkus@linet-services.deE + +=cut