[FIX] product_pricelist_total_margin: Change field string to avoid redundancy
- Change margin_type string from 'Margin Type' to 'Calculation Method' - Fixes pylint warning W8113 (attribute-string-redundant)
This commit is contained in:
parent
0f239601ce
commit
55406ca22d
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ class ProductPricelistItem(models.Model):
|
|||
("markup", "Markup (on cost)"),
|
||||
("margin", "Commercial Margin (on PVP)"),
|
||||
],
|
||||
string="Margin Type",
|
||||
string="Calculation Method",
|
||||
default="markup",
|
||||
help="Type of margin calculation:\n"
|
||||
"- Markup: PVP = Cost × (1 + markup%). Margin is calculated on cost.\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue