Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Accidantly pruned my docker volume of the odoo-web container... can I reimport old Attachments?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
composedockerDockerodoo16features
2929 Vistes
Avatar
Joel Rehra

Hello world :)

I am using odoo inside of docker. And I had a typo inside of my docker-compose.yml (which I did not notice until now):

    volumes:
      - odoo-web-data:/var/llib/odoo

The Installation was running fine as all the data just lived in an anonomous volume instead....

{
   "Type":"volume",
   "Name":"5e975261de8f22a61b9f2a577e65b35cf38f3b49dcf1369853842aaa835dfd57",
   "Source":"/var/lib/docker/volumes/5e975261de8f22a61b9f2a577e65b35cf38f3b49dcf1369853842aaa835dfd57/_data",
   "Destination":"/var/lib/odoo",
   "Driver":"local",
   "Mode":"z",
   "RW":true,
   "Propagation":""
}

{
   "Type":"volume",
   "Name":"odoo_odoo-web-data",
   "Source":"/var/lib/docker/volumes/odoo_odoo-web-data/_data",
   "Destination":"/var/llib/odoo",
   "Driver":"local",
   "Mode":"z",
   "RW":true,
   "Propagation":""
}

Doing some routine server work i pruned away all unused anonomous volumes on my docker host. Unfortunately THIS TIME the odoo stack was not running when I pruned the volumes, which means the anonomous volume (currently unused) containing the correct /var/lib/odoo folder now lives in /dev/null......

I have sucessfully recovered from that by reinstalling some of the base modules and as the database is still fine Its running as usual now.

The only problem left are my file attachments. Fortunatly thats only 3 Invoices that I send out. Everytime I load an old invoice I get an error from the pdf preview as it tries to load the invoice I sent which is not found on disk...

FileNotFoundError: [Errno 2] No such file or directory: '/var/lib/odoo/.local/share/Odoo/filestore/companyname/63/6310e246fa4d33eb96030101813eabd91122f4ff'

So, does anyone know of a way to "import" the pdfs (which I still have) and update the old file references in the database to point to that one? I have read somewhere that the files are stored base64 encoded, so could I just write the file to the asset path and encrypt it using base64? Is there any special algorithm involved in creating checksums or something I should know of?

Any help is apreciated, Thank you :)

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
Trouble setting up docker compose for Odoo 18
compose Docker pycharm
Avatar
Avatar
1
de nov. 24
11279
product.template form name doesnt update Solved
jsonrpc Docker odoo16features
Avatar
Avatar
Avatar
Avatar
3
de nov. 24
3926
Odoo + Traefik + SSL Mixed Content Error on Editor
mixed docker odoo16features
Avatar
Avatar
Avatar
Avatar
Avatar
5
d’oct. 24
9324
What http server is used in official docker image?
http_server docker Docker
Avatar
Avatar
1
de maig 24
2226
Odoo docker error creating log file. Solved
odoo docker Docker
Avatar
Avatar
Avatar
2
d’oct. 23
7291
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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