$total_customer_freight = 0;
$total_service_charges = 0;
?>
        <!---------------------------------------->

        <?php 
$unit = 1000;
//used to convert from liters to tuns or vice versa.
?>
        <table class="table table-bordered table-hover table-striped sortable" style="font-size: 12px;">

            <thead style="border-top: 3px solid lightgray;">

            <tr>
                <?php 
echo Sort::createPrintableHeaders("manage_accounts_black_oil", $columns);
?>
            </tr>

            </thead>

            <tbody>

            <?php 
$selected_columns = $columns;
$columns = Sort::columns('manage_accounts_black_oil');
//Showing Customers Data
foreach ($accounts as $record) {
    echo "<tr>";
    $markup = "";
    $markup .= printable_column('trip_id', $selected_columns, $record->trip_id);
Ejemplo n.º 2
0
<html>
<head>
    <title>Accounts</title>
    <link href="<?php 
echo css();
?>
bootstrap.min.css" rel="stylesheet">
</head>
<body>
<style>
    table{
        font-size: <?php 
echo $font_size;
?>
;
    }
    table td, th{
        padding: 5px;
    }
    .multiple_entites{
       border-bottom: 1px dashed lightgray;
    }
</style>
<div id="page-wrapper" style="min-height: 700px;">
    <div class="container-fluid">
        <div class="row">
            <div class="col-lg-12">
                <section class="col-md-12" style="text-align: center;">
                    <h3 class="">
                       Trips Details
                    </h3>
Ejemplo n.º 3
0
<html>
<head>
    <title>Tankers</title>
    <link href="<?php 
echo css();
?>
bootstrap.min.css" rel="stylesheet">
</head>
<body>

<style>
    table{
        font-size: 10px;
    }
</style>
<div id="page-wrapper" style="min-height: 700px;">
    <div class="container-fluid">


        <div class="row">
            <div class="col-lg-12">
                <section class="col-md-12">
                    <h3 class="">
                      Tankers:<small><?php 
echo $customer->name;
?>
</small>
                    </h3>
                </section>
            </div>
        </div>