This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
namespace App\Models\v2;
|
||||
|
||||
use App\Models\receipt\ReceiptModel;
|
||||
use App\Models\webfax\FaxModel;
|
||||
use CodeIgniter\Model;
|
||||
|
||||
class M703Model extends Model
|
||||
@@ -1504,8 +1505,9 @@ class M703Model extends Model
|
||||
$this->saveChangedHistory($vr_sq, '35', 'C9', $insert_id, '현장확인 매물');
|
||||
|
||||
|
||||
$fax = $this->fax_model->selectFax($fax_sq); // fax 이미지 파일 가져오기
|
||||
$receipt = $this->receipt_model->selectReceiptOne($vr_sq); // 매물정보 가져오기
|
||||
$faxModel = new FaxModel();
|
||||
$fax = $faxModel->selectFax($fax_sq); // fax 이미지 파일 가져오기
|
||||
$receipt = $this->selectReceiptOne($vr_sq); // 매물정보 가져오기
|
||||
|
||||
// 40: 촬영, 70: 검수지연... 상태가 촬용 이전 또는 검수지연 상태일 경우에만 홍보확인서를 등록한다.
|
||||
if (substr($receipt['rcpt_stat'], 0, 2) <= '40' || substr($receipt['rcpt_stat'], 0, 2) == '70') {
|
||||
|
||||
Reference in New Issue
Block a user