[18.0][MIG] stock_picking_line_price: Migration to 18.0#714
[18.0][MIG] stock_picking_line_price: Migration to 18.0#714
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR migrates the stock_picking_line_price module from a previous version to Odoo 18.0. The module adds price display functionality to stock picking lines.
Key changes:
- Updates module version to 18.0.1.0.0 in the manifest
- Adds view inheritance to display price_unit field in stock picking forms
- Includes standard module structure with README and pyproject.toml
Reviewed Changes
Copilot reviewed 4 out of 6 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
__manifest__.py |
Updates module metadata for 18.0 version with dependencies and data files |
views/stock_picking_views.xml |
Adds view inheritance to display readonly price_unit field after product_id |
pyproject.toml |
Adds build system configuration using whool |
README.rst |
Provides module documentation with description and contributor information |
| <field name="priority" eval="20" /> | ||
| <field name="arch" type="xml"> | ||
| <xpath | ||
| expr="//notebook/page/field[@name='move_ids_without_package']/list/field[@name='product_id']" |
There was a problem hiding this comment.
The XPath expression is fragile and may break if the stock module's view structure changes. Consider using a more specific xpath that targets a unique element or use the field's explicit position in the tree structure.
| expr="//notebook/page/field[@name='move_ids_without_package']/list/field[@name='product_id']" | |
| expr="//field[@name='move_ids_without_package']//field[@name='product_id']" |
82c50e3 to
613d8c1
Compare
|
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
613d8c1 to
e1bdfda
Compare
No description provided.