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


Python loading.get_model方法代码示例

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


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

示例1: remove_ancestor_slugs

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def remove_ancestor_slugs(apps, schema_editor):
    MigrationCategory = apps.get_model('catalogue', 'Category')
    for category in MigrationCategory.objects.all():
        category.slug = category.slug.split(ORMCategory._slug_separator)[-1]
        category.save() 
开发者ID:pgovers,项目名称:oscar-wagtail-demo,代码行数:7,代码来源:0003_data_migration_slugs.py

示例2: add_ancestor_slugs

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def add_ancestor_slugs(apps, schema_editor):
    MigrationCategory = apps.get_model('catalogue', 'Category')
    for category in MigrationCategory.objects.all():
        orm_category = ORMCategory.objects.get(pk=category.pk)
        category.slug = orm_category.full_slug
        category.save() 
开发者ID:pgovers,项目名称:oscar-wagtail-demo,代码行数:8,代码来源:0003_data_migration_slugs.py

示例3: get_target_property

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def get_target_property():
    return get_model('catalogue', 'Product') 
开发者ID:pgovers,项目名称:oscar-wagtail-demo,代码行数:4,代码来源:models.py

示例4: target_model

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def target_model(self):
        return get_model('catalogue', 'product') 
开发者ID:pgovers,项目名称:oscar-wagtail-demo,代码行数:4,代码来源:blocks.py

示例5: __init__

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def __init__(self, **kwargs):
        super(AdminProductChooser, self).__init__(**kwargs)
        Product = get_model('catalogue', 'Product')
        self.target_content_type = ContentType.objects.get_for_model(Product) 
开发者ID:LabD,项目名称:django-oscar-wagtail,代码行数:6,代码来源:widgets.py

示例6: target_model

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def target_model(self):
        return get_model('catalogue', 'Product') 
开发者ID:LabD,项目名称:django-oscar-wagtail,代码行数:4,代码来源:blocks.py

示例7: update_child_vouchers

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def update_child_vouchers(voucher_id):
    Voucher = get_model('voucher', 'Voucher')
    parent = Voucher.objects.get(pk=voucher_id)
    parent.update_children() 
开发者ID:thelabnyc,项目名称:django-oscar-bluelight,代码行数:6,代码来源:tasks.py

示例8: add_child_codes

# 需要导入模块: from oscar.core import loading [as 别名]
# 或者: from oscar.core.loading import get_model [as 别名]
def add_child_codes(voucher_id, child_count):
    Voucher = get_model('voucher', 'Voucher')
    parent = Voucher.objects.get(pk=voucher_id)
    parent.create_children(child_count)
    parent.save() 
开发者ID:thelabnyc,项目名称:django-oscar-bluelight,代码行数:7,代码来源:tasks.py


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