-
-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] helpdesk_mgmt_activity: Code review fixing and functional is ad…
…ded. * is_set_activity field renamed to allow_set_activity * _referenceable_models method is renamed to _selection_record_ref * compute and inverce methods are updated * move to next stage at the activity created from helpdesk ticket for source record functional is added * tests for new functional is added * views are updated
- Loading branch information
Showing
8 changed files
with
146 additions
and
29 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<odoo> | ||
|
||
<record id="mail_activity_view_form_popup" model="ir.ui.view"> | ||
<field name="name">mail.activity.view.form.popup.helpdesk.inherit</field> | ||
<field name="model">mail.activity</field> | ||
<field name="inherit_id" ref="mail.mail_activity_view_form_popup" /> | ||
<field name="arch" type="xml"> | ||
<field name="res_model" position="before"> | ||
<field name="ticket_id" invisible="1" /> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
</odoo> |