Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADD] mrp_work_orders_calendar: Work order calendar view by center. #149

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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>