Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
8966 Widoki

i'm using odoo 9 and i want to apply a char field input mask so that i create a custom module to do that and i have installed the module "field_mask" but i noticed there is no difference. I want that the field "codeTVA" accept only this format "9999999/A/A/A/999". How can I do that? any idea for help please ?

 <?xml version="1.0" encoding="utf-8"?>
 <openerp>
<data>
   <record id="res_partner_view_purchase_buttons_TVA_RC" model="ir.ui.view">
        <field name="name">num.TVA.RC.res.partner.view.purchase.</field>
        <field name="model">res.partner</field>
        <field name="inherit_id" ref="base.view_partner_form"/>
        <field name="arch" type="xml">
            <xpath expr="//field[@name='website']" position="after">
                        <field name="CodeTVA" select="1" placeholder="Code TVA" widget="mask" data-inputmask-mask="9999999/A/A/A/999" />
                        <field name="RC" select="1" placeholder="Num RC"/>
            </xpath>
        </field>
   </record>
</data>
Awatar
Odrzuć

Regarding the module you have mentioned in the question, it seems the available version is 8 in the odoo store, maybe you are trying the v8 in v9, nice if you can check the same is working fine in v8, if it works in v8 well, you might need some changes in the code to work it in v9

Najlepsza odpowiedź

Hi,

You can check below module which is in Odoo V10 if is not working then you have to downgrade to v9.

https://apps.odoo.com/apps/modules/10.0/inputmask_widget/



Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
paź 21
4470
2
maj 19
6299
0
lut 19
2321
0
sty 19
3610
1
sty 19
7573