BREAKING CHANGES - MAKE FULL BACKUP BEFORE PROCEEDING - Requires Manual Intervention on files see Forum Post Make sure you run the Database update directly after update. This Removes Multi-Company Functionality. Fixes issues with Reponsive tables and bunch of other UI and small Fixes

This commit is contained in:
johnnyq
2023-03-11 16:16:46 -05:00
parent 75da31d991
commit 48fe49cf77
164 changed files with 2154 additions and 2794 deletions

View File

@@ -61,33 +61,6 @@
</div>
</div>
<div class="form-group">
<label>Company <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-building"></i></span>
</div>
<select class="form-control select2" name="default_company" required>
<option value="">- Company -</option>
<?php
$sql_companies_select = mysqli_query($mysqli, "SELECT * FROM companies ORDER BY company_name ASC");
while ($row = mysqli_fetch_array($sql_companies_select)) {
$company_id_select = $row['company_id'];
$company_name_select = htmlentities($row['company_name']);
?>
<option <?php if ($company_id_select == $user_default_company) {
echo "selected";
} ?>
value="<?php echo $company_id_select; ?>"><?php echo $company_name_select; ?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="form-group">
<label>Role <strong class="text-danger">*</strong></label>
<div class="input-group">