| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 此文件是流程模块【finorder.订单中心】对应控制器接口文件。
- */
- class mode_finorderClassAction extends inputAction{
-
- /**
- * 重写函数:保存前处理,主要用于判断是否可以保存
- * $table String 对应表名
- * $arr Array 表单参数
- * $id Int 对应表上记录Id 0添加时,大于0修改时
- * $addbo Boolean 是否添加时
- * return array('msg'=>'错误提示内容','rows'=> array()) 可返回空字符串,或者数组 rows 是可同时保存到数据库上数组
- */
- protected function savebefore($table, $arr, $id, $addbo){
-
- }
-
- /**
- * 重写函数:保存后处理,主要保存其他表数据
- * $table String 对应表名
- * $arr Array 表单参数
- * $id Int 对应表上记录Id
- * $addbo Boolean 是否添加时
- */
- protected function saveafter($table, $arr, $id, $addbo){
-
- }
-
- public function orderquerenAjax()
- {
- $ids = c('check')->onlynumber($this->post('ids'));
- if(!$ids)return returnerror('e');
- $flow = m('flow')->initflow('finorder');
- $flow->paysuccess($ids);
- return returnsuccess();
- }
-
- protected function storeafter($table, $rows)
- {
-
- return array(
- 'rows' => $rows,
- 'zhangid' => $this->option->getval('finorderzhangid')
- );
- }
-
- public function savezhangidAjax()
- {
- $this->option->setval('finorderzhangid', c('check')->onlynumber($this->get('zhangid')));
- return 'ok';
- }
-
- public function createjizhangAjax()
- {
- $ids = c('check')->onlynumber($this->get('ids'));
- if(!$ids)return returnerror('err');
- $flow = m('flow')->initflow('finorder');
- return $flow->createJizhang($ids);
- }
- }
-
|