コード例 #1
0
 def channel_withdrawable_balance(self, value):
     pay_channel = PayChannelContext.get_pay_channel()
     if pay_channel == PAY_CHANNELS.WECHAT:
         self.withdrawable_balance = value
     elif pay_channel == PAY_CHANNELS.ALIPAY:
         self.alipay_withdrawable_balance = value
     else:
         raise ValueError("Don't know the current pay channel")
コード例 #2
0
 def channel_balance(self):
     pay_channel = PayChannelContext.get_pay_channel()
     if pay_channel == PAY_CHANNELS.WECHAT:
         return self.balance
     elif pay_channel == PAY_CHANNELS.ALIPAY:
         return self.alipay_balance
     else:
         raise ValueError("Don't know the current pay channel")
コード例 #3
0
    def test_pay_channel_context(self):
        with PayChannelContext(0):
            assert PayChannelContext.get_pay_channel() == 0

        assert PayChannelContext.get_pay_channel() is None
コード例 #4
0
    def on_payment_unfreeze(cls, payment):
        """
        unfreeze payment.
        :param payment:
        :return:
        :raise: InvalidStatusError
        """
        with PayChannelContext(payment.pay_channel):
            with transaction.atomic():
                timestamp = timezone.now()
                accounts = None
                merchant_account = None

                if payment.coupon:  # 使用了优惠券的情况
                    merchant_account_id = payment.merchant.account_id
                    originator_account_id = payment.coupon.originator_merchant.account_id
                    inviter_account_id = payment.merchant.inviter.account_id

                    accounts = AccountProxy.objects.select_for_update().filter(
                        id__in=(PLATFORM_ACCOUNT_ID, merchant_account_id,
                                originator_account_id, inviter_account_id))
                else:
                    merchant_account_id = payment.merchant.account_id
                    merchant_account = AccountProxy.objects.select_for_update(
                    ).get(id=merchant_account_id)

                payment = Payment.objects.select_for_update().select_related(
                    'coupon').get(serial_number=payment.serial_number)

                if payment.status != PAYMENT_STATUS.FROZEN:
                    raise InvalidStatusError()

                if payment.coupon:  # 使用了优惠券的情况
                    accounts = {a.id: a for a in accounts}
                    if len(accounts) != 4:
                        logger.error('Cannot find all the accounts:{}'.format(
                            repr((PLATFORM_ACCOUNT_ID, merchant_account_id,
                                  originator_account_id, inviter_account_id))))
                        raise AccountProxy.DoesNotExist()

                    platform_account = accounts[PLATFORM_ACCOUNT_ID]
                    merchant_account = accounts[merchant_account_id]
                    originator_account = accounts[originator_account_id]
                    inviter_account = accounts[inviter_account_id]

                    platform_account.channel_balance -= payment.originator_share + payment.inviter_share
                    platform_account.save()

                    originator_account.channel_balance += payment.originator_share
                    originator_account.channel_withdrawable_balance += payment.originator_share
                    originator_account.save()

                    inviter_account.channel_balance += payment.inviter_share
                    inviter_account.channel_withdrawable_balance += payment.inviter_share
                    inviter_account.save()

                    payment.status = PAYMENT_STATUS.FINISHED
                    payment.save()

                    merchant_account.channel_withdrawable_balance += payment.order_price - payment.coupon.discount - sum(
                        (payment.platform_share, payment.originator_share,
                         payment.inviter_share))
                    merchant_account.save()

                    # 记录Transaction
                    Transaction.objects.bulk_create([
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EXPEND_MERCHANT_SHARE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-payment.originator_share,
                                    balance_after_transaction=platform_account.
                                    channel_balance + payment.inviter_share),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EXPEND_MARKETER_SHARE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-payment.inviter_share,
                                    balance_after_transaction=platform_account.
                                    channel_balance),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EXPEND_PLATFORM_SHARE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-payment.platform_share,
                                    balance_after_transaction=platform_account.
                                    channel_balance - payment.platform_share),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_SHARE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=payment.platform_share,
                                    balance_after_transaction=platform_account.
                                    channel_balance),
                        Transaction(
                            content_object=payment,
                            transaction_type=TRANSACTION_TYPE[
                                'MERCHANT_SHARE'],
                            datetime=timestamp,
                            account=originator_account,
                            amount=payment.originator_share,
                            balance_after_transaction=originator_account.
                            channel_balance),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'MARKETER_SHARE'],
                                    datetime=timestamp,
                                    account=inviter_account,
                                    amount=payment.inviter_share,
                                    balance_after_transaction=inviter_account.
                                    channel_balance)
                    ])

                else:  # 没有使用优惠券的情况
                    payment.status = PAYMENT_STATUS.FINISHED
                    payment.save()

                    merchant_account.channel_withdrawable_balance += payment.order_price
                    merchant_account.save()
