浏览代码

Document

packProduct
Charly 3 年前
父节点
当前提交
cd39443d97
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. +12
    -0
      Repository/File/DocumentStore.php

+ 12
- 0
Repository/File/DocumentStore.php 查看文件

@@ -20,4 +20,16 @@ class DocumentStore extends AbstractStore
{
// @TODO : à écrire
}

//findLastInvoice
public function getOneLastInvoice()
{
$query = $this->query->create();

$query
->filterByMerchant($this->merchant)
->orderBy('.createdAt', 'DESC');

return $query->findOne();
}
}

正在加载...
取消
保存