CIM69 - Car database

This commit is contained in:
“VeLiTi”
2024-04-23 17:09:31 +02:00
parent 5f89767faf
commit 0b4ba34ea5
12 changed files with 604 additions and 10 deletions

View File

@@ -70,10 +70,12 @@ if ($update_allowed === 1){
$output_excel[$val]['status'] = $_POST['status'];
$output_excel[$val]['salesid'] = $_POST['salesid'];
$output_excel[$val]['soldto'] = $_POST['soldto'];
$output_excel[$val]['shipto'] = $_POST['shipto'];
$output_excel[$val]['location'] = $_POST['location'];
$output_excel[$val]['section'] = '';
if (!empty($_POST['shipto']) || $_POST['shipto'] !=''){
$output_excel[$val]['shipto'] = $_POST['shipto'];
}
if (!empty($_POST['location']) || $_POST['location'] !=''){
$output_excel[$val]['location'] = $_POST['location'];
}
//Count total_rowID
$total_rowID++;
}