當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。