本文整理匯總了Python中stoqlib.domain.product.ProductHistory.add_transfered_item方法的典型用法代碼示例。如果您正苦於以下問題:Python ProductHistory.add_transfered_item方法的具體用法?Python ProductHistory.add_transfered_item怎麽用?Python ProductHistory.add_transfered_item使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類stoqlib.domain.product.ProductHistory
的用法示例。
在下文中一共展示了ProductHistory.add_transfered_item方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: send
# 需要導入模塊: from stoqlib.domain.product import ProductHistory [as 別名]
# 或者: from stoqlib.domain.product.ProductHistory import add_transfered_item [as 別名]
def send(self):
"""Sends this item to it's destination |branch|"""
assert self.transfer_order.can_close()
storable = self.sellable.product_storable
storable.decrease_stock(self.quantity, self.transfer_order.source_branch,
StockTransactionHistory.TYPE_TRANSFER_TO,
self.id)
ProductHistory.add_transfered_item(self.store, self.transfer_order.source_branch, self)
示例2: send_item
# 需要導入模塊: from stoqlib.domain.product import ProductHistory [as 別名]
# 或者: from stoqlib.domain.product.ProductHistory import add_transfered_item [as 別名]
def send_item(self, transfer_item):
"""Sends a |product| of this order to it's destination |branch|"""
assert self.can_close()
storable = transfer_item.sellable.product_storable
storable.decrease_stock(transfer_item.quantity, self.source_branch,
StockTransactionHistory.TYPE_TRANSFER_TO,
transfer_item.id)
store = self.store
ProductHistory.add_transfered_item(store, self.source_branch,
transfer_item)
示例3: send
# 需要導入模塊: from stoqlib.domain.product import ProductHistory [as 別名]
# 或者: from stoqlib.domain.product.ProductHistory import add_transfered_item [as 別名]
def send(self):
"""Sends this item to it's destination |branch|.
This method should never be used directly, and to send a transfer you
should use TransferOrder.send().
"""
storable = self.sellable.product_storable
storable.decrease_stock(self.quantity,
self.transfer_order.source_branch,
StockTransactionHistory.TYPE_TRANSFER_TO,
self.id, batch=self.batch)
ProductHistory.add_transfered_item(self.store,
self.transfer_order.source_branch,
self)