Skip to content

Commit

Permalink
BSRTL-169: purchase order related notification
Browse files Browse the repository at this point in the history
  • Loading branch information
gurneyalex committed Mar 29, 2017
2 parents 23ab678 + 6dff28c commit e19837a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 12 deletions.
13 changes: 1 addition & 12 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,14 @@ latest (unreleased)
- Add fields in views for 'BOM' and 'project.task'
- Add smartbutton on 'task' view
- install instrastat modules, product harmonized system
* Update message subtypes for RFQ

**Bugfixes**

**Build**

**Documentation**

10.0.9 (2017-03-23)
+++++++++++++++++++

**Features and Improvements**

* Install intrastat modules

**Bugfixes**

**Build**

**Documentation**

10.0.9 (2017-03-23)
+++++++++++++++++++
Expand Down
1 change: 1 addition & 0 deletions odoo/local-src/specific_purchase/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
'security/ir.model.access.csv',
# data
'data/sequence.xml',
'data/mail_message_subtypes.xml',
# views
'views/purchase_line_views.xml',
'views/purchase_views.xml',
Expand Down
23 changes: 23 additions & 0 deletions odoo/local-src/specific_purchase/data/mail_message_subtypes.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>

<record id="purchase.mt_rfq_confirmed" model="mail.message.subtype">
<field name="name">RFQ Confirmed</field>
<field name='sequence'>1</field>
<field name="res_model">purchase.order</field>
<field name='default' eval="True"/>
</record>
<record id="purchase.mt_rfq_approved" model="mail.message.subtype">
<field name="name">RFQ Approved</field>
<field name='sequence'>1</field>
<field name="res_model">purchase.order</field>
<field name='default' eval="True"/>
</record>
<record id="purchase.mt_rfq_done" model="mail.message.subtype">
<field name="name">RFQ Done</field>
<field name='sequence'>1</field>
<field name="res_model">purchase.order</field>
<field name='default' eval="True"/>
</record>

</odoo>
1 change: 1 addition & 0 deletions odoo/migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,4 @@ migration:
- specific_sale
- intrastat_base
- product_harmonized_system
- specific_purchase

0 comments on commit e19837a

Please sign in to comment.