// Supply Orders: the supply order form is now generated (PDF)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10374 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2011-11-21 18:31:44 +00:00
parent 5dc1c8a71c
commit de6d9c7bbe
6 changed files with 285 additions and 3 deletions
+16 -1
View File
@@ -39,7 +39,8 @@ $functionArray = array(
'invoices' => 'generateInvoicesPDF',
'invoices2' => 'generateInvoicesPDF2',
'slips' => 'generateOrderSlipsPDF',
'deliveryslips' => 'generateDeliverySlipsPDF'
'deliveryslips' => 'generateDeliverySlipsPDF',
'id_supply_order' => 'generateSupplyOrderFormPDF'
);
foreach ($functionArray as $var => $function)
@@ -49,6 +50,20 @@ foreach ($functionArray as $var => $function)
die;
}
function generateSupplyOrderFormPDF()
{
if (!isset($_GET['id_supply_order']))
die (Tools::displayError('Missing supply order ID'));
$id_supply_order = (int)$_GET['id_supply_order'];
$supply_order = new SupplyOrder($id_supply_order);
if (!Validate::isLoadedObject($supply_order))
die(Tools::displayError('Cannot find this supply order in the database'));
generatePDF($supply_order, PDF::TEMPLATE_SUPPLY_ORDER_FORM);
}
function generateInvoicePDF()
{
if (!isset($_GET['id_order']))
+108
View File
@@ -0,0 +1,108 @@
<?php
/*
* 2007-2011 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
/**
* @since 1.5
*/
class HTMLTemplateSupplyOrderForm extends HTMLTemplate
{
public $supply_order;
public $warehouse;
public $address_warehouse;
public $context;
public function __construct(SupplyOrder $supply_order, $smarty)
{
$this->supply_order = $supply_order;
$this->smarty = $smarty;
$this->context = Context::getContext();
$this->warehouse = new Warehouse($supply_order->id_warehouse);
$this->address_warehouse = new Address($this->warehouse->id_address);
// header informations
$this->date = Tools::displayDate($supply_order->date_add, (int)$this->context->language->id);
$this->title = self::l('Supply order form').sprintf(' #%s', $supply_order->reference);
// footer informations : displays the address of the warehouse
$this->address = $this->address_warehouse;
}
/**
* Returns the template's HTML content
* @return string HTML content
*/
public function getContent()
{
$supply_order_details = $this->supply_order->getEntriesCollection($this->context->language->id);
$tax_order_summary = $this->getTaxOrderSummary();
$currency = new Currency($this->supply_order->id_currency);
$this->smarty->assign(array(
'warehouse' => $this->warehouse,
'address_warehouse' => $this->address_warehouse,
'supply_order' => $this->supply_order,
'supply_order_details' => $supply_order_details,
'tax_order_summary' => $tax_order_summary,
'currency' => $currency,
));
return $this->smarty->fetch(_PS_THEME_DIR_.'/pdf/supply-order.tpl');
}
/**
* Returns the template filename when using bulk rendering
* @return string filename
*/
public function getBulkFilename()
{
return 'supply_order.pdf';
}
/**
* Returns the template filename
* @return string filename
*/
public function getFilename()
{
return ($this->l('SupplyOrderForm').sprintf('_%s', $this->supply_order->reference).'.pdf');
}
protected function getTaxOrderSummary()
{
$query = new DbQuery();
$query->select('
SUM(price_with_order_discount_te) as base_te,
tax_rate,
SUM(tax_value_with_order_discount) as total_tax_value
');
$query->from('supply_order_detail');
$query->where('id_supply_order = '.(int)$this->supply_order->id);
$query->groupBy('tax_rate');
$results = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($query);
return $results;
}
}
+1
View File
@@ -39,6 +39,7 @@ class PDFCore
const TEMPLATE_ORDER_RETURN = 'OrderReturn';
const TEMPLATE_ORDER_SLIP = 'OrderSlip';
const TEMPLATE_DELIVERY_SLIP = 'DeliverySlip';
const TEMPLATE_SUPPLY_ORDER_FORM = 'SupplyOrderForm';
public function __construct($objects, $template, $smarty)
{
@@ -1765,8 +1765,8 @@ class AdminSupplyOrdersControllerCore extends AdminController
return;
$content = '<span style="width:20px; margin-right:5px;">';
if ($supply_order_state->editable == false) // @TODO Decide what states are allowed
$content .= '<a href="#"><img src="../img/admin/pdf.gif" alt="invoice" /></a>';
if ($supply_order_state->editable == false)
$content .= '<a href="pdf.php?id_supply_order='.(int)$supply_order->id.'"><img src="../img/admin/pdf.gif" alt="invoice" /></a>';
else
$content .= '-';
$content .= '</span>';
View File
+158
View File
@@ -0,0 +1,158 @@
{*
* 2007-2011 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
<div style="font-size: 9pt; color: #444">
<!-- SHOP ADDRESS -->
<div>
<table style="width: 100%">
<tr>
<td style="font-size: 13pt; font-weight: bold">{$shop_name}</td>
</tr>
<tr>
<td style="font-size: 13pt; font-weight: bold">{$address_warehouse->address1}</td>
</tr>
{* if the address has two parts *}
{if !empty($address_warehouse->address2)}
<tr>
<td style="font-size: 13pt; font-weight: bold">{$address_warehouse->address2}</td>
</tr>
{/if}
<tr>
<td style="font-size: 13pt; font-weight: bold">{$address_warehouse->postcode} {$address_warehouse->city}</td>
</tr>
</table>
</div>
<!-- / SHOP ADDRESS -->
<!-- SUPPLIER ADDRESS -->
<div style="text-align: right;">
<table style="width: 70%">
<tr>
<td style="font-size: 13pt; font-weight: bold">{$supply_order->supplier_name}</td>
</tr>
</table>
</div>
<!-- / SUPPLIER ADDRESS -->
<table>
<tr><td style="line-height: 8px">&nbsp;</td></tr>
</table>
{l s='Products to order:'}
<!-- PRODUCTS -->
<div style="font-size: 6pt;">
<table style="width: 100%;">
<tr style="line-height:6px; border: none">
<td style="width: 8%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Reference'}</td>
<td style="width: 34%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Designation'}</td>
<td style="width: 3%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Qty'}</td>
<td style="width: 9%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Unit Price TE'}</td>
<td style="width: 9%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Total TE BD'}</td>
<td style="width: 10%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Discount Rate'}</td>
<td style="width: 9%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Total TE AD'}</td>
<td style="width: 9%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Tax rate'}</td>
<td style="width: 9%; text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Total TI'}</td>
</tr>
{* for each product ordered *}
{foreach $supply_order_details as $supply_order_detail}
<tr>
<td>{$supply_order_detail->supplier_reference}</td>
<td>{$supply_order_detail->name}</td>
<td>{$supply_order_detail->quantity_expected}</td>
<td>{$supply_order_detail->unit_price_te}</td>
<td>{$supply_order_detail->price_te}</td>
<td>{$supply_order_detail->discount_rate}</td>
<td>{$supply_order_detail->price_with_discount_te}</td>
<td>{$supply_order_detail->tax_rate}</td>
<td>{$supply_order_detail->price_ti}</td>
</tr>
{/foreach}
</table>
</div>
<!-- / PRODUCTS -->
<table>
<tr><td style="line-height: 8px">&nbsp;</td></tr>
</table>
{l s='Taxes:'}
<!-- PRODUCTS TAXES -->
<div style="font-size: 6pt;">
<table style="width: 30%;">
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Base TE'}</td>
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Tax Rate'}</td>
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Tax Value'}</td>
</tr>
{foreach $tax_order_summary as $entry}
<tr style="line-height:6px; border: none">
<td>{$entry['base_te']}</td>
<td>{$entry['tax_rate']}</td>
<td>{$entry['total_tax_value']}</td>
</tr>
{/foreach}
</table>
</div>
<!-- / PRODUCTS TAXES -->
<table>
<tr><td style="line-height: 8px">&nbsp;</td></tr>
</table>
{l s='Summary'}
<!-- TOTAL -->
<div style="font-size: 6pt;">
<table style="width: 30%;">
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Total TE'}</td>
<td>{$supply_order->total_te}</td>
</tr>
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Order Discount'}</td>
<td>{$supply_order->discount_value_te}</td>
</tr>
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Total AD TE'}</td>
<td>{$supply_order->total_with_discount_te}</td>
</tr>
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Tax value'}</td>
<td>{$supply_order->total_tax}</td>
</tr>
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='Total TI'}</td>
<td>{$supply_order->total_ti}</td>
</tr>
<tr style="line-height:6px; border: none">
<td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 5px; font-weight: bold;">{l s='TOTAL TO PAY'}</td>
<td>{$currency->prefix} {$supply_order->total_ti} {$currency->suffix}</td>
</tr>
</table>
</div>
<!-- / TOTAL -->
</div>