Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3440 Представления

In version 9, I want to create a wizard to pop up after a user logs in for the first time and ask them to enter their information: mobile phone number, hourly rate (float), and tax rate (float). 

1. How do I make the wizard pop up on first login?
2. What model do I use or changes do I have to make in order to reference the current user? (fix_tribe.???)
3. How would I save information using the function "profile_config_save" and where would I put the function?


My code is below:

<record id="fix_tribe_wizard_profile_config" model="ir.ui.view">

<field name="name">Profile Configuration</field>

<field name="model">fix_tribe.???</field>

<field name="arch" type="xml">

<form string="Configure Information">

<group col="4" colspan="4">

<group string="Profile Information" col="2" colspan="2">

<field name="phone_number" required="1"/>

<field name="hourly_rate" required="1"/>

<field name="tax_rate" required="1"/>

</group>

</group>

<footer>

<button string="Save &amp; Next" name=profile_config_save" type="object" class="oe_highlight"/>

or

<button string="Cancel" class="oe_link" special="cancel"/>

</footer>

</form>

</field>

</record>

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
авг. 17
3145
0
июн. 16
3401
1
дек. 22
3213
1
июн. 21
7211
What is wizard ? Решено
3
нояб. 23
32039