From cda809b2d2e33046c7047e8d0c329f4674f91017 Mon Sep 17 00:00:00 2001 From: "choi.jh" Date: Mon, 2 Sep 2024 14:53:42 +0900 Subject: [PATCH] Billing.php --- extdbms/lib/Controller/Billing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extdbms/lib/Controller/Billing.php b/extdbms/lib/Controller/Billing.php index 240909b..cec7b2e 100644 --- a/extdbms/lib/Controller/Billing.php +++ b/extdbms/lib/Controller/Billing.php @@ -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'); } }