[MERGE] merged trunk.

bzr revid: vmt@openerp.com-20121114113507-o73jwcdow07daoho
This commit is contained in:
Vo Minh Thu 2012-11-14 12:35:07 +01:00
commit 136363aff3
162 changed files with 8220 additions and 1686 deletions

26
README
View File

@ -6,17 +6,9 @@ Customer Relationship Management software. More info at:
http://www.openerp.com
Installation on Debian Ubuntu
Installation on Debian/Ubuntu
-----------------------------
Download the deb file and type:
$ sudo dpkg -i <openerp-deb-filename>
$ sudo apt-get install install -f
Installation on Debian Ubuntu from nightly build
------------------------------------------------
Add the the apt repository
deb http://nightly.openerp.com/6.1/deb/ ./
@ -26,6 +18,11 @@ in your source.list and type:
$ sudo apt-get update
$ sudo apt-get install openerp
Or download the deb file and type:
$ sudo dpkg -i <openerp-deb-filename>
$ sudo apt-get install install -f
Installation on RedHat, Fedora, CentOS
--------------------------------------
@ -42,6 +39,8 @@ Install the openerp rpm
Installation on Windows
-----------------------
Check the notes in setup.py
Installation on MacOSX
-----------------------
@ -54,14 +53,7 @@ default master password is "admin".
Detailed System Requirements
----------------------------
You need the following software installed:
postgresql-client, python-dateutil, python-feedparser, python-gdata,
python-ldap, python-libxslt1, python-lxml, python-mako, python-openid,
python-psycopg2, python-pybabel, python-pychart, python-pydot,
python-pyparsing, python-reportlab, python-simplejson, python-tz,
python-vatnumber, python-vobject, python-webdav, python-werkzeug, python-xlwt,
python-yaml, python-zsi
The dependencies are listed in setup.py
For Luxembourg localization, you also need:

190
doc/01_getting_started.rst Normal file
View File

@ -0,0 +1,190 @@
========================================
Getting started with OpenERP development
========================================
.. toctree::
:maxdepth: 1
Installation from sources
==========================
.. _getting_started_installation_source-link:
Source code is hosted on Launchpad_. In order to get the sources, you will need Bazaar_ to pull the source from Launchpad. Bazaar is a version control system that helps you track project history over time and collaborate efficiently. You may have to create an account on Launchpad to be able to collaborate on OpenERP development. Please refer to the Launchpad and Bazaar documentation to install and setup your development environment.
The running example of this section is based on an Ubuntu environment. You may have to adapt the steps according to your system. Once your working environment is ready, prepare a working directory that will contain the sources. For a ``source`` base directory, type::
mkdir source;cd source
OpenERP provides a setup script that automatizes the tasks of creating a shared repository and getting the source code. Get the setup script of OpenERP by typing::
bzr cat -d lp:~openerp-dev/openerp-tools/trunk setup.sh | sh
This will create the following two files in your ``source`` directory::
-rw-rw-r-- 1 openerp openerp 5465 2012-04-17 11:05 Makefile
-rw-rw-r-- 1 openerp openerp 2902 2012-04-17 11:05 Makefile_helper.py
If you want some help about the available options, please type::
make help
Next step is to initialize the shared repository and download the sources. Get the current trunk version of OpenERP by typing::
make init-trunk
This will create the following structure inside your ``source`` directory, and fetch the latest source code from ``trunk``::
drwxrwxr-x 3 openerp openerp 4096 2012-04-17 11:10 addons
drwxrwxr-x 3 openerp openerp 4096 2012-04-17 11:10 misc
drwxrwxr-x 3 openerp openerp 4096 2012-04-17 11:10 server
drwxrwxr-x 3 openerp openerp 4096 2012-04-17 11:10 web
Some dependencies are necessary to use OpenERP. Depending on your environment, you might have to install the following packages::
sudo apt-get install graphviz ghostscript postgresql-client
sudo apt-get install python-dateutil python-feedparser python-gdata
python-ldap python-libxslt1 python-lxml python-mako, python-openid
python-psycopg2 python-pybabel python-pychart python-pydot
python-pyparsing python-reportlab python-simplejson python-tz
python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt
python-yaml python-imaging python-matplotlib
Next step is to initialize the database. This will create a new openerp role::
make db-setup
Finally, launch the OpenERP server::
make server
Testing your installation can be done on http://localhost:8069/ . You should see the OpenERP main login page.
.. _Launchpad: https://launchpad.net/
.. _Bazaar: http://bazaar.canonical.com/en/
Command line options
====================
Using the command ::
./openerp-server --help
gives you the available command line options. For OpenERP server at revision 4133, an output example is given in the `Command line options example`_. Here are a few interesting command line options.
General Options
+++++++++++++++
::
--version show program version number and exit
-h, --help show this help message and exit
-c CONFIG, --config=CONFIG specify alternate config file
-s, --save save configuration to ~/.terp_serverrc
-v, --verbose enable debugging
--pidfile=PIDFILE file where the server pid will be stored
--logfile=LOGFILE file where the server log will be stored
-n INTERFACE, --interface=INTERFACE specify the TCP IP address
-p PORT, --port=PORT specify the TCP port
--net_interface=NETINTERFACE specify the TCP IP address for netrpc
--net_port=NETPORT specify the TCP port for netrpc
--no-netrpc disable netrpc
--no-xmlrpc disable xmlrpc
-i INIT, --init=INIT init a module (use "all" for all modules)
--without-demo=WITHOUT_DEMO load demo data for a module (use "all" for all modules)
-u UPDATE, --update=UPDATE update a module (use "all" for all modules)
--stop-after-init stop the server after it initializes
--debug enable debug mode
-S, --secure launch server over https instead of http
--smtp=SMTP_SERVER specify the SMTP server for sending mail
Database related options
++++++++++++++++++++++++
::
-d DB_NAME, --database=DB_NAME
specify the database name
-r DB_USER, --db_user=DB_USER
specify the database user name
-w DB_PASSWORD, --db_password=DB_PASSWORD
specify the database password
--pg_path=PG_PATH specify the pg executable path
--db_host=DB_HOST specify the database host
--db_port=DB_PORT specify the database port
Internationalization options
++++++++++++++++++++++++++++
Use these options to translate OpenERP to another language.See i18n section of the user manual. Option '-l' is mandatory.::
-l LANGUAGE, --language=LANGUAGE
specify the language of the translation file. Use it
with --i18n-export and --i18n-import
--i18n-export=TRANSLATE_OUT
export all sentences to be translated to a CSV file
and exit
--i18n-import=TRANSLATE_IN
import a CSV file with translations and exit
--modules=TRANSLATE_MODULES
specify modules to export. Use in combination with
--i18n-export
Options from previous versions
++++++++++++++++++++++++++++++
Some options were removed in OpenERP version 6. For example, ``price_accuracy`` is now
configured through the :ref:`decimal_accuracy` screen.
Configuration
==============
.. _getting_started_configuration-link:
Two configuration files are available:
* one for the client: ``~/.openerprc``
* one for the server: ``~/.openerp_serverrc``
If they are not found, the server and the client will start with a default configuration. Those files follow the convention used by python's ConfigParser module. Please note that lines beginning with "#" or ";" are comments. The client configuration file is automatically generated upon the first start. The sezrver configuration file can automatically be created using the command ::
./openerp-server -s or ./openerp-server --save
You can specify alternate configuration files with ::
-c CONFIG, --config=CONFIG specify alternate config file
Configure addons locations
--------------------------
By default, the only directory of addons known by the server is server/bin/addons.
It is possible to add new addons by
- copying them in server/bin/addons, or creating a symbolic link to each
of them in this directory, or
- specifying another directory containing addons to the server. The later
can be accomplished either by running the server with the ``--addons-path=``
option, or by configuring this option in the openerp_serverrc file,
automatically generated under Linux in your home directory by the
server when executed with the ``--save`` option. You can provide several
addons to the ``addons_path`` = option, separating them using commas.
Start-up script
===============
.. versionadded:: 6.1
To run the OpenERP server, the conventional approach is to use the
`openerp-server` script. It loads the :ref:`openerp library`, sets a few
configuration variables corresponding to command-line arguments, and starts to
listen to incoming connections from clients.
Depending on your deployment needs, you can write such a start-up script very
easily. We also recommend you take a look at an alternative tool called
`openerp-command` that can, among other things, launch the server.
Yet another alternative is to use a WSGI-compatible HTTP server and let it call
into one of the WSGI entry points of the server.

209
doc/02_architecture.rst Normal file
View File

@ -0,0 +1,209 @@
========================================
Architecture
========================================
OpenERP as a multitenant three-tiers architecture
=================================================
This section presents the OpenERP architecture along with technology details
of the application. The tiers composing OpenERP are presented. Communication
means and protocols between the application components are also presented.
Some details about used development languages and technology stack are then summarized.
OpenERP is a `multitenant <http://en.wikipedia.org/wiki/Multitenancy>`_, `three-tiers architecture
<http://en.wikipedia.org/wiki/Multitier_architecture#Three-tier_architecture>`_:
database tier for data storage, application tier for processing and functionalities
and presentation tier providing user interface. Those are separate layers
inside OpenERP. The application tier itself is written as a core; multiple
additional modules can be installed in order to create a particular instance
of OpenERP adapted to specific needs and requirements. Moreover, OpenERP
follows the Model-View-Controller (MVC) architectural pattern.
A typical deployment of OpenERP is shown on `Figure 1`_. This deployment is
called Web embedded deployment. As shown, an OpenERP system consists of
three main components:
- a PostgreSQL database server which contains all OpenERP databases.
Databases contain all application data, and also most of the OpenERP
system configuration elements. Note that this server can possibly be
deployed using clustered databases.
- the OpenERP Server, which contains all the enterprise logic and ensures
that OpenERP runs optimally. One layer of the server is dedicated to
communicate and interface with the PostgreSQL database, the ORM engine.
Another layer allows communications between the server and a web browser,
the Web layer. Having more than one server is possible, for example in
conjunction with a load balancing mechanism.
- the client running in the a web browser as javascript application.
The database server and the OpenERP server can be installed on the same
computer, or distributed onto separate computer servers, for example for
performance considerations.
.. _`Figure 1`:
.. figure:: _static/02_openerp_architecture.png
:width: 50%
:alt: OpenERP 6.1 architecture for embedded web deployment
:align: center
OpenERP 6.1 architecture for embedded web deployment
The next subsections give details about the different tiers of the OpenERP
architecture.
PostgreSQL database
+++++++++++++++++++
The data tier of OpenERP is provided by a PostgreSQL relational database.
While direct SQL queries can be executed from OpenERP modules, most accesses
to the relational database are done through the server Object Relational
Mapping layer.
Databases contain all application data, and also most of the OpenERP system
configuration elements. Note that this server can possibly be deployed using
clustered databases.
OpenERP server
++++++++++++++
OpenERP provides an application server on which specific business applications
can be built. It is also a complete development framework, offering a range
of features to write those applications. Among those features, the OpenERP
ORM provides functionalities and an interface on top of the PostgreSQL server.
The OpenERP server also features a specific layer designed to communicate
with the web browser-based client. This layer connects users using standard
browsers to the server.
From a developer perspective, the server acts both as a library which brings
the above benefits while hiding the low-level details, and as a simple way
to install, configure and run the written applications. The server also contains
other services, such as extensible data models and view, workflow engine or
reports engine. However, those are OpenERP services not specifically related
to security, and are therefore not discussed in details in this document.
**Server - ORM**
The Object Relational Mapping ORM layer is one of the salient features of
the OpenERP Server. It provides additional and essential functionalities
on top of PostgreSQL server. Data models are described in Python and OpenERP
creates the underlying database tables using this ORM. All the benefits of
RDBMS such as unique constraints, relational integrity or efficient querying
are used and completed by Python flexibility. For instance, arbitrary constraints
written in Python can be added to any model. Different modular extensibility
mechanisms are also afforded by OpenERP.
It is important to understand the ORM responsibility before attempting to
by-pass it and to access directly the underlying database via raw SQL queries.
When using the ORM, OpenERP can make sure the data remains free of any corruption.
For instance, a module can react to data creation in a particular table.
This behavior can occur only if queries go through the ORM.
The services granted by the ORM are among other :
- consistency validation by powerful validity checks,
- providing an interface on objects (methods, references, ...) allowing
to design and implement efficient modules,
- row-level security per user and group; more details about users and user
groups are given in the section Users and User Roles,
- complex actions on a group of resources,
- inheritance service allowing fine modeling of new resources
**Server - Web**
The web layer offers an interface to communicate with standard browsers.
In the 6.1 version of OpenERP, the web-client has been rewritten and integrated
into the OpenERP server tier. This web layer is a WSGI-compatible application
based on werkzeug. It handles regular http queries to server static file or
dynamic content and JSON-RPC queries for the RPC made from the browser.
**Modules**
By itself, the OpenERP server is a core. For any enterprise, the value of
OpenERP lies in its different modules. The role of the modules is to implement
any business requirement. The server is the only necessary component to
add modules. Any official OpenERP release includes a lot of modules, and
hundreds of modules are available thanks to the community. Examples of
such modules are Account, CRM, HR, Marketing, MRP, Sale, etc.
Clients
+++++++
As the application logic is mainly contained server-side, the client is
conceptually simple. It issues a request to the server, gets data back
and display the result (e.g. a list of customers) in different ways
(as forms, lists, calendars, ...). Upon user actions, it sends queries
to modify data to the server.
The default client of OpenERP is an JavaScript application running in the
browser that communicates with the server using JSON-RPC.
MVC architecture in OpenERP
===========================
According to `Wikipedia <http://en.wikipedia.org/wiki/Model-view-controller>`_,
"a Model-view-controller (MVC) is an architectural pattern used in software
engineering". In complex computer applications presenting lots of data to
the user, one often wishes to separate data (model) and user interface (view)
concerns. Changes to the user interface does therefore not impact data
management, and data can be reorganized without changing the user interface.
The model-view-controller solves this problem by decoupling data access
and business logic from data presentation and user interaction, by
introducing an intermediate component: the controller.
.. _`Figure 3`:
.. figure:: _static/02_mvc_diagram.png
:width: 35%
:alt: Model-View-Controller diagram
:align: center
Model-View-Controller diagram
For example in the diagram above, the solid lines for the arrows starting
from the controller and going to both the view and the model mean that the
controller has a complete access to both the view and the model. The dashed
line for the arrow going from the view to the controller means that the view
has a limited access to the controller. The reasons of this design are :
- From **View** to **Model** : the model sends notification to the view
when its data has been modified in order the view to redraw its content.
The model doesn't need to know the inner workings of the view to perform
this operation. However, the view needs to access the internal parts of the model.
- From **View** to **Controller** : the reason why the view has limited
access to the controller is because the dependencies from the view to
the controller need to be minimal: the controller can be replaced at
any moment.
OpenERP follows the MVC semantic with
- model : The PostgreSQL tables.
- view : views are defined in XML files in OpenERP.
- controller : The objects of OpenERP.
Network communications and WSGI
===============================
OpenERP is an HTTP web server and may also be deployed as an WSGI-compliant
application.
Clients may communicate with OpenERP using sessionless XML-RPC, the recommended
way to interoperate with OpenERP. Web-based clients communicates using the
session aware JSON-RPC.
Everything in OpenERP, and objects methods in particular, are exposed via
the network and a security layer. Access to the data model is in fact a service
and it is possible to expose new services. For instance, a WebDAV service and
a FTP service are available.
Services can make use of the `WSGI
<http://en.wikipedia.org/wiki/Web_Server_Gateway_Interface>`_ stack. WSGI is a
standard solution in the Python ecosystem to write HTTP servers, applications,
and middleware which can be used in a mix-and-match fashion. By using WSGI, it
is possible to run OpenERP in any WSGI compliant server. It is also possible to
use OpenERP to host a WSGI application.
A striking example of this possibility is the OpenERP Web layer that is
the server-side counter part to the web clients. It provides the requested
data to the browser and manages web sessions. It is a WSGI-compliant application.
As such, it can be run as a stand-alone HTTP server or embedded inside OpenERP.
The HTTP namespaces /openerp/ /object/ /common/ are reserved for the XML-RPC
layer, every module restrict it's HTTP namespace to /<name_of_the_module>/

13
doc/03_module_dev.rst Normal file
View File

@ -0,0 +1,13 @@
=======
Modules
=======
.. toctree::
:maxdepth: 2
03_module_dev_01
03_module_dev_02
03_module_dev_03
03_module_dev_04
03_module_dev_05
03_module_dev_06

387
doc/03_module_dev_01.rst Normal file
View File

