productquality.html.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <table class="table table-bordered">
  2. <thead>
  3. <tr>
  4. <th rowspan='2'><?php echo $lang->milestone->quality->identify;?></th>
  5. <th class='text-center' colspan='<?php if(isset($productQuality['stages'])) echo count($productQuality['stages']);?>'>
  6. <?php echo $lang->milestone->quality->injection;?></th>
  7. <th rowspan='2'><?php echo $lang->milestone->quality->scale;?></th>
  8. <th rowspan='2'><?php echo $lang->milestone->quality->identifyRate;?></th>
  9. </tr>
  10. <tr>
  11. <?php if(isset($productQuality['stages'])):?>
  12. <?php foreach($productQuality['stages'] as $stages):?>
  13. <th title=<?php echo $stages['name'];?>><?php echo $stages['name'];?></th>
  14. <?php endforeach;?>
  15. <?php endif;?>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <?php if(isset($productQuality['reviews'])):?>
  20. <?php foreach($productQuality['reviews'] as $reviewID => $review):?>
  21. <tr>
  22. <td><?php echo $review['name'];?></td>
  23. <?php foreach($productQuality['stages'] as $stages):?>
  24. <td><?php echo $stages[$reviewID]['counts'];?></td>
  25. <?php endforeach;?>
  26. <td><?php echo $productQuality['reviews'][$reviewID]['reviewEstimate']; ?></td>
  27. <td><?php echo $productQuality['reviews'][$reviewID]['identifyRate']; ?></td>
  28. </tr>
  29. <?php endforeach;?>
  30. <?php endif;?>
  31. <tr>
  32. <th><?php echo $lang->milestone->quality->total;?></th>
  33. <?php if(isset($productQuality['stages'])):?>
  34. <?php foreach($productQuality['stages'] as $stages):?>
  35. <td><?php echo $stages['total'];?></td>
  36. <?php endforeach;?>
  37. <?php endif;?>
  38. <?php if(isset($productQuality['totalEstimate'])):?>
  39. <td><?php echo $productQuality['totalEstimate'];?></td>
  40. <?php endif;?>
  41. <?php if(isset($productQuality['totalIdentifyRate'])):?>
  42. <td><?php echo $productQuality['totalIdentifyRate'];?></td>
  43. <?php endif;?>
  44. </tr>
  45. <tr>
  46. <th><?php echo $lang->milestone->quality->injectionRate;?>
  47. </th>
  48. <?php if(isset($productQuality['stages'])):?>
  49. <?php foreach($productQuality['stages'] as $stages):?>
  50. <td><?php echo $stages['injection'];?></td>
  51. <?php endforeach;?>
  52. <?php endif;?>
  53. <td></td>
  54. <td></td>
  55. </tr>
  56. </tbody>
  57. </table>