Browse Source

首页增加时间查询参数1

master
wanghongjun 2 years ago
parent
commit
675d3f7026
  1. 2
      app/service/invoice/InvoiceIssuanceService.php

2
app/service/invoice/InvoiceIssuanceService.php

@ -53,7 +53,7 @@ class InvoiceIssuanceService
$item->head_type = InvoiceHead::$typeArr[$InvoiceHead['type']]; $item->head_type = InvoiceHead::$typeArr[$InvoiceHead['type']];
$item->head_title = $InvoiceHead['title']; $item->head_title = $InvoiceHead['title'];
} }
$item->project_id = InvoiceIssuance::$projectArr[$item->project_id]; $item->project_id = InvoiceIssuance::$projectArr[$item->project_id] ?? '';
$item->status = InvoiceIssuance::$statusArr[$item->status]; $item->status = InvoiceIssuance::$statusArr[$item->status];
}); });
return $data->toArray(); return $data->toArray();

Loading…
Cancel
Save