diff --git a/app/Controllers/Expense.php b/app/Controllers/Expense.php
index 3d545ab0..0d7101be 100755
--- a/app/Controllers/Expense.php
+++ b/app/Controllers/Expense.php
@@ -53,7 +53,7 @@ class Expense extends BaseController
// If no last serial number exists, start with 00001
$lastNumber = $lastSerial ? (int)explode('/', $lastSerial)[1] : 0;
$newNumber = str_pad($lastNumber + 1, 5, '0', STR_PAD_LEFT);
- return "$financialYear/$newNumber";
+ return "NonIGR/$financialYear/$newNumber";
}
public function addExpense()
diff --git a/app/Views/attendance.php b/app/Views/attendance.php
index df2d39e5..d8e36cce 100755
--- a/app/Views/attendance.php
+++ b/app/Views/attendance.php
@@ -407,7 +407,7 @@ $currentday = date('d');
$WH = 'WH' . $col;
$OT = 'OT' . $col;
- ?>
+ ?>
title=" "
title="sunday"
class="celda_normal"
@@ -422,7 +422,7 @@ $currentday = date('d');
$WH)) {
echo $a->$WH;
} else {
- echo '0';
+ echo '';
} ?> |
title=" "
title="sunday"
@@ -438,7 +438,7 @@ $currentday = date('d');
$OT)) {
echo $a->$OT;
} else {
- echo '0';
+ echo '';
} ?> |
$(document).ready(function() {
$("#hdate").datepicker({
- format: 'dd-mm-yyyy', // Correct format for Bootstrap Datepicker
- startDate: new Date(), // Replace `d` with `new Date()` if `d` is not defined
+ format: 'dd-mm-yyyy',
+ // startDate: new Date(),
autoclose: true,
todayHighlight: true,
clearBtn: true
diff --git a/app/Views/sales_invoice.php b/app/Views/sales_invoice.php
index eb9f536e..51408abd 100755
--- a/app/Views/sales_invoice.php
+++ b/app/Views/sales_invoice.php
@@ -286,7 +286,7 @@
- received_qty) ? $invoice->received_qty : "Click to Edit"; ?>
+ received_qty) ? $invoice->received_qty : "0"; ?>