MRIR Billing issue fixed
This commit is contained in:
parent
0555f32874
commit
c3d0cffc97
@ -129,13 +129,13 @@ class inwardgateregister extends BaseController
|
||||
for ($i = 1; $i <= $RowCount; $i++)
|
||||
{
|
||||
|
||||
$MaterialCode = $this->input->post('MaterialCode'.$i);
|
||||
$MaterialCode = trim($this->input->post('MaterialCode'.$i));
|
||||
|
||||
$QuantityAsPerInvoice = $this->input->post('txtQuantityAsPerInvoice'.$i);
|
||||
$QuantityAsPerInvoice = trim($this->input->post('txtQuantityAsPerInvoice'.$i));
|
||||
|
||||
$OrderedQuantity = $this->input->post('OrderedQuantity'.$i);
|
||||
$OrderedQuantity = trim($this->input->post('OrderedQuantity'.$i));
|
||||
|
||||
$ReceivedQty = $this->input->post('txtReceivedQuantity'.$i);
|
||||
$ReceivedQty = trim($this->input->post('txtReceivedQuantity'.$i));
|
||||
|
||||
$PendingQty = $this->input->post('txtPendingQty'.$i);
|
||||
//echo $QuantityAsPerInvoice;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user