An error occurred fetching the project authors.
  1. 10 Apr, 2014 1 commit
  2. 08 Apr, 2014 1 commit
    • Julien Muchembled's avatar
      Price calculation: in default script, return all operands and fix variable additional part · d27a2fa0
      Julien Muchembled authored
      variable_additional_price was not multiplied by the result of getPricingVariable
      as it was done in previous implementation.
      
      In order that the caller has more information about how the price was computed,
      Resource_getPriceCalculationOperandDict now returns the result of
      getPriceParameterDict with following changed:
      - list values involved in priced calculation are replaced by their sums
      - 'price' key is added to holds the computed price
      
      Also removing fallback code from Resource class, since it's been a long time
      that erp5_pdm provides Resource_getPriceCalculationOperandDict
      Resource_getPrice script is kept in case some unrelated code still uses it.
      d27a2fa0
  3. 19 Mar, 2014 1 commit
  4. 18 Dec, 2013 1 commit
  5. 08 Feb, 2013 1 commit
  6. 28 Oct, 2011 2 commits
  7. 09 Mar, 2011 1 commit
  8. 23 Feb, 2011 1 commit
  9. 28 Oct, 2010 2 commits
  10. 27 Oct, 2010 1 commit
  11. 26 Oct, 2010 2 commits
  12. 25 Oct, 2010 1 commit
  13. 18 Oct, 2010 2 commits
  14. 14 Sep, 2010 1 commit
  15. 15 Jul, 2010 1 commit
    • Sebastien Robin's avatar
      sync with trunk@37114 · c1ae57b0
      Sebastien Robin authored
      Conflicts:
      	bt5/erp5_base/bt/revision
      	bt5/erp5_simulation/DocumentTemplateItem/InvoiceSimulationRule.py
      	bt5/erp5_simulation/bt/revision
      	bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/Base_viewTradeFieldLibrary.xml
      	bt5/erp5_trade/bt/change_log
      	bt5/erp5_trade/bt/revision
      	products/ERP5/Document/BusinessPath.py
      	products/ERP5/Document/SimulationMovement.py
      	products/ERP5/Document/TradeCondition.py
      	products/ERP5/Document/TradeModelLine.py
      	products/ERP5/bootstrap/erp5_mysql_innodb_catalog/bt/revision
      	products/ERP5Type/ERP5Type.py
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/sandbox/amount_generator@37129 20353a03-c40f-0410-a6d1-a30d3c3de9de
      c1ae57b0
  16. 22 May, 2010 2 commits
  17. 28 Apr, 2010 1 commit
  18. 24 Mar, 2010 1 commit
  19. 10 Mar, 2010 1 commit
  20. 05 Mar, 2010 2 commits
  21. 04 Mar, 2010 2 commits
  22. 03 Mar, 2010 2 commits
  23. 08 Feb, 2010 1 commit
  24. 03 Feb, 2010 3 commits
  25. 02 Feb, 2010 1 commit
  26. 26 Jan, 2010 1 commit
  27. 22 Jan, 2010 2 commits
  28. 21 Jan, 2010 1 commit
    • Nicolas Dumazet's avatar
      improve Quantity Unit Conversions (1/2) · cc05c028
      Nicolas Dumazet authored
      * Deprecate usage of "quantity" float field in quantity_unit category
      * Introduce Quantity Unit Conversion Module instead for this behavior:
           Quantity Unit Conversion Definitions can be used to define site-wide
           quantity_units
      * Let Resources define their own children Definitions:
           - adds a new tab in Product view
           - the definitions defined at a Resource level override the "global"
             definitions made in the Units Module
      
      * Definitions are indexed in a special catalog table, similarly to Measures.
      * Add an interaction workflow to take care of two reindexation needs:
         - when a local (resource-level) Definition is modified/created, the Product
           itself needs to be reindexed. This step is quite similar to
           measure_interaction_workflow
         - when a global (site-wide) Definition is modified, all Products need
           reindexing.
      
      * SimulationTool API was cleaned up and unified.
         - getConvertedInventoryList is deprecated
         - quantity_unit and metric_type parameters are added to getInventory
      
      * testResource is updated to use Unit Definitions instead of quantity fields
        of quantity_unit's
      
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31858 20353a03-c40f-0410-a6d1-a30d3c3de9de
      cc05c028
  29. 17 Nov, 2009 1 commit
    • Sebastien Robin's avatar
      - the possibility to pass --enable_full_indexing=portal_skins in · 2dd6ad08
      Sebastien Robin authored
       order to make optimisation configuration in unit test
      - isIndexable is not a property any more, it is a ConstantGetter
       instance, so it works like a property and like a method
      - same thing for isPredicate, isTemplate, isDelivery... we can
       start moving using only methods.
      - do not define isTemplate, isDelivery... when it is already
        available thanks to inheritance
      - new methods generated for all ERP5 objects : provides[InterfaceName].
       For instance, "providesIMovement()" will return True or False for
       any ERP5 object.
      - new method "is[Group]Type" generated for all ERP5 objects. The group
       here is group of portal types (like getPortalDeliveryTypeList()). So
       on any ERP5 object, you can do "isDeliveryType()", and this will
       returns True or False.
      - add tests
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30704 20353a03-c40f-0410-a6d1-a30d3c3de9de
      2dd6ad08