Skip to content

Commit

Permalink
[ADD] mrp_work_orders_calendar: Work order calendar view by center.
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredoavanzosc committed Dec 2, 2016
1 parent d9fcd0e commit d460c5a
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 0 deletions.
17 changes: 17 additions & 0 deletions mrp_work_orders_calendar/README.rst
@@ -0,0 +1,17 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

========================
MRP work orders calendar
========================

* Work orders calendar view by center.

Credits
=======

Contributors
------------
* Ana Juaristi <anajuaristi@avanzosc.es>
* Alfredo de la Fuente <alfredodelafuente@avanzosc.es>
3 changes: 3 additions & 0 deletions mrp_work_orders_calendar/__init__.py
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# (c) 2016 Alfredo de la Fuente - AvanzOSC
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
23 changes: 23 additions & 0 deletions mrp_work_orders_calendar/__openerp__.py
@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# (c) 2016 Alfredo de la Fuente - AvanzOSC
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
"name": "MRP Work Orders Calendar",
"version": "8.0.1.0.0",
"category": "Manufacturing",
"license": "AGPL-3",
"author": "OdooMRP team,"
"AvanzOSC,",
'website': "http://www.odoomrp.com",
"contributors": [
"Ana Juaristi <anajuaristi@avanzosc.es>",
"Alfredo de la Fuente <alfredodelafuente@avanzosc.es>",
],
"depends": [
"mrp_operations_extension",
],
"data": [
"views/mrp_production_workcenter_line_view.xml",
],
"installable": True,
}
17 changes: 17 additions & 0 deletions mrp_work_orders_calendar/i18n/es.po
@@ -0,0 +1,17 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mrp_work_orders_calendar
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-02 08:37+0000\n"
"PO-Revision-Date: 2016-12-02 08:37+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"

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="workcenter_line_future_calendar_inh_bycenter">
<field name="name">workcenter.line.future.calendar.inh.bycenter</field>
<field name="model">mrp.production.workcenter.line</field>
<field name="inherit_id" ref="mrp_operations_extension.workcenter_line_future_calendar" />
<field name="arch" type="xml">
<calendar position="attributes">
<attribute name="color">workcenter_id</attribute>
</calendar>
</field>
</record>
</data>
</openerp>

0 comments on commit d460c5a

Please sign in to comment.