forked from OCA/hr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BSRTL-169: purchase order related notification
- Loading branch information
Showing
4 changed files
with
26 additions
and
12 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
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
23 changes: 23 additions & 0 deletions
23
odoo/local-src/specific_purchase/data/mail_message_subtypes.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,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> |
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 |
---|---|---|
|
@@ -138,3 +138,4 @@ migration: | |
- specific_sale | ||
- intrastat_base | ||
- product_harmonized_system | ||
- specific_purchase |