Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

migrate binary field to attachment when attachment=True added later in field

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
attachmentbinaryfieldv10.0
1 Responder
21419 Vistas
Avatar
jhony

v10

we have situation where some old guy just declared binary without attachment=True and now we added it 

so for old data which entered before enabling of attachment attribute exist in database

how we can migrate those binary (stored in DB) to the attachment(file store)?

little hint would be appreciated and please suggest if community have any module/script for that. 

0
Avatar
Descartar
Avatar
Meirkhan Yesseyev
Mejor respuesta

Probably this solution is too late for you. However this is my solution:

DON'T ADD attachment=True to the model field. Here is steps you should do:

1) Copy all the files somewhere in order to save them. You could use XML-RPC script. If you don't have any files and you've got empty database you could skip this step.

  • rpc_api.py (my RPC scripts helper api). You will need this file in step 5.

import xmlrpc.client as xmlrpclib

class API():
def __init__(self, srv, db, user, pwd):
common = xmlrpclib.ServerProxy(
'%s/xmlrpc/2/common' % srv)
self.api = xmlrpclib.ServerProxy(
'%s/xmlrpc/2/object' % srv)
self.uid = common.authenticate(db, user, pwd, {})
self.pwd = pwd
self.db = db
self.model = ''

def set_model(self, model):
self.model = model

def execute(self, method, arg_list, kwarg_dict=None):
return self.api.execute_kw(
self.db, self.uid, self.pwd, self.model,
method, arg_list, kwarg_dict or {})

def get(self, id=None, field='id'):
domain = [('id', '=', id), (field, '!=', False)] if id else []
return self.execute('search_read', [domain, [field]])

def get_fields(self, id=None, fields=[]):
domain = [('id', '=', id)] if id else []
return self.execute('search_read', [domain, fields])

def set(self, id=None, vals={}):
if vals:
self.execute('write', [[id], vals])
return id
  • Attachments script

from rpc_api import API
import os.path

if __name__ == '__main__':
srv, db = 'http://domainname.com', 'database_name'
user, pwd = 'admin', 'admin'
api = API(srv, db, user, pwd)

# Defining models
models = {
'model_name': [
'field1',
'field2'
]
}

for model, fields in models.items():
# Setting model
api.set_model(model)
# Fetching all
ids = [id.get('id') for id in api.get()]

for id in ids:
for field in fields:
filename = "attachments/%s-%s-%s" % (model, id, field)
# Check if file exists
if not os.path.exists(filename):
for val in api.get(id, field):
base64 = val.get(field)
if base64:
# Writing to file
with open(filename, 'w') as infile:
infile.write(base64)
print("%s CREATED" % filename)
else:
print("model: \"%s\" id: %s column: \"%s\" is EMPTY" % (model, id, field))
else:
print("%s ALREADY EXISTS" % filename)

2) Add attachment=True to your field in model.

fieldname = fields.Binary(string="Field 1", attachment=True)

3) Update/Upgrade your application and Restart server

odoo-bin --database=database_name --update=module_name

4) Delete field from the database. Execute following SQL script:

ALTER database DROP COLUMN fieldname;

P.S. if you don't delete column, it will save all files both in filestore and in database

5) Upload saved files (attachments) with following RPC script.

from rpc_api import API
import os

if __name__ == '__main__':
srv, db = 'http://domainname.com', 'database_name'
user, pwd = 'admin', 'admin'
api = API(srv, db, user, pwd)

path = 'attachments/'
for filename in os.listdir(path):
info = filename.split('-')
if len(info) != 3:
# Cannot be parsed
print("Filename: %s cannot be parsed" % filename)
continue

model, id, field = filename.split('-')
api.set_model(model)
base64 = open(path + filename).read()
# Setting value to record
api.set(int(id), {field: base64})
print("model: %s id: %s field: %s OK" % (model, id, field))

I don't know exactly is there any other proper ways to do that. This will work. Be careful with your database

4
Avatar
Descartar
Valentin THIRION

great tuto, thanks a lot, it help =)

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
How to get the url of a fields.Binary with attachment=True Resuelto
attachment image url binaryfield
Avatar
Avatar
Avatar
3
may 23
25820
How to display ir.attachment's video on website page?
attachment video binaryfield website
Avatar
Avatar
3
may 18
6297
How to change the width of a label in form view Resuelto
v10.0
Avatar
Avatar
Avatar
Avatar
3
jul 24
30608
View attachment within the browser
attachment
Avatar
Avatar
Avatar
5
may 23
16300
How to remove attachment?
attachment
Avatar
Avatar
Avatar
2
dic 23
6560
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now