From 0bb5161f6f71cc61def1006c9bb8942f041483a9 Mon Sep 17 00:00:00 2001 From: VE10-Sanjeev Date: Thu, 10 Apr 2025 11:14:09 +0000 Subject: [PATCH] type isues fixes --- app/Controllers/Jobcard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/Jobcard.php b/app/Controllers/Jobcard.php index ac25baa..2268fd4 100755 --- a/app/Controllers/Jobcard.php +++ b/app/Controllers/Jobcard.php @@ -619,7 +619,7 @@ class Jobcard extends BaseController $encodedMakeId1 = 0; $encodedModelId1 = 0; - $selectServiceString = ($type == "With General") ? "services.wg_price,services.wg_labour_cost as labour_cost" : "services.wog_price,services.wog_labour_cost as labour_cost"; + $selectServiceString = ($type == "General") ? "services.wg_price,services.wg_labour_cost as labour_cost" : "services.wog_price,services.wog_labour_cost as labour_cost"; // Query the database to find the service - cubic_capacity_id .. category 1 na standlone and ccId must $service1 = $this->ServiceModel->select('services.service_id,services.branch_id,services.cubic_capacity_id,services.service_name,services.category,services.tax,services.cgst,services.sgst,services.description, services.product_id,services.sub_service_id,services.created_at,services.created_by,services.updated_at,services.updated_by,services.isactive,cubic_capacity.value')