Merge lp://staging/~unifield-team/unifield-wm/sync-utp-661 into lp://staging/unifield-wm
Status: | Needs review |
---|---|
Proposed branch: | lp://staging/~unifield-team/unifield-wm/sync-utp-661 |
Merge into: | lp://staging/unifield-wm |
Diff against target: |
16612 lines (+15894/-0) 132 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 (+18/-0) msf_sync_data_server/data/sync_server.sync_rule.csv (+246/-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 (+193/-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 (+18/-0) sync_remote_warehouse_server/data/rule_group_type.xml (+10/-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 (+669/-0) sync_so/purchase.py (+413/-0) sync_so/sale.py (+202/-0) sync_so/so_po_common.py (+470/-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-661 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
UniField Reviewer Team | Pending | ||
Review via email: mp+201626@code.staging.launchpad.net |
Unmerged revisions
- 388. By Quentin THEURET @Amaris
-
UTP-661 [IMP] Set the cross_docking_ok and location_id values on update_split_po and validated_
to_update_ original_ po methods to avoid errors on synchro - 387. By Quentin THEURET @Amaris
-
UTP-661 [IMP] When the PO is splitted by the sync. engine, keep the 'cross_docking_ok' value, because before that, the 'cross_docking_ok' was set to False in splitted POs and raise an issue with the IN/OUT process for IR to an external location sourced on order
- 386. By jftempo
-
UF-2268 [FIX] Wrong sync rules on sync RB
SP-76 sync_server.sync_rule_ v1.56:
deletion of rule 4054 msf_usb_sync_data_ server. bi_other_ product_ asset_event
This rule was a duplicate of rule 4053 - 385. By Samus CTO (OpenERP)
-
[FIX] USB messages executed on normal sync
- 384. By jftempo
-
[FIX] Translation
- 383. By jftempo
-
UTP-872 UTP-873 UTP-868 UTP-658 UTP-435 [IMP] Resourcing
lp:~unifield-team/unifield-wm/sync-utp-872-various-fixes - 382. By jftempo
-
UF-1987 [IMP] Change the logic of the "set default" (right click on field)
UTP-457 [FIX] function "set as default value" not working for users other than admin
lp:~unifield-team/unifield-wm/sync_utp-457 - 381. By jf <jf@ubuntu>
-
UF-2138 [FIX] Analytic distribution is not well synced
rules sync_server.
sync_rule_ v1.54.csv - 380. By jftempo
-
UF-2247 [IMP] Decision moments customization
lp:~unifield-team/unifield-wm/sync-uf-2247 - 379. By jftempo
-
UTP-952 [IMP] intermission order process
UTP-953 [IMP] intersection order process
UF-2244 [FIX] Not run in Synch messages when FO changed then validated
lp:~unifield-team/unifield-wm/sync-utp952-intermission-section