bzr revid: rlo@openerp.com-20120305161115-i20h6xst3sg5n181
This commit is contained in:
Roberto López López (OpenERP) 2012-03-05 17:11:15 +01:00
parent ce1d3ce094
commit fd89caf3cb
2 changed files with 28 additions and 26 deletions

View File

@ -103,10 +103,27 @@ class google_docs_ir_attachment(osv.osv):
return copy_resource
class google_docs_config(osv.osv):
#_name = 'google.docs.config'
class google_docs(osv.osv):
_name = 'google.docs'
def doc_get(self, cr, uid, model, id, type_doc):# TODO fix logic here
google_docs_config_ref = self.pool.get('res.users')
ir_attachment_ref = self.pool.get('ir.attachment')
google_docs_config = google_docs_config_ref.search(cr, uid, [('model_id', '=', model)])
if not google_docs_config:
google_document = ir_attachment_ref.create_empty_google_doc(cr, uid, model, id, type_doc)
else:
google_document = ir_attachment_ref.copy_gdoc(cr, uid, model, id)
print google_docs_config
if not google_docs_config:
return -1
class users(osv.osv):
_inherit = 'res.users'
_description = 'User\'s gdocs config'
_description = "User\'s gdocs config"
_columns = {
'model_id': fields.many2one('ir.model', 'Model'),
@ -134,21 +151,4 @@ class google_docs_config(osv.osv):
context)
return res
class google_docs(osv.osv):
_name = 'google.docs'
def doc_get(self, cr, uid, model, id, type_doc):# TODO fix logic here
google_docs_config_ref = self.pool.get('google.docs.config')
ir_attachment_ref = self.pool.get('ir.attachment')
google_docs_config = google_docs_config_ref.search(cr, uid, [('model_id', '=', model)])
if not google_docs_config:
google_document = ir_attachment_ref.create_empty_google_doc(cr, uid, model, id, type_doc)
else:
google_document = ir_attachment_ref.copy_gdoc(cr, uid, model, id)
print google_docs_config
if not google_docs_config:
return -1
google_docs_config()

View File

@ -1,16 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- add google docs config field in user form -->
<record id="view_google_docs_users_config_inherited_form" model="ir.ui.view">
<field name="name">res.gdocs.users.form</field>
<record model="ir.ui.view" id="view_google_docs_users_config_inherited_form">
<field name="name">google_docs.config.user.inherited.form</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form" />
<field name="type">form</field>
<field name="inherit_id" ref="base.view_users_form"/>
<field name="arch" type="xml">
<group name="default_filters" position="inside">
<field name="context_model_id" string='Model ID' completion='1' readonly='0'/>
<field name="context_context_gdocs_resource_id" string='Google Docs resource ID' completion='1' readonly='0'/>
<field name="context_model_id" completion="1"
readonly="0"/>
</group>
</field>
</record>