MRIR Billing issue fixed

This commit is contained in:
gandhimathi Bharathirajan 2017-08-01 13:16:26 +05:30
parent 0555f32874
commit c3d0cffc97

View File

@ -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;