コード例 #5
0
    def on_payment_success(cls, payment):
        """
        :param payment:
        :return:
        """
        with PayChannelContext(payment.pay_channel):
            with transaction.atomic():
                timestamp = timezone.now()

                platform_account = AccountProxy.objects.select_for_update(
                ).get(id=PLATFORM_ACCOUNT_ID)
                merchant_account = AccountProxy.objects.select_for_update(
                ).get(id=payment.merchant.account.id)
                payment = Payment.objects.select_for_update().get(
                    serial_number=payment.serial_number)

                if payment.status != PAYMENT_STATUS['UNPAID']:
                    raise InvalidStatusError()  # Duplicated callback
                payment.status = PAYMENT_STATUS['FROZEN']
                payment.save()

                if not payment.coupon:  # 没有使用优惠券的情况
                    merchant_account.channel_balance = merchant_account.channel_balance + payment.order_price
                    merchant_account.save()

                    Transaction.objects.bulk_create([
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_RECEIVE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=payment.order_price,
                                    balance_after_transaction=platform_account.
                                    channel_balance + payment.order_price),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EXPEND_MERCHANT_RECEIVE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-payment.order_price,
                                    balance_after_transaction=platform_account.
                                    channel_balance),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'MERCHANT_RECEIVE'],
                                    datetime=timestamp,
                                    account=merchant_account,
                                    amount=payment.order_price,
                                    balance_after_transaction=merchant_account.
                                    channel_balance)
                    ])
                else:  # 使用了优惠券的情况
                    paid_price = payment.order_price - payment.coupon.discount
                    total_share = payment.platform_share + payment.inviter_share + payment.originator_share

                    platform_account.channel_balance = platform_account.channel_balance + total_share
                    platform_account.save()
                    merchant_account.channel_balance = merchant_account.channel_balance + paid_price - total_share
                    merchant_account.save()

                    Transaction.objects.bulk_create([
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_RECEIVE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=paid_price,
                                    balance_after_transaction=platform_account.
                                    channel_balance + paid_price -
                                    total_share),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EXPEND_MERCHANT_RECEIVE'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-(paid_price - total_share),
                                    balance_after_transaction=platform_account.
                                    channel_balance),
                        Transaction(content_object=payment,
                                    transaction_type=TRANSACTION_TYPE[
                                        'MERCHANT_RECEIVE'],
                                    datetime=timestamp,
                                    account=merchant_account,
                                    amount=paid_price - total_share,
                                    balance_after_transaction=merchant_account.
                                    channel_balance)
                    ])
コード例 #6
0
    def on_refund_success(cls, refund):

        with transaction.atomic():
            timestamp = timezone.now()

            platform_account = AccountProxy.objects.select_for_update().get(
                id=PLATFORM_ACCOUNT_ID)
            merchant_account = AccountProxy.objects.select_for_update().get(
                id=refund.payment.merchant.account.id)

            coupon = refund.payment.coupon
            if coupon:
                coupon = Coupon.objects.select_for_update().get(id=coupon.id)

            payment = Payment.objects.select_for_update().get(
                serial_number=refund.payment.serial_number)
            refund = Refund.objects.select_for_update().get(
                serial_number=refund.serial_number)

            with PayChannelContext(payment.pay_channel):
                if refund.status != REFUND_STATUS['REQUESTED'] \
                        or payment.status != PAYMENT_STATUS['REFUND_REQUESTED']:
                    raise InvalidStatusError()

                refund.status = REFUND_STATUS['FINISHED']
                refund.save()

                payment.status = PAYMENT_STATUS['REFUND']
                payment.save()

                if not coupon:  # 没有使用优惠券
                    merchant_account.channel_balance = merchant_account.channel_balance - payment.order_price
                    merchant_account.save()

                    Transaction.objects.bulk_create([
                        Transaction(content_object=refund,
                                    transaction_type=TRANSACTION_TYPE[
                                        'MERCHANT_REFUND'],
                                    datetime=timestamp,
                                    account=merchant_account,
                                    amount=-payment.order_price,
                                    balance_after_transaction=merchant_account.
                                    channel_balance),
                        Transaction(content_object=refund,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EARNING_MERCHANT_REFUND'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=payment.order_price,
                                    balance_after_transaction=platform_account.
                                    channel_balance + payment.order_price),
                        Transaction(content_object=refund,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_REFUND'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-payment.order_price,
                                    balance_after_transaction=platform_account.
                                    channel_balance)
                    ])
                else:  # 有使用优惠券的情况
                    paid_price = payment.order_price - payment.coupon.discount
                    total_share = payment.platform_share + payment.inviter_share + payment.originator_share

                    merchant_account.channel_balance = merchant_account.channel_balance - (
                        paid_price - total_share)
                    merchant_account.save()

                    platform_account.channel_balance = platform_account.channel_balance - total_share
                    platform_account.save()

                    Transaction.objects.bulk_create([
                        Transaction(content_object=refund,
                                    transaction_type=TRANSACTION_TYPE[
                                        'MERCHANT_REFUND'],
                                    datetime=timestamp,
                                    account=merchant_account,
                                    amount=-(paid_price - total_share),
                                    balance_after_transaction=merchant_account.
                                    channel_balance),
                        Transaction(content_object=refund,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_EARNING_MERCHANT_REFUND'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=(paid_price - total_share),
                                    balance_after_transaction=platform_account.
                                    channel_balance + paid_price),
                        Transaction(content_object=refund,
                                    transaction_type=TRANSACTION_TYPE[
                                        'PLATFORM_REFUND'],
                                    datetime=timestamp,
                                    account=platform_account,
                                    amount=-paid_price,
                                    balance_after_transaction=platform_account.
                                    channel_balance)
                    ])

                    # 设置原优惠券为销毁状态,并退给用户一张新的优惠券
                    coupon.status = COUPON_STATUS.DESTROYED
                    coupon.save()

                    new_coupon = Coupon.objects.create(
                        rule_id=coupon.rule_id,
                        client_id=coupon.client_id,
                        discount=coupon.discount,
                        min_charge=coupon.min_charge,
                        originator_merchant_id=coupon.originator_merchant_id,
                        status=COUPON_STATUS.NOT_USED,
                        obtain_datetime=coupon.obtain_datetime,
                    )