mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-20 10:12:06 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
4
odoo-bringout-oca-ocb-iap_crm/iap_crm/__init__.py
Normal file
4
odoo-bringout-oca-ocb-iap_crm/iap_crm/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
18
odoo-bringout-oca-ocb-iap_crm/iap_crm/__manifest__.py
Normal file
18
odoo-bringout-oca-ocb-iap_crm/iap_crm/__manifest__.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': "IAP / CRM",
|
||||
'summary': """Bridge between IAP and CRM""",
|
||||
'description': """Bridge between IAP and CRM""",
|
||||
'category': 'Hidden/Tools',
|
||||
'version': '1.0',
|
||||
'depends': [
|
||||
'crm',
|
||||
'iap_mail',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
26
odoo-bringout-oca-ocb-iap_crm/iap_crm/i18n/bs.po
Normal file
26
odoo-bringout-oca-ocb-iap_crm/iap_crm/i18n/bs.po
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_crm
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: iap_crm
|
||||
#: model:ir.model,name:iap_crm.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Potencijal/Prilika"
|
||||
|
||||
#. module: iap_crm
|
||||
#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
|
||||
msgid "Reveal ID"
|
||||
msgstr "Otkrij ID"
|
||||
26
odoo-bringout-oca-ocb-iap_crm/iap_crm/i18n/iap_crm.pot
Normal file
26
odoo-bringout-oca-ocb-iap_crm/iap_crm/i18n/iap_crm.pot
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * iap_crm
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: iap_crm
|
||||
#: model:ir.model,name:iap_crm.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: iap_crm
|
||||
#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
|
||||
msgid "Reveal ID"
|
||||
msgstr ""
|
||||
4
odoo-bringout-oca-ocb-iap_crm/iap_crm/models/__init__.py
Normal file
4
odoo-bringout-oca-ocb-iap_crm/iap_crm/models/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import crm_lead
|
||||
13
odoo-bringout-oca-ocb-iap_crm/iap_crm/models/crm_lead.py
Normal file
13
odoo-bringout-oca-ocb-iap_crm/iap_crm/models/crm_lead.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class Lead(models.Model):
|
||||
_inherit = 'crm.lead'
|
||||
|
||||
reveal_id = fields.Char(string='Reveal ID') # Technical ID of reveal request done by IAP
|
||||
|
||||
def _merge_get_fields(self):
|
||||
return super(Lead, self)._merge_get_fields() + ['reveal_id']
|
||||
Loading…
Add table
Add a link
Reference in a new issue