mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Feature: Vendor Templates! You can now create Vendor Templates and reuse them for any client
This commit is contained in:
@@ -113,7 +113,7 @@
|
||||
<label for="vendors">Select related vendors</label>
|
||||
<select multiple class="form-control" id="vendors" name="vendors[]">
|
||||
<?php
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM vendors WHERE vendor_client_id = '$client_id'");
|
||||
$sql = mysqli_query($mysqli, "SELECT * FROM vendors WHERE vendor_template = 0 AND vendor_client_id = '$client_id'");
|
||||
while($row = mysqli_fetch_array($sql)){
|
||||
$vendor_id = $row['vendor_id'];
|
||||
$vendor_name = htmlentities($row['vendor_name']);
|
||||
|
||||
Reference in New Issue
Block a user