Commit 886ef1c1 authored by hujun's avatar hujun

同步导出

parent f6e2cb2f
...@@ -3183,6 +3183,17 @@ class Finance extends Basic ...@@ -3183,6 +3183,17 @@ class Finance extends Basic
if (!empty($this->params['bargain_id'])) { if (!empty($this->params['bargain_id'])) {
$where['a.bargain_id'] = $this->params['bargain_id']; $where['a.bargain_id'] = $this->params['bargain_id'];
} }
//案场费和中介费是否开业
if (isset($this->params['is_open'])) {
if ($this->params['is_open'] == 1) {
$where['f.is_open'] = 1;
} else {
$where['f.is_open'] = 0;
}
$where['a.type'] = ['in', '91,92'];
$is_show = 1;
}
try { try {
$order = new OPayLogModel(); $order = new OPayLogModel();
if (empty($this->params['excel'])) { if (empty($this->params['excel'])) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment