mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Minor fix for bulk purchase order download file naming
This commit is contained in:
parent
f38c3f93c6
commit
94670413ab
@ -72,7 +72,7 @@ class ZipPurchaseOrders implements ShouldQueue
|
|||||||
|
|
||||||
// create new zip object
|
// create new zip object
|
||||||
$zipFile = new \PhpZip\ZipFile();
|
$zipFile = new \PhpZip\ZipFile();
|
||||||
$file_name = date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.invoices')).'.zip';
|
$file_name = date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.purchase_orders')).'.zip';
|
||||||
$invitation = $this->purchase_orders->first()->invitations->first();
|
$invitation = $this->purchase_orders->first()->invitations->first();
|
||||||
$path = $this->purchase_orders->first()->vendor->purchase_order_filepath($invitation);
|
$path = $this->purchase_orders->first()->vendor->purchase_order_filepath($invitation);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user