-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from tegin/16.0-mig-cb_maintenance
[16.0][MIG] cb_maintenance: Migration to 16.0
- Loading branch information
Showing
41 changed files
with
3,005 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CB custom views and other functions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from . import models | ||
from . import wizards |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2019 Creu Blanca | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Cb Maintenance", | ||
"summary": """ | ||
CB maintenance base""", | ||
"version": "16.0.1.0.0", | ||
"license": "AGPL-3", | ||
"author": "CreuBlanca", | ||
"website": "https://github.com/tegin/cb-maintenance", | ||
"depends": [ | ||
"base_fontawesome", | ||
"base_maintenance", | ||
"attachment_indexation", | ||
"maintenance_equipment_category_hierarchy", | ||
"maintenance_equipment_image", | ||
"maintenance_equipment_hierarchy", | ||
"maintenance_location", | ||
"maintenance_request_sequence", | ||
"maintenance_request_stage_transition", | ||
"maintenance_team_hierarchy", | ||
"web_widget_open_tab", | ||
"base", | ||
], | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"wizards/wizard_close_request.xml", | ||
"views/maintenance_plan.xml", | ||
"wizards/wizard_mass_change_stage.xml", | ||
"data/equipment_sequence_data.xml", | ||
"data/mail_templates.xml", | ||
"views/maintenance_equipment.xml", | ||
"views/maintenance_equipment_category.xml", | ||
"views/maintenance_request.xml", | ||
"views/maintenance_stage.xml", | ||
"views/maintenance_team.xml", | ||
"views/res_partner.xml", | ||
"wizards/wizard_create_maintenance_request.xml", | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<odoo noupdate="1"> | ||
<record id="seq_maintenance_equipment" model="ir.sequence"> | ||
<field name="name">Maintenance Equipment Sequence</field> | ||
<field name="code">maintenance.equipment.sequence</field> | ||
<field eval="4" name="padding" /> | ||
<field name="prefix">MQ-</field> | ||
</record> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<odoo noupdate="1"> | ||
<template id="message_origin_split_link"> | ||
<p>This <t t-esc="self._description.lower()" /> has generated: | ||
<t t-foreach="created" t-as="o"> | ||
<a href="#" t-att-data-oe-model="o._name" t-att-data-oe-id="o.id"> | ||
<t t-esc="o.display_name" /> | ||
</a> | ||
<span t-if="created.ids[-1:] != o.ids">, </span> | ||
</t> | ||
</p> | ||
</template> | ||
</odoo> |
Oops, something went wrong.