Шаблон ценовника (прозор ID-337)
прозор: Шаблон ценовника
опис: Maintain Price List Schema
помоћ: Price List schema defines calculation rules for price lists
TAB: Шаблон ценовника
опис: Шаблон ценовника
помоћ Price List schema defines calculation rules for price lists
Датотека:Шаблон ценовника - Шаблон ценовника - прозор (iDempiere 1.0.0).png
име | име | опис | помоћ | Спецификације |
---|---|---|---|---|
Client | Клијент | Клијент/закупац за ову инсталацију. | Клијент је фирма или правно лице Не можете да делите податке између клијената. Закупац је синоним за клијента | AD_Client_ID numeric(10) NOT NULL Table Direct |
Organization | Организација | Организациони ентитет унутар клијента | Организација је организациона јединица клијента или правни ентитит - нпр. продавница, одељење Подаци између организација су заједнички. | AD_Org_ID numeric(10) NOT NULL Table Direct |
Name | Назив | Алфанумерички идентификатор ентитета. | Назив ентитета (слога) се користи приликом основне претраге као додатна опција уз кључну реч - ид број. Назив може бити дужине до 60 карактера. | Name character varying(60) NOT NULL String |
Description | Опис | Optional short description of the record | Опис је ограничен на 255 карактера. | Description character varying(255) String |
Active | Активан | Слог је активан у систему. | Постоје два главна метода да се слог учини недоступним унутар система: један је да се обрише слог, а други је да се слог де-активира. Деактивиран слог није доступан за избор, али је доступан за извештаје. Постоје два разлога за де-активирање слога, а не брисање: (1) Систему је потребан слог за потребе контроле/провере. (2) Овај слог је повезан са другим слогом. Нпр., не можете обрисати пословног партнера, ако постоје фактуре у којима се појављује исти. Ви деактивирате пословног партнера и на тај начин спречавате да се он користи приликом будућег уноса неког документа. | IsActive character(1) NOT NULL Yes-No |
Valid from | Важи од | Valid from including this date (first day) | The Valid From date indicates the first day of a date range | ValidFrom timestamp without time zone NOT NULL Date |
Discount Type | Врста попуста | Type of trade discount calculation | Type of procedure used to calculate the trade discount percentage | DiscountType character(1) NOT NULL List |
Renumber | Ренумерисање | Ренумерисање уноса попуста | null | Processing character(1) Button |
TAB: Schema Line
опис: Trade Discount Price List Lines
помоћ Pricelists are created based on Product Purchase and Category Discounts.
The parameters listed here allow to copy and calculate pricelists.
The calculation:
- Copy and convert price from referenced price list
- result plus Surcharge Amount
- result minus Discount
- if resulting price is less than the original limit price plus min Margin, use this price (only if Margin is not zero)
- if resulting price is more than the original limit price plus max Margin, use this price (only if Margin us not zero)
- Round resulting price
The Formula is
NewPrice = (Convert(BasePrice) + Surcharge) * (100-Discount) / 100;
if MinMargin <> 0 then NewPrice = Max (NewPrice, Convert(OrigLimitPrice) + MinMargin);
if MaxMargin <> 0 then NewPrice = Min (NewPrice, Convert(OrigLimitPrice) + MaxMargin);
Example: (assuming same currency)
Original Prices: List=300, Standard=250, Limit=200;
New List Price: Base=List, Surcharge=0, Discount=0, Round
Датотека:Шаблон ценовника - Schema Line - прозор (iDempiere 1.0.0).png
име | име | опис | помоћ | Спецификације |
---|---|---|---|---|
Client | Клијент | Клијент/закупац за ову инсталацију. | Клијент је фирма или правно лице Не можете да делите податке између клијената. Закупац је синоним за клијента | AD_Client_ID numeric(10) NOT NULL Table Direct |
Organization | Организација | Организациони ентитет унутар клијента | Организација је организациона јединица клијента или правни ентитит - нпр. продавница, одељење Подаци између организација су заједнички. | AD_Org_ID numeric(10) NOT NULL Table Direct |
Price List Schema | Шаблон ценовника | Schema to calculate price lists | null | M_DiscountSchema_ID numeric(10) NOT NULL Table |
Active | Активан | Слог је активан у систему. | Постоје два главна метода да се слог учини недоступним унутар система: један је да се обрише слог, а други је да се слог де-активира. Деактивиран слог није доступан за избор, али је доступан за извештаје. Постоје два разлога за де-активирање слога, а не брисање: (1) Систему је потребан слог за потребе контроле/провере. (2) Овај слог је повезан са другим слогом. Нпр., не можете обрисати пословног партнера, ако постоје фактуре у којима се појављује исти. Ви деактивирате пословног партнера и на тај начин спречавате да се он користи приликом будућег уноса неког документа. | IsActive character(1) NOT NULL Yes-No |
Sequence | Секвенца | Method of ordering records; lowest number comes first | The Sequence indicates the order of records | SeqNo numeric(10) NOT NULL Integer |
Currency Type | Врста валуте | Currency Conversion Rate Type | The Currency Conversion Rate Type lets you define different type of rates, e.g. Spot, Corporate and/or Sell/Buy rates. | C_ConversionType_ID numeric(10) NOT NULL Table Direct |
Conversion Date | Датум конверзије | Date for selecting conversion rate | The Conversion Date identifies the date used for currency conversion. The conversion rate chosen must include this date in it's date range | ConversionDate timestamp without time zone NOT NULL Date |
Business Partner | Пословни партнер | Означава пословног партнера | Пословни партнер је било ко, са којим вршите трансакције. Он може бити добављач, купац, запослени или референт продаје. | C_BPartner_ID numeric(10) Search |
Product | Производ | Product, Service, Item | Identifies an item which is either purchased or sold in this organization. | M_Product_ID numeric(10) Search |
Product Category | Категорија производа | Category of a Product | Identifies the category which this product belongs to. Product categories are used for pricing and selection. | M_Product_Category_ID numeric(10) Table Direct |
Classification | Класификација | Classification for grouping | The Classification can be used to optionally group products. | Classification character varying(12) String |
Group1 | Група1 | null | null | Group1 character varying(255) String |
Group2 | Група2 | null | null | Group2 character varying(255) String |
List price Base | Основа каталошке цене | Price used as the basis for price list calculations | The List Price Base indicates the price to use as the basis for the calculation of a new price list. | List_Base character(1) NOT NULL List |
List price min Margin | Минимална маржа каталошке цене | Минимална маржа цене за производ | The List Price Min Margin indicates the minimum margin for a product. The margin is calculated by subtracting the original list price from the newly calculated price. Ако поље садржи 0.00 онда се игнорише. | List_MinAmt numeric NOT NULL Amount |
List price Surcharge Amount | List price Surcharge Amount | List Price Surcharge Amount | The List Price Surcharge Amount indicates the amount to be added to the price prior to multiplication. | List_AddAmt numeric NOT NULL Amount |
List price max Margin | Макс. маржа каталошке цене | Максимална маржа цене за производ | The List Price Max Margin indicates the maximum margin for a product. The margin is calculated by subtracting the original list price from the newly calculated price. Ако поље садржи 0.00 онда се игнорише. | List_MaxAmt numeric NOT NULL Amount |
List price Discount % | Попуст каталошке цене % | Попуст на цену изражено процентом | The List Price Discount Percentage indicates the percentage discount which will be subtracted from the base price. A negative amount indicates the percentage which will be added to the base price. | List_Discount numeric NOT NULL Number |
List price Rounding | Заокруживање каталошке цене | Правило за заокруживање финалне каталошке цене | The List Price Rounding indicates how the final list price will be rounded. | List_Rounding character(1) NOT NULL List |
Fixed List Price | Fixed List Price | Fixes List Price (not calculated) | null | List_Fixed numeric Amount |
Standard price Base | База стандардне цене | Base price for calculating new standard price | The Standard Price Base indicates the price to use as the basis for the calculation of a new price standard. | Std_Base character(1) NOT NULL List |
Standard price min Margin | Стандардна цена мин. маржа | Минимална дозвољена маржа за производ | The Standard Price Min Margin indicates the minimum margin for a product. The margin is calculated by subtracting the original Standard price from the newly calculated price. Ако поље садржи 0.00 онда се игнорише. | Std_MinAmt numeric NOT NULL Amount |
Standard price Surcharge Amount | Standard price Surcharge Amount | Amount added to a price as a surcharge | The Standard Price Surcharge Amount indicates the amount to be added to the price prior to multiplication. | Std_AddAmt numeric NOT NULL Amount |
Standard max Margin | Стандард макс. маржа | Maximum margin allowed for a product | The Standard Price Max Margin indicates the maximum margin for a product. The margin is calculated by subtracting the original Standard price from the newly calculated price. Ако поље садржи 0.00 онда се игнорише. | Std_MaxAmt numeric NOT NULL Amount |
Standard price Discount % | Стандардна цена попуст % | Discount percentage to subtract from base price | The Standard Price Discount Percentage indicates the percentage discount which will be subtracted from the base price. A negative amount indicates the percentage which will be added to the base price. | Std_Discount numeric NOT NULL Number |
Standard price Rounding | Стандардна цена заокруживање | Правило заокруживања за израчунату цену | The Standard Price Rounding indicates how the final Standard price will be rounded. | Std_Rounding character(1) NOT NULL List |
Fixed Standard Price | Fixed Standard Price | Fixed Standard Price (not calculated) | null | Std_Fixed numeric Amount |
Limit price Base | База граничне цене | Base price for calculation of the new price | Identifies the price to be used as the base for calculating a new price list. | Limit_Base character(1) NOT NULL List |
Limit price min Margin | Гранична цена мин. маржа | Minimum difference to original limit price; ignored if zero | Indicates the minimum margin for a product. The margin is calculated by subtracting the original limit price from the newly calculated price. Ако поље садржи 0.00 онда се игнорише. | Limit_MinAmt numeric NOT NULL Amount |
Limit price Surcharge Amount | Limit price Surcharge Amount | Amount added to the converted/copied price before multiplying | Indicates the amount to be added to the Limit price prior to multiplication. | Limit_AddAmt numeric NOT NULL Amount |
Limit price max Margin | Limit price max Margin | Maximum difference to original limit price; ignored if zero | Indicates the maximum margin for a product. The margin is calculated by subtracting the original limit price from the newly calculated price. Ако поље садржи 0.00 онда се игнорише. | Limit_MaxAmt numeric NOT NULL Amount |
Limit price Discount % | Гранична цена попуст % | Discount in percent to be subtracted from base, if negative it will be added to base price | Indicates the discount in percent to be subtracted from base, if negative it will be added to base price | Limit_Discount numeric NOT NULL Number |
Limit price Rounding | Ограничи заокружење цене | Rounding of the final result | A drop down list box which indicates the rounding (if any) will apply to the final prices in this price list. | Limit_Rounding character(1) NOT NULL List |
Fixed Limit Price | Фиксни лимит цене | Fixed Limit Price (not calculated) | null | Limit_Fixed numeric Amount |