@ -0,0 +1,387 @@
Module structure
================
A module can contain the following elements:
- **Business object** : declared as Python classes extending the class
osv.Model, the persistence of these resource is completly managed by
OpenERP's ORM.
- **Data** : XML/CSV files with meta-data (views and workflows declaration),
configuration data (modules parametrization) and demo data (optional but
recommended for testing),
- **Reports** : RML (XML format). HTML/MAKO or OpenOffice report templates, to
be merged with any kind of business data, and generate HTML, ODT or PDF
reports.
.. figure:: _static/03_module_gen_view.png
:width: 75%
:alt: Module composition
:align: center
Module composition
Each module is contained in its own directory within either the server/bin/addons
directory or another directory of addons, configured in server installation.
To create a new module for example the 'OpenAcademy' module, the following
steps are required:
- create a ``openacademy`` subdirectory in the source/addons directory
- create the module import file ``__init__.py``
- create the module manifield file ``__openerp__.py``
- create **Python** files containing **objects**
- create **.xml files** holding module data such as views, menu entries
or demo data
- optionally create **reports** or **workflows**
Python import file __init__.py
++++++++++++++++++++++++++++++
The ``__init__.py`` file is the Python import file, because an OpenERP module
is also a regular Python module. The file should import all the other python
file or submodules.
For example, if a module contains a single python file named ``openacademy.py``,
the file should look like:
import openacademy
Manifest file __openerp__.py
+++++++++++++++++++++++++++++++
In the created module directory, you must add a **__openerp__.py** file.
This file, which must be a Python dict literal, is responsible to
1. determine the *XML files that will be parsed* during the initialization
of the server, and also to
2. determine the *dependencies* of the created module.
3. declare additional meta data
This file must contain a Python dictionary with the following values:
::
name The name of the module in English.
version The version of the module.
summary Short description or keywords
description The module description (text).
category The categrory of the module
author The author of the module.
website URL of the website of the module.
license The license of the module (default: AGPL-3).
depends List of modules on which this module depends beside base.
data List of .xml files to load when the module is installed or updated.
demo List of additional .xml files to load when the module is
installed or updated and demo flag is active.
installable True or False. Determines whether the module is installable
or not.
auto_install True or False (default: False). If set to ``True``, the
module is a link module. It will be installed as soon
as all its dependencies are installed.
For the ``openacademy`` module, here is an example of ``__openerp__.py``
declaration file:
.. code-block:: python
{
'name' : "OpenAcademy",
'version' : "1.0",
'author' : "OpenERP SA",
'category' : "Tools",
'depends' : ['mail'],
'data' : [
'openacademy_view.xml',
'openacademy_data.xml',
'report/module_report.xml',
'wizard/module_wizard.xml',
],
'demo' : [
'openacademy_demo.xml'
],
'installable': True,
}
Objects
+++++++
All OpenERP resources are objects: invoices, partners. Metadata are also object
too: menus, actions, reports... Object names are hierarchical, as in the
following examples:
* account.transfer : a money transfer
* account.invoice : an invoice
* account.invoice.line : an invoice line
Generally, the first word is the name of the module: account, stock, sale.
Those object are declared in python be subclassing osv.Model
The ORM of OpenERP is constructed over PostgreSQL. It is thus possible to
query the object used by OpenERP using the object interface (ORM) or by
directly using SQL statements.
But it is dangerous to write or read directly in the PostgreSQL database, as
you will shortcut important steps like constraints checking or workflow
modification.
.. figure:: images/pom_3_0_3.png
:scale: 50
:align: center
*The Physical Objects Model of [OpenERP version 3.0.3]*
XML Files
+++++++++
XML files located in the module directory are used to initialize or update the
the database when the module is installed or updated. They are used for many
purposes, among which we can cite :
* initialization and demonstration data declaration,
* views declaration,
* reports declaration,
* workflows declaration.
General structure of OpenERP XML files is more detailed in the
:ref:`xml-serialization` section. Look here if you are interested in learning
more about *initialization* and *demonstration data declaration* XML files. The
following section are only related to XML specific to *actions, menu entries,
reports, wizards* and *workflows* declaration.
Data can be inserted or updated into the PostgreSQL tables corresponding to the
OpenERP objects using XML files. The general structure of an OpenERP XML file
is as follows:
.. code-block:: xml
<?xml version="1.0"?>
<openerp>
<data>
<record model="model.name_1" id="id_name_1">
<field name="field1"> "field1 content" </field>
<field name="field2"> "field2 content" </field>
(...)
</record>
<record model="model.name_2" id="id_name_2">
(...)
</record>
(...)
</data>
</openerp>
Record Tag
//////////
**Description**
The addition of new data is made with the record tag. This one takes a
mandatory attribute : model. Model is the object name where the insertion has
to be done. The tag record can also take an optional attribute: id. If this
attribute is given, a variable of this name can be used later on, in the same
file, to make reference to the newly created resource ID.
A record tag may contain field tags. They indicate the record's fields value.
If a field is not specified the default value will be used.
The Record Field tag
////////////////////
The attributes for the field tag are the following:
name : mandatory
the field name
eval : optional
python expression that indicating the value to add
ref
reference to an id defined in this file
model
model to be looked up in the search
search
a query
**Example**
.. code-block:: xml
<record model="ir.actions.report.xml" id="l0">
<field name="model">account.invoice</field>
<field name="name">Invoices List</field>
<field name="report_name">account.invoice.list</field>
<field name="report_xsl">account/report/invoice.xsl</field>
<field name="report_xml">account/report/invoice.xml</field>
</record>
Let's review an example taken from the OpenERP source (base_demo.xml in the base module):
.. code-block:: xml
<record model="res.company" id="main_company">
<field name="name">Tiny sprl</field>
<field name="partner_id" ref="main_partner"/>
<field name="currency_id" ref="EUR"/>
</record>
.. code-block:: xml
<record model="res.users" id="user_admin">
<field name="login">admin</field>
<field name="password">admin</field>
<field name="name">Administrator</field>
<field name="signature">Administrator</field>
<field name="action_id" ref="action_menu_admin"/>
<field name="menu_id" ref="action_menu_admin"/>
<field name="address_id" ref="main_address"/>
<field name="groups_id" eval="[(6,0,[group_admin])]"/>
<field name="company_id" ref="main_company"/>
</record>
This last record defines the admin user :
* The fields login, password, etc are straightforward.
* The ref attribute allows to fill relations between the records :
.. code-block:: xml
<field name="company_id" ref="main_company"/>
The field **company_id** is a many-to-one relation from the user object to the company object, and **main_company** is the id of to associate.
* The **eval** attribute allows to put some python code in the xml: here the groups_id field is a many2many. For such a field, "[(6,0,[group_admin])]" means : Remove all the groups associated with the current user and use the list [group_admin] as the new associated groups (and group_admin is the id of another record).
* The **search** attribute allows to find the record to associate when you do not know its xml id. You can thus specify a search criteria to find the wanted record. The criteria is a list of tuples of the same form than for the predefined search method. If there are several results, an arbitrary one will be chosen (the first one):
.. code-block:: xml
<field name="partner_id" search="[]" model="res.partner"/>
This is a classical example of the use of **search** in demo data: here we do not really care about which partner we want to use for the test, so we give an empty list. Notice the **model** attribute is currently mandatory.
Function tag
////////////
A function tag can contain other function tags.
model : mandatory
The model to be used
name : mandatory
the function given name
eval
should evaluate to the list of parameters of the method to be called, excluding cr and uid
**Example**
.. code-block:: xml
<function model="ir.ui.menu" name="search" eval="[[('name','=','Operations')]]"/>
Views
+++++
Views are a way to represent the objects on the client side. They indicate to the client how to lay out the data coming from the objects on the screen.
There are two types of views:
* form views
* tree views
Lists are simply a particular case of tree views.
A same object may have several views: the first defined view of a kind (*tree, form*, ...) will be used as the default view for this kind. That way you can have a default tree view (that will act as the view of a one2many) and a specialized view with more or less information that will appear when one double-clicks on a menu item. For example, the products have several views according to the product variants.
Views are described in XML.
If no view has been defined for an object, the object is able to generate a view to represent itself. This can limit the developer's work but results in less ergonomic views.
Usage example
/////////////
When you open an invoice, here is the chain of operations followed by the client:
* An action asks to open the invoice (it gives the object's data (account.invoice), the view, the domain (e.g. only unpaid invoices) ).
* The client asks (with XML-RPC) to the server what views are defined for the invoice object and what are the data it must show.
* The client displays the form according to the view
.. figure:: images/arch_view_use.png
:scale: 50
:align: center
To develop new objects
//////////////////////
The design of new objects is restricted to the minimum: create the objects and optionally create the views to represent them. The PostgreSQL tables do not have to be written by hand because the objects are able to automatically create them (or adapt them in case they already exist).
Reports
"""""""
OpenERP uses a flexible and powerful reporting system. Reports are generated either in PDF or in HTML. Reports are designed on the principle of separation between the data layer and the presentation layer.
Reports are described more in details in the `Reporting <http://openobject.com/wiki/index.php/Developers:Developper%27s_Book/Reports>`_ chapter.
Workflow
""""""""
The objects and the views allow you to define new forms very simply, lists/trees and interactions between them. But that is not enough, you must define the dynamics of these objects.
A few examples:
* a confirmed sale order must generate an invoice, according to certain conditions
* a paid invoice must, only under certain conditions, start the shipping order
The workflows describe these interactions with graphs. One or several workflows may be associated to the objects. Workflows are not mandatory; some objects don't have workflows.
Below is an example workflow used for sale orders. It must generate invoices and shipments according to certain conditions.
.. figure:: images/arch_workflow_sale.png
:scale: 85
:align: center
In this graph, the nodes represent the actions to be done:
* create an invoice,
* cancel the sale order,
* generate the shipping order, ...
The arrows are the conditions;
* waiting for the order validation,
* invoice paid,
* click on the cancel button, ...
The squared nodes represent other Workflows;
* the invoice
* the shipping
i18n
----
.. versionchanged:: 5.0
Each module has its own ``i18n`` folder. In addition, OpenERP can now deal with
``.po`` [#f_po]_ files as import/export format. The translation files of the
installed languages are automatically loaded when installing or updating a
module.
Translations are managed by the `Launchpad Web interface
<https://translations.launchpad.net/openobject>`_. Here, you'll find the list
of translatable projects.
Please read the `FAQ <https://answers.launchpad.net/rosetta/+faqs>`_ before asking questions.
.. [#f_po] http://www.gnu.org/software/autoconf/manual/gettext/PO-Files.html#PO-Files

959
doc/03_module_dev_02.rst Normal file
View File

@ -0,0 +1,959 @@
Objects, Fields and Methods
===========================
OpenERP Objects
---------------
.. This chapter is dedicated to detailed objects definition:
all fields
all objects
inheritancies
All the ERP's pieces of data are accessible through "objects". As an example, there is a res.partner object to access the data concerning the partners, an account.invoice object for the data concerning the invoices, etc...
Please note that there is an object for every type of resource, and not an
object per resource. We have thus a res.partner object to manage all the
partners and not a *res.partner* object per partner. If we talk in "object
oriented" terms, we could also say that there is an object per level.
The direct consequences is that all the methods of objects have a common parameter: the "ids" parameter. This specifies on which resources (for example, on which partner) the method must be applied. Precisely, this parameter contains a list of resource ids on which the method must be applied.
For example, if we have two partners with the identifiers 1 and 5, and we want to call the res_partner method "send_email", we will write something like::
res_partner.send_email(... , [1, 5], ...)
We will see the exact syntax of object method calls further in this document.
In the following section, we will see how to define a new object. Then, we will check out the different methods of doing this.
For developers:
* OpenERP "objects" are usually called classes in object oriented programming.
* A OpenERP "resource" is usually called an object in OO programming, instance of a class.
It's a bit confusing when you try to program inside OpenERP, because the language used is Python, and Python is a fully object oriented language, and has objects and instances ...
Luckily, an OpenERP "resource" can be converted magically into a nice Python object using the "browse" class method (OpenERP object method).
The ORM - Object-relational mapping - Models
--------------------------------------------
The ORM, short for Object-Relational Mapping, is a central part of OpenERP.
In OpenERP, the data model is described and manipulated through Python classes
and objects. It is the ORM job to bridge the gap -- as transparently as
possible for the developer -- between Python and the underlying relational
database (PostgreSQL), which will provide the persistence we need for our
objects.
OpenERP Object Attributes
-------------------------
Objects Introduction
++++++++++++++++++++
To define a new object, you must define a new Python class then instantiate it. This class must inherit from the osv class in the osv module.
Object definition
+++++++++++++++++
The first line of the object definition will always be of the form::
class name_of_the_object(osv.osv):
_name = 'name.of.the.object'
_columns = { ... }
...
name_of_the_object()
An object is defined by declaring some fields with predefined names in the
class. Two of them are required (_name and _columns), the rest are optional.
The predefined fields are:
Predefined fields
+++++++++++++++++
`_auto`
Determines whether a corresponding PostgreSQL table must be generated
automatically from the object. Setting _auto to False can be useful in case
of OpenERP objects generated from PostgreSQL views. See the "Reporting From
PostgreSQL Views" section for more details.
`_columns (required)`
The object fields. See the :ref:`fields <fields-link>` section for further details.
`_constraints`
The constraints on the object. See the constraints section for details.
`_sql_constraints`
The SQL Constraint on the object. See the SQL constraints section for further details.
`_defaults`
The default values for some of the object's fields. See the default value section for details.
`_inherit`
The name of the osv object which the current object inherits from. See the :ref:`object inheritance section<inherit-link>`
(first form) for further details.
`_inherits`
The list of osv objects the object inherits from. This list must be given in
a python dictionary of the form: {'name_of_the_parent_object':
'name_of_the_field', ...}. See the :ref:`object inheritance section<inherits-link>`
(second form) for further details. Default value: {}.
`_log_access`
Determines whether or not the write access to the resource must be logged.
If true, four fields will be created in the SQL table: create_uid,
create_date, write_uid, write_date. Those fields represent respectively the
id of the user who created the record, the creation date of record, the id
of the user who last modified the record, and the date of that last
modification. This data may be obtained by using the perm_read method.
`_name (required)`
Name of the object. Default value: None.
`_order`
Name of the fields used to sort the results of the search and read methods.
Default value: 'id'.
Examples::
_order = "name"
_order = "date_order desc"
`_rec_name`
Name of the field in which the name of every resource is stored. Default
value: 'name'. Note: by default, the name_get method simply returns the
content of this field.
`_sequence`
Name of the SQL sequence that manages the ids for this object. Default value: None.
`_sql`
SQL code executed upon creation of the object (only if _auto is True). It means this code gets executed after the table is created.
`_table`
Name of the SQL table. Default value: the value of the _name field above
with the dots ( . ) replaced by underscores ( _ ).
.. _inherit-link:
Object Inheritance - _inherit
-----------------------------
Introduction
++++++++++++
Objects may be inherited in some custom or specific modules. It is better to
inherit an object to add/modify some fields.
It is done with::
_inherit='object.name'
Extension of an object
++++++++++++++++++++++
There are two possible ways to do this kind of inheritance. Both ways result in
a new class of data, which holds parent fields and behaviour as well as
additional fields and behaviour, but they differ in heavy programatical
consequences.
While Example 1 creates a new subclass "custom_material" that may be "seen" or
"used" by any view or tree which handles "network.material", this will not be
the case for Example 2.
This is due to the table (other.material) the new subclass is operating on,
which will never be recognized by previous "network.material" views or trees.
Example 1::
class custom_material(osv.osv):
_name = 'network.material'
_inherit = 'network.material'
_columns = {
'manuf_warranty': fields.boolean('Manufacturer warranty?'),
}
_defaults = {
'manuf_warranty': lambda *a: False,
}
custom_material()
.. tip:: Notice
_name == _inherit
In this example, the 'custom_material' will add a new field 'manuf_warranty' to
the object 'network.material'. New instances of this class will be visible by
views or trees operating on the superclasses table 'network.material'.
This inheritancy is usually called "class inheritance" in Object oriented
design. The child inherits data (fields) and behavior (functions) of his
parent.
Example 2::
class other_material(osv.osv):
_name = 'other.material'
_inherit = 'network.material'
_columns = {
'manuf_warranty': fields.boolean('Manufacturer warranty?'),
}
_defaults = {
'manuf_warranty': lambda *a: False,
}
other_material()
.. tip:: Notice
_name != _inherit
In this example, the 'other_material' will hold all fields specified by
'network.material' and it will additionally hold a new field 'manuf_warranty'.
All those fields will be part of the table 'other.material'. New instances of
this class will therefore never been seen by views or trees operating on the
superclasses table 'network.material'.
This type of inheritancy is known as "inheritance by prototyping" (e.g.
Javascript), because the newly created subclass "copies" all fields from the
specified superclass (prototype). The child inherits data (fields) and behavior
(functions) of his parent.
.. _inherits-link:
Inheritance by Delegation - _inherits
-------------------------------------
**Syntax :**::
class tiny_object(osv.osv)
_name = 'tiny.object'
_table = 'tiny_object'
_inherits = {
'tiny.object_a': 'object_a_id',
'tiny.object_b': 'object_b_id',
... ,
'tiny.object_n': 'object_n_id'
}
(...)
The object 'tiny.object' inherits from all the columns and all the methods from
the n objects 'tiny.object_a', ..., 'tiny.object_n'.
To inherit from multiple tables, the technique consists in adding one column to
the table tiny_object per inherited object. This column will store a foreign
key (an id from another table). The values *'object_a_id' 'object_b_id' ...
'object_n_id'* are of type string and determine the title of the columns in
which the foreign keys from 'tiny.object_a', ..., 'tiny.object_n' are stored.
This inheritance mechanism is usually called " *instance inheritance* " or "
*value inheritance* ". A resource (instance) has the VALUES of its parents.
.. _fields-link:
Fields Introduction
-------------------
Objects may contain different types of fields. Those types can be divided into
three categories: simple types, relation types and functional fields. The
simple types are integers, floats, booleans, strings, etc ... ; the relation
types are used to represent relations between objects (one2one, one2many,
many2one). Functional fields are special fields because they are not stored in
the database but calculated in real time given other fields of the view.
Here's the header of the initialization method of the class any field defined
in OpenERP inherits (as you can see in server/bin/osv/fields.py)::
def __init__(self, string='unknown', required=False, readonly=False,
domain=None, context="", states=None, priority=0, change_default=False, size=None,
ondelete="set null", translate=False, select=False, **args) :
There are a common set of optional parameters that are available to most field
types:
:change_default:
Whether or not the user can define default values on other fields depending
on the value of this field. Those default values need to be defined in
the ir.values table.
:help:
A description of how the field should be used: longer and more descriptive
than `string`. It will appear in a tooltip when the mouse hovers over the
field.
:ondelete:
How to handle deletions in a related record. Allowable values are:
'restrict', 'no action', 'cascade', 'set null', and 'set default'.
:priority: Not used?
:readonly: `True` if the user cannot edit this field, otherwise `False`.
:required:
`True` if this field must have a value before the object can be saved,
otherwise `False`.
:size: The size of the field in the database: number characters or digits.
:states:
Lets you override other parameters for specific states of this object.
Accepts a dictionary with the state names as keys and a list of name/value
tuples as the values. For example: `states={'posted':[('readonly',True)]}`
:string:
The field name as it should appear in a label or column header. Strings
containing non-ASCII characters must use python unicode objects.
For example: `'tested': fields.boolean(u'Testé')`
:translate:
`True` if the *content* of this field should be translated, otherwise
`False`.
There are also some optional parameters that are specific to some field types:
:context:
Define a variable's value visible in the view's context or an on-change
function. Used when searching child table of `one2many` relationship?
:domain:
Domain restriction on a relational field.
Default value: [].
Example: domain=[('field','=',value)])
:invisible: Hide the field's value in forms. For example, a password.
:on_change:
Default value for the `on_change` attribute in the view. This will launch
a function on the server when the field changes in the client. For example,
`on_change="onchange_shop_id(shop_id)"`.
:relation:
Used when a field is an id reference to another table. This is the name of
the table to look in. Most commonly used with related and function field
types.
:select:
Default value for the `select` attribute in the view. 1 means basic search,
and 2 means advanced search.
Type of Fields
--------------
Basic Types
+++++++++++
:boolean:
A boolean (true, false).
Syntax::
fields.boolean('Field Name' [, Optional Parameters]),
:integer:
An integer.
Syntax::
fields.integer('Field Name' [, Optional Parameters]),
:float:
A floating point number.
Syntax::
fields.float('Field Name' [, Optional Parameters]),
.. note::
The optional parameter digits defines the precision and scale of the
number. The scale being the number of digits after the decimal point
whereas the precision is the total number of significant digits in the
number (before and after the decimal point). If the parameter digits is
not present, the number will be a double precision floating point number.
Warning: these floating-point numbers are inexact (not any value can be
converted to its binary representation) and this can lead to rounding
errors. You should always use the digits parameter for monetary amounts.
Example::
'rate': fields.float(
'Relative Change rate',
digits=(12,6) [,
Optional Parameters]),
:char:
A string of limited length. The required size parameter determines its size.
Syntax::
fields.char(
'Field Name',
size=n [,
Optional Parameters]), # where ''n'' is an integer.
Example::
'city' : fields.char('City Name', size=30, required=True),
:text:
A text field with no limit in length.
Syntax::
fields.text('Field Name' [, Optional Parameters]),
:date:
A date.
Syntax::
fields.date('Field Name' [, Optional Parameters]),
:datetime:
Allows to store a date and the time of day in the same field.
Syntax::
fields.datetime('Field Name' [, Optional Parameters]),
:binary:
A binary chain
:selection:
A field which allows the user to make a selection between various predefined values.
Syntax::
fields.selection((('n','Unconfirmed'), ('c','Confirmed')),
'Field Name' [, Optional Parameters]),
.. note::
Format of the selection parameter: tuple of tuples of strings of the form::
(('key_or_value', 'string_to_display'), ... )
.. note::
You can specify a function that will return the tuple. Example ::
def _get_selection(self, cursor, user_id, context=None):
return (
('choice1', 'This is the choice 1'),
('choice2', 'This is the choice 2'))
_columns = {
'sel' : fields.selection(
_get_selection,
'What do you want ?')
}
*Example*
Using relation fields **many2one** with **selection**. In fields definitions add::
...,
'my_field': fields.many2one(
'mymodule.relation.model',
'Title',
selection=_sel_func),
...,
And then define the _sel_func like this (but before the fields definitions)::
def _sel_func(self, cr, uid, context=None):
obj = self.pool.get('mymodule.relation.model')
ids = obj.search(cr, uid, [])
res = obj.read(cr, uid, ids, ['name', 'id'], context)
res = [(r['id'], r['name']) for r in res]
return res
Relational Types
++++++++++++++++
:one2one:
A one2one field expresses a one:to:one relation between two objects. It is
deprecated. Use many2one instead.
Syntax::
fields.one2one('other.object.name', 'Field Name')
:many2one:
Associates this object to a parent object via this Field. For example
Department an Employee belongs to would Many to one. i.e Many employees will
belong to a Department
Syntax::
fields.many2one(
'other.object.name',
'Field Name',
optional parameters)
Optional parameters:
- ondelete: What should happen when the resource this field points to is deleted.
+ Predefined value: "cascade", "set null", "restrict", "no action", "set default"
+ Default value: "set null"
- required: True
- readonly: True
- select: True - (creates an index on the Foreign Key field)
*Example* ::
'commercial': fields.many2one(
'res.users',
'Commercial',
ondelete='cascade'),
:one2many:
TODO
Syntax::
fields.one2many(
'other.object.name',
'Field relation id',
'Fieldname',
optional parameter)
Optional parameters:
- invisible: True/False
- states: ?
- readonly: True/False
*Example* ::
'address': fields.one2many(
'res.partner.address',
'partner_id',
'Contacts'),
:many2many:
TODO
Syntax::
fields.many2many('other.object.name',
'relation object',
'actual.object.id',
'other.object.id',
'Field Name')
Where:
- other.object.name is the other object which belongs to the relation
- relation object is the table that makes the link
- actual.object.id and other.object.id are the fields' names used in the relation table
Example::
'category_ids':
fields.many2many(
'res.partner.category',
'res_partner_category_rel',
'partner_id',
'category_id',
'Categories'),
To make it bidirectional (= create a field in the other object)::
class other_object_name2(osv.osv):
_inherit = 'other.object.name'
_columns = {
'other_fields': fields.many2many(
'actual.object.name',
'relation object',
'actual.object.id',
'other.object.id',
'Other Field Name'),
}
other_object_name2()
Example::
class res_partner_category2(osv.osv):
_inherit = 'res.partner.category'
_columns = {
'partner_ids': fields.many2many(
'res.partner',
'res_partner_category_rel',
'category_id',
'partner_id',
'Partners'),
}
res_partner_category2()
:related:
Sometimes you need to refer to the relation of a relation. For example,
supposing you have objects: City -> State -> Country, and you need to refer to
the Country from a City, you can define a field as below in the City object::
'country_id': fields.related(
'state_id',
'country_id',
type="many2one",
relation="res.country",
string="Country",
store=False)
Where:
- The first set of parameters are the chain of reference fields to
follow, with the desired field at the end.
- :guilabel:`type` is the type of that desired field.
- Use :guilabel:`relation` if the desired field is still some kind of
reference. :guilabel:`relation` is the table to look up that
reference in.
Functional Fields
+++++++++++++++++
A functional field is a field whose value is calculated by a function (rather
than being stored in the database).
**Parameters:** ::
fnct, arg=None, fnct_inv=None, fnct_inv_arg=None, type="float",
fnct_search=None, obj=None, method=False, store=False, multi=False
where
* :guilabel:`fnct` is the function or method that will compute the field
value. It must have been declared before declaring the functional field.
* :guilabel:`fnct_inv` is the function or method that will allow writing
values in that field.
* :guilabel:`type` is the field type name returned by the function. It can
be any field type name except function.
* :guilabel:`fnct_search` allows you to define the searching behaviour on
that field.
* :guilabel:`method` whether the field is computed by a method (of an
object) or a global function
* :guilabel:`store` If you want to store field in database or not. Default
is False.
* :guilabel:`multi` is a group name. All fields with the same `multi`
parameter will be calculated in a single function call.
fnct parameter
""""""""""""""
If *method* is True, the signature of the method must be::
def fnct(self, cr, uid, ids, field_name, arg, context):
otherwise (if it is a global function), its signature must be::
def fnct(cr, table, ids, field_name, arg, context):
Either way, it must return a dictionary of values of the form
**{id'_1_': value'_1_', id'_2_': value'_2_',...}.**
The values of the returned dictionary must be of the type specified by the type
argument in the field declaration.
If *multi* is set, then *field_name* is replaced by *field_names*: a list
of the field names that should be calculated. Each value in the returned
dictionary is also a dictionary from field name to value. For example, if the
fields `'name'`, and `'age'` are both based on the `vital_statistics` function,
then the return value of `vital_statistics` might look like this when `ids` is
`[1, 2, 5]`::
{
1: {'name': 'Bob', 'age': 23},
2: {'name': 'Sally', 'age', 19},
5: {'name': 'Ed', 'age': 62}
}
fnct_inv parameter
""""""""""""""""""
If *method* is true, the signature of the method must be::
def fnct(self, cr, uid, ids, field_name, field_value, arg, context):
otherwise (if it is a global function), it should be::
def fnct(cr, table, ids, field_name, field_value, arg, context):
fnct_search parameter
"""""""""""""""""""""
If method is true, the signature of the method must be::
def fnct(self, cr, uid, obj, name, args, context):
otherwise (if it is a global function), it should be::
def fnct(cr, uid, obj, name, args, context):
The return value is a list containing 3-part tuples which are used in search function::
return [('id','in',[1,3,5])]
*obj* is the same as *self*, and *name* receives the field name. *args* is a list
of 3-part tuples containing search criteria for this field, although the search
function may be called separately for each tuple.
Example
"""""""
Suppose we create a contract object which is :
.. code-block:: python
class hr_contract(osv.osv):
_name = 'hr.contract'
_description = 'Contract'
_columns = {
'name' : fields.char('Contract Name', size=30, required=True),
'employee_id' : fields.many2one('hr.employee', 'Employee', required=True),
'function' : fields.many2one('res.partner.function', 'Function'),
}
hr_contract()
If we want to add a field that retrieves the function of an employee by looking its current contract, we use a functional field. The object hr_employee is inherited this way:
.. code-block:: python
class hr_employee(osv.osv):
_name = "hr.employee"
_description = "Employee"
_inherit = "hr.employee"
_columns = {
'contract_ids' : fields.one2many('hr.contract', 'employee_id', 'Contracts'),
'function' : fields.function(
_get_cur_function_id,
type='many2one',
obj="res.partner.function",
method=True,
string='Contract Function'),
}
hr_employee()
.. note:: three points
* :guilabel:`type` ='many2one' is because the function field must create
a many2one field; function is declared as a many2one in hr_contract also.
* :guilabel:`obj` ="res.partner.function" is used to specify that the
object to use for the many2one field is res.partner.function.
* We called our method :guilabel:`_get_cur_function_id` because its role
is to return a dictionary whose keys are ids of employees, and whose
corresponding values are ids of the function of those employees. The
code of this method is:
.. code-block:: python
def _get_cur_function_id(self, cr, uid, ids, field_name, arg, context):
for i in ids:
#get the id of the current function of the employee of identifier "i"
sql_req= """
SELECT f.id AS func_id
FROM hr_contract c
LEFT JOIN res_partner_function f ON (f.id = c.function)
WHERE
(c.employee_id = %d)
""" % (i,)
cr.execute(sql_req)
sql_res = cr.dictfetchone()
if sql_res: #The employee has one associated contract
res[i] = sql_res['func_id']
else:
#res[i] must be set to False and not to None because of XML:RPC
# "cannot marshal None unless allow_none is enabled"
res[i] = False
return res
The id of the function is retrieved using a SQL query. Note that if the query
returns no result, the value of sql_res['func_id'] will be None. We force the
False value in this case value because XML:RPC (communication between the server
and the client) doesn't allow to transmit this value.
store Parameter
"""""""""""""""
It will calculate the field and store the result in the table. The field will be
recalculated when certain fields are changed on other objects. It uses the
following syntax:
.. code-block:: python
store = {
'object_name': (
function_name,
['field_name1', 'field_name2'],
priority)
}
It will call function function_name when any changes are written to fields in the
list ['field1','field2'] on object 'object_name'. The function should have the
following signature::
def function_name(self, cr, uid, ids, context=None):
Where `ids` will be the ids of records in the other object's table that have
changed values in the watched fields. The function should return a list of ids
of records in its own table that should have the field recalculated. That list
will be sent as a parameter for the main function of the field.
Here's an example from the membership module:
.. code-block:: python
'membership_state':
fields.function(
_membership_state,
method=True,
string='Current membership state',
type='selection',
selection=STATE,
store={
'account.invoice': (_get_invoice_partner, ['state'], 10),
'membership.membership_line': (_get_partner_id,['state'], 10),
'res.partner': (
lambda self, cr, uid, ids, c={}: ids,
['free_member'],
10)
}),
Property Fields
+++++++++++++++
.. describe:: Declaring a property
A property is a special field: fields.property.
.. code-block:: python
class res_partner(osv.osv):
_name = "res.partner"
_inherit = "res.partner"
_columns = {
'property_product_pricelist':
fields.property(
'product.pricelist',
type='many2one',
relation='product.pricelist',
string="Sale Pricelist",
method=True,
view_load=True,
group_name="Pricelists Properties"),
}
Then you have to create the default value in a .XML file for this property:
.. code-block:: xml
<record model="ir.property" id="property_product_pricelist">
<field name="name">property_product_pricelist</field>
<field name="fields_id" search="[('model','=','res.partner'),
('name','=','property_product_pricelist')]"/>
<field name="value" eval="'product.pricelist,'+str(list0)"/>
</record>
..
.. tip::
if the default value points to a resource from another module, you can use the ref function like this:
<field name="value" eval="'product.pricelist,'+str(ref('module.data_id'))"/>
**Putting properties in forms**
To add properties in forms, just put the <properties/> tag in your form. This will automatically add all properties fields that are related to this object. The system will add properties depending on your rights. (some people will be able to change a specific property, others won't).
Properties are displayed by section, depending on the group_name attribute. (It is rendered in the client like a separator tag).
**How does this work ?**
The fields.property class inherits from fields.function and overrides the read and write method. The type of this field is many2one, so in the form a property is represented like a many2one function.
But the value of a property is stored in the ir.property class/table as a complete record. The stored value is a field of type reference (not many2one) because each property may point to a different object. If you edit properties values (from the administration menu), these are represented like a field of type reference.
When you read a property, the program gives you the property attached to the instance of object you are reading. If this object has no value, the system will give you the default property.
The definition of a property is stored in the ir.model.fields class like any other fields. In the definition of the property, you can add groups that are allowed to change to property.
**Using properties or normal fields**
When you want to add a new feature, you will have to choose to implement it as a property or as normal field. Use a normal field when you inherit from an object and want to extend this object. Use a property when the new feature is not related to the object but to an external concept.
Here are a few tips to help you choose between a normal field or a property:
Normal fields extend the object, adding more features or data.
A property is a concept that is attached to an object and have special features:
* Different value for the same property depending on the company
* Rights management per field
* It's a link between resources (many2one)
**Example 1: Account Receivable**
The default "Account Receivable" for a specific partner is implemented as a property because:
* This is a concept related to the account chart and not to the partner, so it is an account property that is visible on a partner form. Rights have to be managed on this fields for accountants, these are not the same rights that are applied to partner objects. So you have specific rights just for this field of the partner form: only accountants may change the account receivable of a partner.
* This is a multi-company field: the same partner may have different account receivable values depending on the company the user belongs to. In a multi-company system, there is one account chart per company. The account receivable of a partner depends on the company it placed the sale order.
* The default account receivable is the same for all partners and is configured from the general property menu (in administration).
.. note::
One interesting thing is that properties avoid "spaghetti" code. The account module depends on the partner (base) module. But you can install the partner (base) module without the accounting module. If you add a field that points to an account in the partner object, both objects will depend on each other. It's much more difficult to maintain and code (for instance, try to remove a table when both tables are pointing to each others.)
**Example 2: Product Times**
The product expiry module implements all delays related to products: removal date, product usetime, ... This module is very useful for food industries.
This module inherits from the product.product object and adds new fields to it:
.. code-block:: python
class product_product(osv.osv):
_inherit = 'product.product'
_name = 'product.product'
_columns = {
'life_time': fields.integer('Product lifetime'),
'use_time': fields.integer('Product usetime'),
'removal_time': fields.integer('Product removal time'),
'alert_time': fields.integer('Product alert time'),
}
product_product()
..
This module adds simple fields to the product.product object. We did not use properties because:
* We extend a product, the life_time field is a concept related to a product, not to another object.
* We do not need a right management per field, the different delays are managed by the same people that manage all products.
ORM methods
-----------
Keeping the context in ORM methods
++++++++++++++++++++++++++++++++++
In OpenObject, the context holds very important data such as the language in
which a document must be written, whether function field needs updating or not,
etc.
When calling an ORM method, you will probably already have a context - for
example the framework will provide you with one as a parameter of almost
every method.
If you do have a context, it is very important that you always pass it through
to every single method you call.
This rule also applies to writing ORM methods. You should expect to receive a
context as parameter, and always pass it through to every other method you call..

1436
doc/03_module_dev_03.rst Normal file

File diff suppressed because it is too large Load Diff

326
doc/03_module_dev_04.rst Normal file
View File

@ -0,0 +1,326 @@
=================
Menus and Actions
=================
Menus
=====
Menus are records in the ``ir.ui.menu`` table. In order to create a new
menu entry, you can directly create a record using the ``record`` tag.
.. code-block:: xml
<record id="menu_xml_id" model="ir.ui.menu">
<field name="name">My Menu</field>
<field name="action" ref="action_xml_id"/>
<field name="sequence" eval="<integer>"/>
<field name="parent_id" ref="parent_menu_xml_id"/>
</record>
There is a shortcut by using the ``menuitem`` tag that **you should use
preferentially**. It offers a flexible way to easily define the menu entry
along with icons and other fields.
.. code-block:: xml
<menuitem id="menu_xml_id"
name="My Menu"
action="action_xml_id"
icon="NAME_FROM_LIST"
groups="groupname"
sequence="<integer>"
parent="parent_menu_xml_id"
/>
Where
- ``id`` specifies the **xml identifier** of the menu item in the menu
items table. This identifier must be unique. Mandatory field.
- ``name`` defines the menu name that will be displayed in the client.
Mandatory field.
- ``action`` specifies the identifier of the attached action defined
in the action table (``ir.actions.act_window``). This field is not
mandatory : you can define menu elements without associating actions
to them. This is useful when defining custom icons for menu elements
that will act as folders. This is how custom icons for "Projects" or
"Human Resources" in OpenERP are defined).
- ``groups`` specifies which group of user can see the menu item.
(example : groups="admin"). See section " Management of Access Rights"
for more information. Multiple groups should be separated by a ','
(example: groups="admin,user")
- ``sequence`` is an integer that is used to sort the menu item in the
menu. The higher the sequence number, the downer the menu item. This
argument is not mandatory: if sequence is not specified, the menu item
gets a default sequence number of 10. Menu items with the same sequence
numbers are sorted by order of creation (``_order = "*sequence,id*"``).
The main current limitation of using ``menuitem`` is that the menu action must be an
``act_window`` action. This kind of actions is the most used action in OpenERP.
However for some menus you will use other actions. For example, the Feeds
page that comes with the mail module is a client action. For this kind of
menu entry, you can combine both declaration, as defined in the mail module :
.. code-block:: xml
<!-- toplevel menu -->
<menuitem id="mail_feeds_main" name="Feeds" sequence="0"
web_icon="static/src/img/feeds.png"
web_icon_hover="static/src/img/feeds-hover.png" />
<record id="mail_feeds_main" model="ir.ui.menu">
<field name="action" ref="action_mail_all_feeds"/>
</record>
Actions
=======
The actions define the behavior of the system in response to the actions
of the users ; login of a new user, double-click on an invoice, click on the action button, ...
There are different types of simple actions:
* **Window**: Opening of a new window
* **Report**: The printing of a report
o Custom Report: The personalized reports
o RML Report: The XSL:RML reports
* **Execute**: The execution of a method on the server side
* **Group**: Gather some actions in one group
The actions are used for the following events:
* User connection,
* The user clicks on a menu,
* The user clicks on the icon 'print' or 'action'.
Opening of the menu
+++++++++++++++++++
When the user open the option of the menu "Operations > Partners > Partners Contact", the next steps are done to give the user information on the action to undertake.
1. Search the action in the IR.
2. Execution of the action
1. If the action is the type Opening the Window; it indicates to the user that a new window must be opened for a selected object and it gives you the view (form or list) and the filed to use (only the pro-forma invoice).
2. The user asks the object and receives information necessary to trace a form; the fields description and the XML view.
User connection
+++++++++++++++
When a new user is connected to the server, the client must search the action to use for the first screen of this user. Generally, this action is: open the menu in the 'Operations' section.
The steps are:
1. Reading of a user file to obtain ACTION_ID
2. Reading of the action and execution of this one
The fields
++++++++++
**Action Name**
The action name
**Action Type**
Always 'ir.actions.act_window'
**View Ref**
The view used for showing the object
**Model**
The model of the object to post
**Type of View**
The type of view (Tree/Form)
**Domain Value**
The domain that decreases the visible data with this view
The view
--------
The view describes how the edition form or the data tree/list appear on screen. The views can be of 'Form' or 'Tree' type, according to whether they represent a form for the edition or a list/tree for global data viewing.
A form can be called by an action opening in 'Tree' mode. The form view is generally opened from the list mode (like if the user pushes on 'switch view').
The domain
----------
This parameter allows you to regulate which resources are visible in a selected view.(restriction)
For example, in the invoice case, you can define an action that opens a view that shows only invoices not paid.
The domains are written in python; list of tuples. The tuples have three elements;
* the field on which the test must be done
* the operator used for the test (<, >, =, like)
* the tested value
For example, if you want to obtain only 'Draft' invoice, use the following domain; [('state','=','draft')]
In the case of a simple view, the domain define the resources which are the roots of the tree. The other resources, even if they are not from a part of the domain will be posted if the user develop the branches of the tree.
Window Action
-------------
Actions are explained in more detail in section "Administration Modules - Actions". Here's the template of an action XML record :
::
<record model="ir.actions.act_window" id="action_id_1">
<field name="name">action.name</field>
<field name="view_id" ref="view_id_1"/>
<field name="domain">["list of 3-tuples (max 250 characters)"]</field>
<field name="context">{"context dictionary (max 250 characters)"}</field>
<field name="res_model">Open.object</field>
<field name="view_type">form|tree</field>
<field name="view_mode">form,tree|tree,form|form|tree</field>
<field name="usage">menu</field>
<field name="target">new</field>
</record>
**Where**
* **id** is the identifier of the action in the table "ir.actions.act_window". It must be unique.
* **name** is the name of the action (mandatory).
* **view_id** is the name of the view to display when the action is activated. If this field is not defined, the view of a kind (list or form) associated to the object res_model with the highest priority field is used (if two views have the same priority, the first defined view of a kind is used).
* **domain** is a list of constraints used to refine the results of a selection, and hence to get less records displayed in the view. Constraints of the list are linked together with an AND clause : a record of the table will be displayed in the view only if all the constraints are satisfied.
* **context** is the context dictionary which will be visible in the view that will be opened when the action is activated. Context dictionaries are declared with the same syntax as Python dictionaries in the XML file. For more information about context dictionaries, see section " The context Dictionary".
* **res_model** is the name of the object on which the action operates.
* **view_type** is set to form when the action must open a new form view, and is set to tree when the action must open a new tree view.
* **view_mode** is only considered if view_type is form, and ignored otherwise. The four possibilities are :
- **form,tree** : the view is first displayed as a form, the list view can be displayed by clicking the "alternate view button" ;
- **tree,form** : the view is first displayed as a list, the form view can be displayed by clicking the "alternate view button" ;
- **form** : the view is displayed as a form and there is no way to switch to list view ;
- **tree** : the view is displayed as a list and there is no way to switch to form view.
(version 5 introduced **graph** and **calendar** views)
* **usage** is used [+ ***TODO*** +]
* **target** the view will open in new window like wizard.
* **context** will be passed to the action itself and added to its global context
.. code-block:: xml
<record model="ir.actions.act_window" id="a">
<field name="name">account.account.tree1</field>
<field name="res_model">account.account</field>
<field name="view_type">tree</field>
<field name="view_mode">form,tree</field>
<field name="view_id" ref="v"/>
<field name="domain">[('code','=','0')]</field>
<field name="context">{'project_id': active_id}</field>
</record>
They indicate at the user that he has to open a new window in a new 'tab'.
Administration > Custom > Low Level > Base > Action > Window Actions
.. figure:: images/module_base_action_window.png
:scale: 85
:align: center
Examples of actions
+++++++++++++++++++
This action is declared in server/bin/addons/project/project_view.xml.
::
<record model="ir.actions.act_window" id="open_view_my_project">
<field name="name">project.project</field>
<field name="res_model">project.project</field>
<field name="view_type">tree</field>
<field name="domain">[('parent_id','=',False), ('manager', '=', uid)]</field>
<field name="view_id" ref="view_my_project" />
</record>
This action is declared in server/bin/addons/stock/stock_view.xml.
::
<record model="ir.actions.act_window" id="action_picking_form">
<field name="name">stock.picking</field>
<field name="res_model">stock.picking</field>
<field name="type">ir.actions.act_window</field>
<field name="view_type">form</field>
<field name="view_id" ref="view_picking_form"/>
<field name="context">{'contact_display': 'partner'}</field>
</record>
Url Action
-----------
Report Action
-------------
Report declaration
++++++++++++++++++
Reports in OpenERP are explained in chapter "Reports Reporting". Here's an example of a XML file that declares a RML report :
::
<?xml version="1.0"?>
<openerp>
<data>
<report id="sale_category_print"
string="Sales Orders By Categories"
model="sale.order"
name="sale_category.print"
rml="sale_category/report/sale_category_report.rml"
menu="True"
auto="False"/>
</data>
</openerp>
A report is declared using a **report tag** inside a "data" block. The different arguments of a report tag are :
* **id** : an identifier which must be unique.
* **string** : the text of the menu that calls the report (if any, see below).
* **model** : the OpenERP object on which the report will be rendered.
* **rml** : the .RML report model. Important Note : Path is relative to addons/ directory.
* **menu** : whether the report will be able to be called directly via the client or not. Setting menu to False is useful in case of reports called by wizards.
* **auto** : determines if the .RML file must be parsed using the default parser or not. Using a custom parser allows you to define additional functions to your report.
Action creation
---------------
Linking events to action
++++++++++++++++++++++++
The available type of events are:
* **client_print_multi** (print from a list or form)
* **client_action_multi** (action from a list or form)
* **tree_but_open** (double click on the item of a tree, like the menu)
* **tree_but_action** (action on the items of a tree)
To map an events to an action:
.. code-block:: xml
<record model="ir.values" id="ir_open_journal_period">
<field name="key2">tree_but_open</field>
<field name="model">account.journal.period</field>
<field name="name">Open Journal</field>
<field name="value" eval="'ir.actions.wizard,%d'%action_move_journal_line_form_select"/>
<field name="object" eval="True"/>
</record>
If you double click on a journal/period (object: account.journal.period), this will open the selected wizard. (id="action_move_journal_line_form_select").
You can use a res_id field to allow this action only if the user click on a specific object.
.. code-block:: xml
<record model="ir.values" id="ir_open_journal_period">
<field name="key2">tree_but_open</field>
<field name="model">account.journal.period</field>
<field name="name">Open Journal</field>
<field name="value" eval="'ir.actions.wizard,%d'%action_move_journal_line_form_select"/>
<field name="res_id" eval="3"/>
<field name="object" eval="True"/>
</record>
The action will be triggered if the user clicks on the account.journal.period n°3.
When you declare wizard, report or menus, the ir.values creation is automatically made with these tags:
* <menuitem... />
* <report... />
So you usually do not need to add the mapping by yourself.

92
doc/03_module_dev_05.rst Normal file
View File

@ -0,0 +1,92 @@
==========================
Example of module creation
==========================
Getting the skeleton directory
++++++++++++++++++++++++++++++
Create a ``travel`` directory, that will contain our addon. Create **__init__.py** file and **__openerp__.py** files.
Edit the **__openerp__.py** module manifest file:
.. code-block:: python
{
"name" : "Travel agency module",
"version" : "1.1",
"author" : "Tiny",
"category" : "Generic Modules/Others",
"website" : "http://www.openerp.com",
"description": "A module to manage hotel bookings and a few other useful features.",
"depends" : ["base"],
"init_xml" : [],
"update_xml" : ["travel_view.xml"],
"active": True,
"installable": True
}
Changing the main module file
+++++++++++++++++++++++++++++
Now you need to update the travel.py script to suit the needs of your module.
We suggest you follow the Flash tutorial for this or download the travel agency
module from the 20 minutes tutorial page. ::
The documentation below is overlapping the two next step in this wiki tutorial,
so just consider them as a help and head towards the next two pages first...
The travel.py file should initially look like this:
.. code-block:: python
from osv import osv, fields
class travel_hostel(osv.osv):
_name = 'travel.hostel'
_inherit = 'res.partner'
_columns = {
'rooms_id': fields.one2many('travel.room', 'hostel_id', 'Rooms'),
'quality': fields.char('Quality', size=16),
}
_defaults = {
}
travel_hostel()
Ideally, you would copy that bunch of code several times to create all the
entities you need (travel_airport, travel_room, travel_flight). This is what
will hold the database structure of your objects, but you don't really need to
worry too much about the database side. Just filling this file will create the
system structure for you when you install the module.
Customizing the view
++++++++++++++++++++
You can now move on to editing the views. To do this, edit the custom_view.xml file. It should first look like this:
.. code-block:: xml
<openerp>
<data>
<record model="res.groups" id="group_compta_user">
<field name="name">grcompta</field>
</record>
<record model="res.groups" id="group_compta_admin">
<field name="name">grcomptaadmin</field>
</record>
<menuitem name="Administration" groups="admin,grcomptaadmin"
icon="terp-stock" id="menu_admin_compta"/>
</data>
</openerp>
This is, as you can see, an example taken from an accounting system (French
people call accounting "comptabilité", which explains the compta bit).
Defining a view is defining the interfaces the user will get when accessing
your module. Just defining a bunch of fields here should already get you
started on a complete interface. However, due to the complexity of doing it
right, we recommend, once again, that download the travel agency module example
from this link http://apps.openerp.com/
Next you should be able to create different views using other files to separate
them from your basic/admin view.

View File

@ -1,5 +1,6 @@
.. _module_versioning:
=================
Module versioning
=================
@ -40,7 +41,7 @@ functionalities can be brought together in a better module.
.. _`dependency hell`: http://en.wikipedia.org/wiki/Dependency_hell
Example
-------
=======
Whenever a new module is developed or must evolve, the above versioning policy
should be respected.

195
doc/04_security.rst Normal file
View File

@ -0,0 +1,195 @@
==================================
Security in OpenERP: users, groups
==================================
Users and user roles are critical points concerning internal security in
OpenERP. OpenERP provides several security mechanisms concerning user roles,
all implemented in the OpenERP Server. They are implemented in the lowest
server level, which is the ORM engine. OpenERP distinguishes three different
concepts:
- user: a person identified by its login and password. Note that all employees
of a company are not necessarily OpenERP users; an user is somebody who
accesses the application.
- group: a group of users that has some access rights. A group gives its
access rights to the users that belong to the group. Ex: Sales Manager,
Accountant, etc.
- security rule: a rule that defines the access rights a given group grants
to its users. Security rules are attached to a given resource, for example
the Invoice model.
Security rules are attached to groups. Users are assigned to several groups.
This gives users the rights that are attached to their groups. Therefore
controlling user roles is done by managing user groups and adding or modifying
security rules attached to those groups.
Users
======
Users represent physical persons using OpenERP. They are identified with
a login and a password,they use OpenERP, they can edit their own preferences, ...
By default, a user has no access right. The more we assign groups to the user,
the more he or she gets rights to perform some actions. A user may belong
to several groups.
User groups
===========
The groups determine the access rights to the different resources. A user
may belong to several groups. If he belongs to several groups, we always
use the group with the highest rights for a selected resource. A group
can inherit all the rights from another group
Figure 3 shows how group membership is displayed in the web client. The user
belongs to Sales / Manager, Accounting / Manager, Administration / Access Rights,
Administration / Configuration and Human Resources / Employee groups. Those
groups define the user access rights.
Figure 3: Example of group membership for a given user
Rights
======
Security rules are attached to groups. You can assign several security
rules at the group level, each rule being of one of the following types :
- access rights are global rights on an object,
- record rules are records access filters,
- fields access right,
- workflow transition rules are operations rights.
You can also define rules that are global, i.e. they are applied to all
users, indiscriminately of the groups they belong to. For example, the
multi-company rules are global; a user can only see invoices of the companies
he or she belongs to.
Concerning configuration, it is difficult to have default generic configurations
that suit all applications. Therefore, like SAP, OpenERP is by default
pre-configured with best-practices.
Access rights
=============
Access rights are rules that define the access a user can have on a particular
object . Those global rights are defined per document type or model. Rights
follow the CRUD model: create, read (search), update (write), delete. For
example, you can define rules on invoice creation. By default, adding a
right to an object gives the right to all records of that specific object.
Figure 4 shows some of the access rights of the Accounting / Accountant group.
The user has some read access rights on some objects.
Figure 4: Access rights for some objects.
Record rules
++++++++++++
When accessing an object, records are filtered based on record rules. Record
rules or access filters are therefore filters that limits records of an
object a group can access. A record rule is a condition that each record
must satisfy to be created, read, updated (written) or deleted. Records
that do not meet the constraints are filtered.
For example, you can create a rule to limit a group in such a way that
users of that group will see business opportunities in which he or she is
flagged as the salesman. The rule can be salesman = connected_user. With
that rule, only records respecting the rule will be displayed.
Field access rights
+++++++++++++++++++
.. versionadded:: 7.0
OpenERP now supports real access control at the field level, not just on the view side.
Previously it was already possible to set a ``groups`` attribute on a ``<field>`` element
(or in fact most view elements), but with cosmetics effects only: the element was made
invisible on the client side, while still perfectly available for read/write access at
the RPC level.
As of OpenERP 7.0 the existing behavior is preserved on the view level, but a new ``groups``
attribute is available on all model fields, introducing a model-level access control on
each field. The syntax is the same as for the view-level attribute::
_columns = {
'secret_key': fields.char('Secret Key', groups="base.group_erp_manager,base.group_system")
}
There is a major difference with the view-level ``groups`` attribute: restricting
the access at the model level really means that the field will be completely unavailable
for users who do not belong to the authorized groups:
* Restricted fields will be **completely removed** from all related views, not just
hidden. This is important to keep in mind because it means the field value will not be
available at all on the client side, and thus unavailable e.g. for ``on_change`` calls.
* Restricted fields will not be returned as part of a call to
:meth:`~openerp.osv.orm.fields_get` or :meth:`~openerp.osv.orm.fields_view_get`
This is in order to avoid them appearing in the list of fields available for
advanced search filters, for example. This does not prevent getting the list of
a model's fields by querying ``ir.model.fields`` directly, which is fine.
* Any attempt to read or write directly the value of the restricted fields will result
in an ``AccessError`` exception.
* As a consequence of the previous item, restricted fields will not be available for
use within search filters (domains) or anything that would require read or write access.
* It is quite possible to set ``groups`` attributes for the same field both at the model
and view level, even with different values. Both will carry their effect, with the
model-level restriction taking precedence and removing the field completely in case of
restriction.
.. note:: The tests related to this feature are in ``openerp/tests/test_acl.py``.
.. warning:: At the time of writing the implementation of this feature is partial
and does not yet restrict read/write RPC access to the field.
The corresponding test is written already but currently disabled.
Workflow transition rules
+++++++++++++++++++++++++
Workflow transition rules are rules that restrict some operations to certain
groups. Those rules handle rights to go from one step to another one in the
workflow. For example, you can limit the right to validate an invoice, i.e.
going from a draft action to a validated action.
Menu accesses
=============
In OpenERP, granting access to menus can be done using user groups. A menu
that is not granted to any group is accessible to every user. It is possible
in the administration panel to define the groups that can access a given menu.
However, one should note that using groups to hide or give access to menus
is more within the filed of ergonomics or usability than within the field
of security. It is a best practice putting rules on documents instead of
putting groups on menu. For example, hiding invoices can be done by modifying
the record rule on the invoice object, and it is more efficient and safer
than hiding menus related to invoices.
Views customization
===================
Customizing views based on groups is possible in OpenERP. You can put rules
to display some fields based on group rules. However, as with menu accesses
customization, this option should not be considered for security concerns.
This way of customizing views belongs more to usability.
Administration
==============
When installing your particular instance of OpenERP, a specific first user
is installed by default. This first user is the Super User or administrator.
The administrator is by default added access rights to every existing groups,
as well as to every groups created during a new module installation. He also
has access to a specific administration interface accessible via the administration
menu, allowing the administration of OpenERP.
The administrator has rights to manage groups; he can add, create, modify
or remove groups. He may also modify links between users and groups, such
as adding or removing users. He also manages access rights. With those
privileges, the administrator can therefore precisely define security
accesses of every users of OpenERP.
There are user groups that are between normal groups and the super user.
Those groups are Administration / Configuration and Administration / Access Rights.
It gives to the users of those groups the necessary rights to configure access rights.

View File

@ -87,9 +87,9 @@ In addition to the above possibilities, when invoked with a non-existing module
sub-modules.
Depending on the unittest2_ class that is used to write the tests (see
``openerp.tests.common`` for some helper classes that you can re-use), a database
may be created before the test is run, and the module providing the test will
be installed on that database.
:mod:`openerp.tests.common` for some helper classes that you can re-use), a
database may be created before the test is run, and the module providing the
test will be installed on that database.
Because creating a database, installing modules, and then dropping it is
expensive, it is possible to interleave the run of the ``fast_suite`` tests
@ -98,3 +98,20 @@ each requested module is installed, its fast_suite tests are run. The database
is thus created and dropped (and the modules installed) only once.
.. _unittest2: http://pypi.python.org/pypi/unittest2
TestCase subclasses
-------------------
.. automodule:: openerp.tests.common
:members:
.. note::
The `setUp` and `tearDown` methods are not part of the tests. Uncaught
exceptions in those methods are errors, not test failures. In particular,
a failing `setUp` will not be followed by a `tearDown` causing any
allocated resource in the `setUp` to not be released by the `tearDown`.
In the :py:class:`openerp.tests.common.TransactionCase` and
:py:class:`openerp.tests.common.SingleTransactionCase`, this means the
test suite can hang because of unclosed cursors.

