invoice create issue : GWM

This commit is contained in:
Gowtham M 2025-12-19 11:57:37 +05:30
parent 6f9422f08c
commit 3e5ee5f2e7
2 changed files with 16 additions and 12 deletions

View File

@ -35,14 +35,18 @@ class InvoiceController extends ResourceController
{
try {
$data = $this->InvoiceModel->select('partner_invoice.*, PB.name as broker_name, pos.name as pos_name,
FORMAT(partner_invoice.invoice_amount, 2, "en_IN") AS invoice_amount_indian_format,
DATE_FORMAT(partner_invoice.invoice_date, "%d-%m-%Y") AS invoice_date_ui_format')
->join('partner_brokers PB', 'PB.id = partner_invoice.broker_id', 'left')
->join('partner_pos pos', 'pos.id = partner_invoice.pos_id', 'left')
->where('partner_invoice.is_active', 1)
->orderBy('partner_invoice.id', 'DESC')
->findAll();
$data = $this->InvoiceModel
->select('partner_invoice.*,
PB.name as broker_name,
pos.name as pos_name,
FORMAT(partner_invoice.invoice_amount, 2, "en_IN") AS invoice_amount_indian_format,
DATE_FORMAT(partner_invoice.invoice_date, "%d-%m-%Y") AS invoice_date_ui_format,
')
->join('partner_brokers PB', 'PB.id = partner_invoice.broker_id', 'left')
->join('partner_pos pos', 'pos.id = partner_invoice.pos_id', 'left')
->where('partner_invoice.is_active', 1)
->orderBy('partner_invoice.id', 'DESC')
->findAll();
return $this->respond(['status' => 'success', 'code' => 200,'data' => $data ], 200);

View File

@ -995,9 +995,9 @@ class PolicyController extends ResourceController
$type = $this->request->getGet('type');
$policyId = $this->request->getGet('policy_id');
if($type == 'commission')
if($type == 'read')
{
$readDoc = $this->calculateCommission($policyId , false);
$readDoc = $this->checkPolicyDoc($policyId , false);
if($readDoc['status'] == 'success')
{
@ -1061,9 +1061,9 @@ class PolicyController extends ResourceController
return $this->respond(['status'=>$readDoc['status'], 'data'=> $readDoc ], 200);
}else if($type == 'read')
}else if($type == 'commission')
{
return $this->checkPolicyDoc($policyId , true);
return $this->calculateCommission($policyId , true);
}
}