diff --git a/Application/Admin/Controller/AggregateFinanceStatementController.class.php b/Application/Admin/Controller/AggregateFinanceStatementController.class.php index 8051c0c2a..144089765 100644 --- a/Application/Admin/Controller/AggregateFinanceStatementController.class.php +++ b/Application/Admin/Controller/AggregateFinanceStatementController.class.php @@ -335,6 +335,17 @@ class AggregateFinanceStatementController extends ThinkController 'info' => "删除成功" )); } + //新增备注 + public function saveRemark(){ + if(!isset($_REQUEST['id'])) $this->error("参数错误"); + $id = $_REQUEST['id']; + $remark = $_REQUEST['remark']; + M("aggregate_statement","tab_")->where("id = '{$id}'")->save(['remark'=>$remark]); + $this->ajaxReturn(array( + 'status' => 1, + 'info' => "操作成功" + )); + } //导出 public function export() diff --git a/Application/Admin/View/AggregateFinanceStatement/lists.html b/Application/Admin/View/AggregateFinanceStatement/lists.html index 8b60e1004..bf2813157 100644 --- a/Application/Admin/View/AggregateFinanceStatement/lists.html +++ b/Application/Admin/View/AggregateFinanceStatement/lists.html @@ -51,9 +51,6 @@
流程说明:结算自动生成对账单--->发起人申请开票--->财务审核开票--->寄发票--->发起人上传收款凭证--->财务确认到账
- - -