Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profit organisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to checkout/branch bazaar banches of OpenERP ?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
addonsv7
3 Antwoorden
9765 Weergaven
Avatar
xiaolong97427

I am trying to install OpenERP V7.0 from launchPad. I did the :

sudo bzr branch lp:openobject-server/7.0 server
sudo bzr branch lp:openobject-addons/7.0 addons
sudo bzr branch lp:openerp-web/7.0 web

but folder addons is empty. Is it normal ? I also try openobject-server/trunk. Same result.

2
Avatar
Annuleer
Jānis

have you installed bzr? do you use three different commands separately? : sudo bzr branch lp:openobject-server/7.0 server etc.

Yannick Payot

No its not normal, the folder addons has a size of 850 Mo

xiaolong97427
Auteur

Thx Vaucher

Indeed it seems that it doesn't download all.... but how come ?

What does the command line : bzr checkout lp:openobject-addons/7.0 --lightweight addons ?

Yannick Payot

I added a link in my answer, using checkout instead of branch is another way to use the revisioning system. Branch is in pull / push mode and checkout is in update / commit mode.

The option --lightweight, only usable with checkout mode, won't download the whole history.

Yannick Payot

Don't you get any error message during the download?

xiaolong97427
Auteur

The --lightweight mode works fine. I was able to download the addons. Thanks again. But as you mentionned, I didn't get any error message on the screen. While downloading I don't have the hand on the "prompt", but then suddently I got i back, but the folder addons is empty. Swap mem looks fine also

Yashodhan Kulkarni

Doing bzr co lp:~openerp/openobject-addons/trunk --lightweight addons for all repositories will help you get files downloaded quickly and successfully.

Avatar
Yannick Payot
Beste antwoord

Maybe your download failed. It's quite long to get it.

You could try getting the addons branch with

bzr checkout lp:openobject-addons/7.0 --lightweight addons

--lightweight option specifies that you don't download the whole history This makes a download of a 200Mo branch instead of the complete 850Mo branch.

As the addons branch is quite big and active, the history itself, you got it, has a size of 650Mo.

By the way you shouldn't need to use sudo for bzr.

doc: Getting a lightweight checkout

2
Avatar
Annuleer
Avatar
xiaolong97427
Auteur Beste antwoord

Thx for answering;

Indeed it seems that it doesn't download all.... but how come ?

What does the command line : bzr checkout lp:openobject-addons/7.0 --lightweight addons ?

1
Avatar
Annuleer
Daniel Reis

Please note that comments should not be posted as "Answers".

Avatar
Yashodhan Kulkarni
Beste antwoord

I was having all Addons inside my openobject-addons directory.

Then I did rm -fr /srv/openerp/openobject-addons

But Now when I'm trying

bzr branch lp:openobject-addons /srv/openerp/openobject-addons directory is Blank/Empty with only .bzr directory

I'm totally frustrated but not able to get any file/directory as it used to be earlier under my addons directory using bzr.

Please Help!

0
Avatar
Annuleer
Yashodhan Kulkarni

OK, I managed to get it work by removing addons folder first then by entering following command to featch all files into addons directory. bzr co lp:~openerp/openobject-addons/trunk --lightweight addons

Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
widget="mail_thread"
mail addons v7
Avatar
0
mrt. 15
6382
How to make a module from v6 fit with v7?
addons v7 v6
Avatar
Avatar
Avatar
2
mrt. 15
6064
Where is local modules in windows ?
windows addons v7
Avatar
Avatar
1
mrt. 15
6901
Why would the addons_path not be picked up?
addons v7 solved
Avatar
Avatar
2
mrt. 15
7412
Odoo isn't seeing an add-on that I downloaded and placed in the addons folder Opgelost
addons
Avatar
Avatar
Avatar
Avatar
Avatar
5
okt. 25
2340
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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