X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FPriceSource%2FALL.pm;h=dd6ee2faadd1aa5613c44cabea0139442faae52b;hb=6ba38ffedd99c9d3ade9134b01ac510c50d92d2e;hp=f9d86001cc603264d58697eaea58be05f1fb7d0f;hpb=89b2668811eac6023ad58322e2f9970ddb6a27c9;p=kivitendo-erp.git diff --git a/SL/PriceSource/ALL.pm b/SL/PriceSource/ALL.pm index f9d86001c..dd6ee2faa 100644 --- a/SL/PriceSource/ALL.pm +++ b/SL/PriceSource/ALL.pm @@ -7,23 +7,26 @@ use SL::PriceSource::Makemodel; use SL::PriceSource::Customer; use SL::PriceSource::Vendor; use SL::PriceSource::Business; +use SL::PriceSource::PriceRules; my %price_sources_by_name = ( - master_data => 'SL::PriceSource::MasterData', - customer => 'SL::PriceSource::Customer', - vendor => 'SL::PriceSource::Vendor', - pricegroup => 'SL::PriceSource::Pricegroup', - makemodel => 'SL::PriceSource::Makemodel', - business => 'SL::PriceSource::Business', + master_data => 'SL::PriceSource::MasterData', + customer_discount => 'SL::PriceSource::Customer', + vendor_discount => 'SL::PriceSource::Vendor', + pricegroup => 'SL::PriceSource::Pricegroup', + makemodel => 'SL::PriceSource::Makemodel', + business => 'SL::PriceSource::Business', + price_rules => 'SL::PriceSource::PriceRules', ); my @price_sources_order = qw( master_data - customer - vendor + customer_discount + vendor_discount pricegroup makemodel business + price_rules ); sub all_enabled_price_sources {