Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

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

Naroči se

Get notified when there's activity on this post

This question has been flagged
attachmentbinaryfieldv10.0
1 Odgovori
21411 Prikazi
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
Opusti
Avatar
Meirkhan Yesseyev
Best Answer

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

great tuto, thanks a lot, it help =)

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
How to get the url of a fields.Binary with attachment=True Solved
attachment image url binaryfield
Avatar
Avatar
Avatar
3
maj 23
25807
How to display ir.attachment's video on website page?
attachment video binaryfield website
Avatar
Avatar
3
maj 18
6295
How to change the width of a label in form view Solved
v10.0
Avatar
Avatar
Avatar
Avatar
3
jul. 24
30607
View attachment within the browser
attachment
Avatar
Avatar
Avatar
5
maj 23
16298
How to remove attachment?
attachment
Avatar
Avatar
Avatar
2
dec. 23
6560
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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