Update for statements
This commit is contained in:
parent
6c13512c6a
commit
dffd48b723
1 changed files with 2 additions and 2 deletions
|
|
@ -241,10 +241,10 @@ class Statement
|
|||
return [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL, Invoice::STATUS_PAID];
|
||||
break;
|
||||
case 'paid':
|
||||
return [Invoice::STATUS_PARTIAL, Invoice::STATUS_PAID];
|
||||
return [Invoice::STATUS_PAID];
|
||||
break;
|
||||
case 'unpaid':
|
||||
return [Invoice::STATUS_SENT];
|
||||
return [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL];
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue