[18.0][MIG] purchase_stock_order_description: Migration to 18.0#735
[18.0][MIG] purchase_stock_order_description: Migration to 18.0#735
Conversation
There was a problem hiding this comment.
Pull Request Overview
This is a migration of the purchase_stock_order_description module from a previous version to Odoo 18.0. The module propagates purchase order descriptions to picking move lines.
- Migration to version 18.0.1.0.0 with updated copyright and dependency information
- Addition of module documentation and configuration files
- Implementation of purchase order line customization to pass descriptions to stock moves
Reviewed Changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
__manifest__.py |
Module manifest with 18.0 version and dependencies |
__init__.py |
Module initialization importing models |
models/__init__.py |
Models package initialization |
models/purchase_order.py |
Core functionality to propagate descriptions to stock moves |
README.rst |
Module documentation in reStructuredText format |
readme/DESCRIPTION.md |
Brief module description |
readme/CONTRIBUTORS.md |
List of contributors |
pyproject.toml |
Python project configuration |
static/description/index.html |
HTML documentation for module description |
| # Copyright NuoBiT - Eric Antones <eantones@nuobit.com> | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) | ||
|
|
||
| from odoo import models |
There was a problem hiding this comment.
Missing 2 blank lines between the copyright/license header and imports. There should be exactly 2 lines between the header and imports according to the coding guidelines.
| from odoo import models | ||
|
|
||
|
|
||
| class PurchaseOrderLine(models.Model): |
There was a problem hiding this comment.
Missing 1 blank line between imports and code. There should be exactly 2 lines between imports and the start of the code according to the coding guidelines.
|
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. |
No description provided.