fix payments
This commit is contained in:
@@ -25,6 +25,26 @@ class TestableFinancialSystemLedgerCleanup extends FinancialSystemLedgerCleanup
|
||||
$this->calls[] = 'ensureIndexes';
|
||||
}
|
||||
|
||||
protected function backfillInstallmentSequence(): void
|
||||
{
|
||||
$this->calls[] = 'backfillInstallmentSequence';
|
||||
}
|
||||
|
||||
protected function ensurePaymentDateHasTime(): void
|
||||
{
|
||||
$this->calls[] = 'ensurePaymentDateHasTime';
|
||||
}
|
||||
|
||||
protected function repairPaymentInvoiceTerms(): void
|
||||
{
|
||||
$this->calls[] = 'repairPaymentInvoiceTerms';
|
||||
}
|
||||
|
||||
protected function normalizePaymentStatuses(): void
|
||||
{
|
||||
$this->calls[] = 'normalizePaymentStatuses';
|
||||
}
|
||||
|
||||
protected function ensureConfigurationDefaults(): void
|
||||
{
|
||||
$this->calls[] = 'ensureConfigurationDefaults';
|
||||
@@ -61,7 +81,11 @@ class FinancialSystemLedgerCleanupTest extends CIUnitTestCase
|
||||
|
||||
$this->assertSame([
|
||||
'addInstallmentSequenceColumn',
|
||||
'backfillInstallmentSequence',
|
||||
'ensurePaymentDateHasTime',
|
||||
'ensureIndexes',
|
||||
'repairPaymentInvoiceTerms',
|
||||
'normalizePaymentStatuses',
|
||||
'ensureConfigurationDefaults',
|
||||
'archivePaypalTables',
|
||||
'refreshFinancialNavItems',
|
||||
|
||||
Reference in New Issue
Block a user