Billing.php

This commit is contained in:
choi.jh 2024-09-02 14:53:42 +09:00
parent a90dbb75b2
commit cda809b2d2

View File

@ -15,7 +15,7 @@ class Billing extends Controller
{
$this->view->site = $this->getSite();
$this->view->client = $this->getModel("Client")->getData(array(sprintf("Client_Code='%s'", $datas['client_code'])));
$this->view->accounts = $this->getModel("siteAccount")->getDatas();
$this->view->accounts = $this->getModel("SiteAccount")->getDatas();
return $this->render('depositbillpaper');
}
}