def test_save_agency_payment_draft_then_date(self): """ Does draft agency_payment and then change date """ test_account = Account.objects.create(name='Test Account', currency=CURRENCY_CUC) test_balance = test_account.balance test_date1 = timezone.now() test_amount = 100 test_status = STATUS_DRAFT agency_payment = AgencyPayment(agency=self.test_agency, date=test_date1, account=test_account, amount=test_amount, status=test_status) agency_payment = FinanceService.save_agency_payment( user=self.test_user, agency_payment=agency_payment) test_name1 = agency_payment.name # account balance unchanged self.assertAccount(test_account=test_account, test_balance=test_balance) # document data auto filled self.assertDocument(agency_payment, DOC_TYPE_AGENCY_PAYMENT, test_account.currency) # one finantial history created finantials = agency_payment.finantialdocumenthistory_set self.assertEqual(finantials.count(), 1) # finantial history info finantial = finantials.first() self.assertFinantialHistory(test_finantial_history=finantial, test_document=agency_payment, test_user=self.test_user, test_old_status=None, test_new_status=test_status) # no accounting history created accountings = agency_payment.accountingdocumenthistory_set self.assertEqual(accountings.count(), 0) test_date2 = test_date1 - timedelta(days=5) agency_payment.date = test_date2 agency_payment = FinanceService.save_agency_payment( user=self.test_user, agency_payment=agency_payment) test_name2 = agency_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(agency_payment, DOC_TYPE_AGENCY_PAYMENT, test_account.currency) # no finantial history created finantials = agency_payment.finantialdocumenthistory_set self.assertEqual(finantials.count(), 1) # no accounting history created accountings = agency_payment.accountingdocumenthistory_set self.assertEqual(accountings.count(), 0)
def test_save_agency_payment_ready_then_date(self): """ Does ready agency_payment and then change to draft """ test_account = Account.objects.create(name='Test Account', currency=CURRENCY_CUC) test_balance = test_account.balance test_date1 = timezone.now() test_amount = 100 test_status = STATUS_READY agency_payment = AgencyPayment(agency=self.test_agency, date=test_date1, account=test_account, amount=test_amount, status=test_status) agency_payment = FinanceService.save_agency_payment( user=self.test_user, agency_payment=agency_payment) test_name1 = agency_payment.name # account balance incremented self.assertAccount(test_account=test_account, test_balance=test_balance + test_amount) # document data auto filled self.assertDocument(agency_payment, DOC_TYPE_AGENCY_PAYMENT, test_account.currency) # one finantial history created finantials = agency_payment.finantialdocumenthistory_set self.assertEqual(finantials.count(), 1) # finantial history info finantial = finantials.first() self.assertFinantialHistory(test_finantial_history=finantial, test_document=agency_payment, test_user=self.test_user, test_old_status=None, test_new_status=test_status) # one accounting history created accountings = agency_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_INPUT, test_amount=test_amount) test_date2 = test_date1 - timedelta(days=5) agency_payment.date = test_date2 agency_payment = FinanceService.save_agency_payment( user=self.test_user, agency_payment=agency_payment) test_name2 = agency_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(agency_payment, DOC_TYPE_AGENCY_PAYMENT, test_account.currency) # same finantial history finantials = agency_payment.finantialdocumenthistory_set self.assertEqual(finantials.count(), 1) # same accounting history accountings = agency_payment.accountingdocumenthistory_set self.assertEqual(accountings.count(), 1)