lp:~mathieu-julius/stock-logistic-tracking/stock-logistic-tracking70
- Get this branch:
- bzr branch lp:~mathieu-julius/stock-logistic-tracking/stock-logistic-tracking70
Branch merges
- Guewen Baconnier @ Camptocamp: Approve
-
Diff: 6170 lines (+4162/-1034)84 files modifiedReadme (+104/-0)
stock_barcode_reader/__openerp__.py (+5/-4)
stock_barcode_reader/package_acquisition.py (+8/-17)
stock_barcode_reader/stock.py (+3/-5)
stock_barcode_reader/wizard/reference.py (+4/-6)
stock_inventory_sequence/__init__.py (+24/-0)
stock_inventory_sequence/__openerp__.py (+47/-0)
stock_inventory_sequence/inventory.py (+31/-0)
stock_inventory_sequence/inventory_sequence.xml (+19/-0)
stock_move_packaging/__openerp__.py (+12/-10)
stock_move_packaging/stock.py (+5/-7)
stock_move_packaging/stock_view.xml (+1/-2)
stock_move_packaging/wizard/move_pack.py (+19/-12)
stock_move_packaging/wizard/move_pack_view.xml (+0/-2)
stock_move_split_default/__init__.py (+24/-0)
stock_move_split_default/__openerp__.py (+45/-0)
stock_move_split_default/stock_tracking.py (+38/-0)
stock_product_category_tracked/__init__.py (+24/-0)
stock_product_category_tracked/__openerp__.py (+47/-0)
stock_product_category_tracked/product_category.py (+51/-0)
stock_product_category_tracked/product_category_view.xml (+31/-0)
stock_tracking_add_move/__openerp__.py (+6/-5)
stock_tracking_add_move/stock.py (+6/-12)
stock_tracking_add_move/stock_view.xml (+53/-56)
stock_tracking_add_move/wizard/add_move.py (+3/-5)
stock_tracking_add_move/wizard/add_move_view.xml (+61/-64)
stock_tracking_add_remove/__init__.py (+25/-0)
stock_tracking_add_remove/__openerp__.py (+53/-0)
stock_tracking_add_remove/data/type.xml (+16/-0)
stock_tracking_add_remove/security/ir.model.access.csv (+2/-0)
stock_tracking_add_remove/stock_tracking.py (+278/-0)
stock_tracking_add_remove/stock_view.xml (+48/-0)
stock_tracking_add_remove/wizard/__init__.py (+25/-0)
stock_tracking_add_remove/wizard/add_object.py (+132/-0)
stock_tracking_add_remove/wizard/add_object_view.xml (+69/-0)
stock_tracking_add_remove/wizard/remove_object.py (+227/-0)
stock_tracking_add_remove/wizard/remove_object_view.xml (+55/-0)
stock_tracking_add_remove_pack/__init__.py (+25/-0)
stock_tracking_add_remove_pack/__openerp__.py (+53/-0)
stock_tracking_add_remove_pack/data/type.xml (+11/-0)
stock_tracking_add_remove_pack/stock_tracking.py (+79/-0)
stock_tracking_add_remove_pack/stock_view.xml (+29/-0)
stock_tracking_add_remove_pack/wizard/__init__.py (+25/-0)
stock_tracking_add_remove_pack/wizard/add_pack.py (+62/-0)
stock_tracking_add_remove_pack/wizard/add_pack_view.xml (+21/-0)
stock_tracking_add_remove_pack/wizard/remove_pack.py (+46/-0)
stock_tracking_add_remove_pack/wizard/remove_pack_view.xml (+19/-0)
stock_tracking_child/__init__.py (+24/-0)
stock_tracking_child/__openerp__.py (+48/-0)
stock_tracking_child/i18n/fr.po (+72/-0)
stock_tracking_child/stock_tracking.py (+151/-0)
stock_tracking_child/stock_tracking_view.xml (+82/-0)
stock_tracking_extended/__openerp__.py (+9/-9)
stock_tracking_extended/i18n/fr.po (+62/-215)
stock_tracking_extended/inventory_sequence.xml (+0/-19)
stock_tracking_extended/stock_tracking.py (+98/-227)
stock_tracking_extended/stock_tracking_view.xml (+100/-274)
stock_tracking_prodlot/__init__.py (+24/-0)
stock_tracking_prodlot/__openerp__.py (+45/-0)
stock_tracking_prodlot/stock_tracking.py (+42/-0)
stock_tracking_reopen/__openerp__.py (+7/-7)
stock_tracking_reopen/stock.py (+58/-53)
stock_tracking_reopen/stock_view.xml (+21/-23)
stock_tracking_state/__init__.py (+24/-0)
stock_tracking_state/__openerp__.py (+48/-0)
stock_tracking_state/i18n/fr.po (+76/-0)
stock_tracking_state/stock_tracking.py (+83/-0)
stock_tracking_state/stock_tracking_view.xml (+46/-0)
stock_tracking_swap/__init__.py (+25/-0)
stock_tracking_swap/__openerp__.py (+50/-0)
stock_tracking_swap/i18n/fr.po (+161/-0)
stock_tracking_swap/stock.py (+46/-0)
stock_tracking_swap/stock_view.xml (+34/-0)
stock_tracking_swap/wizard/__init__.py (+24/-0)
stock_tracking_swap/wizard/swap.py (+194/-0)
stock_tracking_swap/wizard/swap_view.xml (+74/-0)
stock_tracking_swap_pack/__init__.py (+25/-0)
stock_tracking_swap_pack/__openerp__.py (+52/-0)
stock_tracking_swap_pack/i18n/fr.po (+110/-0)
stock_tracking_swap_pack/stock.py (+44/-0)
stock_tracking_swap_pack/stock_view.xml (+29/-0)
stock_tracking_swap_pack/wizard/__init__.py (+24/-0)
stock_tracking_swap_pack/wizard/swap.py (+140/-0)
stock_tracking_swap_pack/wizard/swap_view.xml (+39/-0)
Branch information
Recent revisions
- 46. By Mathieu Vatel - Julius Network Solutions
-
[IMP] -> Code review
=> change iteration of dict form .keys() to .iterkeys()
=> Improvement change on dictionary construction with setdefault function - 45. By Mathieu Vatel - Julius Network Solutions
-
[REVIEW] => Code review:
- Replace tabs by spaces in xml files
- Remove commented code
- Clear lambda in some _defaults
- replace 'if context == None' by 'if context is 'None' in installable modules
- clear some lines => replace 4 lines to 1 using "type = context.get('type_ selection' , 'product')" - 44. By Mathieu Vatel - Julius Network Solutions
-
[MRG] - merge with yvan's code which change / add some history type + improve history views
- 41. By Mathieu Vatel - Julius Network Solutions
-
[MRG] merge with yvan's code. (remove the to module which became useless: stock_tracking_
add_prodlot and stock_tracking_ add_product)
[IMP] improvement for the module stock_tracking_add_remove: can add a list of product or prodlots to remove. - 40. By Mathieu Vatel - Julius Network Solutions
-
[IMP] - merge the stock_tracking_
add_product and stock_tracking_ prodlot into a new module "stock_ tracking_ add_remove" (these 2 modules will be remove in a future commit)
[IMP] - the stock_tracking_add_pack is rename into stock_tracking_ add_remove_ pack (giving new possibilities: removing a child from a picking) - 39. By Mathieu Vatel - Julius Network Solutions
-
[MRG] - merge with yvan which migrate the stock_tracking_
add_pack module - 38. By Mathieu Vatel - Julius Network Solutions
-
[IMP] - split some methods to be able to inherit them
[IMP] - the swap pack module is not workable with the state module yet - 37. By Mathieu Vatel - Julius Network Solutions
-
[TRANSLATION] - add fr translations for stock_tracking_swap and stock_tracking_
swap_pack
[IMP] - remove empty lines
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp:stock-logistic-tracking