Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

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

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
attachmentbinaryfieldv10.0
1 Rispondi
21426 Visualizzazioni
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
Abbandona
Avatar
Meirkhan Yesseyev
Risposta migliore

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

great tuto, thanks a lot, it help =)

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
How to get the url of a fields.Binary with attachment=True Risolto
attachment image url binaryfield
Avatar
Avatar
Avatar
3
mag 23
25823
How to display ir.attachment's video on website page?
attachment video binaryfield website
Avatar
Avatar
3
mag 18
6298
How to change the width of a label in form view Risolto
v10.0
Avatar
Avatar
Avatar
Avatar
3
lug 24
30608
View attachment within the browser
attachment
Avatar
Avatar
Avatar
5
mag 23
16300
How to remove attachment?
attachment
Avatar
Avatar
Avatar
2
dic 23
6561
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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