From: <rc...@us...> - 2014-07-23 20:05:29
|
Revision: 6793 http://sourceforge.net/p/web-erp/reponame/6793 Author: rchacon Date: 2014-07-23 20:05:25 +0000 (Wed, 23 Jul 2014) Log Message: ----------- Adds ViewTopic and BookMark to PDFPriceList.php. Adds help info about Print a price list by inventory category. Modified Paths: -------------- trunk/PDFPriceList.php trunk/doc/Manual/ManualSalesTypes.html Modified: trunk/PDFPriceList.php =================================================================== --- trunk/PDFPriceList.php 2014-07-19 05:22:40 UTC (rev 6792) +++ trunk/PDFPriceList.php 2014-07-23 20:05:25 UTC (rev 6793) @@ -243,11 +243,13 @@ } else { /*The option to print PDF was not hit */ - $Title= _('Price Listing'); + $Title = _('Price Listing'); + $ViewTopic = 'SalesTypes';// Filename in ManualContents.php's TOC. + $BookMark = 'PDFPriceList';// Anchor's id in the manual's html document. include('includes/header.inc'); echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/customer.png" title="' . _('Price List') . '" alt="" /> - ' . ' ' . _('Print a price list') . '</p>'; + ' . ' ' . _('Print a price list by inventory category') . '</p>'; if (!isset($_POST['FromCriteria']) or !isset($_POST['ToCriteria'])) { Modified: trunk/doc/Manual/ManualSalesTypes.html =================================================================== --- trunk/doc/Manual/ManualSalesTypes.html 2014-07-19 05:22:40 UTC (rev 6792) +++ trunk/doc/Manual/ManualSalesTypes.html 2014-07-23 20:05:25 UTC (rev 6793) @@ -1,26 +1,36 @@ -<a id="SalesTypes"><h1>Sales Types / Price Lists</h1></a> -<p> -Sales types are the broad categories which sales fall under, they should not be confused with stock categories. They are arbitrary headings for the different pricing arrangements applicable to each type of customer. For example the fashion house might have sales types for: -</p> +<h1><a id="SalesTypes">Sales Types / Price Lists</a></h1> +<p>Sales types are the broad categories which sales fall under, they should not be confused with stock categories. They are arbitrary headings for the different pricing arrangements applicable to each type of customer. For example the fashion house might have sales types for:</p> <ul> - <li>Indented sales - ordered in advance.</li> + <li>Indented sales - ordered in advance.</li> + <li>Stock sales - sold from stock.</li> + <li>Made to Measure - sales made up especially for a customer.</li> +</ul> - <li>Stock sales - sold from stock.</li> - - <li>Made to Measure - sales made up especially for a customer.</li> -</ul> <p>Inventory categories by contrast refer to the type of garment sold. Each customer is defined as belonging to a specific sales type. A sales type could also be used for groupings of customers. Price lists are held against sales types so all customers defined as belonging to the sales type will be on the same pricing.</p> -<p> -Pricing can be set up for each stock item by sales type (and currency), e.g. stock sales would attract a premium for the cost of the increased working capital required or perhaps a discount reflecting the scale of purchasing allowed on volume lines. Sales types for retail, wholesale, trade, special may also be appropriate in other types of business.</p> -<p> -New sales types/price lists can be added and existing ones amended from setup tab, "Sales Type Maintenance"</p> +<p>Pricing can be set up for each stock item by sales type (and currency), e.g. stock sales would attract a premium for the cost of the increased working capital required or perhaps a discount reflecting the scale of purchasing allowed on volume lines. Sales types for retail, wholesale, trade, special may also be appropriate in other types of business.</p> + +<p>New sales types/price lists can be added and existing ones amended from setup tab, "Sales Type Maintenance"</p> + <h2>Sales Type Code</h2> -<p> -This is a 2 character code which is stored against the customer to define the sales type applicable to the customer. It must be unique across all sales types. When entering orders the customer sales type is the key, together with the customer's currency that determines the price list to use.<br> +<p>This is a 2 character code which is stored against the customer to define the sales type applicable to the customer. It must be unique across all sales types. When entering orders the customer sales type is the key, together with the customer's currency that determines the price list to use.</p> + <h2>Sales Type Description</h2> -<p> -20 characters of text are allowed to describe the sales type. This field is used to describe the sales type / price list applicable to the customer. -</p> \ No newline at end of file + +<p>20 characters of text are allowed to describe the sales type. This field is used to describe the sales type / price list applicable to the customer.</p> + +<h2><a id="PDFPriceList">Print a price list by inventory category</a></h2> + +<p>This script helps you by printing prices of inventory items.</p> + +<p>Prices of selected items are sorted by:</p> +<ul> + <li>Currency code (ISO 4217 Codes for the representation of currencies and funds, was set up by developers),</li> + <li>Inventory category code (set up in <i>Inventory Categories Maintenance</i>),</li> + <li>Item code (set up in each <i>Item Maintenance</i>), and</li> + <li>Price start date (set up in each <i>Item Prices</i>).</li> +</ul> + +<p> </p> |