Skip to content

Add odoo docs #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
75b1819
Add titles of odoo docs
Feb 2, 2017
5617865
Afegits fitxers bàsics per a la documentació odoo
Feb 2, 2017
e531a04
Afegit índex per docs odoo
Feb 2, 2017
1d9c64e
Added index for odoo docs
Feb 2, 2017
797ca95
Add missing title 'annexes'
Feb 2, 2017
43444d9
Complete links path for index
Feb 2, 2017
c2ce24e
Added blank file for section 9 annex
Feb 2, 2017
4d92096
Fix identation in config file for es_ES
Feb 3, 2017
252f5c4
Added titles to section 1 entorn de desenvolupamen
Feb 7, 2017
31fbd09
Afegida documentació pel desenvolupament
Feb 7, 2017
b09399e
Add docs for server configurations
Mar 2, 2017
14c7d18
Add client config options
Mar 2, 2017
04becdd
Add most of the translations for odoo docs
Mar 2, 2017
025b5ef
Merge remote-tracking branch 'origin/master' into add_odoo_docs
Mar 2, 2017
bea98d8
Merge remote-tracking branch 'origin/master' into add_odoo_docs
Mar 2, 2017
3925036
Merge remote-tracking branch 'origin/master' into add_odoo_docs
Mar 2, 2017
ea4e9d5
Add all missing translations
Mar 2, 2017
1648812
Merge remote-tracking branch 'origin/master' into add_odoo_docs
Mar 2, 2017
e6e4a60
Update pofile without line-wrapping
Mar 2, 2017
99dfa0d
Replaced local parsed images to master-parsed
Mar 2, 2017
6fe488b
Add command line options
gdalmau Mar 23, 2017
9d5e572
Add start/stop open ERP server documentation
gdalmau Mar 23, 2017
0e72372
Change erp documentation documents routes and links
gdalmau Mar 23, 2017
f4cb652
Fix pages renamed
gdalmau Mar 23, 2017
8ec8658
Add server and modules documentation
gdalmau Mar 23, 2017
21e86dc
Translated the OpenObj. Server and Modules section
amatmv Jul 21, 2017
ff1d09e
Added spanish translations from catalan.
amatmv Jul 24, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
675 changes: 675 additions & 0 deletions docs/erp/1-intro.md

Large diffs are not rendered by default.

Empty file added docs/erp/2-modules.md
Empty file.
Empty file added docs/erp/3-process.md
Empty file.
Empty file added docs/erp/4-adv_process.md
Empty file.
Empty file added docs/erp/5-patches.md
Empty file.
Empty file added docs/erp/6-services.md
Empty file.
Empty file added docs/erp/7-other.md
Empty file.
Empty file added docs/erp/8-build.md
Empty file.
Empty file added docs/erp/9-annex.md
Empty file.
Binary file added docs/erp/_static/arquitectura_client_servidor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions docs/erp/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Documentació per al OpenERP

!!! note
Documentació basada amb la documentació oficial d'OpenERP que es pot trobar
a la plana web: https://doc.odoo.com/5.0/developer/

## Introducció

OpenERP es un entorn enriquit per al desenvolupament. Gràcies als seus lligams
amb Python i PostgreSQL, i sobre tot, el seu Mapa Relacionat basat en Objectes
(_Object Relational Mapping - ORM_), es pot desenvolupar qualsevol mòdul
complexe i arbitrari a OpenERP.

## Índex

### 1- Introducció a OpenERP

1. [Entorn de desenvolupament](./1-intro.md#entorn-de-desenvolupament)
2. [Aproximació al desenvolupament modul·lar](./1-intro.md#aproximacio-al-desenvolupament-modullar)
3. [Arquitectura oberta a Objectes - Mvc](./1-intro.md#arquitectura-oberta-a-objectes-mvc)

### 2- Desenvolupament de Mòduls

1. [El primer mòdul de OpenERP](./2-modules.md#el-primer-modul-de-openerp)
2. [Objectes, camps i mètodes](./2-modules.md#objectes-camps-i-metodes)
3. [Vistes i Events](./2-modules.md#vistes-i-events)
4. [Menus i Accions](./2-modules.md#menus-i-accions)

### 3- Desenvolupament de Processos d'empresa

1. [Processos d'empresa i diagrames de flux](./3-process.md#processos-dempresa-i-diagrames-de-flux)
2. [Creant un assistent - (El Procés)](./3-process.md#creant-un-assistent-el-proces)
3. [Guia per convertir antics wizards en un wizard amb _osv_memory_](./3-process.md#guia-per-convertir-antics-wizards-amb-osv-memory)
4. [Informes (Reports)](./3-process.md#informes-reports)
5. [i18n - Internacionalització](./3-process.md#i18n-internacionalitzacio)

### 4- Configuració avançada pel desenvolupament de processos d'empresa

1. [Accions del Servidor](./4-adv_process.md#accions-del-servidor)
2. [Pissarra](./4-adv_process.md#pissarra)

### 5- Serialització, Migració, Millores i proves

1. [Serialització de Dades](./5-patches.md#serialitzacio-de-dades)
2. [Migració de dades](./5-patches.md#migracio-de-dades)
3. [Millores i actualitzacions al servidor (mòduls)](./5-patches.md#millores-i-actualitzacions-al-servidor-moduls)
4. [Testeig unitari](./5-patches.md#testeig-unitari)
5. [Acceptació de testeig](./5-patches.md#acceptacio-de-testeig)

### 6- Integració de serveis base

1. [Treballant amb Serveis Web](./6-services.md#treballant-amb-serveis-web)
2. [Serveis Web XML-RPC](./6-services.md#serveis-web-xml-rpc)

### 7- Altres temes

1. [Eines RAD](./7-other.md#eines-rad)
2. [Repositori d'informació](./7-other.md#repositori-dinformacio)

### 8- Execució i Desplegament

1. [Execució](./8-build.md#execucio)
2. [Desplegament](./8-build.md#desplegament)

### 9- Annexes

1. [Convencions de codificació](./9-annex.md#convencions-de-codificacio)
2. [Publicant un mòdul](./9-annex.md#publicant-un-modul)
3. [Traduccions](./9-annex.md#traduccions)
Loading