mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-16 04:02:56 -06:00
143 lines
6.0 KiB
Python
143 lines
6.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# OpenERP, Open Source Management Solution
|
|
# This module copyright (C) 2014 Savoir-faire Linux
|
|
# (<http://www.savoirfairelinux.com>).
|
|
#
|
|
# 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/>.
|
|
#
|
|
##############################################################################
|
|
|
|
from openerp.osv import orm, fields
|
|
|
|
|
|
class document_file(orm.Model):
|
|
_inherit = 'ir.attachment'
|
|
|
|
def _name_get_resname(self, cr, uid, ids, obj, method, context):
|
|
data = {}
|
|
context = context or {}
|
|
if isinstance(ids, (int, long)):
|
|
ids = [ids]
|
|
for attachment in self.browse(cr, uid, ids, context=context):
|
|
model_object = attachment.res_model
|
|
res_id = attachment.res_id
|
|
if model_object and res_id:
|
|
model_pool = self.pool.get(model_object)
|
|
res = model_pool.name_get(cr, uid, [res_id], context=context)
|
|
res_name = res and res[0][1] or False
|
|
# For account.voucher model, take the name field
|
|
if model_object == 'account.voucher':
|
|
res_name = model_pool.browse(
|
|
cr, uid, res_id, context=context).name
|
|
if res_name:
|
|
field = self._columns.get('res_name', False)
|
|
if field and len(res_name) > field.size:
|
|
res_name = res_name[:field.size - 3] + '...'
|
|
data[attachment.id] = res_name
|
|
else:
|
|
data[attachment.id] = False
|
|
return data
|
|
|
|
def _get_related_model_documents(
|
|
self, cr, uid, ids, field_name, args, context=None):
|
|
""" This function allows to get only related documents with a specific
|
|
model and model_id.
|
|
"""
|
|
context = context or {}
|
|
ir_attachment_doc_obj = self.pool.get('ir.attachment.document')
|
|
res = [('id', 'in', [])]
|
|
# Format query with the res_model and res_id to search
|
|
# in ir.attachment.document model.
|
|
query = [
|
|
('res_model', '=', context.get('model')),
|
|
('res_id', '=', context.get('model_id'))]
|
|
ir_attachment_doc_ids = ir_attachment_doc_obj.search(
|
|
cr, uid, query, context=context)
|
|
|
|
ir_attachment_ids = self.search(
|
|
cr, uid, [
|
|
('attachment_document_ids.id', 'in', ir_attachment_doc_ids)],
|
|
context=context)
|
|
res = [('id', 'in', ir_attachment_ids)]
|
|
return res
|
|
|
|
_columns = {
|
|
'attachment_document_ids': fields.one2many('ir.attachment.document',
|
|
'attachment_id',
|
|
'Records'),
|
|
'res_name': fields.function(_name_get_resname, type='char',
|
|
size=128, string='Resource Name',
|
|
store=True),
|
|
'related_document': fields.function(
|
|
lambda self, *a, **kw: True, type='boolean',
|
|
fnct_search=_get_related_model_documents),
|
|
}
|
|
|
|
def create(self, cr, uid, data, context=None):
|
|
ir_attachment_document_obj = self.pool.get('ir.attachment.document')
|
|
res = super(document_file, self).create(cr, uid, data, context=context)
|
|
# Create attachment_document_ids with res_model, res_id and res_name
|
|
if 'res_model' in data and 'res_id' in data:
|
|
res_name = self.browse(cr, uid, res, context=context).res_name
|
|
ir_attachment_document_obj.create(cr, uid, {
|
|
'attachment_id': res,
|
|
'res_model': data['res_model'],
|
|
'res_id': data['res_id'],
|
|
'res_name': data.get('res_name', res_name),
|
|
}, context=context)
|
|
return res
|
|
|
|
def unlink(self, cr, uid, ids, context=None, check=True):
|
|
ir_attach_doc_obj = self.pool.get('ir.attachment.document')
|
|
if context is None:
|
|
context = {}
|
|
# Deleting from dropdown list in the form view
|
|
res_model = context.get('multiple_records_res_model')
|
|
res_id = context.get('multiple_records_res_id')
|
|
if res_model and res_id:
|
|
query = [
|
|
('res_model', '=', res_model),
|
|
('res_id', '=', res_id),
|
|
('attachment_id', 'in', ids),
|
|
]
|
|
ids_to_unlink = ir_attach_doc_obj.search(
|
|
cr, uid, query, context=context)
|
|
result = ir_attach_doc_obj.unlink(
|
|
cr, uid, ids_to_unlink, context=context)
|
|
else:
|
|
# Normal delete
|
|
result = super(document_file, self).unlink(
|
|
cr, uid, ids, context=context)
|
|
return result
|
|
|
|
|
|
class ir_attachment_document(orm.Model):
|
|
_description = 'Attachment Documents'
|
|
_name = 'ir.attachment.document'
|
|
|
|
_columns = {
|
|
'res_id': fields.integer('Resource ID', readonly=True,
|
|
help="The record id this is attached to."),
|
|
'res_model': fields.char(
|
|
'Resource Model', size=64, readonly=True,
|
|
help="The database object this attachment will be attached to"),
|
|
'res_name': fields.char('Resource Name', type='char',
|
|
size=128,
|
|
readonly=True),
|
|
'attachment_id': fields.many2one(
|
|
'ir.attachment', 'Attachment', ondelete='cascade'),
|
|
}
|