1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <footer> <button name='action_merge' string='Merge Contacts' class='oe_highlight' type='object' attrs="{'invisible': [('state', 'in', ('option', 'finished' ))]}" /> <button name='action_skip' string='Skip these contacts' type='object' attrs="{'invisible': [('state', '!=', 'selection')]}" /> <button name='action_start_manual_process' string='Merge with Manual Check' type='object' class='oe_highlight' attrs="{'invisible': [('state', '!=', 'option')]}" /> <button name='action_start_automatic_process' string='Merge Automatically' type='object' class='oe_highlight' confirm="Are you sure to execute the automatic merge of your contacts ?" attrs="{'invisible': [('state', '!=', 'option')]}" /> <button name='action_update_all_process' string='Merge Automatically all process' type='object' confirm="Are you sure to execute the list of automatic merges of your contacts ?" attrs="{'invisible': [('state', '!=', 'option')]}" /> <button special="cancel" string="Cancel" type="object" class="btn btn-secondary oe_inline" attrs="{'invisible': [('state', '=', 'finished')]}"/> <button special="cancel" string="Close" type="object" class="btn btn-secondary oe_inline" attrs="{'invisible': [('state', '!=', 'finished')]}"/> </footer>
|