Browse Source

[FIX] base_location: Changed partner view to avoid extrange behaviour when company country is filled.

pull/638/head
Pedro M. Baeza 11 years ago
committed by Pedro M. Baeza
parent
commit
13ddee7c38
  1. 7
      base_location/better_zip.py
  2. 12
      base_location/better_zip_view.xml
  3. 1
      base_location/company_view.xml
  4. 13
      base_location/i18n/base_location.pot
  5. 15
      base_location/i18n/es.po
  6. 15
      base_location/partner_view.xml

7
base_location/better_zip.py

@ -30,7 +30,7 @@ class BetterZip(orm.Model):
_order = "priority"
_columns = {'priority': fields.integer('Priority', deprecated=True),
'name': fields.char('ZIP', required=True),
'name': fields.char('ZIP'),
'city': fields.char('City', required=True),
'state_id': fields.many2one('res.country.state', 'State'),
'country_id': fields.many2one('res.country', 'Country'),
@ -43,7 +43,10 @@ class BetterZip(orm.Model):
def name_get(self, cursor, uid, ids, context=None):
res = []
for bzip in self.browse(cursor, uid, ids):
name = [bzip.name, bzip.city]
if bzip.name:
name = [bzip.name, bzip.city]
else:
name = [bzip.city]
if bzip.state_id:
name.append(bzip.state_id.name)
if bzip.country_id:

12
base_location/better_zip_view.xml

@ -33,12 +33,24 @@
</field>
</record>
<record id="view_better_zip_filter" model="ir.ui.view">
<field name="name">res.better.zip.select</field>
<field name="model">res.better.zip</field>
<field name="arch" type="xml">
<search string="Search city">
<field name="name"/>
<field name="city"/>
</search>
</field>
</record>
<record id="action_zip_tree" model="ir.actions.act_window">
<field name="name">Cites/locations Management</field>
<field name="res_model">res.better.zip</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field ref="better_zip_tree" name="view_id"/>
<field name="search_view_id" ref="view_better_zip_filter"/>
</record>
<menuitem

1
base_location/company_view.xml

@ -9,6 +9,7 @@
<field name="arch" type="xml">
<field name="street2" position="after">
<field name="better_zip_id"
options="{'create_name_field': 'city'}"
colspan="4"
on_change="on_change_city(better_zip_id)"
placeholder="City completion" />

13
base_location/i18n/base_location.pot

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-06-25 08:56+0000\n"
"PO-Revision-Date: 2013-06-25 08:56+0000\n"
"POT-Creation-Date: 2013-12-12 22:33+0000\n"
"PO-Revision-Date: 2013-12-12 22:33+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -31,6 +31,11 @@ msgstr ""
msgid "ZIP"
msgstr ""
#. module: base_location
#: field:res.better.zip,state_id:0
msgid "State"
msgstr ""
#. module: base_location
#: field:res.better.zip,country_id:0
msgid "Country"
@ -67,8 +72,8 @@ msgid "City/Location"
msgstr ""
#. module: base_location
#: field:res.better.zip,state_id:0
msgid "State"
#: view:res.better.zip:0
msgid "Search city"
msgstr ""
#. module: base_location

15
base_location/i18n/es.po

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-06-25 08:47+0000\n"
"PO-Revision-Date: 2013-06-25 10:47+0100\n"
"POT-Creation-Date: 2013-12-12 22:34+0000\n"
"PO-Revision-Date: 2013-12-12 23:34+0100\n"
"Last-Translator: Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -31,6 +31,11 @@ msgstr "Ciudad"
msgid "ZIP"
msgstr "C.P."
#. module: base_location
#: field:res.better.zip,state_id:0
msgid "State"
msgstr "Provincia"
#. module: base_location
#: field:res.better.zip,country_id:0
msgid "Country"
@ -67,9 +72,9 @@ msgid "City/Location"
msgstr "Ciudad/Ubicación"
#. module: base_location
#: field:res.better.zip,state_id:0
msgid "State"
msgstr "Provincia"
#: view:res.better.zip:0
msgid "Search city"
msgstr "Buscar ciudad"
#. module: base_location
#: field:res.company,better_zip_id:0

15
base_location/partner_view.xml

@ -6,11 +6,22 @@
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<field name="city" position="before">
<field name="street2" position="after">
<field name="zip_id"
options="{'create_name_field': 'city'}"
on_change="onchange_zip_id(zip_id)"
placeholder="City completion"/>
placeholder="City completion"
attrs="{'invisible': [('use_parent_address','=',True)]}"
/>
</field>
<xpath expr="//field[@name='child_ids']/form//field[@name='street2']" position="after">
<field name="zip_id"
options="{'create_name_field': 'city'}"
on_change="onchange_zip_id(zip_id)"
placeholder="City completion"
attrs="{'invisible': [('use_parent_address','=',True)]}"
/>
</xpath>
</field>
</record>
</data>

Loading…
Cancel
Save