MRIR Billing issue fixed
This commit is contained in:
parent
c3e0195cf4
commit
0555f32874
@ -186,10 +186,10 @@ public function viewmMaterialDistributionList()
|
|||||||
for ($i = 1; $i <= $RowCount; $i++)
|
for ($i = 1; $i <= $RowCount; $i++)
|
||||||
{
|
{
|
||||||
|
|
||||||
$MaterialCode = $this->input->post('MaterialCode'.$i);
|
$MaterialCode = trim($this->input->post('MaterialCode'.$i));
|
||||||
$ActualQuantityReceived = $this->input->post('ActualQuantity'.$i);
|
$ActualQuantityReceived = trim($this->input->post('ActualQuantity'.$i));
|
||||||
$QuantityAsPerInvoice = $this->input->post('ReceivedQuantity'.$i);
|
$QuantityAsPerInvoice = trim($this->input->post('ReceivedQuantity'.$i));
|
||||||
$Remarked = $this->input->post('Remark'.$i);
|
$Remarked = trim($this->input->post('Remark'.$i));
|
||||||
$StoreIncharge = $this->session->userdata('userId');
|
$StoreIncharge = $this->session->userdata('userId');
|
||||||
|
|
||||||
//this array to store the value in child table..
|
//this array to store the value in child table..
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user