当前位置: 首页>>代码示例>>Python>>正文


Python Sellable.get_available_sellables_query方法代码示例

本文整理汇总了Python中stoqlib.domain.sellable.Sellable.get_available_sellables_query方法的典型用法代码示例。如果您正苦于以下问题:Python Sellable.get_available_sellables_query方法的具体用法?Python Sellable.get_available_sellables_query怎么用?Python Sellable.get_available_sellables_query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在stoqlib.domain.sellable.Sellable的用法示例。


在下文中一共展示了Sellable.get_available_sellables_query方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_get_available_sellables_query

# 需要导入模块: from stoqlib.domain.sellable import Sellable [as 别名]
# 或者: from stoqlib.domain.sellable.Sellable import get_available_sellables_query [as 别名]
    def test_get_available_sellables_query(self):
        # Sellable and query without supplier
        sellable = self.create_sellable()
        self.create_storable(product=sellable.product,
                             branch=self.create_branch())

        self.assertIn(
            sellable,
            self.store.find(Sellable,
                            Sellable.get_available_sellables_query(self.store)))

        sellable.close()
        self.assertNotIn(
            sellable,
            self.store.find(Sellable,
                            Sellable.get_available_sellables_query(self.store)))

        delivery_sellable = sysparam(self.store).DELIVERY_SERVICE.sellable
        delivery_sellable.status = Sellable.STATUS_AVAILABLE
        # Deliveries are treated differently, that's why they should
        # not be present here
        self.assertNotIn(
            sellable,
            self.store.find(Sellable,
                            Sellable.get_available_sellables_query(self.store)))
开发者ID:LeonamSilva,项目名称:stoq,代码行数:27,代码来源:test_sellable.py

示例2: get_sellable_view_query

# 需要导入模块: from stoqlib.domain.sellable import Sellable [as 别名]
# 或者: from stoqlib.domain.sellable.Sellable import get_available_sellables_query [as 别名]
 def get_sellable_view_query(self):
     # The stock quantity of consigned products can not be
     # decreased manually. See bug 5212.
     query = And(Eq(Product.consignment, False),
                 self.sellable_view.branch_id == self.model.branch_id,
                 Sellable.get_available_sellables_query(self.store))
     return self.sellable_view, query
开发者ID:Guillon88,项目名称:stoq,代码行数:9,代码来源:stockdecreasewizard.py

示例3: get_sellable_view_query

# 需要导入模块: from stoqlib.domain.sellable import Sellable [as 别名]
# 或者: from stoqlib.domain.sellable.Sellable import get_available_sellables_query [as 别名]
 def get_sellable_view_query(self):
     branch = api.get_current_branch(self.store)
     branch_query = Or(ProductStockItem.branch_id == branch.id,
                       Eq(ProductStockItem.branch_id, None))
     query = And(branch_query,
                 Sellable.get_available_sellables_query(self.store))
     return self.sellable_view, query
开发者ID:qman1989,项目名称:stoq,代码行数:9,代码来源:salequotewizard.py

示例4: get_sellable_view_query

# 需要导入模块: from stoqlib.domain.sellable import Sellable [as 别名]
# 或者: from stoqlib.domain.sellable.Sellable import get_available_sellables_query [as 别名]
 def get_sellable_view_query(self):
     branch = self.model.branch
     branch_query = ProductStockItem.branch_id == branch.id
     # The stock quantity of consigned products can not be
     # decreased manually. See bug 5212.
     query = And(branch_query,
                 Product.consignment == False,
                 Sellable.get_available_sellables_query(self.store))
     return self.sellable_view, query
开发者ID:romaia,项目名称:stoq,代码行数:11,代码来源:stockdecreasewizard.py

示例5: get_sellable_view_query

# 需要导入模块: from stoqlib.domain.sellable import Sellable [as 别名]
# 或者: from stoqlib.domain.sellable.Sellable import get_available_sellables_query [as 别名]
 def get_sellable_view_query(self):
     return (self.sellable_view,
             # FIXME: How to do this using sellable_view.find_by_branch ?
             And(Or(ProductStockItem.branch_id == self.model.branch.id,
                    ProductStockItem.branch_id == None),
                 Sellable.get_available_sellables_query(self.store)))
开发者ID:romaia,项目名称:stoq,代码行数:8,代码来源:workorderslave.py

示例6: get_sellable_view_query

# 需要导入模块: from stoqlib.domain.sellable import Sellable [as 别名]
# 或者: from stoqlib.domain.sellable.Sellable import get_available_sellables_query [as 别名]
 def get_sellable_view_query(self):
     return (self.sellable_view,
             # FIXME: How to do this using sellable_view.find_by_branch ?
             And(Or(Field('_stock_summary', 'branch_id') == self.model.branch.id,
                    Eq(Field('_stock_summary', 'branch_id'), None)),
                 Sellable.get_available_sellables_query(self.store)))
开发者ID:pkaislan,项目名称:stoq,代码行数:8,代码来源:workorderslave.py


注:本文中的stoqlib.domain.sellable.Sellable.get_available_sellables_query方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。