def get_shipping_price(self):
        s = 0
        for item in self.purchaseitem_set.all():
            s += item.shipping_price
        return s