Skip to content

Commit

Permalink
Merge PR #96 into 10.0
Browse files Browse the repository at this point in the history
Signed-off-by rvalyi
  • Loading branch information
OCA-git-bot committed Sep 13, 2019
2 parents 62c7d89 + 3b14c2f commit 97281a6
Show file tree
Hide file tree
Showing 18 changed files with 721 additions and 0 deletions.
94 changes: 94 additions & 0 deletions account_fiscal_position_rule_sale_stock/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
=======================================
Account Fiscal Position Rule Sale Stock
=======================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--fiscal--rule-lightgray.png?logo=github
:target: https://github.com/OCA/account-fiscal-rule/tree/10.0/account_fiscal_position_rule_sale_stock
:alt: OCA/account-fiscal-rule
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-fiscal-rule-10-0/account-fiscal-rule-10-0-account_fiscal_position_rule_sale_stock
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/93/10.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module enables the account_fiscal_position_rule features (see module README) in the context of a sale order with a delivery order (sale and stock modules).

**Table of contents**

.. contents::
:local:

Configuration
=============

No configuration required.

Changelog
=========

10.0.1.0.0 (2019-08-16)
~~~~~~~~~~~~~~~~~~~~~~~

* Module creation. It is an extraction from account_fiscal_rule_stock for a better modularization.


Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-fiscal-rule/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-fiscal-rule/issues/new?body=module:%20account_fiscal_position_rule_sale_stock%0Aversion:%2010.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Akretion

Contributors
~~~~~~~~~~~~

* Magno Costa <magno.costa@akretion.com.br>

Other credits
~~~~~~~~~~~~~

The development of this module has been financially supported by:

* Akretion

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

This module is part of the `OCA/account-fiscal-rule <https://github.com/OCA/account-fiscal-rule/tree/10.0/account_fiscal_position_rule_sale_stock>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions account_fiscal_position_rule_sale_stock/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import tests
21 changes: 21 additions & 0 deletions account_fiscal_position_rule_sale_stock/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# @ 2019 Akretion - www.akretion.com.br -
# @author Magno Costa <magno.costa@akretion.com.br>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': 'Account Fiscal Position Rule Sale Stock',
'version': '10.0.1.0.0',
'category': 'Generic Modules/Accounting',
'author': "Akretion,Odoo Community Association (OCA)",
'license': 'AGPL-3',
'website': 'http://www.akretion.com',
'depends': [
'sale_stock',
'account_fiscal_position_rule_stock',
],
'data': [
'security/ir.model.access.csv',
],
'installable': True,
}
22 changes: 22 additions & 0 deletions account_fiscal_position_rule_sale_stock/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_fiscal_position_rule_sale_stock
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-16 18:28+0000\n"
"PO-Revision-Date: 2019-08-16 18:28+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: account_fiscal_position_rule_sale_stock
#: model:ir.model,name:account_fiscal_position_rule_sale_stock.model_stock_move
msgid "Stock Move"
msgstr "Movimento de Estoque"

1 change: 1 addition & 0 deletions account_fiscal_position_rule_sale_stock/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import stock_picking
18 changes: 18 additions & 0 deletions account_fiscal_position_rule_sale_stock/models/stock_picking.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
# @ 2019 Akretion - www.akretion.com.br -
# @author Magno Costa <magno.costa@akretion.com.br>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo import models


class StockMove(models.Model):
_inherit = 'stock.move'

def _get_new_picking_values(self):
result = super(StockMove, self)._get_new_picking_values()

result['fiscal_position_id'] = \
self.procurement_id.sale_line_id.order_id.fiscal_position_id and \
self.procurement_id.sale_line_id.order_id.fiscal_position_id.id
return result
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
No configuration required.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Magno Costa <magno.costa@akretion.com.br>
3 changes: 3 additions & 0 deletions account_fiscal_position_rule_sale_stock/readme/CREDITS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The development of this module has been financially supported by:

* Akretion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module enables the account_fiscal_position_rule features (see module README) in the context of a sale order with a delivery order (sale and stock modules).
5 changes: 5 additions & 0 deletions account_fiscal_position_rule_sale_stock/readme/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
10.0.1.0.0 (2019-08-16)
~~~~~~~~~~~~~~~~~~~~~~~

* Module creation. It is an extraction from account_fiscal_rule_stock for a better modularization.

Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"

0 comments on commit 97281a6

Please sign in to comment.