Merge lp://staging/~unifield-team/unifield-wm/sync_utp-457 into lp://staging/unifield-wm
Status: | Needs review |
---|---|
Proposed branch: | lp://staging/~unifield-team/unifield-wm/sync_utp-457 |
Merge into: | lp://staging/unifield-wm |
Diff against target: |
16610 lines (+15882/-0) 134 files modified
msf_sync_data_coordo/__init__.py (+2/-0) msf_sync_data_coordo/__openerp__.py (+41/-0) msf_sync_data_coordo/data/res.partner.csv (+3/-0) msf_sync_data_hq/__init__.py (+2/-0) msf_sync_data_hq/__openerp__.py (+47/-0) msf_sync_data_hq/data/account.account.csv (+268/-0) msf_sync_data_hq/data/account.account.type.csv (+2/-0) msf_sync_data_hq/data/account.analytic.account.csv (+22/-0) msf_sync_data_hq/data/msf.instance.csv (+1/-0) msf_sync_data_hq/data/product.category.csv (+4/-0) msf_sync_data_hq/data/product.nomenclature.csv (+10/-0) msf_sync_data_hq/data/product.product.csv (+6/-0) msf_sync_data_post_synchro/__init__.py (+2/-0) msf_sync_data_post_synchro/__openerp__.py (+42/-0) msf_sync_data_post_synchro/data/account.analytic.journal.csv (+18/-0) msf_sync_data_post_synchro/data/account.journal.csv (+14/-0) msf_sync_data_server/__openerp__.py (+45/-0) msf_sync_data_server/data/sync.server.group_type.csv (+6/-0) msf_sync_data_server/data/sync_server.message_rule.csv (+17/-0) msf_sync_data_server/data/sync_server.sync_rule.csv (+245/-0) msf_sync_data_server/make_ids.pl (+67/-0) patches/README (+27/-0) patches/export_many2many.diff (+57/-0) patches/generate_server_ssl_key_cert.sh (+21/-0) patches/server_patch_export_boolean.diff (+13/-0) patches/server_patch_gzip_xmlrpc.diff (+223/-0) patches/server_patch_netrpc_gzip.diff (+156/-0) patches/web_patch_choose_server_port.diff (+30/-0) sync_client/__init__.py (+9/-0) sync_client/__openerp__.py (+51/-0) sync_client/data/cron.xml (+19/-0) sync_client/gzip_xmlrpclib.py (+109/-0) sync_client/ir_model_data.py (+286/-0) sync_client/log_sale_purchase.py (+187/-0) sync_client/log_sale_purchase_view.xml (+84/-0) sync_client/logging.cfg (+33/-0) sync_client/message.py (+321/-0) sync_client/message_view.xml (+173/-0) sync_client/monitor.py (+162/-0) sync_client/monitor_view.xml (+130/-0) sync_client/orm.py (+773/-0) sync_client/rpc.py (+484/-0) sync_client/security/ir.model.access.csv (+12/-0) sync_client/special_handling.py (+133/-0) sync_client/sync_client.py (+935/-0) sync_client/sync_client_view.xml (+87/-0) sync_client/timeout_transport.py (+29/-0) sync_client/update.py (+667/-0) sync_client/update_view.xml (+229/-0) sync_client/wizard/__init__.py (+3/-0) sync_client/wizard/manage_entity.py (+115/-0) sync_client/wizard/monitoring_view.xml (+10/-0) sync_client/wizard/register_entity.py (+242/-0) sync_client/wizard/sync_manager.py (+81/-0) sync_client/wizard/sync_wiz_view.xml (+239/-0) sync_client_web/LICENSE (+15/-0) sync_client_web/__init__.py (+1/-0) sync_client_web/__openerp__.py (+14/-0) sync_client_web/web/__init__.py (+2/-0) sync_client_web/web/controllers.py (+15/-0) sync_client_web/web/editors.py (+56/-0) sync_client_web/web/static/css/cs.css (+23/-0) sync_common/__init__.py (+3/-0) sync_common/__openerp__.py (+39/-0) sync_common/common.py (+178/-0) sync_common/migration_scripts.py (+138/-0) sync_common/orm.py (+41/-0) sync_common/security/group.xml (+9/-0) sync_remote_warehouse/__init__.py (+9/-0) sync_remote_warehouse/__openerp__.py (+24/-0) sync_remote_warehouse/data/setup_remote_warehouse.xml (+19/-0) sync_remote_warehouse/data/usb_recovery.xml (+15/-0) sync_remote_warehouse/data/usb_synchronisation.xml (+15/-0) sync_remote_warehouse/entity.py (+669/-0) sync_remote_warehouse/ir_model_data.py (+10/-0) sync_remote_warehouse/message.py (+26/-0) sync_remote_warehouse/orm.py (+169/-0) sync_remote_warehouse/sync_client_message_rule.py (+16/-0) sync_remote_warehouse/sync_client_update_rule.py (+15/-0) sync_remote_warehouse/sync_monitor.py (+12/-0) sync_remote_warehouse/update.py (+97/-0) sync_remote_warehouse/views/message.xml (+180/-0) sync_remote_warehouse/views/setup_remote_warehouse.xml (+27/-0) sync_remote_warehouse/views/sync_monitor.xml (+46/-0) sync_remote_warehouse/views/update.xml (+224/-0) sync_remote_warehouse/views/usb_recovery.xml (+44/-0) sync_remote_warehouse/views/usb_synchronisation.xml (+30/-0) sync_remote_warehouse/wizard/__init__.py (+3/-0) sync_remote_warehouse/wizard/setup_remote_warehouse.py (+123/-0) sync_remote_warehouse/wizard/usb_recovery.py (+83/-0) sync_remote_warehouse/wizard/usb_synchronisation.py (+154/-0) sync_remote_warehouse_server/__init__.py (+1/-0) sync_remote_warehouse_server/__openerp__.py (+20/-0) sync_remote_warehouse_server/data/rule_group_type.xml (+10/-0) sync_remote_warehouse_server/data/sync_server.message_rule.csv (+3/-0) sync_remote_warehouse_server/data/sync_server.sync_rule.csv (+133/-0) sync_remote_warehouse_server/server_rules.py (+62/-0) sync_remote_warehouse_server/views/sync_message_rule.xml (+21/-0) sync_remote_warehouse_server/views/sync_update_rule.xml (+77/-0) sync_server/__init__.py (+4/-0) sync_server/__openerp__.py (+50/-0) sync_server/data/cron.xml (+21/-0) sync_server/message.py (+192/-0) sync_server/message_view.xml (+85/-0) sync_server/rules.py (+785/-0) sync_server/rules_view.xml (+251/-0) sync_server/security/ir.model.access.csv (+9/-0) sync_server/sync_server.py (+690/-0) sync_server/sync_server_view.xml (+154/-0) sync_server/update.py (+465/-0) sync_server/update_view.xml (+126/-0) sync_so/__init__.py (+6/-0) sync_so/__openerp__.py (+43/-0) sync_so/account_analytic_line.py (+47/-0) sync_so/picking.py (+617/-0) sync_so/purchase.py (+341/-0) sync_so/sale.py (+202/-0) sync_so/so_po_common.py (+452/-0) sync_so/specific_xml_id.py (+510/-0) update_client/__init__.py (+4/-0) update_client/__openerp__.py (+41/-0) update_client/security/ir.model.access.csv (+3/-0) update_client/version.py (+216/-0) update_client/wizard.py (+227/-0) update_client/wizard_view.xml (+46/-0) update_server/__init__.py (+2/-0) update_server/__openerp__.py (+43/-0) update_server/entity.xml (+29/-0) update_server/security/ir.model.access.csv (+3/-0) update_server/version.py (+158/-0) update_server/version.xml (+20/-0) update_server/wizard/__init__.py (+1/-0) update_server/wizard/manage_version.py (+102/-0) update_server/wizard/manage_version.xml (+72/-0) |
To merge this branch: | bzr merge lp://staging/~unifield-team/unifield-wm/sync_utp-457 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
UniField Dev Team | Pending | ||
Review via email: mp+199525@code.staging.launchpad.net |
Unmerged revisions
- 379. By jftempo
-
UTP-457 Sync admin profile in res.groups
- 378. By jftempo
-
UF-2218 [FIX] Budget import not working properly
Empty commit to track UF-2218 merged @revno 373 - 377. By jftempo
-
UTP-941 [FIX] When configuring the Cost Centres in the Proprietary Instances, it is not possible to remove a CC after adding it.
lp:~unifield-team/unifield-wm/sync-utp-941-added-can-delete-msf-instanceAdded the can_detele to cost_centers in msf-instance
- 376. By jftempo
-
UTP-752 [FIX] Exchange difference created for an internal transfer same currency
lp:~unifield-team/unifield-wm/UTP_752_sync - 375. By jftempo
-
UF-2122 [FIX] Wrong rules file
- 374. By jftempo
-
UF-2122 [IMP] Use of additional analytical axis
lp:~unifield-team/unifield-wm/sync-uf-2122 - 373. By jftempo
-
UF-2225 [FIX] Problem with installation of module sync on new instance
lp:~unifield-team/unifield-wm/sync_uf-2225 - 372. By jftempo
-
UTP-956 [IMP] Financing contracts synchronization rules
lp:~unifield-team/unifield-wm/sync_UTP_956_added_instance_id - 371. By jftempo
-
[IMP] Remote WH rules added in the the rules files (v1.47)
- 370. By jf <jf@ubuntu>
-
UF-2217 [FIX] Sequence number of correction entries
Field entry_sequence added in AJI