echo gettext('Description');
?>
#</th>
         <th><?php 
echo gettext('Resource');
?>
#</th>
        </tr>
       </thead>
       <tbody class="form_data_line_tbody bom_overhead_resource_assignment_values" >
        <?php 
$count = 0;
foreach ($bom_overhead_resource_assignment_object as $bom_overhead_resource_assignment) {
    if (!empty($bom_overhead_resource_assignment->bom_cost_type)) {
        $bcy = new bom_cost_type();
        $bcy_i = $bcy->find_by_keyColumn($bom_overhead_resource_assignment->bom_cost_type);
        $bom_overhead_resource_assignment->bom_cost_type_description = $bcy_i->description;
    } else {
        $bom_overhead_resource_assignment->bom_cost_type_description = null;
    }
    ?>
         
         <tr class="bom_overhead_resource_assignment<?php 
    echo $count;
    ?>
">
          <td>
           <?php 
    echo ino_inline_action(${$class_second}->bom_overhead_resource_assignment_id, array('bom_overhead_id' => ${$class}->bom_overhead_id));
    ?>
          </td>
echo __('Description');
?>
#</th>
       <th><?php 
echo __('Rate');
?>
#</th>
      </tr>
     </thead>
     <tbody class="form_data_line_tbody">
      <?php 
$count = 0;
foreach ($bom_resource_cost_object as $bom_resource_cost) {
    if (!empty($bom_resource_cost->bom_cost_type)) {
        $bcy = new bom_cost_type();
        $bcy_i = $bcy->find_by_keyColumn($bom_resource_cost->bom_cost_type);
        $bom_resource_cost->bom_cost_type_description = $bcy_i->description;
    } else {
        $bom_resource_cost->bom_cost_type_description = null;
    }
    ?>
         
       <tr class="bom_resource_cost<?php 
    echo $count;
    ?>
">
        <td>
         <?php 
    echo ino_inline_action(${$class_second}->bom_resource_cost_id, array('bom_resource_id' => ${$class}->bom_resource_id));
    ?>
        </td>