[IMP]:crm :Remove the crm_job from crm and add new module crm_job

bzr revid: sbh@tinyerp.com-20100111132428-0ul3cll3tw3i8prt
This commit is contained in:
sbh (Open ERP) 2010-01-11 18:54:28 +05:30
parent 5d065b2215
commit ef0c484916
13 changed files with 106 additions and 9 deletions

View File

@ -54,7 +54,6 @@ between mails and Open ERP.""",
'crm_claims_data.xml',
'crm_fund_data.xml',
'crm_helpdesk_data.xml',
'crm_jobs_data.xml',
'crm_lead_data.xml',
'crm_meeting_data.xml',
'crm_opportunity_data.xml',
@ -63,9 +62,6 @@ between mails and Open ERP.""",
'update_xml': [
'crm_wizard.xml',
'crm_view.xml',
'crm_job_wizard.xml',
'crm_jobs_view.xml',
'crm_jobs_menu.xml',
'crm_lead_wizard.xml',
'crm_lead_view.xml',
'crm_lead_menu.xml',
@ -95,7 +91,6 @@ between mails and Open ERP.""",
'crm_claims_demo.xml',
'crm_fund_demo.xml',
'crm_helpdesk_demo.xml',
'crm_jobs_demo.xml',
'crm_lead_demo.xml',
'crm_meeting_demo.xml',
'crm_opportunity_demo.xml',

View File

@ -75,7 +75,7 @@
</record>
<!--rule for Jobs-->
<record model="ir.rule.group" id="crm_job_rule_group">
<!-- <record model="ir.rule.group" id="crm_job_rule_group">
<field name="name">crm.meeting.rule</field>
<field name="model_id" search="[('model','=','crm.job')]" model="ir.model"/>
<field name="global" eval="True"/>
@ -86,7 +86,7 @@
<field name="operand">user.section_id.id</field>
<field name="domain_force">['|',('section_id','=',False),('section_id','=',[user.section_id.id])]</field>
<field name="rule_group" ref="crm_job_rule_group"/>
</record>
</record>-->
<!--rule for leads-->
<record model="ir.rule.group" id="crm_leads_rule_group">

View File

@ -21,7 +21,6 @@
import crm_opportunity_wizard
import crm_lead_wizard
import crm_job_wizard
import crm_phonecall_wizard

View File

@ -0,0 +1,25 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). 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/>.
#
##############################################################################
import crm_job
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,49 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). 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/>.
#
##############################################################################
{
'name': 'CRM Stuff in Job ',
'version': '1.0',
'category': 'Generic Modules/CRM & SRM',
'description': """
This module provide Store the project bugs with cases
""",
'author': 'Tiny',
'website': 'http://www.openerp.com',
'depends': ['crm','hr'],
'init_xml': [
'crm_jobs_data.xml'
],
'update_xml': [
'crm_jobs_view.xml',
'crm_jobs_menu.xml',
'crm_feature_view.xml',
'crm_job_wizard.xml',
],
'demo_xml': ['crm_jobs_demo.xml'],
'installable': True,
'active': False,
'certificate': '',
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -5,7 +5,7 @@
id="wizard_crm_job_reschedule_phone_call"
keyword="client_action_multi"
model="crm.job"
name="crm.job.reschedule_phone_call"
name="crm.reschedule_phone_call"
multi="True"
string="Schedule Phone Call" />

View File

@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import crm_job_wizard
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: