diff --git a/application/controllers/Pages.php b/application/controllers/Pages.php index a81f0f3..29e49c3 100644 --- a/application/controllers/Pages.php +++ b/application/controllers/Pages.php @@ -1725,7 +1725,7 @@ class Pages extends CI_controller $this->BranchItemLedger->sales = 0; $this->BranchItemLedger->adjustment = 0-$stockIn->qty; $this->BranchItemLedger->endingqty = 0-$stockIn->qty; - $this->BranchItemLedger->remarks = "Stock in deleted by ".$this->session->user["fullName"].". Qty:".$stockIn->qty; + $this->BranchItemLedger->remarks = "Stock in deleted by ".$this->session->user["fullName"].". QTY:".$stockIn->qty." DATE:".date("m/d/Y h:i:s A"); if($this->BranchItemLedger->addNewData() == true) $this->StockIn->deleteStockIn($recordID); @@ -1884,7 +1884,7 @@ class Pages extends CI_controller $this->BranchItemLedger->sales = 0; $this->BranchItemLedger->adjustment = $stockOut->qty; $this->BranchItemLedger->endingqty = $stockOut->qty; - $this->BranchItemLedger->remarks = "Stock out deleted by ".$this->session->user["fullName"].". Qty:".$stockOut->qty; + $this->BranchItemLedger->remarks = "Stock out deleted by ".$this->session->user["fullName"].". QTY:".$stockOut->qty." DATE:".date("m/d/Y h:i:s A"); if($this->BranchItemLedger->addNewData() == true) $this->StockOut->deleteStockOut($recordID); @@ -2153,7 +2153,7 @@ class Pages extends CI_controller $this->BranchItemLedger->sales = 0; $this->BranchItemLedger->adjustment = $sales->qty; $this->BranchItemLedger->endingqty = $sales->qty; - $this->BranchItemLedger->remarks = "Sales deleted by ".$this->session->user["fullName"].". Qty:".$sales->qty; + $this->BranchItemLedger->remarks = "Sales deleted by ".$this->session->user["fullName"].". QTY:".$sales->qty." DATE:".date("m/d/Y h:i:s A"); $this->BranchItemLedger->addNewData(); } @@ -2203,7 +2203,7 @@ class Pages extends CI_controller $this->BranchItemLedger->sales = 0; $this->BranchItemLedger->adjustment = $sales->qty; $this->BranchItemLedger->endingqty = $sales->qty; - $this->BranchItemLedger->remarks = "Sales set by ".$this->session->user["fullName"]." but retained the record. Qty:".$sales->qty; + $this->BranchItemLedger->remarks = "Sales set by ".$this->session->user["fullName"]." but retained the record. QTY:".$sales->qty." DATE:".date("m/d/Y h:i:s A"); if($this->BranchItemLedger->addNewData()) {