openerp-dev-web team mailing list archive
-
openerp-dev-web team
-
Mailing list archive
-
Message #03491
lp:~openerp-dev/openobject-addons/trunk-contact-google-sync-usability_improvements-jam into lp:~openerp-dev/openobject-addons/trunk-contact-google-sync
Jigar Amin - OpenERP has proposed merging lp:~openerp-dev/openobject-addons/trunk-contact-google-sync-usability_improvements-jam into lp:~openerp-dev/openobject-addons/trunk-contact-google-sync.
Requested reviews:
Bhumika (OpenERP) (sbh-openerp)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-contact-google-sync-usability_improvements-jam/+merge/51492
Hello,
Changes with the Merge Proposal :
+ Usability improvements in all wizard of the Google sync
Kindly review this.
Thank You.
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-contact-google-sync-usability_improvements-jam/+merge/51492
Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-contact-google-sync.
=== modified file 'google_base_account/wizard/google_login_view.xml'
--- google_base_account/wizard/google_login_view.xml 2011-02-21 17:29:35 +0000
+++ google_base_account/wizard/google_login_view.xml 2011-02-28 05:46:17 +0000
@@ -7,7 +7,7 @@
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Google login" >
- <group colspan="4" col="4" width="250">
+ <group colspan="4" col="4" width="300">
<field name="user" />
<newline/>
<label string="ex: user@xxxxxxxxx" align="1.0" colspan="2"/>
@@ -15,9 +15,12 @@
<field name="password" password="True"/>
</group>
<separator string="" colspan="4"/>
- <group colspan="2" col="2">
- <button special="cancel" string="Cancel" icon="gtk-cancel"/>
- <button name="check_login" string="Login" type="object" icon="terp-check"/>
+ <group colspan="4" col="4">
+ <group colspan="2"/>
+ <group colspan="2">
+ <button special="cancel" string="_Cancel" icon="gtk-cancel"/>
+ <button name="check_login" string="_Login" type="object" icon="terp-check"/>
+ </group>
</group>
</form>
</field>
=== modified file 'sync_base/wizard/sync_base_view.xml'
--- sync_base/wizard/sync_base_view.xml 2011-02-23 13:18:03 +0000
+++ sync_base/wizard/sync_base_view.xml 2011-02-28 05:46:17 +0000
@@ -10,9 +10,12 @@
<field name="tools"/>
<newline />
<separator string="" colspan="4"/>
- <group colspan="4" col="2">
- <button special="cancel" string="Cancel" icon="gtk-cancel"/>
- <button name="action_synchronize" string="Synchronize" type="object" icon="terp-check"/>
+ <group colspan="4" col="4">
+ <group colspan="2"/>
+ <group colspan="2">
+ <button special="cancel" string="_Cancel" icon="gtk-cancel"/>
+ <button name="action_synchronize" string="_Synchronize" type="object" icon="terp-check"/>
+ </group>
</group>
</form>
</field>
=== modified file 'sync_base/wizard/synchronize_base.py'
--- sync_base/wizard/synchronize_base.py 2011-02-21 17:29:35 +0000
+++ sync_base/wizard/synchronize_base.py 2011-02-28 05:46:17 +0000
@@ -19,7 +19,7 @@
#
##############################################################################
-from osv import fields,osv,orm
+from osv import fields,osv
from tools.translate import _
@@ -46,7 +46,7 @@
def _get_action(self, cr, uid, tools, context=None):
if not tools:
- tools = 'none'
+ raise osv.except_osv(_("Error !"),_("Select App to synchronize with."))
return self._get_actions_dic(cr, uid, context=context)[tools]
def _get_actions_dic(self, cr, uid, context=None):
=== modified file 'sync_google_contact/wizard/google_contact_import.py'
--- sync_google_contact/wizard/google_contact_import.py 2011-02-24 10:08:00 +0000
+++ sync_google_contact/wizard/google_contact_import.py 2011-02-28 05:46:17 +0000
@@ -119,9 +119,6 @@
res.append(('all','All Groups'))
return res
- def _get_default_group(self, cr, uid, context=None):
- return 'all'
-
_columns = {
'create_partner': fields.boolean('Create Partner', help="It will create Partner for given gmail user otherwise only adds contacts in Partner Addresses.") ,
'group_name': fields.selection(_get_group, "Group Name", size=32,help="Choose which group to import, By defult it take all "),
@@ -129,7 +126,7 @@
_defaults = {
'create_partner': True,
- 'group_name': _get_default_group,
+ 'group_name': 'all',
}
def create_partner(self, cr, uid, data={}, context=None):
=== modified file 'sync_google_contact/wizard/google_contact_import_view.xml'
--- sync_google_contact/wizard/google_contact_import_view.xml 2011-02-21 17:29:35 +0000
+++ sync_google_contact/wizard/google_contact_import_view.xml 2011-02-28 05:46:17 +0000
@@ -7,15 +7,18 @@
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Import Google Contacts">
- <group colspan="2" col="2">
+ <group colspan="4" col="4">
<field name="group_name" />
<separator string="Do you want to create partner?" colspan="4"/>
- <field name="create_partner"/>
+ <field name="create_partner" colspan="4"/>
</group>
<separator string="" colspan="4"/>
- <group colspan="2" col="2">
- <button special="cancel" string="Cancel" icon="gtk-cancel"/>
- <button name="import_contact" string="Import Contacts" type="object" icon="terp-personal+"/>
+ <group colspan="4" col="4">
+ <group colspan="2" col="2"/>
+ <group colspan="2" col="2">
+ <button special="cancel" string="_Cancel" icon="gtk-cancel"/>
+ <button name="import_contact" string="_Import Contacts" type="object" icon="terp-personal+"/>
+ </group>
</group>
</form>
</field>
Follow ups