Commit graph

28 commits

Author SHA1 Message Date
snt
55811d54b1 [FIX] product_sale_price_from_pricelist: Actualizar tests para Odoo 18
- Cambiar parámetro qty= a quantity= en llamadas a _compute_price_rule
- Eliminar type/detailed_type de product.product creates
- Añadir campo name a purchase.order.line
- Agregar método _compute_theoritical_price en template
- Crear helpers para leer precios teóricos desde variante
- Corregir variables no usadas y nombres indefinidos
2026-02-12 19:23:29 +01:00
snt
fd83d31188 [FIX] product_sale_price_from_pricelist: Properly handle template vs variant IDs
Instead of converting templates to variants before calling super(), check
the model type when processing results. If working with product.template,
get the variant from the template using browse(). This preserves the
expected ID mapping in the result dictionary and avoids lambda variable
binding issues.

Fixes: KeyError: 9 in pricelist computation
2026-02-12 18:52:56 +01:00
snt
4b78dc4447 [FIX] product_sale_price_from_pricelist: Handle product.template in _compute_price_rule
Added check to ensure _compute_price_rule always works with product.product.
When product.template records are passed, convert them to their variants
before processing. This prevents MissingError when browsing product.product
with template IDs.

Fixes: Record does not exist or has been deleted (Record: product.product(22,))
2026-02-12 18:48:13 +01:00
snt
70ed972e23 [FIX] product_sale_price_from_pricelist: Add last_purchase_price field to template
Added last_purchase_price computed field in product.template as an alias
to last_purchase_price_received. This field is required for compatibility
with Odoo's standard pricelist system which accesses template['last_purchase_price']
during price computation.

Fixes KeyError: 'last_purchase_price' in website shop controller.
2026-02-12 18:45:32 +01:00
snt
f5a689bcc8 [REF] product_sale_price_from_pricelist: Move fields to product.product
- Moved all main fields from product.template to product.product
- Created computed fields in product.template with inverse/search methods
- Moved business logic (_compute_theoritical_price, action_update_list_price) to product.product
- Updated stock_move.py to work directly with product.product
- Fixed searchable field warnings by using compute/inverse/search pattern
- Fixed linting issues: removed unused imports, added return statement, use self.env._() with named placeholders
- Added migration script and CHANGELOG
- Version bumped to 18.0.2.0.0

This fixes pricelist report generation issues and follows Odoo best practices
for product variant handling.
2026-02-12 18:18:44 +01:00
snt
4207afbc3f update pylint10, corrije authors manifest 2026-02-12 17:15:33 +01:00
snt
2a480b74bb Add update price button with notification to product views
- Add action_update_list_price button in form and list views
- Button shows only when compute type is not manual_update
- Return notification message with update results
- Invalidate cache to refresh UI automatically
- Show updated products with old and new prices
- Display skipped products with manual update mode
2026-02-11 21:04:18 +01:00
snt
4d23e98f7b Revertir cambio: eliminar cálculo duplicado de impuestos
El método _get_price() del addon OCA ya maneja correctamente los impuestos
según la configuración de Odoo. El cálculo adicional con compute_all() estaba
duplicando los impuestos cuando price_include estaba activado.

Cambios:
- Eliminado método _compute_price_with_taxes()
- Revertido eskaera_shop() para usar directamente _get_price()
- Revertido add_to_eskaera_cart() para usar directamente _get_price()

El precio mostrado ahora respeta la configuración de impuestos de Odoo
sin duplicación.
2026-02-11 19:54:28 +01:00
snt
3cb0af6a7b [FIX] product_sale_price_from_pricelist: Fix view xpath to use group_standard_price anchor 2026-02-11 18:37:34 +01:00
snt
ec9f5a572c [FIX] product_sale_price_from_pricelist: Fix view syntax for Odoo 18
- Replace attrs syntax with new invisible attribute format
- Fix settings view inheritance to use sale.res_config_settings_view_form
- Add configuration setting in Sales > Pricing section
- Place automatic price pricelist setting after standard pricelist config
2026-02-11 17:26:14 +01:00
snt
69917d1ec2 fix form 2026-02-11 02:55:10 +01:00
snt
80c2617c40 [FIX] product_sale_price_from_pricelist: Fix Odoo 18 compatibility issues
- Fix _compute_price_rule: use 'quantity' positional parameter instead of 'qty'
- Fix stock_move: use 'quantity' instead of 'quantity_done' (Odoo 18 change)
- Fix _get_price return value: extract 'value' key directly from dict
- Add last_purchase_price related field in product.product for pricelist base
- Remove company_dependent+required conflict (use only company_dependent)
- Calculate list_price without taxes (taxes applied automatically on sales)
- Add comprehensive debug logging for price calculations
- Add action_update_list_price to compute theoretical price before updating
- Add 3 new tests for purchase price validation and zero price handling
- Fix _compute_price_rule to handle multiple tax amounts correctly
2026-02-11 01:57:54 +01:00
snt
e27cacd65b [18.0][MIG] product_sale_price_from_pricelist: Port to Odoo 18.0
- Update manifest version to 18.0.1.0.0
- Update view inheritance to use Odoo 18 <block>/<setting> structure
- Update pricelist models for Odoo 18 API changes (qty parameter)
- Remove required=True from company_dependent field
- Add comprehensive test suite (33 tests)
- Tests cover: pricelist calculations, stock moves, product templates, and config settings
2026-02-11 01:06:00 +01:00
snt
1bcc31b810 [ADD] product_sale_price_from_pricelist: módulo para calcular precio de venta desde tarifa 2026-02-11 00:34:05 +01:00
26dbe222dd add READMEs 2025-12-19 09:22:33 +01:00
d43991240a product_sale_price_from_pricelist: remove redundant filter 2025-12-19 09:22:00 +01:00
d5342c73fb product_sale_price_from_pricelist: support uom_po_id != uom_id 2025-12-11 13:50:29 +01:00
7df39dbda8 product_sale_price_from_pricelist: don't update list_price when last_purchase_price_compute_type == manual_update. Add fields to tree product view 2025-11-28 09:46:37 +01:00
93ccb20a17 product_sale_price_from_pricelist: add filter for products that need to update sale price 2025-09-17 12:06:42 +02:00
c17ceb75a3 LaOsaCoop/Odoo16#66 product_sale_price_from_pricelist: fix discounts computation 2025-08-02 09:33:39 +02:00
dafaaf9139 product_sale_price_from_pricelist: round up or down 2025-07-22 13:39:47 +02:00
bf582e5081 LaOsaCoop/Odoo16#6 product_sale_price_from_pricelist: raise an error when no taxes configured in product 2025-07-10 14:12:44 +02:00
80cc00c873 LaOsaCoop/Odoo16#52 fix product_sale_price_from_pricelist to include taxes in final price 2025-07-10 11:18:54 +02:00
eaec1c6b38 product_sale_price_from_pricelist modify product view 2025-07-09 18:44:44 +02:00
9c49ea7ac0 product_sale_price_from_pricelist: fix tranlations 2025-07-09 17:57:10 +02:00
cccd802e45 LaOsaCoop/Odoo16#6 fix product_sale_price_from_pricelist 2025-07-09 17:28:28 +02:00
3ba962653d product_sale_price_from_pricelist: rename field to fix conflict with OCA/purchase_last_price_info 2025-02-05 12:56:02 +01:00
188f32a052 add product_sale_price_from_pricelist 2025-02-04 21:15:51 +01:00