base_usability: form view of partner: zip/city/state (instead of state/city/zip)
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
'views/ir_module.xml',
|
||||
'views/ir_sequence.xml',
|
||||
'views/ir_property.xml',
|
||||
'views/assets.xml',
|
||||
],
|
||||
'installable': True,
|
||||
}
|
||||
|
||||
10
base_usability/static/src/scss/form_view.scss
Normal file
10
base_usability/static/src/scss/form_view.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.o_form_view {
|
||||
.o_address_format {
|
||||
.o_address_state {
|
||||
margin-right: 0;
|
||||
}
|
||||
.o_address_zip {
|
||||
margin-right: 2%;
|
||||
}
|
||||
}
|
||||
}
|
||||
15
base_usability/views/assets.xml
Normal file
15
base_usability/views/assets.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<template
|
||||
id="assets_backend"
|
||||
name="web_sheet_full_width"
|
||||
inherit_id="web.assets_backend"
|
||||
>
|
||||
<xpath expr="." position="inside">
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="/base_usability/static/src/scss/form_view.scss"
|
||||
/>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
@@ -20,6 +20,10 @@
|
||||
<div attrs="{'invisible': [('same_vat_partner_id', '=', False)]}" position="attributes">
|
||||
<attribute name="class">alert alert-warning</attribute>
|
||||
</div>
|
||||
<!-- Native order: city / state_id / zip. New order: zip / city / state_id -->
|
||||
<xpath expr="//div[hasclass('o_address_format')]/field[@name='city']" position="before">
|
||||
<field name="zip" position="move"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user