Merge branch 'CI4-Application' of bitbucket.org:venbainformationtechnology/ria into CI4-Application
This commit is contained in:
commit
9a2935c592
@ -436,8 +436,8 @@ class Inwardgateregister extends BaseController
|
||||
$TareWeight= $this->request->getPost('txtTareWeight' . $i);
|
||||
$tareWeightDate= $this->request->getPost('txtTareWeightDate' . $i);
|
||||
$NetWeight= $this->request->getPost('txtNetWeight' . $i);
|
||||
var_dump($grossWeightDate);
|
||||
var_dump($tareWeightDate);
|
||||
// var_dump($grossWeightDate);
|
||||
// var_dump($tareWeightDate);
|
||||
|
||||
if (is_string($grossWeightDate) && is_string($tareWeightDate)) {
|
||||
$GrossWeightDate = date('Y-m-d H:i:s', strtotime($grossWeightDate));
|
||||
@ -612,246 +612,247 @@ function viewIGRDetails()
|
||||
$IGRStatus = (int)$this->request->getPost('status') == 1 ? IGR_CREATED : IGR_DRAFT;
|
||||
|
||||
$tableData = $this->request->getPost('tableData');
|
||||
|
||||
$updateby = $this->session->get('userId');
|
||||
|
||||
$igrarr = array('DeliveryChellanDate' => $DeliveryChellanDate, 'MaterialRcvdDate' => $MaterialRcvdDt,'VehicleNo'=>$VehicleNo,'DriverMobileNumber'=>$DriverMobileNumber,'DriverName'=>$DriverName, 'Status' => $IGRStatus,'UpdateBY' => $updateby);
|
||||
$igrarr = array('DeliveryChellanDate' => $DeliveryChellanDate, 'MaterialRcvdDate' => $MaterialRcvdDt,'VehicleNo'=>$VehicleNo,'DriverMobileNumber'=>$DriverMobileNumber,'DriverName'=>$DriverName, 'IGRStatus' => $IGRStatus,'UpdateBY' => $updateby);
|
||||
log_message('error', 'UpdateIGR igrarr: ' . json_encode($igrarr));
|
||||
$updateigrmaster = $this->inwardgateregister_model->updateigr($igrarr, $IGRNo);
|
||||
if(!empty($tableData )){
|
||||
if($VehicleNo){
|
||||
$vecno = $this->inwardgateregister_model->get_igr_history('VehicleNo',$IGRNo);
|
||||
|
||||
$data = $this->inwardgateregister_model->updateigr($igrarr, $IGRNo);
|
||||
if($VehicleNo){
|
||||
$vecno = $this->inwardgateregister_model->get_igr_history('VehicleNo',$IGRNo);
|
||||
if(!empty($vecno)){
|
||||
$old_data = NULL;
|
||||
foreach ($vecno as $row) {
|
||||
if ($row->field == 'VehicleNo') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'VehicleNo','new_data' => $VehicleNo,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{$igr_history = array('field' => 'VehicleNo','is_edit' => 1,'new_data' => $VehicleNo,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($DriverName){
|
||||
$drname = $this->inwardgateregister_model->get_igr_history('DriverName',$IGRNo);
|
||||
|
||||
if(!empty($vecno)){
|
||||
$old_data = NULL;
|
||||
foreach ($vecno as $row) {
|
||||
if ($row->field == 'VehicleNo') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
if(!empty($drname)){
|
||||
$old_data = NULL;
|
||||
foreach ($drname as $row) {
|
||||
if ($row->field == 'DriverName') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'DriverName','new_data' => $DriverName,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'DriverName','is_edit' => 1,'new_data' => $DriverName,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($DriverMobileNumber){
|
||||
$drmob = $this->inwardgateregister_model->get_igr_history('DriverMobileNumber',$IGRNo);
|
||||
|
||||
if(!empty($drmob)){
|
||||
$old_data = NULL;
|
||||
foreach ($drmob as $row) {
|
||||
if ($row->field == 'GrossWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'DriverMobileNumber','new_data' => $DriverMobileNumber,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'DriverMobileNumber','is_edit' => 1,'new_data' => $DriverMobileNumber,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
foreach ($tableData as $row) {
|
||||
$quantityAsPerInvoice = $row['QuantityAsPerInvoice'];
|
||||
$remarks = $row['Remarks'];
|
||||
$grossWeight = $row['GrossWeight'];
|
||||
$grossWeightDate = $row['GrossWeightDate'];
|
||||
$tareWeight = $row['TareWeight'];
|
||||
$tareWeightDate = $row['TareWeightDate'];
|
||||
$netWeight = $row['NetWeight'];
|
||||
$igrItemNo = $row['IGRItemNo'];
|
||||
$GrossWtDt = get_date_time_format($grossWeightDate);
|
||||
$TareWtDt = get_date_time_format($tareWeightDate);
|
||||
|
||||
$igrline = array(
|
||||
'QuantityAsPerInvoice' => $quantityAsPerInvoice,
|
||||
'Remarks' => $remarks,
|
||||
'GrossWeight' => $grossWeight,
|
||||
'GrossWeightDate' => $GrossWtDt,
|
||||
'TareWeight' => $tareWeight,
|
||||
'TareWeightDate' => $TareWtDt,
|
||||
'NetWeight' => $netWeight,
|
||||
'IGRItemNo' => $igrItemNo,
|
||||
'UpdateBY' => $updateby
|
||||
);
|
||||
$updateigrlineitem = $this->inwardgateregister_model->updateIGRLineItem($igrline, $igrItemNo);
|
||||
log_message('error', "lineitem updated successfully: " . $updateigrlineitem);
|
||||
log_message('error', 'UpdateIGR updateigrlineitem: ' . json_encode($igrline));
|
||||
|
||||
if($quantityAsPerInvoice){
|
||||
$qu = $this->inwardgateregister_model->get_igr_history('QuantityAsPerInvoice',$IGRNo,$igrItemNo);
|
||||
|
||||
if(!empty($qu)){
|
||||
$old_data = NULL;
|
||||
foreach ($qu as $row) {
|
||||
if ($row->field == 'QuantityAsPerInvoice') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'QuantityAsPerInvoice','new_data' => $quantityAsPerInvoice,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'QuantityAsPerInvoice','is_add' => 1,'new_data' => $quantityAsPerInvoice,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($remarks){
|
||||
$remak = $this->inwardgateregister_model->get_igr_history('Remarks',$IGRNo,$igrItemNo);
|
||||
|
||||
if(!empty($remak)){
|
||||
$old_data = NULL;
|
||||
foreach ($remak as $row) {
|
||||
if ($row->field == 'Remarks') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'Remarks','new_data' => $remarks,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{$igr_history = array('field' => 'Remarks','is_add' => 1,'new_data' => $remarks,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($grossWeight){
|
||||
$gross = $this->inwardgateregister_model->get_igr_history('GrossWeight',$IGRNo,$igrItemNo);
|
||||
if(!empty($gross)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'GrossWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'GrossWeight','new_data' => $grossWeight,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}else{
|
||||
$igr_history = array('field' => 'GrossWeight','is_add' => 1,'new_data' => $grossWeight,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
|
||||
}
|
||||
}
|
||||
if($tareWeight){
|
||||
$tare = $this->inwardgateregister_model->get_igr_history('TareWeight',$IGRNo,$igrItemNo);
|
||||
if(!empty($tare)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'TareWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'TareWeight','new_data' => $tareWeight,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}else{
|
||||
$igr_history = array('field' => 'TareWeight','is_edit' => 1,'new_data' => $tareWeight,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
if($netWeight){
|
||||
$net = $this->inwardgateregister_model->get_igr_history('NetWeight',$IGRNo,$igrItemNo);
|
||||
if(!empty($net)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'NetWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'NetWeight','new_data' => $netWeight,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'NetWeight','is_edit' => 1,'new_data' => $netWeight,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
if($GrossWtDt){
|
||||
$grossdate = $this->inwardgateregister_model->get_igr_history('GrossWeightDate',$IGRNo,$igrItemNo);
|
||||
if(!empty($grossdate)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'GrossWeightDate') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'GrossWeightDate','new_data' => $GrossWtDt,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'GrossWeightDate','is_edit' => 1,'new_data' => $GrossWtDt,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
if($TareWtDt){
|
||||
$taredate = $this->inwardgateregister_model->get_igr_history('TareWeightDate',$IGRNo,$igrItemNo);
|
||||
|
||||
if(!empty($taredate)){
|
||||
$old_data = NULL;
|
||||
foreach ($taredate as $row) {
|
||||
if ($row->field == 'TareWeightDate') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'TareWeightDate','new_data' => $TareWtDt,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'TareWeightDate','is_edit' => 1,'new_data' => $TareWtDt,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
$igr_history = array('field' => 'VehicleNo','new_data' => $VehicleNo,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{$igr_history = array('field' => 'VehicleNo','is_edit' => 1,'new_data' => $VehicleNo,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($DriverName){
|
||||
$drname = $this->inwardgateregister_model->get_igr_history('DriverName',$IGRNo);
|
||||
|
||||
if(!empty($drname)){
|
||||
$old_data = NULL;
|
||||
foreach ($drname as $row) {
|
||||
if ($row->field == 'DriverName') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'DriverName','new_data' => $DriverName,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'DriverName','is_edit' => 1,'new_data' => $DriverName,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($DriverMobileNumber){
|
||||
$drmob = $this->inwardgateregister_model->get_igr_history('DriverMobileNumber',$IGRNo);
|
||||
|
||||
if(!empty($drmob)){
|
||||
$old_data = NULL;
|
||||
foreach ($drmob as $row) {
|
||||
if ($row->field == 'GrossWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'DriverMobileNumber','new_data' => $DriverMobileNumber,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'DriverMobileNumber','is_edit' => 1,'new_data' => $DriverMobileNumber,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
foreach ($tableData as $row) {
|
||||
$materialCode = $row['MaterialCode'];
|
||||
$quantityAsPerInvoice = $row['QuantityAsPerInvoice'];
|
||||
$remarks = $row['Remarks'];
|
||||
$grossWeight = $row['GrossWeight'];
|
||||
$grossWeightDate = $row['GrossWeightDate'];
|
||||
$tareWeight = $row['TareWeight'];
|
||||
$tareWeightDate = $row['TareWeightDate'];
|
||||
$netWeight = $row['NetWeight'];
|
||||
$igrItemNo = $row['IGRItemNo'];
|
||||
$GrossWtDt = get_date_time_format($grossWeightDate);
|
||||
$TareWtDt = get_date_time_format($tareWeightDate);
|
||||
|
||||
$igrline = array(
|
||||
'IGRNO' => $IGRNo,
|
||||
'MaterialCode' => $materialCode,
|
||||
'QuantityAsPerInvoice' => $quantityAsPerInvoice,
|
||||
'Remarks' => $remarks,
|
||||
'GrossWeight' => $grossWeight,
|
||||
'GrossWeightDate' => $grossWeightDate,
|
||||
'TareWeight' => $tareWeight,
|
||||
'TareWeightDate' => $tareWeightDate,
|
||||
'NetWeight' => $netWeight,
|
||||
'IGRItemNo' => $igrItemNo,
|
||||
'UpdateBY' => $updateby
|
||||
);
|
||||
$lineitemupdated = $this->inwardgateregister_model->updateIGRLineItem($igrline, $igrItemNo);
|
||||
log_message('error', "lineitem updated successfully: " . $$lineitemupdated);
|
||||
if($quantityAsPerInvoice){
|
||||
$qu = $this->inwardgateregister_model->get_igr_history('QuantityAsPerInvoice',$IGRNo,$igrItemNo);
|
||||
|
||||
if(!empty($qu)){
|
||||
$old_data = NULL;
|
||||
foreach ($qu as $row) {
|
||||
if ($row->field == 'QuantityAsPerInvoice') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'QuantityAsPerInvoice','new_data' => $quantityAsPerInvoice,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'QuantityAsPerInvoice','is_add' => 1,'new_data' => $quantityAsPerInvoice,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($Remarks){
|
||||
$remak = $this->inwardgateregister_model->get_igr_history('Remarks',$IGRNo,$igrItemNo);
|
||||
|
||||
if(!empty($remak)){
|
||||
$old_data = NULL;
|
||||
foreach ($remak as $row) {
|
||||
if ($row->field == 'Remarks') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'Remarks','new_data' => $Remarks,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{$igr_history = array('field' => 'Remarks','is_add' => 1,'new_data' => $Remarks,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No' => $igrItemNo);
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}}
|
||||
if($grossWeight){
|
||||
$gross = $this->inwardgateregister_model->get_igr_history('GrossWeight',$IGRNo,$igrItemNo);
|
||||
if(!empty($gross)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'GrossWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'GrossWeight','new_data' => $grossWeight,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}else{
|
||||
$igr_history = array('field' => 'GrossWeight','is_add' => 1,'new_data' => $grossWeight,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
|
||||
}
|
||||
}
|
||||
if($tareWeight){
|
||||
$tare = $this->inwardgateregister_model->get_igr_history('TareWeight',$IGRNo,$igrItemNo);
|
||||
if(!empty($tare)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'TareWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'TareWeight','new_data' => $tareWeight,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}else{
|
||||
$igr_history = array('field' => 'TareWeight','is_edit' => 1,'new_data' => $tareWeight,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
if($netWeight){
|
||||
$net = $this->inwardgateregister_model->get_igr_history('NetWeight',$IGRNo,$igrItemNo);
|
||||
if(!empty($net)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'NetWeight') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'NetWeight','new_data' => $netWeight,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'NetWeight','is_edit' => 1,'new_data' => $netWeight,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
if($GrossWtDt){
|
||||
$grossdate = $this->inwardgateregister_model->get_igr_history('GrossWeightDate',$IGRNo,$igrItemNo);
|
||||
if(!empty($grossdate)){
|
||||
$old_data = NULL;
|
||||
foreach ($gross as $row) {
|
||||
if ($row->field == 'GrossWeightDate') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'GrossWeightDate','new_data' => $GrossWtDt,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'GrossWeightDate','is_edit' => 1,'new_data' => $GrossWtDt,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
if($TareWtDt){
|
||||
$taredate = $this->inwardgateregister_model->get_igr_history('TareWeightDate',$IGRNo,$igrItemNo);
|
||||
|
||||
if(!empty($taredate)){
|
||||
$old_data = NULL;
|
||||
foreach ($taredate as $row) {
|
||||
if ($row->field == 'TareWeightDate') {
|
||||
$old_data = $row->new_data;
|
||||
}
|
||||
}
|
||||
$igr_history = array('field' => 'TareWeightDate','new_data' => $TareWtDt,'old_data' => $old_data,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
} else{
|
||||
$igr_history = array('field' => 'TareWeightDate','is_edit' => 1,'new_data' => $TareWtDt,'old_data' => NULL,'history_dated' => get_current_date_time(),'by' => $this->session->get('userId'),'IGR_No' => $IGRNo,'IGRItem_No'=>$igrItemNo);
|
||||
($old_data != NULL) ? $igr_history['is_edit'] = 1 : $igr_history['is_add'] = 1 ;
|
||||
$history_id = $this->inwardgateregister_model->igr_history($igr_history);
|
||||
log_message('error', "History updated successfully. History id: " . $history_id);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
if ($data > 0) {
|
||||
}
|
||||
if ($updateigrmaster > 0) {
|
||||
echo "Updated Succefully!";
|
||||
} else {
|
||||
} else if($updateigrlineitem >0){
|
||||
echo "Updated Succefully!";
|
||||
}else{
|
||||
echo "Not Updated!";
|
||||
}
|
||||
}
|
||||
|
||||
@ -793,10 +793,10 @@ function Save(status)
|
||||
//var tablevalue = $('#specialtable').tableToJSON(); // Convert the table into a javascript object
|
||||
//var jsondata = JSON.stringify(tablevalue);
|
||||
//$('#tablevalues').val(jsondata);
|
||||
$("#IGR").attr("method", "post");
|
||||
$("#IGR").attr("enctype", "multipart/form-data");
|
||||
$("#IGR").attr("action", "SaveIGR");
|
||||
$('#IGR').submit();
|
||||
// $("#IGR").attr("method", "post");
|
||||
// $("#IGR").attr("enctype", "multipart/form-data");
|
||||
// $("#IGR").attr("action", "SaveIGR");
|
||||
// $('#IGR').submit();
|
||||
}//validate if closed
|
||||
}//save function closed
|
||||
|
||||
|
||||
@ -67,7 +67,7 @@
|
||||
<div class="box">
|
||||
<div class="container-fluid">
|
||||
<div class="box-header">
|
||||
<center><b><h3 class="box-title">View Inward Gate Register <?php echo $DEPCode; ?></h3></b></center>
|
||||
<center><b><h3 class="box-title">View Inward Gate Register </h3></b></center>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@ -119,8 +119,10 @@
|
||||
<i class="fa fa-history" style="text-align: center;"></i>
|
||||
</a>
|
||||
|
||||
<a class="a_tag_for_mrir" href="<?php echo base_url().'MRIRcontroller/igrdatavalues?IGRNO='.$record->IGRNO; ?>" target="_blank" data-id="<%=index%>" title="Generate MRIR"><i class="fa fa-external-link" style="text-align: center;"></i></a>
|
||||
|
||||
<!-- <a class="a_tag_for_mrir" href="<?php echo base_url().'MRIRcontroller/igrdatavalues?IGRNO='.$record->IGRNO; ?>" target="_blank" data-id="<%=index%>" title="Generate MRIR"><i class="fa fa-external-link" style="text-align: center;"></i></a> -->
|
||||
<a target="_blank" data-toggle="modal" data-target="#dummyshow" data-id="<%=index%>" title="Generate MRIR" data-igrno="<?php echo $record->IGRNO ?>" data-pono="<?php echo $record->PONO ?>">
|
||||
<i class="fa fa-external-link" style="text-align: center;"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
@ -330,7 +332,26 @@
|
||||
</div><!-- modal content div closed-->
|
||||
</div><!-- modal content closed-->
|
||||
</div>
|
||||
<!-- WeightCalculator modal fade closed-->
|
||||
<!-- WeightCalculator modal fade closed-->
|
||||
<div class="modal fade" id="dummyshow" role="dialog">
|
||||
<div class="modal-dialog">
|
||||
<!-- Modal content -->
|
||||
<div class="modal-content" style="width:800px;">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
<center>
|
||||
<h4>MRIR</h4>
|
||||
</center>
|
||||
</div>
|
||||
<div><center> MRIR Work in Inprogress</center></div>
|
||||
<div style="text-align: right; margin:5px;">
|
||||
<a class="btn btn-success" data-dismiss="modal" value="Close">Close</a>
|
||||
</div>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- History modal fade -->
|
||||
<div class="modal fade" id="Historyshow" role="dialog">
|
||||
<div class="modal-dialog">
|
||||
@ -459,7 +480,7 @@
|
||||
if(depCode == "DEP27"){
|
||||
if (igrstatus == "ST074") {
|
||||
buttonContainer.find("#draftIGR, #generateIGR").css("display", "inline-block");
|
||||
// $(".a_tag_for_mrir).css("display", "inline-block");
|
||||
$(".a_tag_for_mrir").css("display", "block");
|
||||
VehicleNoInput.prop('readonly', false);
|
||||
DriverInput.prop('readonly', false);
|
||||
DriverMobileNumberInput.prop('readonly', false);
|
||||
@ -467,7 +488,7 @@
|
||||
invoiceDateInput.prop('readonly', false);
|
||||
} else {
|
||||
buttonContainer.find("#draftIGR, #generateIGR").css("display", "none");
|
||||
// $(".a_tag_for_mrir).css("display", "inline-block");
|
||||
$(".a_tag_for_mrir").css("display", "none");
|
||||
VehicleNoInput.prop('readonly', true);
|
||||
DriverInput.prop('readonly', true);
|
||||
DriverMobileNumberInput.prop('readonly', true);
|
||||
@ -475,9 +496,9 @@
|
||||
invoiceDateInput.prop('readonly', true);
|
||||
}
|
||||
}else{
|
||||
$(".a_tag_for_mrir").css("display", "none");
|
||||
if (igrstatus == "ST074") {
|
||||
buttonContainer.find("#draftIGR, #generateIGR").css("display", "inline-block");
|
||||
// $(".a_tag_for_mrir).css("display", "inline-block");
|
||||
} else {
|
||||
buttonContainer.find("#draftIGR").css("display", "none");
|
||||
}
|
||||
@ -557,7 +578,7 @@
|
||||
|
||||
'<input type="hidden" id="IGRNO' + i + '" name="IGRNO' + i + '" value="' + item.IGRNO + '">' +
|
||||
'<input type="hidden" id="IGRItemNo' + i + '" name="IGRItemNo' + i + '" value="' + item.IGRItemNo + '">' +
|
||||
'<input type="hidden" id="MaterialCode' + i + '" name="MaterialCode' + i + '" value="' + item.MaterialCode + '">' +
|
||||
'<input type="text" id="MaterialCode' + i + '" name="MaterialCode' + i + '" value="' + item.MaterialCode + '">' +
|
||||
'<input type="hidden" id="txtQuantityAsPerInvoice' + i + '" name="txtQuantityAsPerInvoice' + i + '" value="' + item.QuantityAsPerInvoice + '">' +
|
||||
'<input type="hidden" id="txtOrderedQuantity' + i + '" name="txtOrderedQuantity' + i + '" value="' + item.Quantity + '">' +
|
||||
'<input type="hidden" id="txtGrossWeight' + i + '" name="txtGrossWeight' + i + '" value="' + item.GrossWeight + '">' +
|
||||
@ -595,6 +616,7 @@
|
||||
'<input type="hidden" id="txtTareWeight' + i + '" name="txtTareWeight' + i + '" value="' + item.TareWeight + '">' +
|
||||
'<input type="hidden" id="txtTareWeightDate' + i + '" name="txtTareWeightDate' + i + '" value="' + item.TareWeightDate + '">' +
|
||||
'<input type="hidden" id="txtNetWeight' + i + '" name="txtNetWeight' + i + '"value="' + item.NetWeight + '">' +
|
||||
'<input type="hidden" id="txtRemarks' + i + '" name="txtRemarks' + i + '"value="' + item.Remarks + '">' +
|
||||
'<input type="hidden" id="txtIGRLineItem' + i + '" name="txtIGRLineItem' + i + '"value="' + item.IGRItemNo + '">' +
|
||||
'</tr>';
|
||||
}
|
||||
@ -629,7 +651,7 @@
|
||||
});
|
||||
});
|
||||
$('#draftIGR').click(function(){
|
||||
$('#content').loader('show');
|
||||
// $('#content').loader('show');
|
||||
var igrno = $("#IGRNO1").val();
|
||||
var materialrcv_date = $("#MaterialRcvdDate").val();
|
||||
var inv_date = $("#Invoice_Date").val();
|
||||
@ -638,23 +660,23 @@
|
||||
var driver_mobile = $('#DriverMobileNumber').val();
|
||||
var status = 0;
|
||||
var tableData = [];
|
||||
$('#tbleIGRAppend tr').each(function() {
|
||||
var row = $(this);
|
||||
$('#tbleIGRAppend tr').each(function(index) {
|
||||
var row = $(this);
|
||||
++index;
|
||||
var rowData = {
|
||||
MaterialCode: row.find('#MaterialCode' + row.index()).val(),
|
||||
Quantity: row.find('#txtOrderedQuantity' + row.index()).val(),
|
||||
QuantityAsPerInvoice: row.find('#txtQuantityAsPerInvoice' + row.index()).val(),
|
||||
Remarks: row.find('#txtGrossWeight' + row.index()).val(),
|
||||
GrossWeight: row.find('#txtGrossWeight' + row.index()).val(),
|
||||
GrossWeightDate: row.find('#txtGrossWeightDate' + row.index()).val(),
|
||||
TareWeight: row.find('#txtTareWeight' + row.index()).val(),
|
||||
TareWeightDate: row.find('#txtTareWeightDate' + row.index()).val(),
|
||||
NetWeight: row.find('#txtNetWeight' + row.index()).val(),
|
||||
IGRItemNo: row.find('#txtIGRLineItem' + row.index()).val()
|
||||
Quantity: row.find('#txtOrderedQuantity' + index).val(),
|
||||
QuantityAsPerInvoice: row.find('#txtQuantityAsPerInvoice' + index).val(),
|
||||
Remarks: row.find('#txtRemarks' + index).val(),
|
||||
GrossWeight: row.find('#txtGrossWeight' + index).val(),
|
||||
GrossWeightDate: row.find('#txtGrossWeightDate' + index).val(),
|
||||
TareWeight: row.find('#txtTareWeight' + index).val(),
|
||||
TareWeightDate: row.find('#txtTareWeightDate' + index).val(),
|
||||
NetWeight: row.find('#txtNetWeight' + index).val(),
|
||||
IGRItemNo: row.find('#txtIGRLineItem' + index).val()
|
||||
};
|
||||
tableData.push(rowData);
|
||||
});
|
||||
|
||||
console.log(tableData);
|
||||
$.ajax({
|
||||
data:{igr:igrno,mrc:materialrcv_date,invdate:inv_date,vehicle_no:vehicle_no,driver:driver,driver_mobile:driver_mobile,status:status,tableData: tableData},
|
||||
type:"POST",
|
||||
@ -666,7 +688,7 @@
|
||||
});
|
||||
});
|
||||
$('#generateIGR').click(function(){
|
||||
$('#content').loader('show');
|
||||
// $('#content').loader('show');
|
||||
var igrno = $("#IGRNO1").val();
|
||||
var materialrcv_date = $("#MaterialRcvdDate").val();
|
||||
var inv_date = $("#Invoice_Date").val();
|
||||
@ -675,18 +697,19 @@
|
||||
var driver_mobile = $('#DriverMobileNumber').val();
|
||||
var status = 1;
|
||||
var tableData = [];
|
||||
$('#tbleIGRAppend tr').each(function() {
|
||||
var row = $(this);
|
||||
$('#tbleIGRAppend tr').each(function(index) {
|
||||
var row = $(this);
|
||||
++index;
|
||||
var rowData = {
|
||||
MaterialCode: row.find('#MaterialCode' + row.index()).val(),
|
||||
Quantity: row.find('#txtOrderedQuantity' + row.index()).val(),
|
||||
QuantityAsPerInvoice: row.find('#txtQuantityAsPerInvoice' + row.index()).val(),
|
||||
GrossWeight: row.find('#txtGrossWeight' + row.index()).val(),
|
||||
GrossWeightDate: row.find('#txtGrossWeightDate' + row.index()).val(),
|
||||
TareWeight: row.find('#txtTareWeight' + row.index()).val(),
|
||||
TareWeightDate: row.find('#txtTareWeightDate' + row.index()).val(),
|
||||
NetWeight: row.find('#txtNetWeight' + row.index()).val(),
|
||||
IGRItemNo: row.find('#txtIGRLineItem' + row.index()).val()
|
||||
Quantity: row.find('#txtOrderedQuantity' + index).val(),
|
||||
QuantityAsPerInvoice: row.find('#txtQuantityAsPerInvoice' + index).val(),
|
||||
Remarks: row.find('#txtRemarks' + index).val(),
|
||||
GrossWeight: row.find('#txtGrossWeight' + index).val(),
|
||||
GrossWeightDate: row.find('#txtGrossWeightDate' + index).val(),
|
||||
TareWeight: row.find('#txtTareWeight' + index).val(),
|
||||
TareWeightDate: row.find('#txtTareWeightDate' + index).val(),
|
||||
NetWeight: row.find('#txtNetWeight' + index).val(),
|
||||
IGRItemNo: row.find('#txtIGRLineItem' + index).val()
|
||||
};
|
||||
tableData.push(rowData);
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user