心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FormModel.php 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年5月28日
  7. * 自定义表单模型类
  8. */
  9. namespace app\admin\model\content;
  10. use core\basic\Model;
  11. class FormModel extends Model
  12. {
  13. // 获取自定义表单列表
  14. public function getList()
  15. {
  16. return parent::table('ay_form')->page()->select();
  17. }
  18. // 查找自定义表单
  19. public function findForm($field, $keyword)
  20. {
  21. return parent::table('ay_form')->like($field, $keyword)
  22. ->page()
  23. ->select();
  24. }
  25. // 获取最后一个code
  26. public function getLastCode()
  27. {
  28. return parent::table('ay_form')->order('id DESC')->value('fcode');
  29. }
  30. // 获取自定义表单详情
  31. public function getForm($id)
  32. {
  33. return parent::table('ay_form')->where("id=$id")->find();
  34. }
  35. // 获取自定义表单详情
  36. public function getFormByCode($fcode)
  37. {
  38. return parent::table('ay_form')->where("fcode='$fcode'")->find();
  39. }
  40. // 获取自定义表单表
  41. public function getFormTable($id)
  42. {
  43. return parent::table('ay_form')->where("id=$id")->value('table_name');
  44. }
  45. // 获取自定义表单表
  46. public function getFormCode($id)
  47. {
  48. return parent::table('ay_form')->where("id=$id")->value('fcode');
  49. }
  50. // 获取自定义表单表
  51. public function getFormTableByCode($fcode)
  52. {
  53. return parent::table('ay_form')->where("fcode='$fcode'")->value('table_name');
  54. }
  55. // 添加自定义表单
  56. public function addForm(array $data)
  57. {
  58. return parent::table('ay_form')->autoTime()->insert($data);
  59. }
  60. // 删除自定义表单
  61. public function delForm($id)
  62. {
  63. $form = parent::table('ay_form')->field('fcode,form_name')
  64. ->where("id=$id")
  65. ->find();
  66. // 删除可能存在的菜单
  67. if (! ! $rs = parent::table('ay_menu')->like('url', '/Form/index/fcode/' . $form->fcode . '/action/showdata')->find()) {
  68. parent::table('ay_menu')->where("mcode='" . $rs->mcode . "'")->delete();
  69. $menu = session('menu_tree');
  70. foreach ($menu as $key => $value) {
  71. if (! ! $delkey = result_value_search($rs->mcode, $menu[$key]->son, 'mcode')) {
  72. unset($menu[$key]->son[$delkey]);
  73. }
  74. }
  75. }
  76. $result = parent::table('ay_form')->where("id=$id")->delete(); // 删除表单
  77. return $result;
  78. }
  79. // 修改自定义表单
  80. public function modForm($id, $data)
  81. {
  82. return parent::table('ay_form')->where("id=$id")
  83. ->autoTime()
  84. ->update($data);
  85. }
  86. // 获取表单字段
  87. public function getFormFieldByCode($fcode)
  88. {
  89. return parent::table('ay_form_field')->where("fcode='$fcode'")
  90. ->order('sorting ASC,id ASC')
  91. ->select();
  92. }
  93. // 获取字段详情
  94. public function getFormField($id)
  95. {
  96. return parent::table('ay_form_field')->where("id=$id")->find();
  97. }
  98. // 检查表单字段
  99. public function checkFormField($fcode, $name)
  100. {
  101. return parent::table('ay_form_field')->where("fcode='$fcode' AND name='$name'")->find();
  102. }
  103. // 获取表单字段名称
  104. public function getFormFieldName($id)
  105. {
  106. return parent::table('ay_form_field')->where("id=$id")->value('name');
  107. }
  108. // 新增表单字段
  109. public function addFormField(array $data)
  110. {
  111. return parent::table('ay_form_field')->autoTime()->insert($data);
  112. }
  113. // 删除表单字段
  114. public function delFormField($id)
  115. {
  116. return parent::table('ay_form_field')->where("id=$id")->delete();
  117. }
  118. // 删除表单字段
  119. public function delFormFieldByCode($fcode)
  120. {
  121. return parent::table('ay_form_field')->where("fcode='$fcode'")->delete();
  122. }
  123. // 修改表单字段
  124. public function modFormField($id, $data)
  125. {
  126. return parent::table('ay_form_field')->where("id=$id")
  127. ->autoTime()
  128. ->update($data);
  129. }
  130. // 判断字段是否存在
  131. public function isExistField($table, $field)
  132. {
  133. $fields = parent::tableFields($table);
  134. if (in_array($field, $fields)) {
  135. return true;
  136. } else {
  137. return false;
  138. }
  139. }
  140. // 获取表单数据
  141. public function getFormData($table, $page = true)
  142. {
  143. return parent::table($table)->page($page)
  144. ->order('id DESC')
  145. ->select();
  146. }
  147. // 删除自定义表单数据
  148. public function delFormData($table, $id)
  149. {
  150. return parent::table($table)->where("id=$id")->delete();
  151. }
  152. // 清空自定义表单数据
  153. public function clearFormData($table)
  154. {
  155. return parent::table($table)->delete();
  156. }
  157. // 增加表单数据查看到菜单
  158. public function addFormMenu($id)
  159. {
  160. $form = parent::table('ay_form')->field('fcode,form_name')
  161. ->where("id=$id")
  162. ->find();
  163. $menus = session('menu_tree');
  164. // 判断是否已经在菜单中
  165. if (! ! $menu = parent::table('ay_menu')->like('url', '/Form/index/fcode/' . $form->fcode . '/action/showdata')->find()) {
  166. if ($form->form_name != $menu->name) {
  167. // 更新缓存菜单
  168. parent::table('ay_menu')->where('mcode="' . $menu->mcode . '"')->update('name="' . $form->form_name . '"');
  169. foreach ($menus as $key => $value) {
  170. if ($value->mcode == 'M157') {
  171. if (($skey = result_value_search($menu->mcode, $menus[$key]->son, 'mcode')) !== false) {
  172. $menus[$key]->son[$skey]->name = $form->form_name;
  173. }
  174. break;
  175. }
  176. }
  177. }
  178. return false;
  179. }
  180. // 构建数据
  181. $lastmcode = parent::table('ay_menu')->order('mcode DESC')->value('mcode');
  182. $mcode = get_auto_code($lastmcode);
  183. $data = array(
  184. 'mcode' => $mcode,
  185. 'pcode' => 'M157',
  186. 'name' => $form->form_name,
  187. 'url' => '/Form/index/fcode/' . $form->fcode . '/action/showdata',
  188. 'sorting' => 599,
  189. 'status' => 1,
  190. 'shortcut' => 0,
  191. 'ico' => 'fa-plus-square-o',
  192. 'create_user' => session('username'),
  193. 'update_user' => session('username')
  194. );
  195. // 加入菜单
  196. foreach ($menus as $key => $value) {
  197. if ($value->mcode == 'M157') {
  198. // 未在缓存菜单中才执行添加
  199. if (result_value_search($mcode, $menus[$key]->son, 'mcode') === false) {
  200. $menus[$key]->son[] = array_to_object($data);
  201. return parent::table('ay_menu')->autoTime()->insert($data); // 插入到数据库
  202. }
  203. break;
  204. }
  205. }
  206. }
  207. }