osbzr/gooderp_addons

View on GitHub
core/models/pricing.py

Summary

Maintainability
A
2 hrs
Test Coverage

Function get_condition has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def get_condition(self, args):
        """
        返回定价策略的各种条件及报错信息
        :param args: 传入的参数字典
        :return: 取数的条件和按此条件取到多条策略时的报错信息,返回一个有序列表,
Severity: Minor
Found in core/models/pricing.py - About 1 hr to fix

    Function get_pricing_id has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_pricing_id(self, partner, warehouse, goods, date):
            '''传入客户,仓库,商品,日期,返回合适的价格策略,如果找到两条以上符合的规则,则报错
            1. 客户类别、仓库、商品
            2. 客户类别、仓库、商品类别
            3. 客户类别、仓库
    Severity: Minor
    Found in core/models/pricing.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Line too long (80 > 79 characters)
    Open

            res.append({'domain': [('c_category_id', '=', partner.c_category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    Line too long (80 > 79 characters)
    Open

            res.append({'domain': [('c_category_id', '=', partner.c_category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    Line too long (80 > 79 characters)
    Open

                                   ('goods_category_id', '=', goods.category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    Line too long (80 > 79 characters)
    Open

            res.append({'domain': [('c_category_id', '=', partner.c_category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    Line too long (80 > 79 characters)
    Open

            res.append({'domain': [('c_category_id', '=', partner.c_category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    Line too long (80 > 79 characters)
    Open

            res.append({'domain': [('c_category_id', '=', partner.c_category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    Line too long (80 > 79 characters)
    Open

            res.append({'domain': [('c_category_id', '=', partner.c_category_id.id),
    Severity: Minor
    Found in core/models/pricing.py by pep8

    Limit all lines to a maximum of 79 characters.

    There are still many devices around that are limited to 80 character
    lines; plus, limiting windows to 80 characters makes it possible to
    have several windows side-by-side.  The default wrapping on such
    devices looks ugly.  Therefore, please limit all lines to a maximum
    of 79 characters. For flowing long blocks of text (docstrings or
    comments), limiting the length to 72 characters is recommended.
    
    Reports error E501.

    There are no issues that match your filters.

    Category
    Status