mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
Merge pull request #75 from oihane/9.0-partner_note
[MIG] Make mrp_production_partner_note installable in v9
This commit is contained in:
@@ -7,9 +7,12 @@ python:
|
||||
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- pov-wkhtmltopdf
|
||||
packages:
|
||||
- expect-dev # provides unbuffer utility
|
||||
- python-lxml # because pip installation is slow
|
||||
- wkhtmltopdf
|
||||
|
||||
env:
|
||||
global:
|
||||
@@ -26,6 +29,10 @@ env:
|
||||
virtualenv:
|
||||
system_site_packages: true
|
||||
|
||||
before_install:
|
||||
- "export DISPLAY=:99.0"
|
||||
- "sh -e /etc/init.d/xvfb start"
|
||||
|
||||
install:
|
||||
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
||||
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
|
||||
|
||||
@@ -1,12 +1,24 @@
|
||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:alt: License: AGPL-3
|
||||
|
||||
Partner production notes
|
||||
========================
|
||||
==================================
|
||||
Partner notes in production orders
|
||||
==================================
|
||||
|
||||
This module adds the possibility of defining a note for production in the
|
||||
partner so when the MO is automatically created, this note will be written.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
* Go to Sales > Sales > Customers
|
||||
* Add a note for manufacturing in internal notes tab
|
||||
* When a manufacturing order is created automatically from a sale order it will
|
||||
be added that note
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/129/9.0
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
@@ -14,8 +26,7 @@ Bug Tracker
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/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
|
||||
`here <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_production_partner_note%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
`here <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_production_partner_note%0Aversion:%209.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
# For copyright and license notices, see __openerp__.py file in root directory
|
||||
##############################################################################
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from . import models
|
||||
|
||||
@@ -1,24 +1,11 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see http://www.gnu.org/licenses/.
|
||||
#
|
||||
##############################################################################
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
{
|
||||
"name": "MRP - Partner production notes",
|
||||
"version": "8.0.1.0.0",
|
||||
"version": "9.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"author": "OdooMRP team,"
|
||||
"AvanzOSC,"
|
||||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
||||
@@ -37,5 +24,8 @@
|
||||
"data": [
|
||||
"views/res_partner_view.xml",
|
||||
],
|
||||
'installable': False
|
||||
"images": [
|
||||
"images/partner_note.png",
|
||||
],
|
||||
"installable": True,
|
||||
}
|
||||
|
||||
BIN
mrp_production_partner_note/images/partner_note.png
Normal file
BIN
mrp_production_partner_note/images/partner_note.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 148 KiB |
@@ -1,7 +1,6 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
# For copyright and license notices, see __openerp__.py file in root directory
|
||||
##############################################################################
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from . import res_partner
|
||||
from . import procurement_order
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
# For copyright and license notices, see __openerp__.py file in root directory
|
||||
##############################################################################
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from openerp import models, api
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
# For copyright and license notices, see __openerp__.py file in root directory
|
||||
##############################################################################
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from openerp import models, fields
|
||||
|
||||
|
||||
5
mrp_production_partner_note/tests/__init__.py
Normal file
5
mrp_production_partner_note/tests/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2016 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from . import test_mrp_production_partner_note
|
||||
@@ -0,0 +1,48 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2016 Oihane Crucelaegui - AvanzOSC
|
||||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
||||
|
||||
from openerp.tests import common
|
||||
|
||||
|
||||
class TestMrpProductionPartnerNote(common.TransactionCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestMrpProductionPartnerNote, self).setUp()
|
||||
self.note = "This is a test production note"
|
||||
self.procurement_model = self.env['procurement.order']
|
||||
self.product = self.browse_ref('product.product_product_18')
|
||||
self.product.route_ids = [
|
||||
(4, self.ref('mrp.route_warehouse0_manufacture')),
|
||||
(4, self.ref('stock.route_warehouse0_mto'))]
|
||||
self.partner = self.browse_ref('base.res_partner_2')
|
||||
self.partner.write({
|
||||
'mrp_notes': self.note})
|
||||
|
||||
def test_production_notes(self):
|
||||
sale_order = self.env['sale.order'].create({
|
||||
'partner_id': self.partner.id,
|
||||
'partner_invoice_id': self.partner.id,
|
||||
'partner_shipping_id': self.partner.id,
|
||||
'order_line': [(0, 0, {
|
||||
'name': self.product.name,
|
||||
'product_id': self.product.id,
|
||||
'product_uom_qty': 2,
|
||||
'product_uom': self.product.uom_id.id,
|
||||
'price_unit': self.product.list_price})],
|
||||
'pricelist_id': self.env.ref('product.list0').id,
|
||||
})
|
||||
sale_order.action_confirm()
|
||||
procurement = self.procurement_model.search(
|
||||
[('sale_line_id', 'in', sale_order.mapped('order_line').ids)])
|
||||
procurements = self.procurement_model.search(
|
||||
[('group_id', '=', procurement.group_id.id)])
|
||||
procurements.run()
|
||||
productions = procurements.mapped('production_id')
|
||||
for note in productions.mapped('notes'):
|
||||
self.assertEqual(
|
||||
"<p>%s</p>" % (self.note), note,
|
||||
"MO note must be the same as '%s'" % (note))
|
||||
self.assertEqual(
|
||||
self.partner.mrp_notes, note,
|
||||
"MO note must be taken from partner")
|
||||
@@ -1,17 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="res_partner_production_notes_form_view">
|
||||
<field name="name">res.partner.production_notes.form</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="base.view_partner_form" />
|
||||
<field name="arch" type="xml">
|
||||
<page name="internal_notes" position="inside">
|
||||
<label for="mrp_notes" />
|
||||
<field name="mrp_notes" />
|
||||
</page>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
<odoo>
|
||||
<record id="res_partner_production_notes_form_view" model="ir.ui.view">
|
||||
<field name="name">res.partner.production_notes.form</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="base.view_partner_form" />
|
||||
<field name="arch" type="xml">
|
||||
<page name="internal_notes" position="inside">
|
||||
<label for="mrp_notes" />
|
||||
<field name="mrp_notes" />
|
||||
</page>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
||||
Reference in New Issue
Block a user