|
@@ -24,14 +24,14 @@ class Manage
|
|
|
return date($string, $day);
|
|
|
}
|
|
|
|
|
|
- public function statYes($id, $type)
|
|
|
+ public function statYes($info, $type)
|
|
|
{
|
|
|
$table = 'cash/' . $type;
|
|
|
|
|
|
- $info = Dever::db($table)->one($id);
|
|
|
- $shop = Dever::db('shop/info')->find($info[$type . '_id']);
|
|
|
+ $info = is_array($info) ? $info : Dever::db($table)->one($infoid);
|
|
|
+ $other = Dever::db($type . '/info')->find($info[$type . '_id']);
|
|
|
|
|
|
- return $this->statDate($info['type'], $info['day']) . '与'.$shop['name'].'对账单款项是否正确<br />对账金额¥' . $info['cash'] . '元';
|
|
|
+ return $this->statDate($info['type'], $info['day']) . '与'.$other['name'].'对账单款项是否正确<br />对账金额¥' . $info['cash'] . '元';
|
|
|
}
|
|
|
|
|
|
public function statTime($start, $end)
|
|
@@ -67,15 +67,25 @@ class Manage
|
|
|
Dever::db($table)->update(array('where_id' => $id, 'status' => 2));
|
|
|
}
|
|
|
|
|
|
- return 'ok';
|
|
|
+ return 'reload';
|
|
|
}
|
|
|
|
|
|
|
|
|
public function view_api()
|
|
|
{
|
|
|
$id = Dever::input('id');
|
|
|
+ if (!$id) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
|
|
|
$type = Dever::input('type', 'shop');
|
|
|
+ if ($type == 'shop') {
|
|
|
+ $name = '门店';
|
|
|
+ } elseif ($type == 'store') {
|
|
|
+ $name = '仓库';
|
|
|
+ } elseif ($type == 'factory') {
|
|
|
+ $name = '工厂';
|
|
|
+ }
|
|
|
|
|
|
$table = 'cash/' . $type;
|
|
|
|
|
@@ -84,17 +94,17 @@ class Manage
|
|
|
$info = Dever::db($table)->one($id);
|
|
|
|
|
|
$status = $config['config_status'][$info['status']];
|
|
|
- $shop_status = $config['config_status'][$info['shop_status']];
|
|
|
+ $other_status = $config['config_status'][$info[$type . '_status']];
|
|
|
|
|
|
- $shop = Dever::db('shop/info')->find($info[$type . '_id']);
|
|
|
+ $other = Dever::db($type . '/info')->find($info[$type . '_id']);
|
|
|
|
|
|
$html = '<div class="layui-col-md12"><div class="layui-card"><div class="layui-card-header">对账单详情</div><div class="layui-card-body">';
|
|
|
|
|
|
$html .= '<table class="layui-table"><tbody>';
|
|
|
|
|
|
$html .= '<tr>
|
|
|
- <td width="80">对账门店</td>
|
|
|
- <td>'.$this->table(false, array(array($shop['name']))).'</td>
|
|
|
+ <td width="80">对账'.$name.'</td>
|
|
|
+ <td>'.$this->table(false, array(array($other['name']))).'</td>
|
|
|
|
|
|
</tr>';
|
|
|
|
|
@@ -104,15 +114,23 @@ class Manage
|
|
|
|
|
|
</tr>';
|
|
|
|
|
|
- $html .= '<tr>
|
|
|
- <td width="80">对账金额</td>
|
|
|
- <td>'.$this->table(false, array(array('¥' . $info['cash'] . '元'))).'</td>
|
|
|
+ if ($type == 'store') {
|
|
|
+ $html .= '<tr>
|
|
|
+ <td width="80">对账商品数量</td>
|
|
|
+ <td>'.$this->table(false, array(array($info['num']))).'</td>
|
|
|
|
|
|
- </tr>';
|
|
|
+ </tr>';
|
|
|
+ } else {
|
|
|
+ $html .= '<tr>
|
|
|
+ <td width="80">对账金额</td>
|
|
|
+ <td>'.$this->table(false, array(array('¥' . $info['cash'] . '元'))).'</td>
|
|
|
+
|
|
|
+ </tr>';
|
|
|
+ }
|
|
|
|
|
|
$html .= '<tr>
|
|
|
- <td width="80">门店对账状态</td>
|
|
|
- <td>'.$this->table(false, array(array($shop_status))).'</td>
|
|
|
+ <td width="80">'.$name.'对账状态</td>
|
|
|
+ <td>'.$this->table(false, array(array($other_status))).'</td>
|
|
|
|
|
|
</tr>';
|
|
|
|
|
@@ -124,11 +142,18 @@ class Manage
|
|
|
|
|
|
$button = array();
|
|
|
if ($info['status'] == 1) {
|
|
|
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="">立即确认</button>';
|
|
|
- }
|
|
|
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="">联系门店</button>';
|
|
|
|
|
|
- $button[] = '<button class="layui-btn layui-btn-primary" onclick="">导出对账单</button>';
|
|
|
+ $url = Dever::url('lib/manage.audit&id='.$id.'&type=' . $type, 'cash');
|
|
|
+ $button[] = '<button class="layui-btn layui-btn-primary" onclick="load(\''.$url.'\', \''.$this->statYes($info, $type).'\', \'请确认\')">立即确认</button>';
|
|
|
+ }
|
|
|
+ $config['phone'] = '联系人:' . $other['truename'] . ',联系电话:' . $other['mobile'];
|
|
|
+ $button[] = '<button class="layui-btn layui-btn-primary" onclick="showAlert(\''.$config['phone'].'\')">联系'.$name.'</button>';
|
|
|
+
|
|
|
+ $info['start'] = date('Y-m-d H:i:s', $info['start']);
|
|
|
+ $info['end'] = date('Y-m-d H:i:s', $info['end']);
|
|
|
+ $out = Dever::url('database.list_excel?project=cash&table=order&search_option_status=2&search_option_state=1&search_option_start_cdate=' . $info['start'] . '&search_option_end_cdate=' . $info['end'], 'manage');
|
|
|
+
|
|
|
+ $button[] = '<a class="layui-btn layui-btn-primary" href="'.$out.'">导出对账单</a>';
|
|
|
$html .= '<tr>
|
|
|
<td>功能按钮</td>
|
|
|
<td>'.$this->table(false, array($button)).'</td>
|
|
@@ -138,20 +163,32 @@ class Manage
|
|
|
$html .= '</tbody></table></div></div>';
|
|
|
|
|
|
$where['type'] = 1;
|
|
|
- $where['type_id'] = $info['shop_id'];
|
|
|
+ $where['type_id'] = $info[$type . '_id'];
|
|
|
$where['status'] = 2;
|
|
|
|
|
|
$data = Dever::db('cash/order')->select_page($where);
|
|
|
if ($data) {
|
|
|
$head = array('结算单号', '订货单号', '结算类型', '下单日期', '完成日期', '结算日期', '对账金额', '结算状态');
|
|
|
|
|
|
+ if ($type == 'store') {
|
|
|
+ $head[6] = '对账数量';
|
|
|
+ }
|
|
|
$body = array();
|
|
|
$config = Dever::db('cash/order')->config;
|
|
|
foreach ($data as $k => $v) {
|
|
|
$cdate = date('Y-m-d H:i', $v['cdate']);
|
|
|
$fdate = date('Y-m-d H:i', $v['fdate']);
|
|
|
$operdate = date('Y-m-d H:i', $v['operdate']);
|
|
|
- $cash = $v['cash'];
|
|
|
+ if ($type == 'store') {
|
|
|
+ $cash = $v['num'];
|
|
|
+ } elseif ($type == 'factory') {
|
|
|
+ $cash = $v['p_cash'];
|
|
|
+ } else {
|
|
|
+ $cash = $v['cash'];
|
|
|
+ }
|
|
|
+
|
|
|
+ $url = Dever::url('project/database/list?project=shop&table=buy_order_goods&order_id='.$v['source_order_id'].'&page_type=1', 'manage');
|
|
|
+ $v['source_order_num'] = '<a href="'.$url.'" style="color:blue">'.$v['source_order_num'].'</a>';
|
|
|
$body[] = array
|
|
|
(
|
|
|
$v['order_num'],
|