mirror of
https://gitee.com/crm8000/PSI
synced 2024-11-22 16:26:38 +00:00
凭证
This commit is contained in:
parent
4dd1c3ea80
commit
876bbf18a6
@ -72,7 +72,8 @@ class VoucherController extends PSIBaseController
|
||||
*
|
||||
* JS: web\Public\Scripts\PSI\SLN0002\Voucher\MainForm.js
|
||||
*/
|
||||
public function voucherList(){
|
||||
public function voucherList()
|
||||
{
|
||||
if (IS_POST) {
|
||||
$us = new UserService();
|
||||
|
||||
@ -80,7 +81,18 @@ class VoucherController extends PSIBaseController
|
||||
die("没有权限");
|
||||
}
|
||||
|
||||
$params =[];
|
||||
$params = [
|
||||
"orgId" => I("post.orgId"),
|
||||
"year" => I("post.year"),
|
||||
"month" => I("post.month"),
|
||||
"ref" => I("post.ref"),
|
||||
"inputUserId" => I("post.inputUserId"),
|
||||
"commitUserId" => I("post.commitUserId"),
|
||||
"status" => I("post.status"),
|
||||
"page" => I("post.page"),
|
||||
"start" => I("post.start"),
|
||||
"limit" => I("post.limit")
|
||||
];
|
||||
|
||||
$service = new VoucherService();
|
||||
$this->ajaxReturn($service->voucherList($params));
|
||||
|
Loading…
Reference in New Issue
Block a user