12
doc/06_misc.rst Normal file
View File

@ -0,0 +1,12 @@
=============
Miscellanous
=============
.. toctree::
:maxdepth: 2
06_misc_on_change_tips.rst
06_misc_list_font_style.rst
06_misc_need_action_specs.rst
06_misc_user_img_specs.rst
06_misc_import.rst

View File

@ -46,7 +46,7 @@ no other references to the sub-records in the system), they have to be
spliced into the matrix somehow. This is done by adding lines composed
*only* of o2m record fields below the main record:
.. literalinclude:: o2m.txt
.. literalinclude:: 06_misc_import_o2m.txt
the sections in double-lines represent the span of two o2m
fields. During parsing, they are extracted into their own ``data``

View File

@ -21,7 +21,7 @@ This class also offers several global services,:
- ``needaction_get_action_count``: as ``needaction_get_record_ids`` but returns only the number of action, not the ids (performs a search with count=True)
- ``needaction_get_user_record_references``: for a given uid, get all the records that ask this user to perform an action. Records are given as references, a list of tuples (model_name, record_id).
.. versionadded:: openobject-server.XXXX
.. versionadded:: openobject-server.4137
This revision of the needaction_mixin mechanism slighty modifies the class behavior. The ``ir_needaction_mixin`` class now adds a function field on models inheriting from the class. This field allows to state whether a given record has a needaction for the current user. This is usefull if you want to customize views according to the needaction feature. For example, you may want to set records in bold in a list view if the current user has an action to perform on the record. This makes the class not a pure abstract class, but allows to easily use the action information. The field definition is::
@ -61,7 +61,7 @@ users (those whose attention is required on the record)
Menu modification
+++++++++++++++++
.. versionchanged:: openobject-server.XXXX
.. versionchanged:: openobject-server.4137
This revision adds three functional fields to ``ir.ui.menu`` model :
- ``uses_needaction``: boolean field. If the menu entry action is an act_window action, and if this action is related to a model that uses the need_action mechanism, this field is set to true. Otherwise, it is false.

View File

@ -0,0 +1,51 @@
.. _on_change_tips:
On Change Methods
=================
Definition of on change methods in a view looks like this:
::
<field name="name" on_change="name_change(name, address, city)"/>
And here is the corresponding method in the model:
::
def name_change(self, cr, uid, ids, name, address, city, context=None):
...
return {
'value': {
'address': ...
'city': ...
}
}
On change methods can be confusing when people use them, here are a list of clarifications to avoid any misconception:
- On change methods can be executed during the creation of a row, long before it is effectively saved into the database.
- Fields are *not* validated before going through a on change methods. As an example, a field marqued as required can be False.
- On change methods can read data in the database but should *never* attempt to write anything, this is always a strong conception
problem.
- The format of the values passed to an on change method is exactly the same than the one passed to the write() method. So
the on change method must be able to handle any format used for all the fields it process. The following list describe some fields
that can have an unusual format.
- *float*: Due to the way JSON represents numbers and the way the JSON library of Python handles it, a float field will not always
be represented as a python float type. When the number can be represented as an integer it will appear as a python integer type.
This can be a problem when using some mathematical operations (example: price / 2), so it is a good practice to always cast any number
to float when you want to handle floats in on change methods.
- *one2many and many2many*: There are plenty of misconception about x2many fields in on change methods. The reality is, in fact, quite
complex. x2many are defined by a list of operations, each operation was given a number (0 -> create, 1 -> write, ect...) and has
its own semantic. To be able to use one2many and many2many in on change methods, you are strongly encourage to use the
resolve_2many_commands() method. Here is a sample usage:
::
values = self.resolve_2many_commands(cr, uid, 'my_o2m', my_o2m_values, ['price', 'tax'], context)
This code will convert the complex list of operations that makes the o2m value into a simple list of dictionaries containing the fields
'price' and 'tax', which is way simpler to handle in most on change methods. Please note that you can also return a list of
dictionaries as the new value of a one2many, it will replace the actual rows contained in that one2many (but it will also remove the
previous ones).

101
doc/09_deployment.rst Normal file
View File

@ -0,0 +1,101 @@
.. _using-gunicorn:
Deploying with Gunicorn
=======================
Starting with OpenERP 6.1, the server and web addons are WSGI_ compliant. In
particular, support for the Gunicorn_ HTTP server is available. For some
background information and motivation, please read http://www.openerp.com/node/1106.
To install Gunicorn, please refer to Gunicorn's website.
.. _Gunicorn: http://gunicorn.org/
.. _WSGI: http://en.wikipedia.org/wiki/Web_Server_Gateway_Interface
Summary
-------
Configuring and starting an OpenERP server with Gunicorn is straightfoward. The
different sections below give more details but the following steps are all it
takes::
1. Use a configuration file, passing it to ``gunicorn`` using the ``-c``
option.
2. Within the same configuration file, also configure OpenERP.
3. Run ``gunicorn openerp:wsgi.core.application -c gunicorn.conf.py``.
Sample configuration file
-------------------------
A sample ``gunicorn.conf.py`` configuration file for Gunicorn can be found in
the OpenERP server source tree. It is fairly well commented and easily
customizable for your own usage. While reading the remaining of this page, it
is advised you take a look at the sample ``gunicorn.conf.py`` file as it makes
things easier to follow.
Configuration
-------------
Gunicorn can be configured by a configuration file and/or command-line
arguments. For a list of available options, you can refer to the official
Gunicorn documentation http://gunicorn.org/configure.html.
When the OpenERP server is started on its own, by using the ``openerp-server``
script, it can also be configured by a configuration file or its command-line
arguments. But when it is run via Gunicorn, it is no longer the case. Instead,
as the Gunicorn configuration file is a full-fledged Python file, we can
``import openerp`` in it and configure directly the server.
The principle can be summarized with this three lines (although they are spread
across the whole sample ``gunicorn.conf.py`` file)::
import openerp
conf = openerp.tools.config
conf['addons_path'] = '/home/openerp/addons/trunk,/home/openerp/web/trunk/addons'
The above three lines first import the ``openerp`` library (i.e. the one
containing the OpenERP server implementation). The second one is really to
shorten repeated usage of the same variable. The third one sets a parameter, in
this case the equivalent of the ``--addons-path`` command-line option.
Finally, Gunicorn offers a few hooks so we can call our own code at some points
in its execution. The most important one is the ``on_starting`` hook. It lets
us properly initialize the ``openerp`` library before Gunicorn starts handling
requests. ``pre_request`` and ``post_request`` are called before and after
requests are handled. We provide functions in ``openerp.wsgi.core`` that can be
used to define those hooks: a typical Gunicorn configuration for OpenERP will
thus contains::
on_starting = openerp.wsgi.core.on_starting
pre_request = openerp.wsgi.core.pre_request
post_request = openerp.wsgi.core.post_request
Running
-------
Once a proper configuration file is available, running the OpenERP server with
Gunicorn can be done with the following command::
> gunicorn openerp:wsgi.core.application -c gunicorn.conf.py
``openerp`` must be importable by Python. The simplest way is to run the above
command from the server source directory (i.e. the directory containing the
``openerp`` module). Alternatively, the module can be installed on your machine
as a regular Python library or added to your ``PYTHONPATH``.
Running behind a reverse proxy
------------------------------
If you intend to run Gunicorn behind a reverse proxy (nginx_ is recommended),
an alternative entry point is available in ``openerp.wsgi.proxied``. That entry
point uses werkzeug's ProxyFix_ class to set a few headers. You first have to
explicitely import that sub-module if you want to use it. So add this line in
the configuration file::
import openerp.wsgi.proxied
and then adapt the command-line::
> gunicorn openerp:wsgi.proxied.application -c gunicorn.conf.py
.. _nginx: http://nginx.org/en/
.. _ProxyFix: http://werkzeug.pocoo.org/docs/contrib/fixers/#werkzeug.contrib.fixers.ProxyFix

BIN
doc/_static/02_mvc_diagram.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
doc/_static/02_openerp_architecture.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
doc/_static/03_module_gen_view.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -1,10 +0,0 @@
.. _openerp library:
Server-side library
-------------------
.. automodule:: openerp
:members:
:undoc-members:

View File

@ -1,45 +0,0 @@
Field-level access control
==========================
.. versionadded:: 7.0
OpenERP now supports real access control at the field level, not just on the view side.
Previously it was already possible to set a ``groups`` attribute on a ``<field>`` element
(or in fact most view elements), but with cosmetics effects only: the element was made
invisible on the client side, while still perfectly available for read/write access at
the RPC level.
As of OpenERP 7.0 the existing behavior is preserved on the view level, but a new ``groups``
attribute is available on all model fields, introducing a model-level access control on
each field. The syntax is the same as for the view-level attribute::
_columns = {
'secret_key': fields.char('Secret Key', groups="base.group_erp_manager,base.group_system")
}
There is a major difference with the view-level ``groups`` attribute: restricting
the access at the model level really means that the field will be completely unavailable
for users who do not belong to the authorized groups:
* Restricted fields will be **completely removed** from all related views, not just
hidden. This is important to keep in mind because it means the field value will not be
available at all on the client side, and thus unavailable e.g. for ``on_change`` calls.
* Restricted fields will not be returned as part of a call to
:meth:`~openerp.osv.orm.fields_get` or :meth:`~openerp.osv.orm.fields_view_get`
This is in order to avoid them appearing in the list of fields available for
advanced search filters, for example. This does not prevent getting the list of
a model's fields by querying ``ir.model.fields`` directly, which is fine.
* Any attempt to read or write directly the value of the restricted fields will result
in an ``AccessError`` exception.
* As a consequence of the previous item, restricted fields will not be available for
use within search filters (domains) or anything that would require read or write access.
* It is quite possible to set ``groups`` attributes for the same field both at the model
and view level, even with different values. Both will carry their effect, with the
model-level restriction taking precedence and removing the field completely in case of
restriction.
.. note:: The tests related to this feature are in ``openerp/tests/test_acl.py``.
.. warning:: At the time of writing the implementation of this feature is partial
and does not yet restrict read/write RPC access to the field.
The corresponding test is written already but currently disabled.

View File

@ -1,20 +0,0 @@
Start-up script
---------------
.. versionadded:: 6.1
To run the OpenERP server, the conventional approach is to use the
`openerp-server` script. It loads the :ref:`openerp library`, sets a few
configuration variables corresponding to command-line arguments, and starts to
listen to incoming connections from clients.
Depending on your deployment needs, you can write such a start-up script very
easily. We also recommend you take a look at an alternative tool called
`openerp-command` that can, among other things, launch the server.
Yet another alternative is to use a WSGI-compatible HTTP server and let it call
into one of the WSGI entry points of the server.

31
doc/index.rst Normal file
View File

@ -0,0 +1,31 @@
:orphan:
========================================
OpenERP Server Developers Documentation
========================================
OpenERP Server
''''''''''''''
.. toctree::
:maxdepth: 2
01_getting_started
02_architecture
03_module_dev
04_security
05_test_framework
06_misc
09_deployment
OpenERP Server API
''''''''''''''''''
.. toctree::
:maxdepth: 1
api_core.rst
api_models.rst

View File

@ -1,21 +0,0 @@
OpenERP Server
''''''''''''''
.. toctree::
:maxdepth: 1
import
module-versioning
test-framework
Changed in 7.0
++++++++++++++
.. toctree::
:maxdepth: 1
api/user_img_specs
api/need_action_specs
api/font_style
api/field_level_acl

View File

@ -101,6 +101,7 @@ def preload_registry(dbname):
def run_test_file(dbname, test_file):
""" Preload a registry, possibly run a test file, and start the cron."""
try:
config = openerp.tools.config
db, registry = openerp.pooler.get_db_and_pool(dbname, update_module=config['init'] or config['update'], pooljobs=False)
cr = db.cursor()
_logger.info('loading test file %s', test_file)

