dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-23 19:41:25 +09:00
parent 3bbf8f87af
commit 7e15211a26
2 changed files with 3 additions and 8 deletions

View File

@ -40,7 +40,7 @@ class CouponController extends ClientController
list($this->client, $this->member, $this->service) = $this->setDefaultRequestData();
//사용자별로 쿠폰정보보기
if ($this->client instanceof ClientEntity) {
// $this->getServiceService()->getModel()->where('client_code', $this->client->getClientCode());
$this->getServiceService()->getModel()->where('client_code', $this->client->getClientCode());
}
//업체명_일회성만 나오게하기 위해서
$this->getServiceService()->getModel()->like('server_code', '%_일회성');

View File

@ -165,17 +165,12 @@ class QueryBuilder
$conditions[] = "$col $operator $placeholder";
$this->bindings[$placeholder] = $val;
}
$this->where[] = '(' . implode(" $boolean ", $conditions) . ')';
$this->where[] = ['condition' => '(' . implode(" $boolean ", $conditions) . ')', 'boolean' => $boolean];
} else {
$placeholder = ':l_' . count($this->bindings);
$condition = "$column $operator $placeholder";
if (empty($this->where)) {
$this->where[] = $condition;
} else {
$last = array_pop($this->where);
$this->where[] = "($last $boolean $condition)";
}
$this->bindings[$placeholder] = $value;
$this->where[] = ['condition' => $condition, 'boolean' => $boolean];
}
return $this;
}