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


Python formatters.format_sellable_description函数代码示例

本文整理汇总了Python中stoqlib.lib.formatters.format_sellable_description函数的典型用法代码示例。如果您正苦于以下问题:Python format_sellable_description函数的具体用法?Python format_sellable_description怎么用?Python format_sellable_description使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: test_format_sellable_description

    def test_format_sellable_description(self):
        sellable = self.create_sellable()
        sellable.description = u"Cellphone"
        self.assertEqual(format_sellable_description(sellable),
                         u"Cellphone")

        storable = self.create_storable(product=sellable.product)
        batch = self.create_storable_batch(storable=storable,
                                           batch_number=u'666')
        self.assertEqual(format_sellable_description(sellable, batch=batch),
                         u"Cellphone [Batch: 666]")
开发者ID:hackedbellini,项目名称:stoq,代码行数:11,代码来源:test_formatters.py

示例2: description

 def description(self):
     return format_sellable_description(self.sellable, self.batch)
开发者ID:qman1989,项目名称:stoq,代码行数:2,代码来源:opticalwizard.py

示例3: _format_description

 def _format_description(self, item, data):  # pragma no cover
     return format_sellable_description(item.sellable, item.batch)
开发者ID:hackedbellini,项目名称:stoq,代码行数:2,代码来源:inventorydetails.py


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