CMXX - Product attributes and initial multi languagal product support
This commit is contained in:
@@ -65,7 +65,7 @@ if ($update_allowed === 1){
|
||||
$output_excel[$val]['rowID'] = $responses->rowID;
|
||||
$output_excel[$val]['serialnumber'] = $val;
|
||||
$output_excel[$val]['productcode'] = $responses->productcode;
|
||||
$output_excel[$val]['productname'] = $responses->productname;
|
||||
$output_excel[$val]['productname'] = ${$responses->productname} ?? $responses->productname;
|
||||
$output_excel[$val]['order_ref'] = $_POST['order_ref'];
|
||||
$output_excel[$val]['status'] = $_POST['status'];
|
||||
$output_excel[$val]['salesid'] = $_POST['salesid'];
|
||||
@@ -100,7 +100,7 @@ if ($update_allowed === 1){
|
||||
|
||||
}
|
||||
else {
|
||||
$output_excel_display .= '<tr><td>'.$data_to_update['serialnumber'].'</td><td>'.$data_to_update['productcode'].'</td><td>'.$data_to_update['productname'].'</td><td>'.$mass_update_correct.'</td></tr>';
|
||||
$output_excel_display .= '<tr><td>'.$data_to_update['serialnumber'].'</td><td>'.$data_to_update['productcode'].'</td><td>'.(${$data_to_update['productname']} ?? $data_to_update['productname']).'</td><td>'.$mass_update_correct.'</td></tr>';
|
||||
}
|
||||
}
|
||||
$output_excel_display .= '</tbody></table>';
|
||||
|
||||
Reference in New Issue
Block a user