HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/pm/plugins/Purchase/Views/vendor_items/vendor_items.php
<div id="wrapper" class="commission">
  <div class="row content">
    <div class="row">
      <div class="col-md-6">
        <div class="panel_s">
          <div class="panel-body">

            <?php echo form_open(uri_string(),array('id'=>'applicable-staff-form','autocomplete'=>'off')); ?>
            <h4 class="no-margin font-bold"><?php echo html_entity_decode($title); ?></h4>
            <hr />
            <div class="row">
              <div class="col-md-12">
                <label for="vendor"><?php echo _l('vendor'); ?></label>
                    <select name="vendor" id="vendor" class="select2 validate-hidden" data-live-search="true" data-width="100%" data-none-selected-text="<?php echo _l('ticket_settings_none_assigned'); ?>" >
                      <option value=""></option>
                        <?php foreach($vendors as $s) { ?>
                        <option value="<?php echo html_entity_decode($s['userid']); ?>" ><?php echo html_entity_decode($s['company']); ?></option>
                          <?php } ?>
                    </select>  
                    <br><br>
              </div>

               <div class="col-md-6">
                  <label for="group_item"><?php echo _l('group_item'); ?></label>
                    <select name="group_item" id="group_item" class="select2 validate-hidden" onchange="group_it_change(); return false;" data-live-search="true" data-width="100%" data-none-selected-text="<?php echo _l('all'); ?>" >
                      <option value="">-</option>
                        <?php foreach($commodity_groups as $s) { ?>
                        <option value="<?php echo html_entity_decode($s['id']); ?>" ><?php echo html_entity_decode($s['title']); ?></option>
                          <?php } ?>
                    </select>  
                    <br>
                </div>
              <div class="col-md-6 form-group">
                <label for="items"><?php echo _l('items'); ?></label>
                    <select name="items[]" id="items" class="select2 validate-hidden no-margin<?php if($ajaxItems == true){echo ' ajax-search';} ?>" data-live-search="true" multiple data-width="100%" required data-none-selected-text="<?php echo _l('ticket_settings_none_assigned'); ?>" >
                      
                    </select>
                    <br> 
              </div>
            </div>
            
            
            <div class="row">
              <div class="col-md-12">   
              <hr> 
                <div class="">
                  <button type="submit" class="btn btn-info commission-policy-form-submiter pull-right"><?php echo _l('submit'); ?></button>
                </div>
              </div>
            </div>
            <?php echo form_close(); ?>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<?php require FCPATH. PLUGIN_URL_PATH .'Purchase/assets/js/vendor_items/vendor_items_js.php';?>