152 lines
5.5 KiB
PHP
152 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace web\admin\cemap;
|
|
|
|
class bill {
|
|
static function setwhere($db, $post) {
|
|
$query = $post->get('query');
|
|
$csql = new \ciy\sql('zc_cemap_bill');
|
|
$val = objstr($query, 'cpath');
|
|
if (!empty($val)) {
|
|
$csqlt = new \ciy\sql('zc_cemap_pbill');
|
|
$csqlt->where('name like', $val);
|
|
$trow = $db->getone($csqlt);
|
|
if (is_array($trow)) {
|
|
$csql->where('cpath', $trow['id']);
|
|
$query['cpath'] = $trow['name'];
|
|
} else {
|
|
$csql->where('cpath=0');
|
|
}
|
|
}
|
|
$csql->where('name like', objstr($query, 'name'));
|
|
$order = objstr($query, 'order', 'id desc');
|
|
$csql->order($order);
|
|
$query['order'] = $order;
|
|
return [$query, $csql];
|
|
}
|
|
|
|
public static function json_list() {
|
|
global $db;
|
|
$rsuser = verifyfast();
|
|
$post = new \ciy\post();
|
|
list($where, $csql) = self::setwhere($db, $post);
|
|
$pageno = $post->getint('pageno', 1);
|
|
$pagecount = $post->getint('pagecount', 10);
|
|
$csql->limit($pageno, $pagecount);
|
|
$mainrowcount = $post->getint('count');
|
|
$rows = $db->get($csql, $mainrowcount);
|
|
$ret = array('searchwhere' => $where, 'pageno' => $pageno, 'pagecount' => $pagecount, 'count' => $mainrowcount, 'list' => $rows);
|
|
if ($post->getbool('field')) {
|
|
$field = array();
|
|
$fshow = $db->getfield($field, 'zc_cemap_bill');
|
|
foreach ($field as $fr => $v) {
|
|
if ($post->is('_' . $fr))
|
|
$field[$fr]['c'] = ',' . $field[$fr]['c'];
|
|
}
|
|
$fshow = fieldadd($fshow, $field, 0, '_btn', '操作');
|
|
$ret['field'] = $field;
|
|
$ret['fshow'] = $fshow;
|
|
}
|
|
if ($post->getbool('once')) {
|
|
$ret['once'] = true;
|
|
$input = array();
|
|
$input[] = array('type' => 'input', 'form' => 'cpath', 'name' => '路径', 'prop' => ' style="width:8em;"');
|
|
$input[] = array('type' => 'input', 'form' => 'name', 'name' => '名称', 'prop' => ' style="width:8em;"');
|
|
$ret['searchinput'] = $input;
|
|
$csql = (new \ciy\sql('zc_cemap_pbill'))->column('id,name,upid');
|
|
$ret['zc_cemap_pbill'] = $db->get($csql);
|
|
}
|
|
return succjson($ret);
|
|
}
|
|
public static function json_update() {
|
|
global $db;
|
|
$rsuser = verifyfast();
|
|
//if (nopower($db, $rsuser['id'], 'p u'))
|
|
// return errjson('您未被授权操作');
|
|
$post = new \ciy\post();
|
|
$id = $post->getint('id');
|
|
$cpath = $post->getint('cpath');
|
|
$name = $post->get('name');
|
|
$url = $post->get('url');
|
|
$w = $post->getint('w');
|
|
$h = $post->getint('h');
|
|
if (empty($name))
|
|
return errjson('请填写名称');
|
|
if (empty($url))
|
|
return errjson('请填写图片');
|
|
if ($w == 0)
|
|
return errjson('请填写宽度');
|
|
if ($h == 0)
|
|
return errjson('请填写高度');
|
|
$datarow = null;
|
|
if ($id > 0) {
|
|
$csql = new \ciy\sql('zc_cemap_bill');
|
|
$csql->where('id', $id);
|
|
$datarow = $db->getone($csql);
|
|
if (!is_array($datarow))
|
|
return errjson('数据不存在');
|
|
}
|
|
try {
|
|
$db->begin();
|
|
$updata = array();
|
|
$updata['cpath'] = $cpath;
|
|
$updata['name'] = $name;
|
|
$updata['url'] = $url;
|
|
$updata['w'] = $w;
|
|
$updata['h'] = $h;
|
|
$csql = new \ciy\sql('zc_cemap_bill');
|
|
if ($id > 0) {
|
|
$csql->where('id', $id);
|
|
if ($db->update($csql, $updata) === false)
|
|
throw new \Exception('更新失败:' . $db->error);
|
|
} else {
|
|
if ($db->insert($csql, $updata) === false)
|
|
throw new \Exception('新增失败:' . $db->error);
|
|
$id = $db->insert_id();
|
|
}
|
|
$updata['id'] = $id;
|
|
savelogdb($db, $rsuser['id'], 'zc_cemap_bill', $datarow, $updata);
|
|
$db->commit();
|
|
} catch (\Exception $ex) {
|
|
$db->rollback();
|
|
savelogfile('err_db', $ex->getMessage());
|
|
return errjson($ex->getMessage());
|
|
}
|
|
$ret['data'] = $updata;
|
|
return succjson($ret);
|
|
}
|
|
|
|
public static function json_del() {
|
|
global $db;
|
|
$rsuser = verifyfast();
|
|
//if (nopower($db, $rsuser['id'], 'p d'))
|
|
// return errjson('您未被授权操作');
|
|
$post = new \ciy\post();
|
|
$ids = $post->get('ids');
|
|
if (empty($ids))
|
|
return errjson('请选择至少一条');
|
|
$csql = new \ciy\sql('zc_cemap_bill');
|
|
$csql->where('id in', $ids);
|
|
$rows = $db->get($csql);
|
|
$vids = array();
|
|
try {
|
|
$db->begin();
|
|
foreach ($rows as $row) {
|
|
$delid = $row['id'];
|
|
//delcheck($db, $delid, 'tablexx', 'xxid', '管理员');
|
|
//delall($db, $delid, 'tablexx', 'xxid', '运动员'); //deltimeall
|
|
delme($db, $delid, 'zc_cemap_bill');
|
|
savelogdb($db, $rsuser['id'], 'zc_cemap_bill', $row, null);
|
|
$vids[] = $delid;
|
|
}
|
|
$db->commit();
|
|
} catch (\Exception $ex) {
|
|
$db->rollback();
|
|
savelogfile('err_db', $ex->getMessage());
|
|
return errjson($ex->getMessage());
|
|
}
|
|
$ret['ids'] = $vids;
|
|
return succjson($ret);
|
|
}
|
|
}
|