Skip to content

Commit

Permalink
[IMP] stock_picking_analytic: add picking analytic account in invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyOliveira98 committed Sep 17, 2024
1 parent 50d217d commit 30c51c1
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 5 deletions.
1 change: 1 addition & 0 deletions oca_dependencies.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# See https://github.com/OCA/odoo-community.org/blob/master/website/Contribution/CONTRIBUTING.rst#oca_dependencies-txt
account-invoicing
1 change: 1 addition & 0 deletions stock_picking_analytic/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Contributors

* Benoît Aimont <[email protected]>
* Denis Roussel <[email protected]>
* Wesley Oliveira <[email protected]>

Maintainers
~~~~~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions stock_picking_analytic/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"website": "https://github.com/OCA/account-analytic",
"depends": [
"stock_analytic",
"stock_picking_invoicing",
"base_view_inheritance_extension",
],
"data": [
Expand Down
1 change: 1 addition & 0 deletions stock_picking_analytic/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from . import stock_picking
from . import stock_invoice_onshipping
21 changes: 21 additions & 0 deletions stock_picking_analytic/models/stock_invoice_onshipping.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2024 - TODAY, Wesley Oliveira <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class StockInvoiceOnshipping(models.TransientModel):

_inherit = "stock.invoice.onshipping"

def _get_invoice_line_values(self, moves, invoice_values, invoice):
"""
Include the analytic account filled in picking when creating an invoice
"""
values = super(StockInvoiceOnshipping, self)._get_invoice_line_values(

Check warning on line 15 in stock_picking_analytic/models/stock_invoice_onshipping.py

View check run for this annotation

Codecov / codecov/patch

stock_picking_analytic/models/stock_invoice_onshipping.py#L15

Added line #L15 was not covered by tests
moves, invoice_values, invoice
)
move = fields.first(moves)

Check warning on line 18 in stock_picking_analytic/models/stock_invoice_onshipping.py

View check run for this annotation

Codecov / codecov/patch

stock_picking_analytic/models/stock_invoice_onshipping.py#L18

Added line #L18 was not covered by tests
if move.analytic_account_id:
values["analytic_account_id"] = move.analytic_account_id
return values

Check warning on line 21 in stock_picking_analytic/models/stock_invoice_onshipping.py

View check run for this annotation

Codecov / codecov/patch

stock_picking_analytic/models/stock_invoice_onshipping.py#L20-L21

Added lines #L20 - L21 were not covered by tests
1 change: 1 addition & 0 deletions stock_picking_analytic/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
* Benoît Aimont <[email protected]>
* Denis Roussel <[email protected]>
* Wesley Oliveira <[email protected]>
13 changes: 8 additions & 5 deletions stock_picking_analytic/static/description/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
Expand All @@ -9,10 +8,11 @@

/*
:Author: David Goodger ([email protected])
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.

Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.

See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
Expand Down Expand Up @@ -275,7 +275,7 @@
margin-left: 2em ;
margin-right: 2em }

pre.code .ln { color: grey; } /* line numbers */
pre.code .ln { color: gray; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
Expand All @@ -301,7 +301,7 @@
span.pre {
white-space: pre }

span.problematic {
span.problematic, pre.problematic {
color: red }

span.section-subtitle {
Expand Down Expand Up @@ -404,12 +404,15 @@ <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
<ul class="simple">
<li>Benoît Aimont &lt;<a class="reference external" href="mailto:benoit.aimont&#64;acsone.eu">benoit.aimont&#64;acsone.eu</a>&gt;</li>
<li>Denis Roussel &lt;<a class="reference external" href="mailto:denis.roussel&#64;acsone.eu">denis.roussel&#64;acsone.eu</a>&gt;</li>
<li>Wesley Oliveira &lt;<a class="reference external" href="mailto:wesley.oliveira&#64;escodoo.com.br">wesley.oliveira&#64;escodoo.com.br</a>&gt;</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
Expand Down

0 comments on commit 30c51c1

Please sign in to comment.