Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[15.0][MIG] stock_available_immediately: Migration to 15.0 #1588

Merged
merged 22 commits into from
Dec 30, 2022

Commits on Dec 22, 2022

  1. [ADD] moved modules

    (lp:c2c-addons/6.1  rev 28.1.10)
    nbessi authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    aecd6d5 View commit details
    Browse the repository at this point in the history
  2. [MRG] stock_available_immediately from c2c-ecom-addons

    (lp:c2c-addons/6.1  rev 45.1.7)
    @ authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    66af15a View commit details
    Browse the repository at this point in the history
  3. [IMP] stock_available_immediately: licensed under AGPL-3 instead of G…

    …PL-3 with author agreement, improved help messages and pep8
    
    (lp:c2c-addons/6.1  rev 45.1.8)
    @ authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    d83a4a3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c0afc2c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aba0c16 View commit details
    Browse the repository at this point in the history
  6. [UPD] move out from unported to 8 for update

    [UPG] Upgraded to version 8, fixed references to new 8.0  views and  moved fields that were in  product.product to product.template
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [UPG] stock available immediately, corrected the calculation method of
    immediately_usable_qty to take in accountthe sign change in outgoing_qty
    (from negative to positive) in version 8.
    
    [FLAKE8]
    
    [FIX] renaming of a class, comment removing, useless code.
    
    [UPD] move out from unported to 8 for update
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [FIX] renaming of a class, comment removing, useless code.
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [UPD] move out from unported to 8 for update
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [FIX] renaming of a class, comment removing, useless code.
    
    [UPD] move out from unported to 8 for update
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [FIX] renaming of a class, comment removing, useless code.
    
    [UPD] move out from unported to 8 for update
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [FIX] renaming of a class, comment removing, useless code.
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [UPD] move out from unported to 8 for update
    
    [fix] remove duplicate view and correct view name
    
    [UPG][FIX] added outgoing field XML, that was in the base stock field in 7.0.
    
    [FIX] renaming of a class, comment removing, useless code.
    gfcapalbo authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    20f20fc View commit details
    Browse the repository at this point in the history
  7. [ADD] stock_available

    Generic module to compute the stock quantity available to promise using several implementations.
    stock_available_immediatly is changed to become the first optional implementation.
    Cherry pick of commit 0b060f6 from the v7 branch
    
    [IMP] stock_available* uses new API
    
    [IMP] READMEs and TODOs
    
    Cherry-picked from v7 at 8add4be
    
    Conflicts:
    	__unported__/stock_available_mrp/__openerp__.py
    	stock_available/__openerp__.py
    	stock_available_immediately/__openerp__.py
    Lionel Sausin (Numérigraphe) authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    14621dd View commit details
    Browse the repository at this point in the history
  8. [FIX] corrected calculation of immediately_usable_qty on product.prod…

    …uct and
    
    product.template, now takes in account variants and correctly displays value.
    [FLAKE8]
    
    Removing duplicate modules and moving README.rst into __unported__
    gfcapalbo authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    cce56e8 View commit details
    Browse the repository at this point in the history
  9. Fix the beta lint checks of Travis

    OCA Transbot updated translations from Transifex
    Lionel Sausin authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    fbff9fb View commit details
    Browse the repository at this point in the history
  10. [9.0][PORT] Stock available immediately

    OCA Transbot updated translations from Transifex
    atchuthan authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    fabdb82 View commit details
    Browse the repository at this point in the history
  11. product_available improvements

    * fix the dependencies for the computed field
    
    * use api.multi instead of api.one to avoid calling
      super()._immediately_usable_qty in a loop (this improves perfs on a tree view
      display)
    gurneyalex authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    2b5d283 View commit details
    Browse the repository at this point in the history
  12. [IMP] Decouple the quantity for templates and variants

    There are cases where we dot NOT want to simply sum the quantities of all the
    variants. For example when dealing with manufacturing capacities, we may have
    to chose between variants because we can't make ALL of them with the same
    components.
    
    So instead of a simple non-modular implementation, we'll let each module define
    his own implementation of how to compute the product template's quantity
    available for sale.
    
    Conflicts:
    	stock_available/__openerp__.py
    	stock_available_immediately/__openerp__.py
    
    OCA Transbot updated translations from Transifex
    Lionel Sausin authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    0fa0ade View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e1ea85e View commit details
    Browse the repository at this point in the history
  14. [10.0][CHG]stock_available...: improve stock methods computation

    optimize stock computation by avoiding to call useless compute
    
    OCA Transbot updated translations from Transifex
    Cédric Pigeon authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    649967b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    255e5b2 View commit details
    Browse the repository at this point in the history
  16. [FIX] stock_available_immediately: Restore current code

    Due to merge mess, we need to restore current code this way
    pedrobaeza authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    063d0b6 View commit details
    Browse the repository at this point in the history
  17. [MIG] stock_available_immediately: Migration to 12.0

    * New README by fragments
    * Bump manifest version
    * Adapted tests
    
    [UPD] Update stock_available_immediately.pot
    pedrobaeza authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    7a6358f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    bfc49dd View commit details
    Browse the repository at this point in the history
  19. [MIG] stock_available_immediately: Migration to 14.0

    [UPD] Update stock_available_immediately.pot
    
    [UPD] README.rst
    florian-dacosta authored and victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    da8c41a View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    90806c7 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    cdae52b View commit details
    Browse the repository at this point in the history
  22. [IMP] stock_available_immediately: Avoid error in tests of other modu…

    …les (sale_stock_available_info_popup for example).
    
    TT36990
    victoralmau committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    f9d195b View commit details
    Browse the repository at this point in the history