ITSA points 28.06

This commit is contained in:
2026-06-28 13:31:48 +02:00
parent b7b54c8b7b
commit f45cdb0807
18 changed files with 718 additions and 35 deletions

View File

@@ -21,7 +21,7 @@ PHYSICAL_VALUATION_TYPES = [
'market',
]
DERIVATIVE_VALUATION_TYPES = ['derivative']
MTM_VALUATION_TYPES = ['mtm']
MTM_VALUATION_TYPES = ['mtm', 'pur. mtm', 'sale mtm']
ALL_VALUATION_TYPES = (
PHYSICAL_VALUATION_TYPES + DERIVATIVE_VALUATION_TYPES
+ MTM_VALUATION_TYPES)
@@ -496,6 +496,8 @@ class CTRMMtmPnl(ModelSQL, ModelView):
('shipment fee', 'Shipment fee'),
('market', 'Market'),
('mtm', 'Mtm'),
('pur. mtm', 'Pur. Mtm'),
('sale mtm', 'Sale Mtm'),
('derivative', 'Derivative'),
], "Type")
reference = fields.Char("Reference")