File: //home/slfopp7cb1df/public_html/pm/app/Models/Estimates_model.php
<?php
namespace App\Models;
class Estimates_model extends Crud_model {
protected $table = null;
function __construct() {
$this->table = 'estimates';
parent::__construct($this->table);
}
function get_details($options = array()) {
$estimates_table = $this->db->prefixTable('estimates');
$clients_table = $this->db->prefixTable('clients');
$taxes_table = $this->db->prefixTable('taxes');
$estimate_items_table = $this->db->prefixTable('estimate_items');
$projects_table = $this->db->prefixTable('projects');
$users_table = $this->db->prefixTable('users');
$where = "";
$id = get_array_value($options, "id");
if ($id) {
$where .= " AND $estimates_table.id=$id";
}
$client_id = get_array_value($options, "client_id");
if ($client_id) {
$client_id = $this->db->escapeString($client_id);
$where .= " AND $estimates_table.client_id=$client_id";
}
$start_date = get_array_value($options, "start_date");
$end_date = get_array_value($options, "end_date");
if ($start_date && $end_date) {
$where .= " AND ($estimates_table.estimate_date BETWEEN '$start_date' AND '$end_date') ";
}
$after_tax_1 = "(IFNULL(tax_table.percentage,0)/100*IFNULL(items_table.estimate_value,0))";
$after_tax_2 = "(IFNULL(tax_table2.percentage,0)/100*IFNULL(items_table.estimate_value,0))";
$discountable_estimate_value = "IF($estimates_table.discount_type='after_tax', (IFNULL(items_table.estimate_value,0) + $after_tax_1 + $after_tax_2), IFNULL(items_table.estimate_value,0) )";
$discount_amount = "IF($estimates_table.discount_amount_type='percentage', IFNULL($estimates_table.discount_amount,0)/100* $discountable_estimate_value, $estimates_table.discount_amount)";
$before_tax_1 = "(IFNULL(tax_table.percentage,0)/100* (IFNULL(items_table.estimate_value,0)- $discount_amount))";
$before_tax_2 = "(IFNULL(tax_table2.percentage,0)/100* (IFNULL(items_table.estimate_value,0)- $discount_amount))";
$estimate_value_calculation = "(
IFNULL(items_table.estimate_value,0)+
IF($estimates_table.discount_type='before_tax', ($before_tax_1+ $before_tax_2), ($after_tax_1 + $after_tax_2))
- $discount_amount
)";
$status = get_array_value($options, "status");
if ($status) {
$where .= " AND $estimates_table.status='$status'";
}
$exclude_draft = get_array_value($options, "exclude_draft");
if ($exclude_draft) {
$where .= " AND $estimates_table.status!='draft' ";
}
$clients_only = get_array_value($options, "clients_only");
if ($clients_only) {
$where .= " AND $estimates_table.client_id IN(SELECT $clients_table.id FROM $clients_table WHERE $clients_table.deleted=0 AND $clients_table.is_lead=0)";
}
$show_own_estimates_only_user_id = get_array_value($options, "show_own_estimates_only_user_id");
if ($show_own_estimates_only_user_id) {
$where .= " AND $estimates_table.created_by=$show_own_estimates_only_user_id";
}
//prepare custom fild binding query
$custom_fields = get_array_value($options, "custom_fields");
$custom_field_filter = get_array_value($options, "custom_field_filter");
$custom_field_query_info = $this->prepare_custom_field_query_string("estimates", $custom_fields, $estimates_table, $custom_field_filter);
$select_custom_fieds = get_array_value($custom_field_query_info, "select_string");
$join_custom_fieds = get_array_value($custom_field_query_info, "join_string");
$custom_fields_where = get_array_value($custom_field_query_info, "where_string");
$sql = "SELECT $estimates_table.*, $clients_table.currency, $clients_table.currency_symbol, $clients_table.company_name, $projects_table.title as project_title, $clients_table.is_lead,
CONCAT($users_table.first_name, ' ',$users_table.last_name) AS signer_name, $users_table.email AS signer_email,
$estimate_value_calculation AS estimate_value, tax_table.percentage AS tax_percentage, tax_table2.percentage AS tax_percentage2 $select_custom_fieds
FROM $estimates_table
LEFT JOIN $clients_table ON $clients_table.id= $estimates_table.client_id
LEFT JOIN $projects_table ON $projects_table.id= $estimates_table.project_id
LEFT JOIN $users_table ON $users_table.id= $estimates_table.accepted_by
LEFT JOIN (SELECT $taxes_table.* FROM $taxes_table) AS tax_table ON tax_table.id = $estimates_table.tax_id
LEFT JOIN (SELECT $taxes_table.* FROM $taxes_table) AS tax_table2 ON tax_table2.id = $estimates_table.tax_id2
LEFT JOIN (SELECT estimate_id, SUM(total) AS estimate_value FROM $estimate_items_table WHERE deleted=0 GROUP BY estimate_id) AS items_table ON items_table.estimate_id = $estimates_table.id
$join_custom_fieds
WHERE $estimates_table.deleted=0 $where $custom_fields_where";
return $this->db->query($sql);
}
function get_estimate_total_summary($estimate_id = 0) {
$estimate_items_table = $this->db->prefixTable('estimate_items');
$estimates_table = $this->db->prefixTable('estimates');
$clients_table = $this->db->prefixTable('clients');
$taxes_table = $this->db->prefixTable('taxes');
$item_sql = "SELECT SUM($estimate_items_table.total) AS estimate_subtotal
FROM $estimate_items_table
LEFT JOIN $estimates_table ON $estimates_table.id= $estimate_items_table.estimate_id
WHERE $estimate_items_table.deleted=0 AND $estimate_items_table.estimate_id=$estimate_id AND $estimates_table.deleted=0";
$item = $this->db->query($item_sql)->getRow();
$estimate_sql = "SELECT $estimates_table.*, tax_table.percentage AS tax_percentage, tax_table.title AS tax_name,
tax_table2.percentage AS tax_percentage2, tax_table2.title AS tax_name2
FROM $estimates_table
LEFT JOIN (SELECT $taxes_table.* FROM $taxes_table) AS tax_table ON tax_table.id = $estimates_table.tax_id
LEFT JOIN (SELECT $taxes_table.* FROM $taxes_table) AS tax_table2 ON tax_table2.id = $estimates_table.tax_id2
WHERE $estimates_table.deleted=0 AND $estimates_table.id=$estimate_id";
$estimate = $this->db->query($estimate_sql)->getRow();
$client_sql = "SELECT $clients_table.currency_symbol, $clients_table.currency FROM $clients_table WHERE $clients_table.id=$estimate->client_id";
$client = $this->db->query($client_sql)->getRow();
$result = new \stdClass();
$result->estimate_subtotal = $item->estimate_subtotal;
$result->tax_percentage = $estimate->tax_percentage;
$result->tax_percentage2 = $estimate->tax_percentage2;
$result->tax_name = $estimate->tax_name;
$result->tax_name2 = $estimate->tax_name2;
$result->tax = 0;
$result->tax2 = 0;
$estimate_subtotal = $result->estimate_subtotal;
$estimate_subtotal_for_taxes = $estimate_subtotal;
if ($estimate->discount_type == "before_tax") {
$estimate_subtotal_for_taxes = $estimate_subtotal - ($estimate->discount_amount_type == "percentage" ? ($estimate_subtotal * ($estimate->discount_amount / 100)) : $estimate->discount_amount);
}
if ($estimate->tax_percentage) {
$result->tax = $estimate_subtotal_for_taxes * ($estimate->tax_percentage / 100);
}
if ($estimate->tax_percentage2) {
$result->tax2 = $estimate_subtotal_for_taxes * ($estimate->tax_percentage2 / 100);
}
$estimate_total = $item->estimate_subtotal + $result->tax + $result->tax2;
//get discount total
$result->discount_total = 0;
if ($estimate->discount_type == "after_tax") {
$estimate_subtotal = $estimate_total;
}
$result->discount_total = $estimate->discount_amount_type == "percentage" ? ($estimate_subtotal * ($estimate->discount_amount / 100)) : $estimate->discount_amount;
$result->discount_type = $estimate->discount_type;
$result->discount_total = is_null($result->discount_total) ? 0 : $result->discount_total;
$result->estimate_total = $estimate_total - number_format($result->discount_total, 2, ".", "");
$result->currency_symbol = $client->currency_symbol ? $client->currency_symbol : get_setting("currency_symbol");
$result->currency = $client->currency ? $client->currency : get_setting("default_currency");
return $result;
}
//get estimate last id
function get_estimate_last_id() {
$estimates_table = $this->db->prefixTable('estimates');
$sql = "SELECT MAX($estimates_table.id) AS last_id FROM $estimates_table";
return $this->db->query($sql)->getRow()->last_id;
}
//save initial number of estimate
function save_initial_number_of_estimate($value) {
$estimates_table = $this->db->prefixTable('estimates');
$sql = "ALTER TABLE $estimates_table AUTO_INCREMENT=$value;";
return $this->db->query($sql);
}
}