Turkesh Patel (openERP) has proposed merging 
lp:~openerp-dev/openobject-addons/trunk-social-res_log-tpa into 
lp:~openerp-dev/openobject-addons/trunk-openchatter.

Requested reviews:
  OpenERP R&D Team (openerp-dev)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-social-res_log-tpa/+merge/104896


[IMP]: go from res.log to mail.thread messages in project_scrum and account 
module.
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-social-res_log-tpa/+merge/104896
Your team OpenERP R&D Team is requested to review the proposed merge of 
lp:~openerp-dev/openobject-addons/trunk-social-res_log-tpa into 
lp:~openerp-dev/openobject-addons/trunk-openchatter.
=== modified file 'account/account_bank_statement.py'
--- account/account_bank_statement.py	2012-03-22 14:36:54 +0000
+++ account/account_bank_statement.py	2012-05-07 12:11:25 +0000
@@ -127,6 +127,7 @@
     _order = "date desc, id desc"
     _name = "account.bank.statement"
     _description = "Bank Statement"
+    _inherit = ['mail.thread']
     _columns = {
         'name': fields.char('Name', size=64, required=True, states={'draft': [('readonly', False)]}, readonly=True, help='if you give the Name other then /, its created Accounting Entries Move will be with same name as statement name. This allows the statement entries to have the same references than the statement itself'), # readonly for account_cash_statement
         'date': fields.date('Date', required=True, states={'confirm': [('readonly', True)]}, select=True),

=== modified file 'project_scrum/project_scrum.py'
--- project_scrum/project_scrum.py	2011-12-21 13:10:28 +0000
+++ project_scrum/project_scrum.py	2012-05-07 12:11:25 +0000
@@ -44,6 +44,7 @@
     _name = 'project.scrum.sprint'
     _description = 'Project Scrum Sprint'
     _order = 'date_start desc'
+    _inherit = ['mail.thread']
     def _compute(self, cr, uid, ids, fields, arg, context=None):
         res = {}.fromkeys(ids, 0.0)
         progress = {}

=== modified file 'project_scrum/wizard/project_scrum_backlog_sprint.py'
--- project_scrum/wizard/project_scrum_backlog_sprint.py	2011-03-17 17:33:16 +0000
+++ project_scrum/wizard/project_scrum_backlog_sprint.py	2012-05-07 12:11:25 +0000
@@ -24,6 +24,7 @@
 class backlog_sprint_assign(osv.osv_memory):
     _name = 'project.scrum.backlog.assign.sprint'
     _description = 'Assign sprint to backlogs'
+    _inherit = ['mail.thread']
     _columns = {
         'sprint_id': fields.many2one('project.scrum.sprint', 'Sprint', required=True, help="Select Sprint to assign backlog."),
         'state_open': fields.boolean('Open Backlog', help="Change the state of product backlogs to open if its in draft state"),

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to