コード例 #1
0
    def test_save_provider_payment_ready_then_date(self):
        """
        Does ready provider_payment and then change to draft
        """
        test_account = Account.objects.create(
            name='Test Account',
            currency=CURRENCY_CUC,
            balance=1000)
        test_balance = test_account.balance

        test_date1 = timezone.now()
        test_amount = 100
        test_status = STATUS_READY

        provider_payment = ProviderPayment(
            provider=self.test_provider,
            date=test_date1,
            account=test_account,
            amount=test_amount,
            status=test_status)

        provider_payment = FinanceService.save_provider_payment(
            user=self.test_user,
            provider_payment=provider_payment)

        test_name1 = provider_payment.name

        # account balance incremented
        self.assertAccount(test_account=test_account, test_balance=test_balance - test_amount)

        # document data auto filled
        self.assertDocument(provider_payment, DOC_TYPE_PROVIDER_PAYMENT, test_account.currency)

        # one finantial history created
        finantials = provider_payment.finantialdocumenthistory_set
        self.assertEqual(finantials.count(), 1)

        # finantial history info
        finantial = finantials.first()
        self.assertFinantialHistory(
            test_finantial_history=finantial, test_document=provider_payment, test_user=self.test_user,
            test_old_status=None, test_new_status=test_status)

        # one accounting history created
        accountings = provider_payment.accountingdocumenthistory_set
        self.assertEqual(accountings.count(), 1)

        # accounting history info
        accounting = accountings.first()
        operation = Operation.objects.get(pk=accounting.operation_id)

        # one movement created
        movements = operation.operationmovement_set
        self.assertEqual(movements.count(), 1)

        # movement info
        movement = movements.first()
        self.assertMovement(
            test_movement=movement, test_account=test_account,
            test_movement_type=MOVEMENT_TYPE_OUTPUT, test_amount=test_amount)

        test_date2 = test_date1 - timedelta(days=5)

        provider_payment.date = test_date2

        provider_payment = FinanceService.save_provider_payment(
            user=self.test_user,
            provider_payment=provider_payment)

        test_name2 = provider_payment.name

        # name changed
        self.assertNotEqual(test_name1, test_name2)

        # account balance remains changed
        self.assertAccount(test_account=test_account, test_balance=test_balance - test_amount)

        # document data auto filled
        self.assertDocument(provider_payment, DOC_TYPE_PROVIDER_PAYMENT, test_account.currency)

        # same finantial history
        finantials = provider_payment.finantialdocumenthistory_set
        self.assertEqual(finantials.count(), 1)

        # same accounting history
        accountings = provider_payment.accountingdocumenthistory_set
        self.assertEqual(accountings.count(), 1)
コード例 #2
0
    def test_save_provider_payment_draft_then_date(self):
        """
        Does draft provider_payment and then change date
        """
        test_account = Account.objects.create(
            name='Test Account',
            currency=CURRENCY_CUC,
            balance=1000)
        test_balance = test_account.balance

        test_date1 = timezone.now()
        test_amount = 100
        test_status = STATUS_DRAFT

        provider_payment = ProviderPayment(
            provider=self.test_provider,
            date=test_date1,
            account=test_account,
            amount=test_amount,
            status=test_status)

        provider_payment = FinanceService.save_provider_payment(
            user=self.test_user,
            provider_payment=provider_payment)

        test_name1 = provider_payment.name

        # account balance unchanged
        self.assertAccount(test_account=test_account, test_balance=test_balance)

        # document data auto filled
        self.assertDocument(provider_payment, DOC_TYPE_PROVIDER_PAYMENT, test_account.currency)

        # one finantial history created
        finantials = provider_payment.finantialdocumenthistory_set
        self.assertEqual(finantials.count(), 1)

        # finantial history info
        finantial = finantials.first()
        self.assertFinantialHistory(
            test_finantial_history=finantial, test_document=provider_payment, test_user=self.test_user,
            test_old_status=None, test_new_status=test_status)

        # no accounting history created
        accountings = provider_payment.accountingdocumenthistory_set
        self.assertEqual(accountings.count(), 0)

        test_date2 = test_date1 - timedelta(days=5)

        provider_payment.date = test_date2

        provider_payment = FinanceService.save_provider_payment(
            user=self.test_user,
            provider_payment=provider_payment)

        test_name2 = provider_payment.name

        # name changed
        self.assertNotEqual(test_name1, test_name2)

        # account balance unchanged
        self.assertAccount(test_account=test_account, test_balance=test_balance)

        # document data auto filled
        self.assertDocument(provider_payment, DOC_TYPE_PROVIDER_PAYMENT, test_account.currency)

        # no finantial history created
        finantials = provider_payment.finantialdocumenthistory_set
        self.assertEqual(finantials.count(), 1)

        # no accounting history created
        accountings = provider_payment.accountingdocumenthistory_set
        self.assertEqual(accountings.count(), 0)