本文整理汇总了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)))
示例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
示例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
示例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
示例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)))
示例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)))