Remove viewed from csv imports

This commit is contained in:
David Bomba 2022-01-25 15:35:31 +11:00
parent 1888ac2426
commit 320204ec67

View File

@ -72,7 +72,7 @@ class InvoiceTransformer extends BaseTransformer {
'status_id' => $invoiceStatusMap[ $status =
strtolower( $this->getString( $invoice_data, 'invoice.status' ) ) ] ??
Invoice::STATUS_SENT,
'viewed' => $status === 'viewed',
// 'viewed' => $status === 'viewed',
'archived' => $status === 'archived',
];