View File

@ -86,14 +86,12 @@ The kernel of OpenERP, needed for all installation.
'security/base_security.xml',
'security/ir.model.access.csv',
'security/ir.model.access-1.csv', # res.partner.address is deprecated; it is still there for backward compability only and will be removed in next version
'res/res_widget_view.xml',
'res/res_widget_data.xml',
],
'demo': [
'base_demo.xml',
'res/res_partner_demo.xml',
'res/res_partner_demo.yml',
'res/res_widget_demo.xml',
'res/res_partner_image_demo.xml',
],
'test': [
'test/base_test.xml',

View File

@ -69,6 +69,7 @@
<field name="name">Administrator</field>
<field name="company_id" ref="main_company"/>
<field name="customer" eval="False"/>
<field name="email">admin@example.com</field>
</record>
<record model="res.users" id="base.user_root">

View File

@ -5,6 +5,7 @@
<field name="name">Demo User</field>
<field name="company_id" ref="main_company"/>
<field name="customer" eval="False"/>
<field name="email">demo@example.com</field>
</record>
<record id="user_demo" model="res.users">
<field name="partner_id" ref="base.partner_demo"/>
@ -15,6 +16,10 @@
<field name="groups_id" eval="[(6,0,[ref('base.group_user')])]"/>
</record>
<record model="res.partner" id="base.partner_root">
<field name="email">admin@example.com</field>
</record>
<!-- new rate for demo transactions in multi currency -->
<record id="rateUSDbis" model="res.currency.rate">
<field name="rate">1.5289</field>

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:06+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:06+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:06+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:06+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:01+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:07+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:01+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:07+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:01+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:07+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:01+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:07+0000\n"
"X-Generator: Launchpad (build 16251)\n"
"X-Poedit-Language: Czech\n"
#. module: base
@ -25,7 +25,7 @@ msgstr "Svatá Helena"
#. module: base
#: view:ir.actions.report.xml:0
msgid "Other Configuration"
msgstr "Ostatní nastavení"
msgstr "Další nastavení"
#. module: base
#: selection:ir.property,type:0
@ -35,7 +35,7 @@ msgstr "Datum a čas"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mailgate
msgid "Tasks-Mail Integration"
msgstr ""
msgstr "Integrace úkolů a e-mailů"
#. module: base
#: code:addons/fields.py:582
@ -121,12 +121,12 @@ msgstr "Zobrazit tipy nabídky"
#: help:ir.cron,model:0
msgid ""
"Model name on which the method to be called is located, e.g. 'res.partner'."
msgstr ""
msgstr "Název modelu umístění volané metody, např. 'res.partner'."
#. module: base
#: view:ir.module.module:0
msgid "Created Views"
msgstr "Vytvořit pohledy"
msgstr "Vytvořené náhledy"
#. module: base
#: code:addons/base/ir/ir_model.py:532

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:01+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:07+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:02+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:09+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -12,8 +12,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:09+0000\n"
"X-Generator: Launchpad (build 16251)\n"
"X-Poedit-Country: GREECE\n"
"X-Poedit-Language: Greek\n"
"X-Poedit-SourceCharset: utf-8\n"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -4473,7 +4473,7 @@ msgstr "Categories"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_mobile
msgid "OpenERP Web mobile"
msgstr ""
msgstr "OpenERP Web mobile"
#. module: base
#: view:base.language.import:0
@ -5092,7 +5092,7 @@ msgstr "License"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_graph
msgid "web Graph"
msgstr ""
msgstr "web Graph"
#. module: base
#: field:ir.attachment,url:0
@ -5174,7 +5174,7 @@ msgstr "Equatorial Guinea"
#. module: base
#: model:ir.module.module,shortdesc:base.module_warning
msgid "Warning Messages and Alerts"
msgstr ""
msgstr "Warning Messages and Alerts"
#. module: base
#: view:base.module.import:0
@ -5185,7 +5185,7 @@ msgstr "Module Import"
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_ch
msgid "Switzerland - Accounting"
msgstr ""
msgstr "Switzerland - Accounting"
#. module: base
#: field:res.bank,zip:0
@ -5231,7 +5231,7 @@ msgstr ""
#. module: base
#: model:ir.module.category,description:base.module_category_marketing
msgid "Helps you manage your marketing campaigns step by step."
msgstr ""
msgstr "Helps you manage your marketing campaigns step by step."
#. module: base
#: selection:base.language.install,lang:0
@ -5275,7 +5275,7 @@ msgstr "Rules"
#. module: base
#: field:ir.mail_server,smtp_host:0
msgid "SMTP Server"
msgstr ""
msgstr "SMTP Server"
#. module: base
#: code:addons/base/module/module.py:256
@ -5329,7 +5329,7 @@ msgstr ""
#. module: base
#: model:ir.module.category,name:base.module_category_specific_industry_applications
msgid "Specific Industry Applications"
msgstr ""
msgstr "Specific Industry Applications"
#. module: base
#: model:res.partner.category,name:base.res_partner_category_retailers0
@ -5339,7 +5339,7 @@ msgstr "Retailers"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_uservoice
msgid "Receive User Feedback"
msgstr ""
msgstr "Receive User Feedback"
#. module: base
#: model:res.country,name:base.ls
@ -5349,12 +5349,12 @@ msgstr "Lesotho"
#. module: base
#: model:ir.module.module,shortdesc:base.module_base_vat
msgid "VAT Number Validation"
msgstr ""
msgstr "VAT Number Validation"
#. module: base
#: model:ir.module.module,shortdesc:base.module_crm_partner_assign
msgid "Partners Geo-Localization"
msgstr ""
msgstr "Partners Geo-Localisation"
#. module: base
#: model:res.country,name:base.ke
@ -5365,7 +5365,7 @@ msgstr "Kenya"
#: model:ir.actions.act_window,name:base.action_translation
#: model:ir.ui.menu,name:base.menu_action_translation
msgid "Translated Terms"
msgstr ""
msgstr "Translated Terms"
#. module: base
#: view:res.partner.event:0
@ -5431,6 +5431,30 @@ msgid ""
"Also implements IETF RFC 5785 for services discovery on a http server,\n"
"which needs explicit configuration in openerp-server.conf, too.\n"
msgstr ""
"\n"
"This module activates the WebDAV server for documents.\n"
"===============================================================\n"
"\n"
"You can then use any compatible browser to remotely see the attachments of "
"OpenObject.\n"
"\n"
"After installation, the WebDAV server can be controlled by a [webdav] "
"section in the server's config.\n"
"Server Configuration Parameter:\n"
"\n"
" [webdav]\n"
" ; enable = True ; Serve webdav over the http(s) servers\n"
" ; vdir = webdav ; the directory that webdav will be served at\n"
" ; this default val means that webdav will be\n"
" ; on \"http://localhost:8069/webdav/\n"
" ; verbose = True ; Turn on the verbose messages of webdav\n"
" ; debug = True ; Turn on the debugging messages of webdav\n"
" ; since the messages are routed to the python logging, with\n"
" ; levels \"debug\" and \"debug_rpc\" respectively, you can leave\n"
" ; these options on\n"
"\n"
"Also implements IETF RFC 5785 for services discovery on a http server,\n"
"which needs explicit configuration in openerp-server.conf, too.\n"
#. module: base
#: model:res.country,name:base.sm
@ -5485,7 +5509,7 @@ msgstr "That contract is already registered in the system."
#: model:ir.actions.act_window,name:base.action_res_partner_bank_type_form
#: model:ir.ui.menu,name:base.menu_action_res_partner_bank_typeform
msgid "Bank Account Types"
msgstr ""
msgstr "Bank Account Types"
#. module: base
#: help:ir.sequence,suffix:0
@ -5495,7 +5519,7 @@ msgstr "Suffix value of the record for the sequence"
#. module: base
#: help:ir.mail_server,smtp_user:0
msgid "Optional username for SMTP authentication"
msgstr ""
msgstr "Optional username for SMTP authentication"
#. module: base
#: model:ir.model,name:base.model_ir_actions_actions
@ -5549,12 +5573,12 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_chat
msgid "Web Chat"
msgstr ""
msgstr "Web Chat"
#. module: base
#: field:res.company,rml_footer2:0
msgid "Bank Accounts Footer"
msgstr ""
msgstr "Bank Accounts Footer"
#. module: base
#: model:res.country,name:base.mu
@ -5580,12 +5604,12 @@ msgstr "Security"
#: code:addons/base/ir/ir_model.py:311
#, python-format
msgid "Changing the storing system for field \"%s\" is not allowed."
msgstr ""
msgstr "Changing the storing system for field \"%s\" is not allowed."
#. module: base
#: help:res.partner.bank,company_id:0
msgid "Only if this bank account belong to your company"
msgstr ""
msgstr "Only if this bank account belongs to your company"
#. module: base
#: model:res.country,name:base.za
@ -5621,6 +5645,14 @@ msgid ""
"This new object will regroup and will allow you to easily keep track and "
"order all your purchase orders.\n"
msgstr ""
"\n"
"This module lets you manage your Purchase Requisition.\n"
"===========================================================\n"
"\n"
"When a purchase order is created, you now have the opportunity to save the "
"related requisition.\n"
"This new object will regroup and will let you easily track and order all "
"your purchase orders.\n"
#. module: base
#: model:res.country,name:base.hu
@ -5630,7 +5662,7 @@ msgstr "Hungary"
#. module: base
#: model:ir.module.module,shortdesc:base.module_hr_recruitment
msgid "Recruitment Process"
msgstr ""
msgstr "Recruitment Process"
#. module: base
#: model:res.country,name:base.br
@ -5691,12 +5723,12 @@ msgstr "System update completed"
#. module: base
#: sql_constraint:ir.model:0
msgid "Each model must be unique!"
msgstr ""
msgstr "Each model must be unique!"
#. module: base
#: model:ir.module.category,name:base.module_category_localization
msgid "Localization"
msgstr ""
msgstr "Localisation"
#. module: base
#: model:ir.module.module,description:base.module_sale_mrp
@ -5712,6 +5744,16 @@ msgid ""
"It adds sales name and sales Reference on production order.\n"
" "
msgstr ""
"\n"
"This module provides facility to the user to install mrp and sales modules "
"at a time.\n"
"============================================================================="
"=======\n"
"\n"
"It is used when we want to keep track of production\n"
"orders generated from sales order.\n"
"It adds sales name and sales Reference on production order.\n"
" "
#. module: base
#: selection:res.request,state:0
@ -5829,6 +5871,12 @@ msgid ""
" - InfoLogic UK counties listing\n"
" - a few other adaptations"
msgstr ""
"This is the latest UK OpenERP localisation necessary to run OpenERP "
"accounting for UK SMEs with:\n"
" - a CT600-ready chart of accounts\n"
" - VAT100-ready tax structure\n"
" - InfoLogic UK counties listing\n"
" - a few other adaptations"
#. module: base
#: field:ir.attachment,create_uid:0
@ -5844,6 +5892,11 @@ msgid ""
" those assets. And it allows to create Move's of the depreciation lines.\n"
" "
msgstr ""
"Financial and accounting asset management.\n"
" This Module manages the assets owned by a company or individual. It will "
"keep track of depreciation's occurred on\n"
" those assets. And it allows to create moves of the depreciation lines.\n"
" "
#. module: base
#: model:res.country,name:base.bv
@ -5917,7 +5970,7 @@ msgstr "Field"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_long_term
msgid "Long Term Projects"
msgstr ""
msgstr "Long Term Projects"
#. module: base
#: model:res.country,name:base.ve
@ -5937,7 +5990,7 @@ msgstr "Zambia"
#. module: base
#: view:ir.actions.todo:0
msgid "Launch Configuration Wizard"
msgstr ""
msgstr "Launch Configuration Wizard"
#. module: base
#: help:res.partner,user_id:0
@ -6040,7 +6093,7 @@ msgstr "Montserrat"
#. module: base
#: model:ir.module.module,shortdesc:base.module_decimal_precision
msgid "Decimal Precision Configuration"
msgstr ""
msgstr "Decimal Precision Configuration"
#. module: base
#: model:ir.ui.menu,name:base.menu_translation_app

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:16+0000\n"
"X-Generator: Launchpad (build 16251)\n"
"Language: \n"
#. module: base

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-02-08 00:44+0000\n"
"PO-Revision-Date: 2011-01-18 05:32+0000\n"
"PO-Revision-Date: 2012-11-05 00:42+0000\n"
"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:09+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:16+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -655,6 +655,26 @@ msgid ""
" Accounting/Reporting/Generic Reporting/Partners/Follow-ups Sent\n"
"\n"
msgstr ""
"\n"
"Modulo para automatizar cartas para facturas no pagadas, con recordatorios "
"multi-nivel\n"
"==========================================================================\n"
"\n"
"Pueden definirse múltiples niveles de recordatorios a través del menú:\n"
" Contabilidad/Configuración/Varios/Seguimientos\n"
"\n"
"Una vez definidos, pueden imprimirse automáticamente recordatorios cada día, "
"simplemente haciendo clic en el menú: \n"
" Contabilidad/Procesamiento periódico/Facturación/Enviar seguimientos\n"
"\n"
"Se generará un PDF con todas las cartas de acuerdo con los diferentes \n"
"niveles de recordatorio definidos. Se pueden definir diferentes políticas\n"
"para las distintas compañías . También se puede enviar correo al cliente.\n"
"\n"
"Debe denotarse que si se quiere revisar el nivel de seguimiento de una "
"empresa/cuenta determinada, se puede realizar en el menú:\n"
" Contabilidad/Informes/Informes genéricos/Empresas/Seguimientos enviados\n"
"\n"
#. module: base
#: field:res.country,name:0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:09+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:16+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:02+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:08+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:07+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -3,14 +3,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-02-08 00:44+0000\n"
"PO-Revision-Date: 2012-08-20 15:53+0000\n"
"Last-Translator: avion <nat@sethack.com>\n"
"PO-Revision-Date: 2012-11-13 02:22+0000\n"
"Last-Translator: fshahy <fshahy@gmail.com>\n"
"Language-Team: OpenERP Iran <info@openerp-iran.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:05+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-14 04:40+0000\n"
"X-Generator: Launchpad (build 16251)\n"
"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
"X-Poedit-Language: Persian\n"
@ -9654,7 +9654,7 @@ msgstr ""
#: field:ir.model.fields,readonly:0
#: field:res.partner.bank.type.field,readonly:0
msgid "Readonly"
msgstr "تنها خواندنی"
msgstr "فقط خواندنی"
#. module: base
#: model:ir.module.module,description:base.module_crm_todo
@ -9681,7 +9681,7 @@ msgstr ""
#: selection:ir.module.module,state:0
#: selection:ir.module.module.dependency,state:0
msgid "To be installed"
msgstr "برای برپاسازی"
msgstr "برای نصب"
#. module: base
#: help:ir.actions.act_window,display_menu_tip:0
@ -9956,12 +9956,12 @@ msgstr "بخش‌بندی"
#. module: base
#: field:res.lang,thousands_sep:0
msgid "Thousands Separator"
msgstr "جداساز هزارگانی"
msgstr "جداساز هزارگان"
#. module: base
#: field:res.request,create_date:0
msgid "Created Date"
msgstr "تاریخ پدیدن"
msgstr "تاریخ ایجاد"
#. module: base
#: view:ir.module.module:0
@ -10027,7 +10027,7 @@ msgstr ""
#. module: base
#: field:ir.attachment,datas:0
msgid "File Content"
msgstr "محتوای پرونده"
msgstr "محتوای فایل"
#. module: base
#: model:res.country,name:base.pa
@ -10270,7 +10270,7 @@ msgstr "دوشیزه"
#: field:ir.model.access,perm_write:0
#: view:ir.rule:0
msgid "Write Access"
msgstr "دستی نوشتن"
msgstr "دسترسی نوشتن"
#. module: base
#: view:res.lang:0
@ -10608,13 +10608,13 @@ msgstr ""
#: selection:ir.module.module,state:0
#: selection:ir.module.module.dependency,state:0
msgid "Not Installed"
msgstr "برپاسازی نشده"
msgstr "نصب نشده"
#. module: base
#: view:workflow.activity:0
#: field:workflow.activity,out_transitions:0
msgid "Outgoing Transitions"
msgstr "گذارهای صادره"
msgstr "ترجمه های صادره"
#. module: base
#: field:ir.ui.menu,icon:0
@ -10785,7 +10785,7 @@ msgstr ""
#. module: base
#: view:base.module.import:0
msgid "Import module"
msgstr "درونش پیمانه"
msgstr "درونش ماژول"
#. module: base
#: field:ir.actions.server,loop_action:0
@ -10810,7 +10810,7 @@ msgstr "لائوس"
#: field:res.company,email:0
#: field:res.users,user_email:0
msgid "Email"
msgstr "ایمیل"
msgstr "پست الکترونیک"
#. module: base
#: field:res.users,action_id:0
@ -10932,7 +10932,7 @@ msgstr "3. %x ,%X ==> 12/05/08, 18:25:20"
#. module: base
#: selection:ir.model.fields,on_delete:0
msgid "Cascade"
msgstr "چینش"
msgstr "آبشاری"
#. module: base
#: field:workflow.transition,group_id:0
@ -10959,7 +10959,7 @@ msgstr ""
#. module: base
#: view:ir.actions.configuration.wizard:0
msgid "Next Configuration Step"
msgstr "گام پیکربندی پسین"
msgstr "گام پیکربندی بعدی"
#. module: base
#: field:res.groups,comment:0
@ -11083,7 +11083,7 @@ msgstr ""
#. module: base
#: model:res.country,name:base.by
msgid "Belarus"
msgstr "روسیه‌ سفید"
msgstr "بلاروس"
#. module: base
#: field:ir.actions.act_window,name:0
@ -11166,7 +11166,7 @@ msgstr ""
#. module: base
#: field:ir.actions.act_window,filter:0
msgid "Filter"
msgstr "پالایه"
msgstr "فیلتر"
#. module: base
#: model:res.partner.title,shortcut:base.res_partner_title_madam
@ -11229,7 +11229,7 @@ msgstr ""
#. module: base
#: model:ir.model,name:base.model_workflow
msgid "workflow"
msgstr "کارگردش"
msgstr "گردش کار"
#. module: base
#: code:addons/base/ir/ir_model.py:255
@ -11414,7 +11414,7 @@ msgstr "پیمایش شمارگانی"
#. module: base
#: help:multi_company.default,field_id:0
msgid "Select field property"
msgstr "ویژگی فیلد را برگزینید"
msgstr "فیلد ویژگی را انتحاب کنید"
#. module: base
#: field:res.request.history,date_sent:0
@ -11477,7 +11477,7 @@ msgstr ""
#: view:ir.actions.server:0
#: model:ir.ui.menu,name:base.menu_server_action
msgid "Server Actions"
msgstr "کُنش‌های کارپذیر"
msgstr "کُنش‌های سمت سرور"
#. module: base
#: field:res.partner.bank.type,format_layout:0
@ -11884,7 +11884,7 @@ msgstr "4. %b, %B ==> Dec, December"
#: view:base.language.install:0
#: model:ir.ui.menu,name:base.menu_view_base_language_install
msgid "Load an Official Translation"
msgstr "بارگذاری یک برگردان رسمی"
msgstr "بارگذاری یک ترجمه رسمی"
#. module: base
#: view:res.currency:0
@ -11894,7 +11894,7 @@ msgstr ""
#. module: base
#: model:res.partner.category,name:base.res_partner_category_10
msgid "Open Source Service Company"
msgstr "شرکت خدماتی بازمتن"
msgstr "شرکت خدماتی متن باز"
#. module: base
#: selection:base.language.install,lang:0
@ -11938,7 +11938,7 @@ msgid ""
"If set to true, the wizard will not be displayed on the right toolbar of a "
"form view."
msgstr ""
"اگر مقدار به درست تنظیم شده باشد، تَردست در سمت راست یک نمای فرمی نمایش داده "
"اگر مقدار به درست تنظیم شده باشد، ویزارد در سمت راست یک نمای فرمی نمایش داده "
"نخواهد شد."
#. module: base
@ -12069,7 +12069,7 @@ msgstr ""
#. module: base
#: selection:ir.translation,type:0
msgid "Selection"
msgstr "گزینش"
msgstr "انتخاب"
#. module: base
#: field:ir.module.module,icon:0
@ -12221,7 +12221,7 @@ msgstr "ساعت ۰۰->۱۲: %(h12)s"
#. module: base
#: help:res.partner.address,active:0
msgid "Uncheck the active field to hide the contact."
msgstr "تیک فیلد فعال را برای مخفی شده تماس بردارد."
msgstr "تیک فیلد فعال را برای مخفی شدن تماس بردارید."
#. module: base
#: model:ir.model,name:base.model_res_widget_wizard
@ -12439,7 +12439,7 @@ msgstr ""
#: view:base.module.upgrade:0
#: field:base.module.upgrade,module_info:0
msgid "Modules to update"
msgstr "پیمانه‌ها برای بروزرسانی"
msgstr "ماژول هایی که بروزرسانی می شوند"
#. module: base
#: help:ir.actions.server,sequence:0
@ -12529,7 +12529,7 @@ msgstr ""
#: view:ir.model.fields:0
#: field:ir.model.fields,translate:0
msgid "Translate"
msgstr "برگردانی"
msgstr "ترجمه"
#. module: base
#: model:ir.module.module,description:base.module_users_ldap
@ -12656,7 +12656,7 @@ msgstr ""
#. module: base
#: selection:base.language.export,state:0
msgid "choose"
msgstr "گزینش"
msgstr "انتخاب"
#. module: base
#: help:ir.model,osv_memory:0
@ -12690,7 +12690,7 @@ msgstr ""
#: model:ir.ui.menu,name:base.menu_procurement_management_supplier_name
#: view:res.partner:0
msgid "Suppliers"
msgstr "تامین‌کنندگان فرآورده"
msgstr "تامین‌کنندگان"
#. module: base
#: view:publisher_warranty.contract.wizard:0
@ -12724,12 +12724,12 @@ msgstr ""
#: model:res.groups,name:base.group_erp_manager
#: view:res.users:0
msgid "Access Rights"
msgstr "حقوق دسترسی"
msgstr "سطوح دسترسی"
#. module: base
#: model:res.country,name:base.gl
msgid "Greenland"
msgstr "گروئنلند"
msgstr "گرینلند"
#. module: base
#: model:res.groups,name:base.group_sale_salesman_all_leads
@ -13043,7 +13043,7 @@ msgstr "منظره‌ای"
#: model:ir.actions.todo.category,name:base.category_administration_config
#: model:ir.module.category,name:base.module_category_administration
msgid "Administration"
msgstr "راهبری"
msgstr "مدیریت"
#. module: base
#: view:base.module.update:0
@ -13186,7 +13186,7 @@ msgstr "ir.sequence.type"
#. module: base
#: selection:base.language.export,format:0
msgid "CSV File"
msgstr "پرونده CSV"
msgstr "فایل CSV"
#. module: base
#: code:addons/base/res/res_company.py:154
@ -13253,7 +13253,7 @@ msgstr "جیبوتی"
#. module: base
#: field:ir.translation,value:0
msgid "Translation Value"
msgstr "مقدار برگردان"
msgstr "مقدار ترجمه"
#. module: base
#: model:res.country,name:base.ag
@ -13284,7 +13284,7 @@ msgstr "شناسه منبع"
#: view:ir.cron:0
#: field:ir.model,info:0
msgid "Information"
msgstr "آگهگان"
msgstr "اطلاعات"
#. module: base
#: view:res.widget.user:0
@ -13576,12 +13576,12 @@ msgstr "راهنمای فنی"
#. module: base
#: view:res.company:0
msgid "Address Information"
msgstr ""
msgstr "اطلاعات آدرس"
#. module: base
#: model:res.country,name:base.tz
msgid "Tanzania"
msgstr "تانزانیا، جمهوری متحد"
msgstr "تانزانیا"
#. module: base
#: selection:base.language.install,lang:0
@ -13611,7 +13611,7 @@ msgstr "پیکربندی سایر کنش‌ها"
#. module: base
#: selection:ir.module.module.dependency,state:0
msgid "Uninstallable"
msgstr "غیر قابل برپاسازی"
msgstr "غیر قابل نصب"
#. module: base
#: model:ir.module.module,description:base.module_web_dashboard
@ -13634,7 +13634,7 @@ msgstr ""
#. module: base
#: view:ir.ui.view:0
msgid "Extra Info"
msgstr ""
msgstr "اطلاعات بیشتر"
#. module: base
#: model:ir.module.module,description:base.module_l10n_be_hr_payroll
@ -13683,7 +13683,7 @@ msgstr ""
#. module: base
#: view:res.request:0
msgid "Send"
msgstr "فرستادن"
msgstr "ارسال"
#. module: base
#: model:ir.module.module,description:base.module_process
@ -14130,7 +14130,7 @@ msgstr ""
#. module: base
#: selection:ir.module.module,state:0
msgid "Not Installable"
msgstr "غیرقابل برپاسازی"
msgstr "غیرقابل نصب"
#. module: base
#: model:ir.module.module,description:base.module_product
@ -14197,7 +14197,7 @@ msgstr ""
#: view:base.module.upgrade:0
#: model:ir.ui.menu,name:base.menu_view_base_module_upgrade
msgid "Apply Scheduled Upgrades"
msgstr "بکاربندی ارتقای زمان‌بندی‌شده"
msgstr "اعمال ارتقای زمان‌بندی‌شده"
#. module: base
#: model:ir.module.module,shortdesc:base.module_sale_journal
@ -14207,7 +14207,7 @@ msgstr ""
#. module: base
#: selection:base.language.install,lang:0
msgid "Persian / فارس"
msgstr ""
msgstr "Persian / فارسی"
#. module: base
#: view:ir.actions.act_window:0
@ -14269,7 +14269,7 @@ msgstr ""
#: field:base.language.export,name:0
#: field:ir.attachment,datas_fname:0
msgid "Filename"
msgstr "نام پرونده"
msgstr "نام فایل"
#. module: base
#: field:ir.model,access_ids:0
@ -14296,7 +14296,7 @@ msgstr "آروبا"
#: code:addons/base/module/wizard/base_module_import.py:60
#, python-format
msgid "File is not a zip file!"
msgstr ""
msgstr "این فایل یک فابل zip نیست!"
#. module: base
#: model:res.country,name:base.ar
@ -14330,7 +14330,7 @@ msgstr "بحرین"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web
msgid "web"
msgstr ""
msgstr "وب"
#. module: base
#: field:res.bank,fax:0
@ -14404,13 +14404,13 @@ msgstr "شرکت"
#. module: base
#: model:ir.module.category,name:base.module_category_report_designer
msgid "Advanced Reporting"
msgstr ""
msgstr "گزارش گیری پیشرفته"
#. module: base
#: selection:ir.actions.act_window,target:0
#: selection:ir.actions.url,target:0
msgid "New Window"
msgstr "پنجره‌ نو"
msgstr "پنجره‌ جدید"
#. module: base
#: model:ir.model,name:base.model_ir_model_data
@ -14430,17 +14430,17 @@ msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_aftersale
msgid "After-Sale Services"
msgstr ""
msgstr "خدمات پس از فروش"
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_fr
msgid "France - Accounting"
msgstr ""
msgstr "فرانسه - حسابداری"
#. module: base
#: view:ir.actions.todo:0
msgid "Launch"
msgstr ""
msgstr "بارگذاری"
#. module: base
#: model:ir.module.module,shortdesc:base.module_caldav
@ -14515,7 +14515,7 @@ msgstr "جزایر ویرجین انگلستان"
#: view:ir.property:0
#: model:ir.ui.menu,name:base.next_id_15
msgid "Parameters"
msgstr ""
msgstr "پارامترها"
#. module: base
#: model:res.country,name:base.pm
@ -14631,7 +14631,7 @@ msgstr "جزایر کوک"
#. module: base
#: field:ir.model.data,noupdate:0
msgid "Non Updatable"
msgstr "بروزآوری نشدنی"
msgstr "غیرقابل به روزرسانی"
#. module: base
#: selection:base.language.install,lang:0
@ -14744,7 +14744,7 @@ msgstr ""
#: view:res.partner:0
#: view:res.partner.address:0
msgid "Change Color"
msgstr ""
msgstr "تغییر رنگ"
#. module: base
#: model:res.partner.category,name:base.res_partner_category_15
@ -14754,7 +14754,7 @@ msgstr "بخش فن‌آوری اطلاعات"
#. module: base
#: view:ir.actions.act_window:0
msgid "Select Groups"
msgstr "گروه‌ها را برگزینید"
msgstr "گروه‌ها را انتحاب کنید"
#. module: base
#: view:res.lang:0
@ -14782,7 +14782,7 @@ msgstr ""
#. module: base
#: field:ir.module.module,auto_install:0
msgid "Automatic Installation"
msgstr ""
msgstr "نصب خودکار"
#. module: base
#: model:res.country,name:base.jp
@ -14798,7 +14798,7 @@ msgstr ""
#. module: base
#: selection:ir.translation,type:0
msgid "Wizard Button"
msgstr "دکمه تردست"
msgstr "دکمه ویزارد"
#. module: base
#: selection:ir.translation,type:0
@ -14851,7 +14851,7 @@ msgstr "ir.actions.server"
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_ca
msgid "Canada - Accounting"
msgstr ""
msgstr "کانادا - حسابداری"
#. module: base
#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form
@ -14860,7 +14860,7 @@ msgstr ""
#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form
#: model:ir.ui.menu,name:base.next_id_11
msgid "Configuration Wizards"
msgstr "تردست‌های پیکربندی"
msgstr "ویزارد پیکربندی"
#. module: base
#: field:res.lang,code:0
@ -14890,7 +14890,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_ve
msgid "Venezuela - Accounting"
msgstr ""
msgstr "ونزوپلا - حسابداری"
#. module: base
#: model:res.country,name:base.cl
@ -14900,7 +14900,7 @@ msgstr "شیلی"
#. module: base
#: view:ir.cron:0
msgid "Execution"
msgstr ""
msgstr "اجرا"
#. module: base
#: field:ir.actions.server,condition:0
@ -14954,7 +14954,7 @@ msgstr "کرواسی"
#. module: base
#: field:ir.actions.server,mobile:0
msgid "Mobile No"
msgstr "شماره همرا"
msgstr "شماره همراه"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_by_category
@ -14968,12 +14968,12 @@ msgstr "دسته‌بندی‌های همکار"
#. module: base
#: view:base.module.upgrade:0
msgid "System Update"
msgstr ""
msgstr "به روز رسانی سیستم"
#. module: base
#: selection:ir.translation,type:0
msgid "Wizard Field"
msgstr "فیلد تردست"
msgstr "فیلد ویزارد"
#. module: base
#: help:ir.sequence,prefix:0
@ -14999,7 +14999,7 @@ msgstr "حساب‌های بانکی"
#: field:ir.model,modules:0
#: field:ir.model.fields,modules:0
msgid "In modules"
msgstr ""
msgstr "در ماژولهای"
#. module: base
#: model:res.country,name:base.sl
@ -15010,7 +15010,7 @@ msgstr "سیرالئون"
#: view:res.company:0
#: view:res.partner:0
msgid "General Information"
msgstr "آگهگان عمومی"
msgstr "اطلاعات عمومی"
#. module: base
#: model:res.country,name:base.tc
@ -15109,7 +15109,7 @@ msgstr "همکاران: "
#. module: base
#: field:res.partner.bank,name:0
msgid "Bank Account"
msgstr ""
msgstr "حساب بانکی"
#. module: base
#: model:res.country,name:base.kp
@ -15119,7 +15119,7 @@ msgstr "کره شمالی"
#. module: base
#: selection:ir.actions.server,state:0
msgid "Create Object"
msgstr "پدیدن شی"
msgstr "ایجاد شی"
#. module: base
#: view:ir.filters:0
@ -15130,12 +15130,12 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_sale_mrp
msgid "Sales and MRP Management"
msgstr ""
msgstr "مدیریت فروش و تولید"
#. module: base
#: model:ir.actions.act_window,name:base.action_partner_sms_send
msgid "Send an SMS"
msgstr ""
msgstr "ارسال پیامک"
#. module: base
#: model:res.partner.category,name:base.res_partner_category_1

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:09+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:16+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:02+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:08+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:02+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:08+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:09+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:09+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -30,7 +30,7 @@ msgstr "બીજા કન્ફિગ્યુરેશન"
#. module: base
#: selection:ir.property,type:0
msgid "DateTime"
msgstr "દિવસ અને તારીખ"
msgstr "દિવસ અને સમય"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mailgate
@ -51,7 +51,7 @@ msgstr ""
#: field:ir.ui.view,arch:0
#: field:ir.ui.view.custom,arch:0
msgid "View Architecture"
msgstr "દૃશ્ય સ્થાપત્ય"
msgstr "સ્થાપત્ય જુઑ"
#. module: base
#: model:ir.module.module,description:base.module_project

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:09+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:06+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:12+0000\n"
"X-Generator: Launchpad (build 16251)\n"
"Language: hr\n"
#. module: base

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -35,7 +35,7 @@ msgstr "Dátum/Idő"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mailgate
msgid "Tasks-Mail Integration"
msgstr ""
msgstr "Feladat-levél beillesztés"
#. module: base
#: code:addons/fields.py:582
@ -109,6 +109,8 @@ msgid ""
"Helps you manage your projects and tasks by tracking them, generating "
"plannings, etc..."
msgstr ""
"Segít Önnek a projektjei és feladatai menedzselésében, azok "
"nyomonkövetésével, tervezések készítésével, stb..."
#. module: base
#: field:ir.actions.act_window,display_menu_tip:0
@ -145,6 +147,11 @@ msgid ""
"\n"
"This module allows you to create retro planning for managing your events.\n"
msgstr ""
"\n"
"Az események szervezése és menedzselése.\n"
"======================================\n"
"\n"
"Ezzel a modullal átütemezést készíthet az események menedzselésében.\n"
#. module: base
#: help:ir.model.fields,domain:0
@ -175,17 +182,17 @@ msgstr "Cél Ablak"
#. module: base
#: model:ir.module.module,shortdesc:base.module_sale_analytic_plans
msgid "Sales Analytic Distribution"
msgstr ""
msgstr "Eladás elemzés osztályozás"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_process
msgid "Process"
msgstr ""
msgstr "Folyamat"
#. module: base
#: model:ir.module.module,shortdesc:base.module_analytic_journal_billing_rate
msgid "Billing Rates on Contracts"
msgstr ""
msgstr "Árfolyamok a szerződéseken"
#. module: base
#: code:addons/base/res/res_users.py:558
@ -359,6 +366,11 @@ msgid ""
" complex data from other software\n"
" "
msgstr ""
"\n"
" Ez a modul gondoskodik egy csoport keretmunka_bevitelről ami "
"segítséget nyújt\n"
" más szoftver összetett adatainak betöltéséhez\n"
" "
#. module: base
#: field:ir.actions.wizard,wiz_name:0
@ -378,7 +390,7 @@ msgstr "Ügyfél kapcsolati irányítás"
#. module: base
#: view:ir.module.module:0
msgid "Extra"
msgstr ""
msgstr "Extra"
#. module: base
#: code:addons/orm.py:2526
@ -389,7 +401,7 @@ msgstr "Invalid group_by"
#. module: base
#: field:ir.module.category,child_ids:0
msgid "Child Applications"
msgstr ""
msgstr "Alárendelt/gyermek alkalmazások"
#. module: base
#: field:res.partner,credit_limit:0
@ -399,7 +411,7 @@ msgstr "Hitelkeret"
#. module: base
#: model:ir.module.module,description:base.module_web_graph
msgid "Openerp web graph view"
msgstr ""
msgstr "Openerp web grafikus nézet"
#. module: base
#: field:ir.model.data,date_update:0
@ -409,7 +421,7 @@ msgstr "Frissítés Dátuma"
#. module: base
#: model:ir.module.module,shortdesc:base.module_base_action_rule
msgid "Automated Action Rules"
msgstr ""
msgstr "Automata végrehalytási szabályok"
#. module: base
#: view:ir.attachment:0
@ -424,7 +436,7 @@ msgstr "Forrás Objektum"
#. module: base
#: model:res.partner.bank.type,format_layout:base.bank_normal
msgid "%(bank_name)s: %(acc_number)s"
msgstr ""
msgstr "%(bank_name)s: %(acc_number)s"
#. module: base
#: view:ir.actions.todo:0
@ -454,6 +466,9 @@ msgid ""
"Invalid date/time format directive specified. Please refer to the list of "
"allowed directives, displayed when you edit a language."
msgstr ""
"Nem létező dátum/idő utasítás formátum lett megadva. Kérjük hivatkozzon a "
"listában lévő utasítás formátumokra, mely a nyelv szerkesztése közben a "
"képernyőn látható."
#. module: base
#: code:addons/orm.py:3895
@ -476,11 +491,13 @@ msgid ""
"The user this filter is available to. When left empty the filter is usable "
"by the system only."
msgstr ""
"A felhasználó is használhatja ezt a szűrőt. Ha üresen hagyja akkor a szűrőt "
"csak a rendszer használhatja."
#. module: base
#: help:res.partner,website:0
msgid "Website of Partner."
msgstr ""
msgstr "A kapcsolat/partner weboldala"
#. module: base
#: help:ir.actions.act_window,views:0
@ -490,6 +507,10 @@ msgid ""
"and reference view. The result is returned as an ordered list of pairs "
"(view_id,view_mode)."
msgstr ""
"Ez a hivatkozási mező számítja ki a nézetek lista elrendezését amit be kell "
"kapcsolni, ha ki szeretnénk jelezni a művelet eredményét, összesített nézet "
"módot, nézeteket és a hivatkozási nézetet a képernyőre. Az eredményt "
"visszakapjuk, mint egy megrendelési páros lista (nézet_id,nézet_mód)."
#. module: base
#: model:res.country,name:base.tv
@ -509,7 +530,7 @@ msgstr "Dátum Formátum"
#. module: base
#: model:ir.module.module,shortdesc:base.module_base_report_designer
msgid "OpenOffice Report Designer"
msgstr ""
msgstr "OpenOffice Jelentés Szerkesztő"
#. module: base
#: field:res.bank,email:0
@ -540,7 +561,7 @@ msgstr ""
#. module: base
#: view:ir.values:0
msgid "Action Binding"
msgstr ""
msgstr "Művelet összekötés"
#. module: base
#: model:res.country,name:base.gf
@ -579,7 +600,7 @@ msgstr "Spanyol (VE)"
#. module: base
#: model:ir.module.module,shortdesc:base.module_hr_timesheet_invoice
msgid "Invoice on Timesheets"
msgstr ""
msgstr "Számlák az időkimutatásokon"
#. module: base
#: view:base.module.upgrade:0
@ -615,6 +636,26 @@ msgid ""
" Accounting/Reporting/Generic Reporting/Partners/Follow-ups Sent\n"
"\n"
msgstr ""
"\n"
"Modul az automata nem kiegyenlített számlák levelezéséhez, több-szintű "
"emlékeztetőkkel.\n"
"==========================================================================\n"
"\n"
"A menün keresztül meg tudja adni a többszintű emlékeztetőket:\n"
" Könyvelés/Beállítások/Egyebek/Nyomon-követés\n"
"Ha már meghatározott, akkor automatikussan nyomtathat emlékeztetőket minden "
"nap egyszerűen a menüre kettintva:\n"
" Könyvelés/Periódikus végrehajtás/Számlázás/Nyomon követés küldése\n"
"\n"
"PDF fájlt generál minden levélhez, \n"
"melyet a különböző ismétlődési szintekhez rendelt. \n"
"Mindegyik vállalathoz külön nyomtató eljárás rendelhető.\n"
"Levelet is küldhet az ügyfélnek.\n"
"\n"
"Figyelje meg, hogy a partner/számla belyegyzéshez tartozó nyomon-követési "
"szintet a menüből is ellenőrizheti:\n"
" Könyvelés/Jelentés/Általános jelentés/Partnerek/Nyomon-követés küldve\n"
"\n"
#. module: base
#: field:res.country,name:0
@ -684,7 +725,7 @@ msgstr "Egyéni mező nevének 'x_'-el kell kezdődnie!"
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_mx
msgid "Mexico - Accounting"
msgstr ""
msgstr "Mexico - Könyvelés"
#. module: base
#: help:ir.actions.server,action_id:0
@ -704,7 +745,7 @@ msgstr "Exportálás kész."
#. module: base
#: model:ir.module.module,shortdesc:base.module_plugin_outlook
msgid "Outlook Plug-In"
msgstr ""
msgstr "Outlook Plug-In"
#. module: base
#: view:ir.model:0
@ -733,7 +774,7 @@ msgstr "Jordánia"
#. module: base
#: help:ir.cron,nextcall:0
msgid "Next planned execution date for this job."
msgstr ""
msgstr "Ennek a munkának a következő tervezett végrehajtási dátuma."
#. module: base
#: code:addons/base/ir/ir_model.py:139
@ -749,7 +790,7 @@ msgstr "Eritrea"
#. module: base
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "A válláalkozás nevének egyedinek kell lennie"
#. module: base
#: view:res.config:0
@ -766,7 +807,7 @@ msgstr "Automatizált műveletek"
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_ro
msgid "Romania - Accounting"
msgstr ""
msgstr "Romania - Könyvelés"
#. module: base
#: view:partner.wizard.ean.check:0
@ -787,7 +828,7 @@ msgstr ""
#. module: base
#: view:ir.mail_server:0
msgid "Security and Authentication"
msgstr ""
msgstr "Biztonság és Hitelesítés"
#. module: base
#: view:base.language.export:0
@ -807,6 +848,10 @@ msgid ""
"Launch Manually Once: after hacing been launched manually, it sets "
"automatically to Done."
msgstr ""
"Kézi: Kézell elindított.\n"
"Automatikus: A rendszer újrakonfigurációinál mindíg futtatva lesz.\n"
"Egyseri futtatás kézzel: Kézzel való elindítás után, autómatán elvégzettre "
"állítva."
#. module: base
#: selection:base.language.install,lang:0
@ -877,7 +922,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_document_webdav
msgid "Shared Repositories (WebDAV)"
msgstr ""
msgstr "Megosztott tárterület (WebDAV)"
#. module: base
#: model:ir.module.module,description:base.module_import_google
@ -885,11 +930,13 @@ msgid ""
"The module adds google contact in partner address and add google calendar "
"events details in Meeting"
msgstr ""
"A modul a google kapcsolatokat a partner címekhez adja valamint a google "
"naptár bejegyzés részletit a Találkozókhoz"
#. module: base
#: view:res.users:0
msgid "Email Preferences"
msgstr ""
msgstr "Email preferencia"
#. module: base
#: model:ir.module.module,description:base.module_audittrail
@ -904,6 +951,15 @@ msgid ""
"delete on objects and can check logs.\n"
" "
msgstr ""
"\n"
"A modul az adminisztrátor számára nyomonkövetést biztosít minden "
"felhasználói művelethez minden rendszer objektumra vonatkozólag.\n"
"============================================================================="
"==============\n"
"\n"
"Az adminisztrátor feliratozhat az objektum olvasási, írási és törlési "
"szabályhoz és ellenőrizheti a naplót.\n"
" "
#. module: base
#: model:res.partner.category,name:base.res_partner_category_4
@ -966,7 +1022,7 @@ msgstr "Omán"
#. module: base
#: model:ir.module.module,shortdesc:base.module_mrp
msgid "MRP"
msgstr ""
msgstr "MRP"
#. module: base
#: report:ir.module.reference.graph:0
@ -981,7 +1037,7 @@ msgstr "Niue"
#. module: base
#: model:ir.module.module,shortdesc:base.module_membership
msgid "Membership Management"
msgstr ""
msgstr "Tagok adatkezelése"
#. module: base
#: selection:ir.module.module,license:0
@ -1008,7 +1064,7 @@ msgstr "Hivatkozás típusok kérése"
#. module: base
#: model:ir.module.module,shortdesc:base.module_google_base_account
msgid "Google Users"
msgstr ""
msgstr "Google felhasználók"
#. module: base
#: help:ir.server.object.lines,value:0
@ -1045,6 +1101,8 @@ msgstr "TGZ Archívum"
msgid ""
"Users added to this group are automatically added in the following groups."
msgstr ""
"Ehhez a csoporthoz adott felhasználók automatikussan hozzá lesznek rendelve "
"a következő csoportokhoz."
#. module: base
#: view:res.lang:0
@ -1071,7 +1129,7 @@ msgstr "Típus"
#. module: base
#: field:ir.mail_server,smtp_user:0
msgid "Username"
msgstr ""
msgstr "Felhasználó név"
#. module: base
#: code:addons/orm.py:398
@ -1098,7 +1156,7 @@ msgstr "Üres jelszó beállítása biztonsági okokból nem engedélyezett!"
#: code:addons/base/ir/ir_mail_server.py:192
#, python-format
msgid "Connection test failed!"
msgstr ""
msgstr "Csatlakozás teszt nem sikerült!"
#. module: base
#: selection:ir.actions.server,state:0
@ -1219,12 +1277,12 @@ msgstr "Spanyol (GT) / Español (GT)"
#. module: base
#: field:ir.mail_server,smtp_port:0
msgid "SMTP Port"
msgstr ""
msgstr "SMTP Port"
#. module: base
#: model:ir.module.module,shortdesc:base.module_import_sugarcrm
msgid "SugarCRM Import"
msgstr ""
msgstr "SugarCRM Import"
#. module: base
#: view:res.lang:0
@ -1240,12 +1298,12 @@ msgstr ""
#: code:addons/base/module/wizard/base_language_install.py:55
#, python-format
msgid "Language Pack"
msgstr ""
msgstr "Nyelvi csomag"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_tests
msgid "Tests"
msgstr ""
msgstr "Teszts"
#. module: base
#: field:ir.ui.view_sc,res_id:0
@ -1306,7 +1364,7 @@ msgstr ""
#. module: base
#: field:ir.module.category,parent_id:0
msgid "Parent Application"
msgstr ""
msgstr "Szülő alkalmazás"
#. module: base
#: code:addons/base/res/res_users.py:222
@ -1323,12 +1381,12 @@ msgstr "Új nyelv exportálásához ne válasszon ki nyelvet."
#: model:ir.module.module,shortdesc:base.module_document
#: model:ir.module.module,shortdesc:base.module_knowledge
msgid "Document Management System"
msgstr ""
msgstr "Dokumentum kezelési rendszer"
#. module: base
#: model:ir.module.module,shortdesc:base.module_crm_claim
msgid "Claims Management"
msgstr ""
msgstr "Igények kezelése"
#. module: base
#: model:ir.ui.menu,name:base.menu_purchase_root
@ -1353,6 +1411,10 @@ msgid ""
"use the accounting application of OpenERP, journals and accounts will be "
"created automatically based on these data."
msgstr ""
"A vállalata bank számláinak beállítása és a jelentés lábjegyzetben "
"megjelenítani kívánt számla kiválasztása. A bankszámokat újrarendezheti a "
"lista nézetből. Ha használja az OpenERP könyvelését akkor naplók és "
"folyószámlák lesznek létrehozva automatikussan ezekből az adatokból."
#. module: base
#: view:ir.module.module:0
@ -1372,11 +1434,19 @@ msgid ""
" * Commitment Date\n"
" * Effective Date\n"
msgstr ""
"\n"
"Kiegészítő dátum információs adatokat ad a megrendeléshez.\n"
"===================================================\n"
"\n"
"A következő kiegészítő adatokat adhatja a megrendeléshez:\n"
" * Igényelt dátum\n"
" * Elvállalt/elkötelezett dátum\n"
" * Tényleges Date\n"
#. module: base
#: model:ir.module.module,shortdesc:base.module_account_sequence
msgid "Entries Sequence Numbering"
msgstr ""
msgstr "Tételsorszámozás"
#. module: base
#: model:ir.model,name:base.model_ir_exports
@ -1413,6 +1483,26 @@ msgid ""
"database,\n"
" but in the servers rootpad like /server/bin/filestore.\n"
msgstr ""
"\n"
"Ez egy teljes dokumentum kezelő rendszer.\n"
"==============================================\n"
"\n"
" * Felhasználó hitelesítés\n"
" * Documentum Indexálás :- .pptx és .docx fájlok nem támogatottak Windows "
"rendszerekben.\n"
" * Dashboard dokumentumokhoz mely magában foglalja:\n"
" * Új fájlok (lista)\n"
" * Fájlok forrás tipusa szerint (grafikon)\n"
" * Fájlok partnerek zerint (grafokon)\n"
" * Fájlok nagysága havi lebontásban (grafokon)\n"
"\n"
"FIGYELEM:\n"
" - Ha telepíti ezt a modult egy már meglévő vállalatra melyre már van PDF "
"fájl tárolva az adatbázisban,\n"
" akkor azt az összeset el fogja veszíteni.\n"
" - Miután telepítette a modult a PDF-ek már nem az adatbázisban lesznek "
"tárolva, \n"
" hanem a server győkerében mint /server/bin/filestore.\n"
#. module: base
#: view:res.lang:0
@ -1426,6 +1516,9 @@ msgid ""
" OpenERP Web gantt chart view.\n"
" "
msgstr ""
"\n"
" OpenERP Web gantt diagram nézet.\n"
" "
#. module: base
#: report:ir.module.reference.graph:0
@ -1478,6 +1571,15 @@ msgid ""
"Web.\n"
" "
msgstr ""
"\n"
"Ez a teszt modul megmutatja a HTML cimke támogatást normal XML forma "
"nézetben.\n"
"============================================================================="
"\n"
"\n"
"Minta forma-nézetet hoz létre HTML cimkékkel. Kizárólag OpenERP Web-el "
"tekinthető meg.\n"
" "
#. module: base
#: model:ir.module.category,description:base.module_category_purchase_management
@ -1485,6 +1587,8 @@ msgid ""
"Helps you manage your purchase-related processes such as requests for "
"quotations, supplier invoices, etc..."
msgstr ""
"Segít Önnek a beszerzéshez kapcsolódó folyamatainak kezelésében, mint "
"például ajánlatkérések, szállítói számlák, stb..."
#. module: base
#: help:base.language.install,overwrite:0
@ -1543,7 +1647,7 @@ msgstr "Bejelentkező név"
#: model:ir.actions.act_window,name:base.action_wizard_update_translations
#: model:ir.ui.menu,name:base.menu_wizard_update_translations
msgid "Synchronize Terms"
msgstr ""
msgstr "Feltételek szinkronizáása"
#. module: base
#: view:ir.actions.server:0
@ -1571,6 +1675,19 @@ msgid ""
" - You can define new types of events in\n"
" Association / Configuration / Types of Events\n"
msgstr ""
"\n"
"Rendezvények szervezése és kezelése.\n"
"======================================\n"
"\n"
"Ez a modul lehetővé teszi\n"
" * az rendezvényel szervezését és nyilvántartásait\n"
" * automatikus elfogadó és visszaigazoló emailek használatát és küldését "
"bármely bejegyzett eseményre\n"
" * ...\n"
"\n"
"Vegye figyelembe:\n"
" - Új tipusú eseményt definiálhat itt\n"
" Asszociáció,összekapcsolás / Beállítások / Rendezvény típusa\n"
#. module: base
#: model:ir.ui.menu,name:base.menu_tools
@ -1586,7 +1703,7 @@ msgstr "Lebegőpontos"
#: model:ir.module.category,name:base.module_category_warehouse_management
#: model:ir.module.module,shortdesc:base.module_stock
msgid "Warehouse Management"
msgstr ""
msgstr "Raktár kezelés"
#. module: base
#: model:ir.model,name:base.model_res_request_link
@ -1617,7 +1734,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_lu
msgid "Luxembourg - Accounting"
msgstr ""
msgstr "Luxembourg - Könyvelés"
#. module: base
#: model:res.country,name:base.tp
@ -1675,6 +1792,26 @@ msgid ""
"\n"
" "
msgstr ""
"\n"
"Ez a modul általános megoszó eszköz a meglévő OpenERP adatbázishoz.\n"
"========================================================================\n"
"\n"
"Kifejezetten hozzáad egy 'megoszt' kapcsológombot a Web clienshez, mellyel "
"bármely \n"
"OpenERP adat megosztható a kollégákkal, ügyfelekkel, barátokkal, stb.\n"
"\n"
"A rendszer úgy fog működni, hogy folyamatosan létrehoz új felhasználókat és "
"csoportokat, melyek\n"
"hozzáférési jogosultségainak kombinációival és ir.jogosultságokkal ahhoz, "
"hogy\n"
"biztosítva legyen, a megosztott adatot csak azok a felhasználók "
"használhassák akikkel\n"
"az meg lett osztva.\n"
"\n"
"Ez nagyon kihasználható egy közös munkában, ismeret átadásban, másik\n"
"vállalat szinkronizációjánál, stb.\n"
"\n"
" "
#. module: base
#: field:res.currency,accuracy:0
@ -1691,6 +1828,13 @@ msgid ""
" Apply Different Category for the product.\n"
" "
msgstr ""
"\n"
" Alap modul az ebédpénz nyilvántartásához\n"
"\n"
" nyilvántartja az ebéd rendelést, a pénz mozgást, kézi pénztárat, "
"terméket.\n"
" Különböző kategória alkalmazása a termékhez.\n"
" "
#. module: base
#: model:res.country,name:base.kg
@ -1761,6 +1905,9 @@ msgid ""
"simplified payment mode encoding, automatic picking lists generation and "
"more."
msgstr ""
"Segít Önnek, hogy a legtöbbet hozza ki az értékesítési helyeiből gyors "
"értékesítési kódolással, egyszerűsített fizetési mód kódolással, automatikus "
"csomaglisták generálásával, stb."
#. module: base
#: model:res.country,name:base.mv
@ -1796,27 +1943,28 @@ msgstr "Napok"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_rpc
msgid "OpenERP Web web"
msgstr ""
msgstr "OpenERP Web web"
#. module: base
#: model:ir.module.module,shortdesc:base.module_html_view
msgid "Html View"
msgstr ""
msgstr "Html nézet"
#. module: base
#: field:res.currency,position:0
msgid "Symbol position"
msgstr ""
msgstr "Szinbólum pozíció"
#. module: base
#: model:ir.module.module,shortdesc:base.module_process
msgid "Enterprise Process"
msgstr ""
msgstr "Vállalati folyamat"
#. module: base
#: help:ir.cron,function:0
msgid "Name of the method to be called when this job is processed."
msgstr ""
"A módszer hivatkozási neve ha ez a munkavégzés végrehajtás alatt van."
#. module: base
#: model:ir.module.module,shortdesc:base.module_hr_evaluation
@ -1838,7 +1986,7 @@ msgstr " (másolat)"
#. module: base
#: field:res.company,rml_footer1:0
msgid "General Information Footer"
msgstr ""
msgstr "Általános információ lábjegyzet"
#. module: base
#: view:res.lang:0
@ -1860,7 +2008,7 @@ msgstr "Bal szülő"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mrp
msgid "Create Tasks on SO"
msgstr ""
msgstr "Munka végzés ezen a megrendelésen"
#. module: base
#: field:ir.attachment,res_model:0
@ -1870,7 +2018,7 @@ msgstr "Csatolt modell"
#. module: base
#: field:res.partner.bank,footer:0
msgid "Display on Reports"
msgstr ""
msgstr "Megjenítés a jelentéseken"
#. module: base
#: model:ir.module.module,description:base.module_l10n_cn
@ -1945,7 +2093,7 @@ msgstr "%s (másolat)"
#. module: base
#: model:ir.module.module,shortdesc:base.module_account_chart
msgid "Template of Charts of Accounts"
msgstr ""
msgstr "Számlatükrők sablonjai"
#. module: base
#: field:res.partner.address,type:0
@ -15451,6 +15599,8 @@ msgid ""
"This field is computed automatically based on bank accounts defined, having "
"the display on footer checkbox set."
msgstr ""
"Ez a mező automatikusan generált a megadott bank számlák alapján, a "
"lábjegyzetben lévő jelölőnégyzet kiválasztásával."
#. module: base
#: model:ir.module.module,description:base.module_mrp_subproduct

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:06+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:03+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:02+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:09+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:10+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:11+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -24,17 +24,17 @@ msgstr "Šv. Elenos sala"
#. module: base
#: view:ir.actions.report.xml:0
msgid "Other Configuration"
msgstr ""
msgstr "Kiti nustatymai"
#. module: base
#: selection:ir.property,type:0
msgid "DateTime"
msgstr ""
msgstr "Data laikas"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mailgate
msgid "Tasks-Mail Integration"
msgstr ""
msgstr "Užduoties-Pašto sujungimas"
#. module: base
#: code:addons/fields.py:582
@ -43,6 +43,8 @@ msgid ""
"The second argument of the many2many field %s must be a SQL table !You used "
"%s, which is not a valid SQL table name."
msgstr ""
"many2many laukelio %s antrasis argumentas turi SQL lentelė! Naudojamas %s "
"nėra SQL lentelės pavadinimas."
#. module: base
#: field:ir.ui.view,arch:0
@ -88,7 +90,7 @@ msgstr "Darbų eiga"
#. module: base
#: selection:ir.sequence,implementation:0
msgid "No gap"
msgstr ""
msgstr "Be tarpelių"
#. module: base
#: selection:base.language.install,lang:0
@ -219,7 +221,7 @@ msgstr "Svazilandas"
#: code:addons/orm.py:4206
#, python-format
msgid "created."
msgstr ""
msgstr "sukurtas."
#. module: base
#: model:ir.module.module,shortdesc:base.module_l10n_tr
@ -963,7 +965,7 @@ msgstr ""
#: model:ir.actions.act_window,name:base.act_menu_create
#: view:wizard.ir.model.menu.create:0
msgid "Create Menu"
msgstr ""
msgstr "Sukurti meniu"
#. module: base
#: model:res.country,name:base.in
@ -1473,7 +1475,7 @@ msgstr ""
#. module: base
#: field:workflow,on_create:0
msgid "On Create"
msgstr ""
msgstr "Sukuriant"
#. module: base
#: code:addons/base/ir/ir_model.py:681

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:11+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:04+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:11+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:05+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:11+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -8170,7 +8170,7 @@ msgstr ""
#. module: base
#: field:res.partner,title:0
msgid "Partner Firm"
msgstr "Түнш Фирм"
msgstr "Харилцагчийн хэлбэр"
#. module: base
#: model:ir.actions.act_window,name:base.action_model_fields

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:05+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:11+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:01+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:08+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -3730,7 +3730,7 @@ msgid ""
"button \"Install\" from the form view and then click on \"Start Upgrade\"."
msgstr ""
"U kunt nieuwe modules installeren om nieuwe functies, menu, rapporten of "
"gegevens in OpenERP te activeren. Ommodules te installeren, klik op de knop "
"gegevens in OpenERP te activeren. Om modules te installeren, klik op de knop "
"\"Installeer\" uit de formulierweergave en klik dan op \"Start bijwerken\"."
#. module: base
@ -11307,6 +11307,14 @@ msgid ""
"The wizard to launch the report has several options to help you get the data "
"you need.\n"
msgstr ""
"\n"
"Deze module voegt een rapportage toe met verkopen, inkopen, marges en andere "
"interessante gegevens, gebaseerd op facturen.\n"
"============================================================================="
"===================\n"
"\n"
"Bij het starten van het rapport krijgt u een wizard, die u helpt bij het "
"kiezen van de juiste gegevens.\n"
#. module: base
#: model:res.country,name:base.al
@ -11378,6 +11386,13 @@ msgid ""
"Price and Cost Price.\n"
" "
msgstr ""
"\n"
"Deze module voegt het veld \"marge\" toe aan de verkooporders.\n"
"===================================================\n"
"\n"
"Het marge veld geeft de winstgevendheid aan door het berekenen van het "
"verschil tussen de inkoopwaarde en verkoopwaarde.\n"
" "
#. module: base
#: model:ir.actions.act_window,help:base.action_res_bank_form

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:05+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:12+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -34,7 +34,7 @@ msgstr "Data i godzina"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mailgate
msgid "Tasks-Mail Integration"
msgstr ""
msgstr "Integracja Mail-Zadania"
#. module: base
#: code:addons/fields.py:582
@ -43,6 +43,8 @@ msgid ""
"The second argument of the many2many field %s must be a SQL table !You used "
"%s, which is not a valid SQL table name."
msgstr ""
"Drugi argument definicji pola many2many (%s) musi być tabelą SQL! Użyłeś %s, "
"to nie jest prawidłowa nazwa tabeli SQL."
#. module: base
#: field:ir.ui.view,arch:0
@ -69,6 +71,21 @@ msgid ""
" * Graph of My Remaining Hours by Project\n"
" "
msgstr ""
"\n"
"Moduł zarządzania projektami; pozwala zarządzać wielopoziomowymi projektami, "
"zadaniami, wykonaną pracą itp.\n"
"============================================================================="
"===========\n"
"\n"
"Może przygotowywać plan, zlecać zadania itp.\n"
"\n"
"Pulpit dla członków projektów zawierający:\n"
"--------------------------------------------\n"
" * Listę otwartych zadań\n"
" * Listę oddelegowanych zadań\n"
" * Wykres projektów: Zaplanowane a Przepracowane Godziny\n"
" * Wykres pozostałych godzin, z podziałem na projekty\n"
" "
#. module: base
#: field:base.language.import,code:0
@ -144,6 +161,11 @@ msgid ""
"\n"
"This module allows you to create retro planning for managing your events.\n"
msgstr ""
"\n"
"Organizacja i zarządzanie zdarzeniami\n"
"======================================\n"
"\n"
"Moduł umożliwia planowanie wsteczne zarządzające twoimi wydarzeniami.\n"
#. module: base
#: help:ir.model.fields,domain:0
@ -176,7 +198,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_process
msgid "Process"
msgstr ""
msgstr "Proces"
#. module: base
#: model:ir.module.module,shortdesc:base.module_analytic_journal_billing_rate
@ -201,7 +223,7 @@ msgstr ""
#: code:addons/osv.py:129
#, python-format
msgid "Constraint Error"
msgstr ""
msgstr "Błąd ograniczeń"
#. module: base
#: model:ir.model,name:base.model_ir_ui_view_custom

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:05+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:12+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:05+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:12+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:06+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:13+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2012-02-08 00:44+0000\n"
"PO-Revision-Date: 2012-08-20 15:52+0000\n"
"Last-Translator: Mustufa Rangwala (Open ERP) <mra@tinyerp.com>\n"
"PO-Revision-Date: 2012-11-01 18:59+0000\n"
"Last-Translator: Dusan Laznik <laznik@mentis.si>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:06+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:13+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh
@ -34,7 +34,7 @@ msgstr "DatumČas"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_mailgate
msgid "Tasks-Mail Integration"
msgstr ""
msgstr "Integracija email-opravila"
#. module: base
#: code:addons/fields.py:582
@ -90,7 +90,7 @@ msgstr "Delovni proces"
#. module: base
#: selection:ir.sequence,implementation:0
msgid "No gap"
msgstr ""
msgstr "Bez razmaka"
#. module: base
#: selection:base.language.install,lang:0
@ -179,7 +179,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_process
msgid "Process"
msgstr ""
msgstr "Proces"
#. module: base
#: model:ir.module.module,shortdesc:base.module_analytic_journal_billing_rate
@ -271,7 +271,7 @@ msgstr "Inuktitut / ᐃᓄᒃᑎᑐᑦ"
#: model:ir.module.category,name:base.module_category_sales_management
#: model:ir.module.module,shortdesc:base.module_sale
msgid "Sales Management"
msgstr ""
msgstr "Prodaja"
#. module: base
#: view:res.partner:0
@ -372,12 +372,12 @@ msgstr ""
#. module: base
#: model:ir.module.category,name:base.module_category_customer_relationship_management
msgid "Customer Relationship Management"
msgstr ""
msgstr "Upravljanje odnosov s kupci (CRM)"
#. module: base
#: view:ir.module.module:0
msgid "Extra"
msgstr ""
msgstr "Dodatno"
#. module: base
#: code:addons/orm.py:2526
@ -388,7 +388,7 @@ msgstr "Neveljavna skupina_z"
#. module: base
#: field:ir.module.category,child_ids:0
msgid "Child Applications"
msgstr ""
msgstr "Podrejene aplikacije"
#. module: base
#: field:res.partner,credit_limit:0
@ -539,7 +539,7 @@ msgstr ""
#. module: base
#: view:ir.values:0
msgid "Action Binding"
msgstr ""
msgstr "Povezovanje akcij"
#. module: base
#: model:res.country,name:base.gf
@ -702,7 +702,7 @@ msgstr "Izvoz zaključen"
#. module: base
#: model:ir.module.module,shortdesc:base.module_plugin_outlook
msgid "Outlook Plug-In"
msgstr ""
msgstr "Vtičnik za Outlook"
#. module: base
#: view:ir.model:0
@ -745,7 +745,7 @@ msgstr "Eritreja"
#. module: base
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Ime podjetja mora biti unikatno !"
#. module: base
#: view:res.config:0
@ -1006,7 +1006,7 @@ msgstr "Zahtevaj tipe sklicov"
#. module: base
#: model:ir.module.module,shortdesc:base.module_google_base_account
msgid "Google Users"
msgstr ""
msgstr "Google uporabniki"
#. module: base
#: help:ir.server.object.lines,value:0
@ -1069,7 +1069,7 @@ msgstr "Vrsta"
#. module: base
#: field:ir.mail_server,smtp_user:0
msgid "Username"
msgstr ""
msgstr "Uporabnik"
#. module: base
#: code:addons/orm.py:398
@ -1217,12 +1217,12 @@ msgstr "Špansko (GT) / Español (GT)"
#. module: base
#: field:ir.mail_server,smtp_port:0
msgid "SMTP Port"
msgstr ""
msgstr "SMTP vrata"
#. module: base
#: model:ir.module.module,shortdesc:base.module_import_sugarcrm
msgid "SugarCRM Import"
msgstr ""
msgstr "Uvoz iz SugarCRM-a"
#. module: base
#: view:res.lang:0
@ -1239,12 +1239,12 @@ msgstr ""
#: code:addons/base/module/wizard/base_language_install.py:55
#, python-format
msgid "Language Pack"
msgstr ""
msgstr "Jezikovni paket"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_tests
msgid "Tests"
msgstr ""
msgstr "Preizkusi"
#. module: base
#: field:ir.ui.view_sc,res_id:0
@ -1305,7 +1305,7 @@ msgstr ""
#. module: base
#: field:ir.module.category,parent_id:0
msgid "Parent Application"
msgstr ""
msgstr "Nadrejena aplikacija"
#. module: base
#: code:addons/base/res/res_users.py:222
@ -1322,12 +1322,12 @@ msgstr "Ne izbirajte jezika za izvoz novega jezika."
#: model:ir.module.module,shortdesc:base.module_document
#: model:ir.module.module,shortdesc:base.module_knowledge
msgid "Document Management System"
msgstr ""
msgstr "Sistem za upravljanje dokumentov"
#. module: base
#: model:ir.module.module,shortdesc:base.module_crm_claim
msgid "Claims Management"
msgstr ""
msgstr "Pritožbe"
#. module: base
#: model:ir.ui.menu,name:base.menu_purchase_root
@ -1542,7 +1542,7 @@ msgstr "Prijava"
#: model:ir.actions.act_window,name:base.action_wizard_update_translations
#: model:ir.ui.menu,name:base.menu_wizard_update_translations
msgid "Synchronize Terms"
msgstr ""
msgstr "Sinhronizacija izrazov"
#. module: base
#: view:ir.actions.server:0
@ -1585,7 +1585,7 @@ msgstr "Plavajoče"
#: model:ir.module.category,name:base.module_category_warehouse_management
#: model:ir.module.module,shortdesc:base.module_stock
msgid "Warehouse Management"
msgstr ""
msgstr "Skladiščno poslovanje"
#. module: base
#: model:ir.model,name:base.model_res_request_link
@ -1799,7 +1799,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_html_view
msgid "Html View"
msgstr ""
msgstr "Pogled html"
#. module: base
#: field:res.currency,position:0
@ -1809,7 +1809,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_process
msgid "Enterprise Process"
msgstr ""
msgstr "Proces podjetja"
#. module: base
#: help:ir.cron,function:0
@ -1868,7 +1868,7 @@ msgstr "Pripeti model"
#. module: base
#: field:res.partner.bank,footer:0
msgid "Display on Reports"
msgstr ""
msgstr "Prikaz na poročilih"
#. module: base
#: model:ir.module.module,description:base.module_l10n_cn
@ -1943,7 +1943,7 @@ msgstr "%s (kopija)"
#. module: base
#: model:ir.module.module,shortdesc:base.module_account_chart
msgid "Template of Charts of Accounts"
msgstr ""
msgstr "Predloga kontnega načrta"
#. module: base
#: field:res.partner.address,type:0
@ -2030,12 +2030,12 @@ msgstr "Finska"
#: code:addons/base/res/res_company.py:156
#, python-format
msgid "Website: "
msgstr ""
msgstr "Spletna stran: "
#. module: base
#: model:ir.ui.menu,name:base.menu_administration
msgid "Settings"
msgstr ""
msgstr "Nastavitve"
#. module: base
#: selection:ir.actions.act_window,view_type:0
@ -2175,7 +2175,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_subscription
msgid "Recurring Documents"
msgstr ""
msgstr "Ponavljajoči dokumenti"
#. module: base
#: model:res.country,name:base.bs
@ -2214,7 +2214,7 @@ msgstr "Število osveženih modulov"
#. module: base
#: field:ir.cron,function:0
msgid "Method"
msgstr ""
msgstr "Način"
#. module: base
#: view:res.partner.event:0
@ -2353,7 +2353,7 @@ msgstr ""
#. module: base
#: field:ir.mail_server,smtp_debug:0
msgid "Debugging"
msgstr ""
msgstr "Razhroščevanje"
#. module: base
#: model:ir.module.module,description:base.module_crm_helpdesk
@ -2463,7 +2463,7 @@ msgstr "Trenutno razmerje"
#. module: base
#: model:ir.module.module,shortdesc:base.module_idea
msgid "Ideas"
msgstr ""
msgstr "Ideje"
#. module: base
#: model:ir.module.module,shortdesc:base.module_sale_crm
@ -2505,7 +2505,7 @@ msgstr ""
#. module: base
#: model:ir.ui.menu,name:base.menu_invoiced
msgid "Invoicing"
msgstr ""
msgstr "Izdajanje računov"
#. module: base
#: field:ir.ui.view_sc,name:0
@ -2546,7 +2546,7 @@ msgstr ""
#: field:ir.model.data,res_id:0
#: field:ir.values,res_id:0
msgid "Record ID"
msgstr ""
msgstr "ID zapisa"
#. module: base
#: field:ir.actions.server,email:0
@ -2630,7 +2630,7 @@ msgstr "Napaka pri komuniciranju s strežnikom založniške garancije."
#: model:res.groups,name:base.group_sale_manager
#: model:res.groups,name:base.group_tool_manager
msgid "Manager"
msgstr ""
msgstr "Vodja"
#. module: base
#: model:ir.ui.menu,name:base.menu_custom
@ -2667,7 +2667,7 @@ msgstr "Počiši ID-je"
#. module: base
#: view:res.groups:0
msgid "Inherited"
msgstr ""
msgstr "Podedovano"
#. module: base
#: field:ir.model.fields,serialization_field_id:0
@ -2690,7 +2690,7 @@ msgstr "%y - Leto brez stoletja [00,99]."
#: code:addons/base/res/res_company.py:155
#, python-format
msgid "Fax: "
msgstr ""
msgstr "Fax: "
#. module: base
#: model:res.country,name:base.si
@ -2700,7 +2700,7 @@ msgstr "Slovenija"
#. module: base
#: help:res.currency,name:0
msgid "Currency Code (ISO 4217)"
msgstr ""
msgstr "Šifra valute (ISO 4217)"
#. module: base
#: model:ir.actions.act_window,name:base.res_log_act_window
@ -2818,14 +2818,14 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_stock_planning
msgid "Master Procurement Schedule"
msgstr ""
msgstr "Planiranje nabave"
#. module: base
#: model:ir.model,name:base.model_ir_module_category
#: field:ir.module.module,application:0
#: field:res.groups,category_id:0
msgid "Application"
msgstr ""
msgstr "Program"
#. module: base
#: selection:publisher_warranty.contract,state:0
@ -3019,7 +3019,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_wiki_quality_manual
msgid "Wiki: Quality Manual"
msgstr ""
msgstr "Wiki: Priročnik kvalitete"
#. module: base
#: selection:ir.actions.act_window.view,view_mode:0
@ -3047,7 +3047,7 @@ msgstr "Sektor HR"
#. module: base
#: model:ir.ui.menu,name:base.menu_dashboard_admin
msgid "Administration Dashboard"
msgstr ""
msgstr "Nadzorna plošča administracije"
#. module: base
#: code:addons/orm.py:4408
@ -3138,7 +3138,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_hr_contract
msgid "Employee Contracts"
msgstr ""
msgstr "Pogodbe zaposlenih"
#. module: base
#: model:ir.module.module,description:base.module_wiki_faq
@ -3191,7 +3191,7 @@ msgstr "Naziv kontakta"
#. module: base
#: model:ir.module.module,shortdesc:base.module_product_manufacturer
msgid "Products Manufacturers"
msgstr ""
msgstr "Proizvajalci"
#. module: base
#: code:addons/base/ir/ir_mail_server.py:217
@ -3202,7 +3202,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_survey
msgid "Survey"
msgstr ""
msgstr "Vprašalnik"
#. module: base
#: view:base.language.import:0
@ -3498,7 +3498,7 @@ msgstr ""
#: model:ir.module.category,name:base.module_category_generic_modules_accounting
#: view:res.company:0
msgid "Accounting"
msgstr ""
msgstr "Računovodstvo"
#. module: base
#: model:ir.module.module,description:base.module_account_payment
@ -3543,7 +3543,7 @@ msgstr ""
#. module: base
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Napaka! Ne morete ustvariti rekurzivno povezane člane."
#. module: base
#: view:res.payterm:0
@ -3618,7 +3618,7 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_point_of_sale
msgid "Point Of Sale"
msgstr ""
msgstr "Prodajno mesto"
#. module: base
#: code:addons/base/module/module.py:302
@ -3654,7 +3654,7 @@ msgstr ""
#. module: base
#: selection:ir.sequence,implementation:0
msgid "Standard"
msgstr ""
msgstr "Običajno"
#. module: base
#: model:ir.model,name:base.model_maintenance_contract
@ -3687,7 +3687,7 @@ msgstr ""
#. module: base
#: model:ir.module.category,name:base.module_category_human_resources
msgid "Human Resources"
msgstr ""
msgstr "Človeški viri"
#. module: base
#: model:ir.actions.act_window,name:base.action_country
@ -3747,7 +3747,7 @@ msgstr "DDV"
#. module: base
#: field:res.users,new_password:0
msgid "Set password"
msgstr ""
msgstr "Nastavite geslo"
#. module: base
#: view:res.lang:0
@ -4251,7 +4251,7 @@ msgstr "Povzetek"
#. module: base
#: model:ir.module.category,name:base.module_category_hidden_dependency
msgid "Dependency"
msgstr ""
msgstr "Odvisnost"
#. module: base
#: field:multi_company.default,expression:0
@ -4582,7 +4582,7 @@ msgstr "Pravila"
#. module: base
#: field:ir.mail_server,smtp_host:0
msgid "SMTP Server"
msgstr ""
msgstr "Strežnik SMTP"
#. module: base
#: code:addons/base/module/module.py:256
@ -4672,7 +4672,7 @@ msgstr "Kenija"
#: model:ir.actions.act_window,name:base.action_translation
#: model:ir.ui.menu,name:base.menu_action_translation
msgid "Translated Terms"
msgstr ""
msgstr "Prevedeni izrazi"
#. module: base
#: view:res.partner.event:0
@ -5003,7 +5003,7 @@ msgstr ""
#. module: base
#: model:ir.module.category,name:base.module_category_localization
msgid "Localization"
msgstr ""
msgstr "Lokalizacija"
#. module: base
#: model:ir.module.module,description:base.module_sale_mrp
@ -5096,7 +5096,7 @@ msgstr "Decimalni ločevalnik"
#: view:ir.module.module:0
#, python-format
msgid "Install"
msgstr ""
msgstr "Namesti"
#. module: base
#: model:ir.actions.act_window,help:base.action_res_groups
@ -5118,7 +5118,7 @@ msgstr ""
#. module: base
#: field:ir.filters,name:0
msgid "Filter Name"
msgstr ""
msgstr "Ime filtra"
#. module: base
#: view:res.partner:0
@ -5225,7 +5225,7 @@ msgstr "Polje"
#. module: base
#: model:ir.module.module,shortdesc:base.module_project_long_term
msgid "Long Term Projects"
msgstr ""
msgstr "Dolgoročni projekti"
#. module: base
#: model:res.country,name:base.ve
@ -5628,7 +5628,7 @@ msgstr "Svalbardovi in Jan Mayenovi otoki"
#. module: base
#: model:ir.module.category,name:base.module_category_hidden_test
msgid "Test"
msgstr ""
msgstr "Test"
#. module: base
#: model:ir.module.module,shortdesc:base.module_web_kanban
@ -5718,7 +5718,7 @@ msgstr "Lastnost 'on_delete' za za 'many2one' polja"
#. module: base
#: model:ir.module.category,name:base.module_category_accounting_and_finance
msgid "Accounting & Finance"
msgstr ""
msgstr "Računovodstvo & Finance"
#. module: base
#: field:ir.actions.server,write_id:0
@ -5746,7 +5746,7 @@ msgstr ""
#: model:ir.module.category,name:base.module_category_usability
#: view:res.users:0
msgid "Usability"
msgstr ""
msgstr "Uporabnost"
#. module: base
#: field:ir.actions.act_window,domain:0
@ -5797,7 +5797,7 @@ msgstr "Ime skupine se ne sme začeti z \"-\""
#. module: base
#: view:ir.module.module:0
msgid "Apps"
msgstr ""
msgstr "Programi"
#. module: base
#: view:ir.ui.view_sc:0
@ -5853,7 +5853,7 @@ msgstr "Lastnik bančnega računa"
#. module: base
#: model:ir.module.category,name:base.module_category_uncategorized
msgid "Uncategorized"
msgstr ""
msgstr "Neopredeljeno"
#. module: base
#: field:ir.attachment,res_name:0
@ -5921,7 +5921,7 @@ msgstr ""
#. module: base
#: view:res.partner.bank:0
msgid "My Banks"
msgstr ""
msgstr "Moje banke"
#. module: base
#: help:multi_company.default,object_id:0
@ -6003,12 +6003,12 @@ msgstr ""
#. module: base
#: model:ir.module.module,shortdesc:base.module_base_report_creator
msgid "Query Builder"
msgstr ""
msgstr "Čarovnik za poizvedbe"
#. module: base
#: selection:ir.actions.todo,type:0
msgid "Launch Automatically"
msgstr ""
msgstr "Zaženi samodejno"
#. module: base
#: model:ir.module.module,description:base.module_mail
@ -6141,7 +6141,7 @@ msgstr ""
#: code:addons/base/module/module.py:392
#, python-format
msgid "Uninstall"
msgstr ""
msgstr "Odstrani"
#. module: base
#: model:ir.module.module,shortdesc:base.module_account_budget
@ -6161,7 +6161,7 @@ msgstr ""
#. module: base
#: selection:ir.mail_server,smtp_encryption:0
msgid "SSL/TLS"
msgstr ""
msgstr "SSL/TLS"
#. module: base
#: field:publisher_warranty.contract,check_opw:0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:00+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:06+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:06+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:12+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:09+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:16+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:13+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:13+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:13+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:14+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:14+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:14+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:14+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:09+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:16+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:07+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-10-12 05:08+0000\n"
"X-Generator: Launchpad (build 16130)\n"
"X-Launchpad-Export-Date: 2012-11-13 05:15+0000\n"
"X-Generator: Launchpad (build 16251)\n"
#. module: base
#: model:res.country,name:base.sh

View File

@ -142,13 +142,13 @@ class report_xml(osv.osv):
}
_defaults = {
'type': lambda *a: 'ir.actions.report.xml',
'multi': lambda *a: False,
'auto': lambda *a: True,
'header': lambda *a: True,
'report_sxw_content': lambda *a: False,
'report_type': lambda *a: 'pdf',
'attachment': lambda *a: False,
'type': 'ir.actions.report.xml',
'multi': False,
'auto': True,
'header': True,
'report_sxw_content': False,
'report_type': 'pdf',
'attachment': False,
}
report_xml()
@ -251,14 +251,14 @@ class act_window(osv.osv):
}
_defaults = {
'type': lambda *a: 'ir.actions.act_window',
'view_type': lambda *a: 'form',
'view_mode': lambda *a: 'tree,form',
'context': lambda *a: '{}',
'limit': lambda *a: 80,
'target': lambda *a: 'current',
'auto_refresh': lambda *a: 0,
'auto_search':lambda *a: True,
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'tree,form',
'context': '{}',
'limit': 80,
'target': 'current',
'auto_refresh': 0,
'auto_search':True,
'multi': False,
}
@ -298,7 +298,7 @@ class act_window_view(osv.osv):
help="If set to true, the action will not be displayed on the right toolbar of a form view."),
}
_defaults = {
'multi': lambda *a: False,
'multi': False,
}
def _auto_init(self, cr, context=None):
super(act_window_view, self)._auto_init(cr, context)
@ -322,8 +322,8 @@ class act_wizard(osv.osv):
'model': fields.char('Object', size=64),
}
_defaults = {
'type': lambda *a: 'ir.actions.wizard',
'multi': lambda *a: False,
'type': 'ir.actions.wizard',
'multi': False,
}
act_wizard()
@ -344,8 +344,8 @@ class act_url(osv.osv):
)
}
_defaults = {
'type': lambda *a: 'ir.actions.act_url',
'target': lambda *a: 'new'
'type': 'ir.actions.act_url',
'target': 'new'
}
act_url()
@ -388,7 +388,7 @@ class server_object_lines(osv.osv):
], 'Type', required=True, size=32, change_default=True),
}
_defaults = {
'type': lambda *a: 'equation',
'type': 'equation',
}
server_object_lines()
@ -490,11 +490,11 @@ class actions_server(osv.osv):
'copy_object': fields.reference('Copy Of', selection=_select_objects, size=256),
}
_defaults = {
'state': lambda *a: 'dummy',
'condition': lambda *a: 'True',
'type': lambda *a: 'ir.actions.server',
'sequence': lambda *a: 5,
'code': lambda *a: """# You can use the following variables:
'state': 'dummy',
'condition': 'True',
'type': 'ir.actions.server',
'sequence': 5,
'code': """# You can use the following variables:
# - self: ORM model of the record on which the action is triggered
# - object: browse_record of the record on which the action is triggered if there is one, otherwise None
# - pool: ORM model pool (i.e. self.pool)
@ -747,7 +747,7 @@ class act_window_close(osv.osv):
_inherit = 'ir.actions.actions'
_table = 'ir_actions'
_defaults = {
'type': lambda *a: 'ir.actions.act_window_close',
'type': 'ir.actions.act_window_close',
}
act_window_close()
@ -766,7 +766,7 @@ class ir_actions_todo(osv.osv):
'action_id': fields.many2one(
'ir.actions.actions', 'Action', select=True, required=True),
'sequence': fields.integer('Sequence'),
'state': fields.selection(TODO_STATES, string='State', required=True),
'state': fields.selection(TODO_STATES, string='Status', required=True),
'name': fields.char('Name', size=64),
'type': fields.selection(TODO_TYPES, 'Type', required=True,
help="""Manual: Launched manually.

View File

@ -57,7 +57,7 @@ class ir_attachment(osv.osv):
def _search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False, access_rights_uid=None):
ids = super(ir_attachment, self)._search(cr, uid, args, offset=offset,
limit=limit, order=order,
context=context, count=count,
context=context, count=False,
access_rights_uid=access_rights_uid)
if not ids:
if count:

View File

@ -80,13 +80,13 @@ class ir_cron(osv.osv):
_defaults = {
'nextcall' : lambda *a: time.strftime(DEFAULT_SERVER_DATETIME_FORMAT),
'priority' : lambda *a: 5,
'priority' : 5,
'user_id' : lambda obj,cr,uid,context: uid,
'interval_number' : lambda *a: 1,
'interval_type' : lambda *a: 'months',
'numbercall' : lambda *a: 1,
'active' : lambda *a: 1,
'doall' : lambda *a: 1
'interval_number' : 1,
'interval_type' : 'months',
'numbercall' : 1,
'active' : 1,
'doall' : 1
}
def _check_args(self, cr, uid, ids, context=None):

Some files were not shown because too many files have changed in this diff Show More