私は e コマース パッケージ Django-Oscar を使用しています。オスカーには「ライン」と呼ばれるバスケットに関係するオブジェクトがあり、私にはわかりません。ラインとは何ですか?ラインはどのような情報を伝え、何を表すのでしょうか?
質問する
354 次
2 に答える
2
かごの中の商品です:
int single word "BasketItem"
""" product and a quantity """
于 2015-12-14T11:59:03.787 に答える
1
Django-Oscar を 2 年間使用しています。それは非常に生のパッケージでした。行はバスケット内の 1 つのレコードです。ソース モデルの AbstractLine で確認できます。
class AbstractLine(models.Model):
"""
A line of a basket (product and a quantity)
"""
basket = models.ForeignKey('basket.Basket', related_name='lines',
verbose_name=_("Basket"))
# This is to determine which products belong to the same line
# We can't just use product.id as you can have customised products
# which should be treated as separate lines. Set as a
# SlugField as it is included in the path for certain views.
line_reference = models.SlugField(_("Line Reference"), max_length=128,
db_index=True)
product = models.ForeignKey(
'catalogue.Product', related_name='basket_lines',
verbose_name=_("Product"))
quantity = models.PositiveIntegerField(_('Quantity'), default=1)
# We store the unit price incl tax of the product when it is first added to
# the basket. This allows us to tell if a product has changed price since
# a person first added it to their basket.
price_excl_tax = models.DecimalField(
_('Price excl. Tax'), decimal_places=2, max_digits=12,
null=True)
price_incl_tax = models.DecimalField(
_('Price incl. Tax'), decimal_places=2, max_digits=12, null=True)
# Track date of first addition
date_created = models.DateTimeField(_("Date Created"), auto_now_add=True)
于 2015-12-14T12:37:59.793 に答える