[Add] crm: add the missing file

bzr revid: sbh@tinyerp.com-20100310061342-g9ktwu597g9i6u2e
This commit is contained in:
sbh (Open ERP) 2010-03-10 11:43:42 +05:30
parent 5324e660c1
commit 3f72e8afc5
1 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,88 @@
# -*- encoding: utf-8 -*-
############################################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
# Copyright (C) 2008-2009 AJM Technologies S.A. (<http://www.ajm.lu). All Rights Reserved
# $Id$
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
############################################################################################
############################################################################################
from osv import osv, fields
import netsvc
import time
import tools
import mx.DateTime
from tools import config
from tools.translate import _
import tools
class crm_phonecall2phonecall(osv.osv_memory):
_name = 'crm.phonecall2phonecall'
_description = 'Phonecall To Phonecall'
def action_cancel(self, cr, uid, ids, context=None):
return {'type':'ir.actions.act_window_close'}
def action_apply(self, cr, uid, ids, context=None):
this = self.browse(cr, uid, ids)[0]
values={}
record_id = context and context.get('record_id', False) or False
if record_id:
for case in self.pool.get('crm.phonecall').browse(cr, uid, [record_id], context=context):
values['name']=this.name
values['user_id']=this.user_id and this.user_id.id
values['categ_id']=case.categ_id and case.categ_id.id or False
values['section_id']=case.section_id and case.section_id.id or False,
values['description']=case.description or ''
values['partner_id']=case.partner_id.id
values['partner_address_id']=case.partner_address_id.id
values['partner_mobile']=case.partner_mobile or False
values['priority']=case.priority
values['partner_phone']=case.partner_phone or False
values['date']=this.date
phonecall_proxy = self.pool.get('crm.phonecall')
phonecall_id = phonecall_proxy.create(cr, uid, values, context=context)
value = {
'name': _('Phone Call'),
'view_type': 'form',
'view_mode': 'form',
'res_model': 'crm.phonecall',
'view_id': False,
'type': 'ir.actions.act_window',
'res_id': phonecall_id
}
return value
_columns = {
'name' : fields.char('Call summary', size=64, required=True, select=1),
'user_id' : fields.many2one('res.users',"Assign To"),
'date': fields.datetime('Date'),
'section_id':fields.many2one('crm.case.section','Sales Team'),
}
def default_get(self, cr, uid, fields, context=None):
record_id = context and context.get('record_id', False) or False
res = super(crm_phonecall2phonecall, self).default_get(cr, uid, fields, context=context)
if record_id:
phonecall_id = self.pool.get('crm.phonecall').browse(cr, uid, record_id, context=context)
res['name']=phonecall_id.name
res['user_id']=phonecall_id.user_id and phonecall_id.user_id.id or False
res['date']=phonecall_id.date
res['section_id']=phonecall_id.section_id and phonecall_id.section_id.id or False
return res
crm_phonecall2phonecall()