[FIX] import docs: clarify handling of empty cells

bzr revid: xmo@openerp.com-20121009100326-bil1rw8904ze7opk
This commit is contained in:
Xavier Morel 2012-10-09 12:03:26 +02:00
parent 510eea5305
commit 61106da6e8
1 changed files with 11 additions and 4 deletions

View File

@ -78,10 +78,17 @@ Conversion
This second phase takes the record dicts, extracts the :ref:`dbid` and
:ref:`xid` if present and attempts to convert each field to a type
matching what OpenERP expects to write. Empty fields (empty strings)
are replaced with the ``False`` value, and non-empty fields are
converted through
:class:`~openerp.addons.base.ir.ir_fields.ir_fields_converter`:
matching what OpenERP expects to write.
* Empty fields (empty strings) are replaced with the ``False`` value
* Non-empty fields are converted through
:class:`~openerp.addons.base.ir.ir_fields.ir_fields_converter`
.. note:: if a field is specified in the import, its default will *never* be
used. If some records need to have a value and others need to use
the model's default, either specify that default explicitly or do
the import in two phases.
Char, text and binary fields
++++++++++++++++++++++++++++