Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

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

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
attachmentbinaryfieldv10.0
1 Responder
21424 Visualizações
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
Cancelar
Avatar
Meirkhan Yesseyev
Melhor resposta

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
Cancelar
Valentin THIRION

great tuto, thanks a lot, it help =)

Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
How to get the url of a fields.Binary with attachment=True Resolvido
attachment image url binaryfield
Avatar
Avatar
Avatar
3
mai. 23
25823
How to display ir.attachment's video on website page?
attachment video binaryfield website
Avatar
Avatar
3
mai. 18
6298
How to change the width of a label in form view Resolvido
v10.0
Avatar
Avatar
Avatar
Avatar
3
jul. 24
30608
View attachment within the browser
attachment
Avatar
Avatar
Avatar
5
mai. 23
16300
How to remove attachment?
attachment
Avatar
Avatar
Avatar
2
dez. 23
6561
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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