This list is closed, nobody may subscribe to it.
2011 |
Jan
(14) |
Feb
(42) |
Mar
(56) |
Apr
(60) |
May
(54) |
Jun
(48) |
Jul
(74) |
Aug
(52) |
Sep
(68) |
Oct
(64) |
Nov
(42) |
Dec
(62) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2012 |
Jan
(142) |
Feb
(270) |
Mar
(374) |
Apr
(230) |
May
(214) |
Jun
(116) |
Jul
(234) |
Aug
(66) |
Sep
(120) |
Oct
(16) |
Nov
(17) |
Dec
(41) |
2013 |
Jan
(19) |
Feb
(18) |
Mar
(8) |
Apr
(40) |
May
(121) |
Jun
(42) |
Jul
(127) |
Aug
(145) |
Sep
(27) |
Oct
(38) |
Nov
(83) |
Dec
(61) |
2014 |
Jan
(33) |
Feb
(35) |
Mar
(59) |
Apr
(41) |
May
(38) |
Jun
(45) |
Jul
(17) |
Aug
(58) |
Sep
(46) |
Oct
(51) |
Nov
(55) |
Dec
(36) |
2015 |
Jan
(57) |
Feb
(67) |
Mar
(70) |
Apr
(34) |
May
(32) |
Jun
(11) |
Jul
(3) |
Aug
(17) |
Sep
(16) |
Oct
(13) |
Nov
(30) |
Dec
(30) |
2016 |
Jan
(17) |
Feb
(12) |
Mar
(17) |
Apr
(20) |
May
(47) |
Jun
(15) |
Jul
(13) |
Aug
(30) |
Sep
(32) |
Oct
(20) |
Nov
(32) |
Dec
(24) |
2017 |
Jan
(16) |
Feb
|
Mar
(11) |
Apr
(11) |
May
(5) |
Jun
(42) |
Jul
(9) |
Aug
(10) |
Sep
(14) |
Oct
(15) |
Nov
(2) |
Dec
(29) |
2018 |
Jan
(28) |
Feb
(49) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ex...@us...> - 2017-06-19 04:25:06
|
Revision: 7784 http://sourceforge.net/p/web-erp/reponame/7784 Author: exsonqu Date: 2017-06-19 04:25:04 +0000 (Mon, 19 Jun 2017) Log Message: ----------- Modified Paths: -------------- trunk/doc/Change.log Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-19 04:21:27 UTC (rev 7783) +++ trunk/doc/Change.log 2017-06-19 04:25:04 UTC (rev 7784) @@ -1,5 +1,6 @@ webERP Change Log +19/06/17 Exson: Make these classes defined php 7 compliant and keep php4 backwards compatibility. 18/06/17 RChacon: Rename from css/custom/ to from css/WEBootstrap/. 18/06/17 RChacon: Standardise icon size to 36x36 px in css/custom/ (WEBootstrap). 18/06/17 RChacon: Delete unused images in css/xenos/. |
From: <ex...@us...> - 2017-06-19 04:21:30
|
Revision: 7783 http://sourceforge.net/p/web-erp/reponame/7783 Author: exsonqu Date: 2017-06-19 04:21:27 +0000 (Mon, 19 Jun 2017) Log Message: ----------- 19/06/17 Exson: Make these classes defined php 7 compliant and keep php4 backwards compatibility. Modified Paths: -------------- trunk/includes/DefineCartClass.php trunk/includes/DefineContractClass.php trunk/includes/DefineCustAllocsClass.php trunk/includes/DefineImportBankTransClass.php trunk/includes/DefineJournalClass.php trunk/includes/DefineOfferClass.php trunk/includes/DefinePOClass.php trunk/includes/DefinePaymentClass.php trunk/includes/DefineReceiptClass.php trunk/includes/DefineSerialItems.php trunk/includes/DefineShiptClass.php trunk/includes/DefineSpecialOrderClass.php trunk/includes/DefineStockAdjustment.php trunk/includes/DefineStockRequestClass.php trunk/includes/DefineStockTransfers.php trunk/includes/DefineSuppAllocsClass.php trunk/includes/DefineSuppTransClass.php trunk/includes/DefineTenderClass.php Modified: trunk/includes/DefineCartClass.php =================================================================== --- trunk/includes/DefineCartClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineCartClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -62,7 +62,7 @@ var $BuyerName; var $SpecialInstructions; - function Cart(){ + function __construct(){ /*Constructor function initialises a new shopping cart */ $this->LineItems = array(); $this->total=0; @@ -74,6 +74,10 @@ $this->CurrDecimalPlaces=2; //default } + function cart() { + self::__construct(); + } + function add_to_cart($StockID, $Qty, $Descr, @@ -445,7 +449,7 @@ Var $NextSerialNo; Var $GPPercent; - function LineDetails ($LineNumber, + function __construct ($LineNumber, $StockItem, $Descr, $LongDescr, @@ -518,6 +522,60 @@ } } //end constructor function for LineDetails + function LineDetails($LineNumber, + $StockItem, + $Descr, + $LongDescr, + $Qty, + $Prc, + $DiscPercent, + $UOM, + $Volume, + $Weight, + $QOHatLoc, + $MBflag, + $ActDispatchDate, + $QtyInvoiced, + $DiscCat, + $Controlled, + $Serialised, + $DecimalPlaces, + $Narrative, + $TaxCategory, + $ItemDue, + $POLine, + $StandardCost, + $EOQ, + $NextSerialNo, + $ExRate ) { + self::__construct($LineNumber, + $StockItem, + $Descr, + $LongDescr, + $Qty, + $Prc, + $DiscPercent, + $UOM, + $Volume, + $Weight, + $QOHatLoc, + $MBflag, + $ActDispatchDate, + $QtyInvoiced, + $DiscCat, + $Controlled, + $Serialised, + $DecimalPlaces, + $Narrative, + $TaxCategory, + $ItemDue, + $POLine, + $StandardCost, + $EOQ, + $NextSerialNo, + $ExRate ); + } + } Class Tax { @@ -528,7 +586,7 @@ Var $TaxOnTax; var $TaxGLCode; - function Tax ($TaxCalculationOrder, + function __construct ($TaxCalculationOrder, $TaxAuthID, $TaxAuthDescription, $TaxRate, @@ -542,6 +600,20 @@ $this->TaxOnTax = $TaxOnTax; $this->TaxGLCode = $TaxGLCode; } + function Tax ($TaxCalculationOrder, + $TaxAuthID, + $TaxAuthDescription, + $TaxRate, + $TaxOnTax, + $TaxGLCode) { + + self::__construct($TaxCalculationOrder, + $TaxAuthID, + $TaxAuthDescription, + $TaxRate, + $TaxOnTax, + $TaxGLCode); + } } -?> \ No newline at end of file +?> Modified: trunk/includes/DefineContractClass.php =================================================================== --- trunk/includes/DefineContractClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineContractClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -28,7 +28,7 @@ var $ContractBOM; /*array of stockid components required for the contract */ var $ContractReqts; /*array of other items required for the contract */ - function Contract(){ + function __construct(){ /*Constructor function initialises a new Payment batch */ $this->ContractBOM = array(); $this->ContractReqts = array(); @@ -36,6 +36,10 @@ $this->RequirementsCounter=0; $this->Status = 0; } + + function Contract() { + self::__construct; + } function Add_To_ContractBOM($StockID, $ItemDescription, @@ -102,7 +106,7 @@ var $UOM; var $DecimalPlaces; - function ContractComponent ($ComponentID, + function __construct ($ComponentID, $StockID, $ItemDescription, $WorkCentre, @@ -121,6 +125,24 @@ $this->UOM = $UOM; $this->DecimalPlaces = $DecimalPlaces; } + function ContractComponent($ComponentID, + $StockID, + $ItemDescription, + $WorkCentre, + $Quantity, + $ItemCost, + $UOM, + $DecimalPlaces=0){ + + self::__construct($ComponentID, + $StockID, + $ItemDescription, + $WorkCentre, + $Quantity, + $ItemCost, + $UOM, + $DecimalPlaces=0); + } } Class ContractRequirement { @@ -130,7 +152,7 @@ var $Quantity; var $CostPerUnit; - function ContractRequirement ($Requirement, + function __construct ($Requirement, $Quantity, $CostPerUnit, $ContractReqID=0){ @@ -141,5 +163,14 @@ $this->CostPerUnit = $CostPerUnit; $this->ContractReqID = $ContractReqID; } + function ContractRequirement ($Requirement, + $Quantity, + $CostPerUnit, + $ContractReqID=0){ + self::__construct ($Requirement, + $Quantity, + $CostPerUnit, + $ContractReqID=0); + } } -?> \ No newline at end of file +?> Modified: trunk/includes/DefineCustAllocsClass.php =================================================================== --- trunk/includes/DefineCustAllocsClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineCustAllocsClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -17,11 +17,15 @@ var $PrevDiffOnExch; /*The difference on exchange before this allocation */ var $CurrDecimalPlaces; - function Allocation(){ + function __construct(){ /*Constructor function initialises a new debtor allocation*/ $this->Allocs = array(); } + function Allocation(){ + self::__construct; + } + function add_to_AllocsAllocn ($ID, $TransType, $TypeNo, $TransDate, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ // if ($AllocAmt <= ($TransAmount - $PrevAlloc)){ @@ -56,7 +60,7 @@ THERE CAN BE ONLY ONE ... allocation record for each receipt/inovice combination */ - function Allocn ($ID, $TransType, $TypeNo, $TransDate, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ + function __construct ($ID, $TransType, $TypeNo, $TransDate, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ /* Constructor function to add a new Allocn object with passed params */ $this->ID =$ID; @@ -72,6 +76,10 @@ $this->PrevAlloc = $PrevAlloc; $this->PrevAllocRecordID= $PrevAllocRecordID; } + function Allocn($ID, $TransType, $TypeNo, $TransDate, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ + self::__construct($ID, $TransType, $TypeNo, $TransDate, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID); + } + } ?> Modified: trunk/includes/DefineImportBankTransClass.php =================================================================== --- trunk/includes/DefineImportBankTransClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineImportBankTransClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -18,7 +18,7 @@ var $ExchangeRate; var $Trans; - function BankStatement () { + function __construct () { $this->ReportCreated = ''; $this->AccountNumber = ''; $this->AccountName = ''; @@ -32,6 +32,9 @@ $this->CurrDecimalPlaces = 2; $this->ExchangeRate = 1; } + function BankStatement() { + self::__construct(); + } } class BankTrans { @@ -46,7 +49,7 @@ var $GLItemID; var $GLTotal; - function BankTrans ($ValueDate, $Amount) { + function __construct ($ValueDate, $Amount) { $this->ValueDate = $ValueDate; $this->Amount = $Amount; $this->GLEntries = array(); @@ -56,6 +59,9 @@ $this->GLTotal = 0; $this->BankTransID = 0; } + function BankTrans($ValueDate, $Amount) { + self::__construct(($ValueDate, $Amount); + } function Add_To_GLAnalysis($Amount, $Narrative, $GLCode, $GLAccountName, $Tag){ if (isset($GLCode) AND $Amount!=0){ @@ -85,7 +91,7 @@ Var $ID; var $Tag; - function GLAnalysis ($Amount, $Narrative, $ID, $GLCode, $GLAccountName, $Tag){ + function __construct ($Amount, $Narrative, $ID, $GLCode, $GLAccountName, $Tag){ /* Constructor function to add a new JournalGLAnalysis object with passed params */ $this->Amount =$Amount; @@ -95,6 +101,9 @@ $this->ID = $ID; $this->Tag = $Tag; } + function GLAnalysis($Amount, $Narrative, $ID, $GLCode, $GLAccountName, $Tag){ + self::__construct($Amount, $Narrative, $ID, $GLCode, $GLAccountName, $Tag); + } } ?> Modified: trunk/includes/DefineJournalClass.php =================================================================== --- trunk/includes/DefineJournalClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineJournalClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -13,7 +13,7 @@ var $BankAccounts; /*Array of bank account GLCodes that must be posted to by a bank payment or receipt to ensure integrity for matching off vs bank stmts */ - function Journal(){ + function __construct(){ /*Constructor function initialises a new journal */ $this->GLEntries = array(); $this->GLItemCounter=0; @@ -21,6 +21,9 @@ $this->GLItemID=0; $this->BankAccounts = array(); } + function Journal() { + self::__construct(); + } function Add_To_GLAnalysis($Amount, $Narrative, $GLCode, $GLActName, $tag, $assetid=1){ if (isset($GLCode) AND $Amount!=0){ @@ -52,7 +55,7 @@ var $tag; var $assetid; - function JournalGLAnalysis ($Amt, $Narr, $id, $GLCode, $GLActName, $tag, $assetid){ + function __construct ($Amt, $Narr, $id, $GLCode, $GLActName, $tag, $assetid){ /* Constructor function to add a new JournalGLAnalysis object with passed params */ $this->Amount =$Amt; @@ -63,6 +66,10 @@ $this->tag = $tag; $this->assetid = $assetid; } + function JournalGLAnalysis($Amt, $Narr, $id, $GLCode, $GLActName, $tag, $assetid){ + self::__construct($Amt, $Narr, $id, $GLCode, $GLActName, $tag, $assetid); + + } } ?> Modified: trunk/includes/DefineOfferClass.php =================================================================== --- trunk/includes/DefineOfferClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineOfferClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -17,7 +17,7 @@ var $version; var $OfferMailText; - function Offer($Supplier){ + function __construct($Supplier){ /*Constructor function initialises a new purchase offer object */ global $db; $this->LineItems = array(); @@ -35,6 +35,9 @@ $this->EmailAddress = $myrow['email']; $this->CurrCode = $myrow['currcode']; } + function Offer ($Supplier) { + self::__construct($Supplier); + } function add_to_offer( $LineNo, $StockID, @@ -198,7 +201,7 @@ var $Deleted; var $ExpiryDate; - function LineDetails ($LineNo, + function __construct ($LineNo, $StockItem, $Qty, $ItemDescr, @@ -218,6 +221,23 @@ $this->ExpiryDate = $ExpiryDate; $this->Deleted = False; } + function LineDetails($LineNo, + $StockItem, + $Qty, + $ItemDescr, + $Price, + $UOM, + $DecimalPlaces, + $ExpiryDate) { + self::__construct($LineNo, + $StockItem, + $Qty, + $ItemDescr, + $Price, + $UOM, + $DecimalPlaces, + $ExpiryDate); + } } ?> Modified: trunk/includes/DefinePOClass.php =================================================================== --- trunk/includes/DefinePOClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefinePOClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -50,7 +50,7 @@ var $Contact; var $Port; - function PurchOrder(){ + function __construct(){ /*Constructor function initialises a new purchase order object */ $this->LineItems = array(); $this->total=0; @@ -57,6 +57,10 @@ $this->LinesOnOrder=0; } + function PurchOrder() { + self::__construct(); + } + function add_to_order($LineNo, $StockID, $Serialised, @@ -234,7 +238,7 @@ Var $SerialItems; /*An array holding the batch/serial numbers and quantities in each batch*/ Var $AssetID; - function LineDetails ( $LineNo, + function __construct ( $LineNo, $StockItem, $Serialised, $Controlled, @@ -291,5 +295,50 @@ $this->AssetID = $AssetID; } + function LineDetails($LineNo, + $StockItem, + $Serialised, + $Controlled, + $Qty, + $ItemDescr, + $Price, + $UOM, + $GLCode, + $ReqDelDate, + $ShiptRef =0, + $Completed, + $JobRef, + $QtyInv, + $QtyRecd, + $GLActName, + $DecimalPlaces, + $SuppliersUnit, + $ConversionFactor, + $LeadTime, + $Suppliers_PartNo, + $AssetID) { + self::__construct($LineNo, + $StockItem, + $Serialised, + $Controlled, + $Qty, + $ItemDescr, + $Price, + $UOM, + $GLCode, + $ReqDelDate, + $ShiptRef =0, + $Completed, + $JobRef, + $QtyInv, + $QtyRecd, + $GLActName, + $DecimalPlaces, + $SuppliersUnit, + $ConversionFactor, + $LeadTime, + $Suppliers_PartNo, + $AssetID); + } } -?> \ No newline at end of file +?> Modified: trunk/includes/DefinePaymentClass.php =================================================================== --- trunk/includes/DefinePaymentClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefinePaymentClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -26,7 +26,7 @@ var $Narrative; var $GLItemCounter; /*Counter for the number of GL accounts being posted to by the Payment */ - function Payment(){ + function __construct(){ /*Constructor function initialises a new Payment batch */ $this->GLItems = array(); $this->GLItemCounter=0; @@ -41,6 +41,10 @@ } + function Payment() { + self::__construct; + } + function Add_To_GLAnalysis($Amount, $Narrative, $GLCode, @@ -79,7 +83,7 @@ var $Tag; var $Cheque; - function PaymentGLAnalysis ($Amt, + function __construct ($Amt, $Narr, $id, $GLCode, @@ -96,6 +100,21 @@ $this->Tag = $Tag; $this->Cheque = $Cheque; } + function PaymentGLAnalysis($Amt, + $Narr, + $id, + $GLCode, + $GLActName, + $Tag, + $Cheque){ + self::__construct($Amt, + $Narr, + $id, + $GLCode, + $GLActName, + $Tag, + $Cheque); + } } -?> \ No newline at end of file +?> Modified: trunk/includes/DefineReceiptClass.php =================================================================== --- trunk/includes/DefineReceiptClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineReceiptClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -20,7 +20,7 @@ var $total; /*Total of the batch of receipts in the currency of the company*/ var $ItemCounter; /*Counter for the number of customer receipts in the batch */ - function Receipt_Batch(){ + function __construct(){ /*Constructor function initialises a new receipt batch */ $this->Items = array(); $this->ItemCounter=0; @@ -27,6 +27,10 @@ $this->total=0; } + function Receipt_Batch() { + self::__construct(); + } + function add_to_batch($Amount, $Customer, $Discount, $Narrative, $GLCode, $PayeeBankDetail, $CustomerName, $tag){ if ((isset($Customer) OR isset($GLCode)) AND ($Amount + $Discount) !=0){ $this->Items[$this->ItemCounter] = new Receipt($Amount, $Customer, $Discount, $Narrative, $this->ItemCounter, $GLCode, $PayeeBankDetail, $CustomerName, $tag); @@ -58,7 +62,7 @@ var $tag; var $TagName; - function Receipt ($Amt, $Cust, $Disc, $Narr, $id, $GLCode, $PayeeBankDetail, $CustomerName, $Tag){ + function __construct ($Amt, $Cust, $Disc, $Narr, $id, $GLCode, $PayeeBankDetail, $CustomerName, $Tag){ global $db; /* Constructor function to add a new Receipt object with passed params */ $this->Amount =$Amt; @@ -76,6 +80,9 @@ $this->TagName = $TagRow['tagdescription']; } } + function Receipt($Amt, $Cust, $Disc, $Narr, $id, $GLCode, $PayeeBankDetail, $CustomerName, $Tag){ + self::__construct($Amt, $Cust, $Disc, $Narr, $id, $GLCode, $PayeeBankDetail, $CustomerName, $Tag); + } } ?> Modified: trunk/includes/DefineSerialItems.php =================================================================== --- trunk/includes/DefineSerialItems.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineSerialItems.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -40,11 +40,17 @@ var $ExpiryDate; //Constructor - function SerialItem($BundleRef, $BundleQty, $ExpiryDate='0000-00-00'){ + function __construct($BundleRef, $BundleQty, $ExpiryDate='0000-00-00'){ $this->BundleRef = $BundleRef; $this->BundleQty = $BundleQty; $this->ExpiryDate = $ExpiryDate; } + + function SerialItem($BundleRef, $BundleQty, $ExpiryDate='0000-00-00'){ + self::__construct($BundleRef, $BundleQty, $ExpiryDate='0000-00-00'); + } + + }//class SerialItem -?> \ No newline at end of file +?> Modified: trunk/includes/DefineShiptClass.php =================================================================== --- trunk/includes/DefineShiptClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineShiptClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -16,7 +16,7 @@ var $Closed; var $CurrDecimalPlaces; - function Shipment(){ + function __construct(){ /*Constructor function initialises a new Shipment object */ $this->LineItems = array(); $this->AccumValue =0; @@ -23,6 +23,10 @@ $this->Closed =0; } + function Shipment() { + self::__construct(); + } + function Add_To_Shipment($PODetailItem, $OrderNo, $StockID, @@ -89,7 +93,7 @@ var $DecimalPlaces; - function LineDetails ($PODetailItem, + function __construct ($PODetailItem, $OrderNo, $StockID, $ItemDescr, @@ -116,6 +120,32 @@ $this->StdCostUnit = $StdCostUnit; $this->DecimalPlaces = $DecimalPlaces; } + + function LineDetails($PODetailItem, + $OrderNo, + $StockID, + $ItemDescr, + $QtyInvoiced, + $UnitPrice, + $UOM, + $DelDate, + $QuantityOrd, + $QuantityRecd, + $StdCostUnit, + $DecimalPlaces=2) { + self::__construct($PODetailItem, + $OrderNo, + $StockID, + $ItemDescr, + $QtyInvoiced, + $UnitPrice, + $UOM, + $DelDate, + $QuantityOrd, + $QuantityRecd, + $StdCostUnit, + $DecimalPlaces=2); + } } -?> \ No newline at end of file +?> Modified: trunk/includes/DefineSpecialOrderClass.php =================================================================== --- trunk/includes/DefineSpecialOrderClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineSpecialOrderClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -28,7 +28,7 @@ var $Status; var $AllowPrintPO; - function SpecialOrder(){ + function __construct(){ /*Constructor function initialises a new special order object */ $this->LineItems = array(); $this->total=0; @@ -36,6 +36,10 @@ $this->AllowPrintPO=0; } + function SpecialOrder() { + self::__construct(); + } + function add_to_order($LineNo, $Qty, $ItemDescr, $Price, $Cost, $StkCat, $ReqDelDate){ if ($Qty!=0 AND isset($Qty)){ $this->LineItems[$LineNo] = new LineDetails($LineNo, $Qty, $ItemDescr, $Price, $Cost, $StkCat, $ReqDelDate); @@ -71,7 +75,7 @@ var $ReqDelDate; var $PartCode; - function LineDetails ($LineNo, $Qty, $ItemDescr, $Price, $Cost, $StkCat, $ReqDelDate){ + function __construct ($LineNo, $Qty, $ItemDescr, $Price, $Cost, $StkCat, $ReqDelDate){ /* Constructor function to add a new LineDetail object with passed params */ $this->LineNo = $LineNo; @@ -82,6 +86,11 @@ $this->Cost = $Cost; $this->StkCat = $StkCat; } + + function LineDetails ($LineNo, $Qty, $ItemDescr, $Price, $Cost, $StkCat, $ReqDelDate){ + self::__construct($LineNo, $Qty, $ItemDescr, $Price, $Cost, $StkCat, $ReqDelDate); + } + } ?> Modified: trunk/includes/DefineStockAdjustment.php =================================================================== --- trunk/includes/DefineStockAdjustment.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineStockAdjustment.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -15,7 +15,7 @@ var $SerialItems; /*array to hold controlled items*/ //Constructor - function StockAdjustment(){ + function __construct(){ $this->StockID = ''; $this->StockLocation = ''; $this->Controlled = ''; @@ -28,5 +28,9 @@ $this->Quantity = 0; $this->tag=0; } + + function StockAdjustment() { + self::__construct(); + } } -?> \ No newline at end of file +?> Modified: trunk/includes/DefineStockRequestClass.php =================================================================== --- trunk/includes/DefineStockRequestClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineStockRequestClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -9,12 +9,16 @@ var $Narrative; var $LineCounter=0; - function StockRequest(){ + function __construct(){ /*Constructor function initialises a new shopping cart */ $this->DispatchDate = date($_SESSION['DefaultDateFormat']); $this->LineItems=array(); } + function StockRequest(){ + self::__construct(); + } + function AddLine($StockID, $ItemDescription, $Quantity, @@ -42,7 +46,7 @@ var $UOM; var $LineNumber; - function LineDetails($StockID, + function __construct($StockID, $ItemDescription, $Quantity, $UOM, @@ -57,6 +61,20 @@ $this->UOM=$UOM; } + function LineDetails($StockID, + $ItemDescription, + $Quantity, + $UOM, + $DecimalPlaces, + $LineNumber) { + self::__construct($StockID, + $ItemDescription, + $Quantity, + $UOM, + $DecimalPlaces, + $LineNumber); + } + } -?> \ No newline at end of file +?> Modified: trunk/includes/DefineStockTransfers.php =================================================================== --- trunk/includes/DefineStockTransfers.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineStockTransfers.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -15,7 +15,7 @@ Var $TranDate; Var $TransferItem; /*Array of LineItems */ - function StockTransfer($TrfID, + function __construct($TrfID, $StockLocationFrom, $StockLocationFromName, $StockLocationFromAccount, @@ -34,6 +34,23 @@ $this->TranDate = $TranDate; $this->TransferItem=array(); /*Array of LineItem s */ } + function StockTransfer($TrfID, + $StockLocationFrom, + $StockLocationFromName, + $StockLocationFromAccount, + $StockLocationTo, + $StockLocationToName, + $StockLocationToAccount, + $TranDate ) { + self::__construct($TrfID, + $StockLocationFrom, + $StockLocationFromName, + $StockLocationFromAccount, + $StockLocationTo, + $StockLocationToName, + $StockLocationToAccount, + $TranDate ); + } } class LineItem { @@ -49,7 +66,7 @@ var $Perishable; var $SerialItems; /*array to hold controlled items*/ //Constructor - function LineItem($StockID, + function __construct($StockID, $ItemDescription, $Quantity, $PartUnit, @@ -73,5 +90,23 @@ } $this->SerialItems = array(); } + + function LineItem($StockID, + $ItemDescription, + $Quantity, + $PartUnit, + $Controlled, + $Serialised, + $Perishable, + $DecimalPlaces) { + self::__construct($StockID, + $ItemDescription, + $Quantity, + $PartUnit, + $Controlled, + $Serialised, + $Perishable, + $DecimalPlaces); + } } ?> Modified: trunk/includes/DefineSuppAllocsClass.php =================================================================== --- trunk/includes/DefineSuppAllocsClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineSuppAllocsClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -18,11 +18,15 @@ var $PrevDiffOnExch; /*The difference on exchange before this allocation */ var $CurrDecimalPlaces; /*The number of decimal places to display for the currency being allocated */ - function Allocation(){ + function __construct(){ /*Constructor function initialises a new supplier allocation*/ $this->Allocs = array(); } + function Allocation(){ + self::__construct(); + } + function add_to_AllocsAllocn ($ID, $TransType, $TypeNo, $TransDate, $SuppRef, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ if ($TransAmount >0){ @@ -59,7 +63,7 @@ THERE CAN BE ONLY ONE ... allocation record for each payment/inovice combination */ - function Allocn ($ID, $TransType, $TypeNo, $TransDate, $SuppRef, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ + function __construct ($ID, $TransType, $TypeNo, $TransDate, $SuppRef, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ /* Constructor function to add a new Allocn object with passed params */ $this->ID = $ID; @@ -76,6 +80,12 @@ $this->PrevAlloc = $PrevAlloc; $this->PrevAllocRecordID= $PrevAllocRecordID; } + + function Allocn($ID, $TransType, $TypeNo, $TransDate, $SuppRef, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID){ + + self::__construct($ID, $TransType, $TypeNo, $TransDate, $SuppRef, $AllocAmt, $TransAmount, $ExRate, $DiffOnExch, $PrevDiffOnExch, $PrevAlloc, $PrevAllocRecordID); + + } } ?> Modified: trunk/includes/DefineSuppTransClass.php =================================================================== --- trunk/includes/DefineSuppTransClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineSuppTransClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -38,7 +38,7 @@ var $Hold; var $SupplierRef=''; - function SuppTrans(){ + function __construct(){ /*Constructor function initialises a new Supplier Transaction object */ $this->GRNs = array(); $this->GLCodes = array(); @@ -48,6 +48,10 @@ $this->Taxes = array(); } + function SuppTrans() { + self::__construct(); + } + function GetTaxes () { global $db; @@ -333,7 +337,7 @@ var $GRNBatchNo; var $SupplierRef; - function GRNs ($GRNNo, + function __construct ($GRNNo, $PODetailItem, $ItemCode, $ItemDescription, @@ -379,6 +383,48 @@ $this->SupplierRef = $SupplierRef; } + function GRNs($GRNNo, + $PODetailItem, + $ItemCode, + $ItemDescription, + $QtyRecd, + $Prev_QuantityInv, + $This_QuantityInv, + $OrderPrice, + $ChgPrice, + $Complete, + $StdCostUnit=0, + $ShiptRef, + $JobRef, + $GLCode, + $PONo, + $AssetID, + $Hold=0, + $DecimalPlaces=2, + $GRNBatchNo, + $SupplierRef=''){ + self::__construct($GRNNo, + $PODetailItem, + $ItemCode, + $ItemDescription, + $QtyRecd, + $Prev_QuantityInv, + $This_QuantityInv, + $OrderPrice, + $ChgPrice, + $Complete, + $StdCostUnit=0, + $ShiptRef, + $JobRef, + $GLCode, + $PONo, + $AssetID, + $Hold=0, + $DecimalPlaces=2, + $GRNBatchNo, + $SupplierRef=''); + } + function Modify ($PODetailItem, $ItemCode, $ItemDescription, @@ -424,7 +470,7 @@ Var $Tag; Var $TagName; - function GLCodes ($Counter, $GLCode, $GLActName, $Amount, $Narrative, $Tag=0, $TagName=''){ + function __construct($Counter, $GLCode, $GLActName, $Amount, $Narrative, $Tag=0, $TagName=''){ global $db; /* Constructor function to add a new GLCodes object with passed params */ @@ -443,6 +489,12 @@ $this->TagName=$TagMyrow['tagdescription']; } } + + function GLCodes($Counter, $GLCode, $GLActName, $Amount, $Narrative, $Tag=0, $TagName=''){ + self::__construct($Counter, $GLCode, $GLActName, $Amount, $Narrative, $Tag=0, $TagName=''); + } + + } Class Shipment { @@ -450,12 +502,16 @@ Var $Counter; Var $ShiptRef; Var $Amount; - - function Shipment ($Counter, $ShiptRef, $Amount){ + + function __construct($Counter, $ShiptRef, $Amount){ $this->Counter = $Counter; $this->ShiptRef = $ShiptRef; $this->Amount = $Amount; } + + function Shipment ($Counter, $ShiptRef, $Amount){ + self::__construct($Counter, $ShiptRef, $Amount); + } } Class Asset { @@ -466,7 +522,7 @@ Var $CostAct; Var $Amount; - function Asset ($Counter, $AssetID, $Amount){ + function __construct($Counter, $AssetID, $Amount){ global $db; $this->Counter = $Counter; $this->AssetID = $AssetID; @@ -481,6 +537,10 @@ $this->Description = $AssetRow['description']; $this->CostAct = $AssetRow['costact']; } + + function Asset ($Counter, $AssetID, $Amount){ + self::__construct($Counter, $AssetID, $Amount); + } } Class Contract { @@ -491,7 +551,7 @@ Var $Narrative; Var $AniticipatedCost; - function Contract ($Counter, $ContractRef, $Amount,$Narrative,$AnticipatedCost){ + function __construct($Counter, $ContractRef, $Amount,$Narrative,$AnticipatedCost){ $this->Counter = $Counter; $this->ContractRef = $ContractRef; $this->Amount = $Amount; @@ -498,6 +558,10 @@ $this->Narrative = $Narrative; $this->AnticipatedCost = $AnticipatedCost; } + + function Contract ($Counter, $ContractRef, $Amount,$Narrative,$AnticipatedCost){ + self::__construct($Counter, $AssetID, $Amount,$Narrative,$AnticipatedCost); + } } @@ -510,7 +574,7 @@ Var $TaxGLCode; Var $TaxOvAmount; - function Tax ($TaxCalculationOrder, + function __construct ($TaxCalculationOrder, $TaxAuthID, $TaxAuthDescription, $TaxRate, @@ -524,5 +588,20 @@ $this->TaxOnTax = $TaxOnTax; $this->TaxGLCode = $TaxGLCode; } + + function Tax ($TaxCalculationOrder, + $TaxAuthID, + $TaxAuthDescription, + $TaxRate, + $TaxOnTax, + $TaxGLCode){ + self::__construct($TaxCalculationOrder, + $TaxAuthID, + $TaxAuthDescription, + $TaxRate, + $TaxOnTax, + $TaxGLCode); + } + } ?> Modified: trunk/includes/DefineTenderClass.php =================================================================== --- trunk/includes/DefineTenderClass.php 2017-06-19 02:12:21 UTC (rev 7782) +++ trunk/includes/DefineTenderClass.php 2017-06-19 04:21:27 UTC (rev 7783) @@ -30,7 +30,7 @@ var $contact; var $Suppliers; - function tender(){ + function __construct(){ /*Constructor function initialises a new purchase tender object */ $this->LineItems = array(); $this->Suppliers = array(); @@ -38,6 +38,10 @@ $this->SuppliersOnTender=0; } + function Tender(){ + self::__construct(); + } + function EmailSuppliers() { $EmailText= _('This email has been automatically generated by webERP') . "\n"; $EmailText.= _('You are invited to Tender for the following products to be delivered to') . ' ' . $_SESSION['CompanyRecord']['coyname'] . "\n"; @@ -235,7 +239,7 @@ var $Deleted; var $ExpiryDate; - function LineDetails ($LineNo, + function __construct ($LineNo, $StockItem, $Qty, $ItemDescr, @@ -253,6 +257,23 @@ $this->ExpiryDate = $ExpiryDate; $this->Deleted = False; } + + function LineDetails($LineNo, + $StockItem, + $Qty, + $ItemDescr, + $UOM, + $DecimalPlaces, + $ExpiryDate) { + self::__construct($LineNo, + $StockItem, + $Qty, + $ItemDescr, + $UOM, + $DecimalPlaces, + $ExpiryDate); + } + } Class Supplier { @@ -262,7 +283,7 @@ var $EmailAddress; var $Responded; - function Supplier ($SupplierCode, + function __construct ($SupplierCode, $SupplierName, $EmailAddress) { $this->SupplierCode = $SupplierCode; @@ -270,6 +291,16 @@ $this->EmailAddress = $EmailAddress; $this->Responded = 0; } + + function Supplier ($SupplierCode, + $SupplierName, + $EmailAddress) { + self::__construct($SupplierCode, + $SupplierName, + $EmailAddress); + } + + } ?> |
From: <ex...@us...> - 2017-06-19 02:12:24
|
Revision: 7782 http://sourceforge.net/p/web-erp/reponame/7782 Author: exsonqu Date: 2017-06-19 02:12:21 +0000 (Mon, 19 Jun 2017) Log Message: ----------- 06/19/17 Exson: Make php-gettext php7 compatible. Modified Paths: -------------- trunk/includes/php-gettext/gettext.php trunk/includes/php-gettext/streams.php Modified: trunk/includes/php-gettext/gettext.php =================================================================== --- trunk/includes/php-gettext/gettext.php 2017-06-18 20:24:23 UTC (rev 7781) +++ trunk/includes/php-gettext/gettext.php 2017-06-19 02:12:21 UTC (rev 7782) @@ -98,7 +98,7 @@ * @param object Reader the StreamReader object * @param boolean enable_cache Enable or disable caching of strings (default on) */ - function gettext_reader($Reader, $enable_cache = true) { + public function __construct($Reader, $enable_cache = true) { // If there isn't a StreamReader, turn on short circuit mode. if (! $Reader || isset($Reader->error) ) { $this->short_circuit = true; Modified: trunk/includes/php-gettext/streams.php =================================================================== --- trunk/includes/php-gettext/streams.php 2017-06-18 20:24:23 UTC (rev 7781) +++ trunk/includes/php-gettext/streams.php 2017-06-19 02:12:21 UTC (rev 7782) @@ -49,7 +49,7 @@ var $_pos; var $_str; - function StringReader($str='') { + function __construct($str='') { $this->_str = $str; $this->_pos = 0; } @@ -86,7 +86,7 @@ var $_fd; var $_length; - function FileReader($filename) { + function __construct($filename) { if (file_exists($filename)) { $this->_length=filesize($filename); @@ -143,7 +143,7 @@ // Preloads entire file in memory first, then creates a StringReader // over it (it assumes knowledge of StringReader internals) class CachedFileReader extends StringReader { - function CachedFileReader($filename) { + function __construct ($filename) { if (file_exists($filename)) { $length=filesize($filename); |
From: <rc...@us...> - 2017-06-18 20:24:25
|
Revision: 7781 http://sourceforge.net/p/web-erp/reponame/7781 Author: rchacon Date: 2017-06-18 20:24:23 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Rename from css/custom/ to from css/WEBootstrap/ Modified Paths: -------------- trunk/doc/Change.log Added Paths: ----------- trunk/css/WEBootstrap/ Removed Paths: ------------- trunk/css/custom/ Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 18:56:51 UTC (rev 7780) +++ trunk/doc/Change.log 2017-06-18 20:24:23 UTC (rev 7781) @@ -1,5 +1,6 @@ webERP Change Log +18/06/17 RChacon: Rename from css/custom/ to from css/WEBootstrap/. 18/06/17 RChacon: Standardise icon size to 36x36 px in css/custom/ (WEBootstrap). 18/06/17 RChacon: Delete unused images in css/xenos/. 18/06/17 Tim (committed by RChacon): Improve jump to enter a GL receipt if 'Type'=='GL' in CustomerReceipt.php. |
From: <rc...@us...> - 2017-06-18 18:56:53
|
Revision: 7780 http://sourceforge.net/p/web-erp/reponame/7780 Author: rchacon Date: 2017-06-18 18:56:51 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Standardise icon size to 36x36 px in css/custom/ (WEBootstrap) Modified Paths: -------------- trunk/css/custom/default.css trunk/css/custom/images/allocation.png trunk/css/custom/images/ar.png trunk/css/custom/images/bank.png trunk/css/custom/images/company.png trunk/css/custom/images/contract.png trunk/css/custom/images/credit.png trunk/css/custom/images/currency.png trunk/css/custom/images/email.png trunk/css/custom/images/error.png trunk/css/custom/images/folder_add.png trunk/css/custom/images/folders.png trunk/css/custom/images/gl.png trunk/css/custom/images/group_add.png trunk/css/custom/images/help.png trunk/css/custom/images/inquiries.png trunk/css/custom/images/magnifier.png trunk/css/custom/images/maintenance.png trunk/css/custom/images/money_add.png trunk/css/custom/images/money_delete.png trunk/css/custom/images/note_add.png trunk/css/custom/images/pdf.png trunk/css/custom/images/preview.png trunk/css/custom/images/printer.png trunk/css/custom/images/reports.png trunk/css/custom/images/sales.png trunk/css/custom/images/security.png trunk/css/custom/images/transactions.png trunk/css/custom/images/user.png trunk/doc/Change.log Modified: trunk/css/custom/default.css =================================================================== --- trunk/css/custom/default.css 2017-06-18 17:26:33 UTC (rev 7779) +++ trunk/css/custom/default.css 2017-06-18 18:56:51 UTC (rev 7780) @@ -1,19 +1,18 @@ -/* $Id: default.css 7166 2016-09-07 21:18:59Z giankocr $*/ +/* $Id: default.css 7166 2016-09-07 21:18:59Z giankocr $*/ +/* WEBootstrap theme by giankocr. */ +/* WEBootstrap is a bootstrap theme design for WebERP. */ +/* Design guidelines: + Fonts are ??px hight. + Icons are 36px x 36px size. +*/ /*** -WEBootstrap Themei -by giankocr. - -WEBootstrap is a bootstrap theme design for WebERP. - NOTE: This CSS is not yet fully optimized. Some styles maybe redundant and not supported by some browser. - -***/ - - - - + +***/ + + /*** Default Styles ***/ @import url(http://fonts.googleapis.com/css?family=Raleway); @import url('css/custom.css'); Modified: trunk/css/custom/images/allocation.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/ar.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/bank.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/company.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/contract.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/credit.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/currency.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/email.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/error.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/folder_add.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/folders.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/gl.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/group_add.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/help.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/inquiries.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/magnifier.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/maintenance.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/money_add.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/money_delete.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/note_add.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/pdf.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/preview.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/printer.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/reports.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/sales.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/security.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/transactions.png =================================================================== (Binary files differ) Modified: trunk/css/custom/images/user.png =================================================================== (Binary files differ) Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 17:26:33 UTC (rev 7779) +++ trunk/doc/Change.log 2017-06-18 18:56:51 UTC (rev 7780) @@ -1,5 +1,6 @@ webERP Change Log +18/06/17 RChacon: Standardise icon size to 36x36 px in css/custom/ (WEBootstrap). 18/06/17 RChacon: Delete unused images in css/xenos/. 18/06/17 Tim (committed by RChacon): Improve jump to enter a GL receipt if 'Type'=='GL' in CustomerReceipt.php. 18/06/17 RChacon: Add missing images and delete unused images in css/custom/. |
From: <rc...@us...> - 2017-06-18 17:26:35
|
Revision: 7779 http://sourceforge.net/p/web-erp/reponame/7779 Author: rchacon Date: 2017-06-18 17:26:33 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Delete unused images in css/xenos/ Modified Paths: -------------- trunk/css/xenos/default.css trunk/css/xenos/images/cross.svg trunk/css/xenos/images/next.svg trunk/css/xenos/images/previous.svg trunk/css/xenos/images/return.svg trunk/css/xenos/images/tick.svg trunk/doc/Change.log Removed Paths: ------------- trunk/css/xenos/images/cross.png trunk/css/xenos/images/previous.png trunk/css/xenos/images/tick.png Modified: trunk/css/xenos/default.css =================================================================== --- trunk/css/xenos/default.css 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/css/xenos/default.css 2017-06-18 17:26:33 UTC (rev 7779) @@ -1,16 +1,18 @@ /* $Id: default.css 7166 2015-02-21 21:18:59Z Khwunchai $*/ +/* Xenos theme by Khwunchai J. */ +/* Xenos is a very clean and classy looking theme design for WebERP. */ +/* Design guidelines: + Fonts are 10pt hight. + Icons are ??px x ??px size. +*/ + /*** - -Xenos Theme -by Khwunchai J. - -Xenos is a very clean and classy looking theme design for WebERP. - NOTE: This CSS is not yet fully optimized. Some styles maybe redundant and not supported by some browser. ***/ + button img { /* Describes how button image should be displayed. */ height:21px; Deleted: trunk/css/xenos/images/cross.png =================================================================== (Binary files differ) Modified: trunk/css/xenos/images/cross.svg =================================================================== --- trunk/css/xenos/images/cross.svg 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/css/xenos/images/cross.svg 2017-06-18 17:26:33 UTC (rev 7779) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> Modified: trunk/css/xenos/images/next.svg =================================================================== --- trunk/css/xenos/images/next.svg 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/css/xenos/images/next.svg 2017-06-18 17:26:33 UTC (rev 7779) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> Deleted: trunk/css/xenos/images/previous.png =================================================================== (Binary files differ) Modified: trunk/css/xenos/images/previous.svg =================================================================== --- trunk/css/xenos/images/previous.svg 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/css/xenos/images/previous.svg 2017-06-18 17:26:33 UTC (rev 7779) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> Modified: trunk/css/xenos/images/return.svg =================================================================== --- trunk/css/xenos/images/return.svg 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/css/xenos/images/return.svg 2017-06-18 17:26:33 UTC (rev 7779) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="64" height="64" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="16" height="16" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> Deleted: trunk/css/xenos/images/tick.png =================================================================== (Binary files differ) Modified: trunk/css/xenos/images/tick.svg =================================================================== --- trunk/css/xenos/images/tick.svg 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/css/xenos/images/tick.svg 2017-06-18 17:26:33 UTC (rev 7779) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 17:00:53 UTC (rev 7778) +++ trunk/doc/Change.log 2017-06-18 17:26:33 UTC (rev 7779) @@ -1,5 +1,6 @@ webERP Change Log +18/06/17 RChacon: Delete unused images in css/xenos/. 18/06/17 Tim (committed by RChacon): Improve jump to enter a GL receipt if 'Type'=='GL' in CustomerReceipt.php. 18/06/17 RChacon: Add missing images and delete unused images in css/custom/. 18/06/17 Exson: Fixed a typo in GLPostings.inc. |
From: <rc...@us...> - 2017-06-18 17:00:56
|
Revision: 7778 http://sourceforge.net/p/web-erp/reponame/7778 Author: rchacon Date: 2017-06-18 17:00:53 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Improve jump to enter a GL receipt if 'Type'=='GL' in CustomerReceipt.php (by Tim). Modified Paths: -------------- trunk/CustomerReceipt.php trunk/doc/Change.log Modified: trunk/CustomerReceipt.php =================================================================== --- trunk/CustomerReceipt.php 2017-06-18 16:30:01 UTC (rev 7777) +++ trunk/CustomerReceipt.php 2017-06-18 17:00:53 UTC (rev 7778) @@ -600,13 +600,7 @@ echo '<div class="centre noprint">', '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/printer.png" title="' . _('Print') . '" alt="" />' . ' ' . '<a href="' . $RootPath . '/PDFBankingSummary.php?BatchNo=' . $_SESSION['ReceiptBatch' . $identifier]->BatchNo . '">' . _('Print PDF Batch Summary') . '</a></p>'; echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/allocation.png" title="' . _('Allocate') . '" alt="" />' . ' ' . '<a href="' . $RootPath . '/CustomerAllocations.php">' . _('Allocate Receipts') . '</a></p>'; - echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/transactions.png" title="', _('Enter Receipts'), '" /> ', '<a href="', $RootPath, '/CustomerReceipt.php?NewReceipt=Yes&Type='; - if ($_GET['Type']=='GL') { - echo 'GL'; - } else { - echo 'Customer'; - } - echo '">', _('Enter Receipts'), '</a></p>', + echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/transactions.png" title="', _('Enter Receipts'), '" /> ', '<a href="', $RootPath, '/CustomerReceipt.php?NewReceipt=Yes&Type=', urlencode($_GET['Type']), '">', _('Enter Receipts'), '</a></p>', '</div>'; unset($_SESSION['ReceiptBatch' . $identifier]); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 16:30:01 UTC (rev 7777) +++ trunk/doc/Change.log 2017-06-18 17:00:53 UTC (rev 7778) @@ -1,5 +1,6 @@ webERP Change Log +18/06/17 Tim (committed by RChacon): Improve jump to enter a GL receipt if 'Type'=='GL' in CustomerReceipt.php. 18/06/17 RChacon: Add missing images and delete unused images in css/custom/. 18/06/17 Exson: Fixed a typo in GLPostings.inc. 18/06/17 Giankocr created a custom theme for webERP, Exson port part of it to webERP. |
From: <rc...@us...> - 2017-06-18 16:30:04
|
Revision: 7777 http://sourceforge.net/p/web-erp/reponame/7777 Author: rchacon Date: 2017-06-18 16:30:01 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Roll back r7775 Modified Paths: -------------- trunk/css/default/images/cross.svg trunk/css/default/images/next.svg trunk/css/default/images/previous.svg trunk/css/default/images/return.svg trunk/css/default/images/tick.svg Added Paths: ----------- trunk/css/custom/images/cross.svg trunk/css/custom/images/next.svg trunk/css/custom/images/previous.svg trunk/css/custom/images/return.svg trunk/css/custom/images/tick.svg trunk/css/default/images/allocation.gif trunk/css/default/images/ar.gif trunk/css/default/images/company.gif trunk/css/default/images/folders.gif trunk/css/default/images/inventory.gif trunk/css/default/images/maintenance.gif trunk/css/default/images/reports.gif trunk/css/default/images/transactions.gif Added: trunk/css/custom/images/cross.svg =================================================================== --- trunk/css/custom/images/cross.svg (rev 0) +++ trunk/css/custom/images/cross.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> Added: trunk/css/custom/images/next.svg =================================================================== --- trunk/css/custom/images/next.svg (rev 0) +++ trunk/css/custom/images/next.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> Added: trunk/css/custom/images/previous.svg =================================================================== --- trunk/css/custom/images/previous.svg (rev 0) +++ trunk/css/custom/images/previous.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> Added: trunk/css/custom/images/return.svg =================================================================== --- trunk/css/custom/images/return.svg (rev 0) +++ trunk/css/custom/images/return.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="36" height="36" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> Added: trunk/css/custom/images/tick.svg =================================================================== --- trunk/css/custom/images/tick.svg (rev 0) +++ trunk/css/custom/images/tick.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> Added: trunk/css/default/images/allocation.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/allocation.gif =================================================================== --- trunk/css/default/images/allocation.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/allocation.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/allocation.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: trunk/css/default/images/ar.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/ar.gif =================================================================== --- trunk/css/default/images/ar.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/ar.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/ar.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: trunk/css/default/images/company.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/company.gif =================================================================== --- trunk/css/default/images/company.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/company.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/company.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: trunk/css/default/images/cross.svg =================================================================== --- trunk/css/default/images/cross.svg 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/cross.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> Added: trunk/css/default/images/folders.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/folders.gif =================================================================== --- trunk/css/default/images/folders.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/folders.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/folders.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: trunk/css/default/images/inventory.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/inventory.gif =================================================================== --- trunk/css/default/images/inventory.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/inventory.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/inventory.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: trunk/css/default/images/maintenance.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/maintenance.gif =================================================================== --- trunk/css/default/images/maintenance.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/maintenance.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/maintenance.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: trunk/css/default/images/next.svg =================================================================== --- trunk/css/default/images/next.svg 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/next.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> Modified: trunk/css/default/images/previous.svg =================================================================== --- trunk/css/default/images/previous.svg 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/previous.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> Added: trunk/css/default/images/reports.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/reports.gif =================================================================== --- trunk/css/default/images/reports.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/reports.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/reports.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: trunk/css/default/images/return.svg =================================================================== --- trunk/css/default/images/return.svg 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/return.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="36" height="36" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="16" height="16" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> Modified: trunk/css/default/images/tick.svg =================================================================== --- trunk/css/default/images/tick.svg 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/tick.svg 2017-06-18 16:30:01 UTC (rev 7777) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="16" width="16" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> Added: trunk/css/default/images/transactions.gif =================================================================== (Binary files differ) Index: trunk/css/default/images/transactions.gif =================================================================== --- trunk/css/default/images/transactions.gif 2017-06-18 16:21:39 UTC (rev 7776) +++ trunk/css/default/images/transactions.gif 2017-06-18 16:30:01 UTC (rev 7777) Property changes on: trunk/css/default/images/transactions.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property |
From: <rc...@us...> - 2017-06-18 16:21:42
|
Revision: 7776 http://sourceforge.net/p/web-erp/reponame/7776 Author: rchacon Date: 2017-06-18 16:21:39 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Add missing images and delete unused images in css/custom/ Removed Paths: ------------- trunk/css/custom/images/allocation.gif trunk/css/custom/images/ar.gif trunk/css/custom/images/company.gif trunk/css/custom/images/cross.png trunk/css/custom/images/folders.gif trunk/css/custom/images/inventory.gif trunk/css/custom/images/maintenance.gif trunk/css/custom/images/previous.png trunk/css/custom/images/reports.gif trunk/css/custom/images/tick.png trunk/css/custom/images/transactions.gif Deleted: trunk/css/custom/images/allocation.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/ar.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/company.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/cross.png =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/folders.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/inventory.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/maintenance.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/previous.png =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/reports.gif =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/tick.png =================================================================== (Binary files differ) Deleted: trunk/css/custom/images/transactions.gif =================================================================== (Binary files differ) |
From: <rc...@us...> - 2017-06-18 16:08:57
|
Revision: 7775 http://sourceforge.net/p/web-erp/reponame/7775 Author: rchacon Date: 2017-06-18 16:08:54 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Add missing images and delete unused images in css/custom/ Modified Paths: -------------- trunk/css/default/images/cross.svg trunk/css/default/images/next.svg trunk/css/default/images/previous.svg trunk/css/default/images/return.svg trunk/css/default/images/tick.svg trunk/doc/Change.log Removed Paths: ------------- trunk/css/default/images/allocation.gif trunk/css/default/images/ar.gif trunk/css/default/images/company.gif trunk/css/default/images/cross.png trunk/css/default/images/folders.gif trunk/css/default/images/inventory.gif trunk/css/default/images/maintenance.gif trunk/css/default/images/previous.png trunk/css/default/images/reports.gif trunk/css/default/images/tick.png trunk/css/default/images/transactions.gif Deleted: trunk/css/default/images/allocation.gif =================================================================== (Binary files differ) Deleted: trunk/css/default/images/ar.gif =================================================================== (Binary files differ) Deleted: trunk/css/default/images/company.gif =================================================================== (Binary files differ) Deleted: trunk/css/default/images/cross.png =================================================================== (Binary files differ) Modified: trunk/css/default/images/cross.svg =================================================================== --- trunk/css/default/images/cross.svg 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/css/default/images/cross.svg 2017-06-18 16:08:54 UTC (rev 7775) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3382">Cross image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Cross image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:date>2016-09-28</dc:date><dc:description>Cross image</dc:description><dc:language>en-GB</dc:language><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Cross" d="M 8,47 23,32 8,17 C 2,11 11,2 17,8 L 32,23 47,8 C 53,2 62,11 56,17 L 41,32 56,47 C 62,53 53,62 47,56 L 32,41 17,56 C 11,62 2,53 8,47 Z" /></g></svg> Deleted: trunk/css/default/images/folders.gif =================================================================== (Binary files differ) Deleted: trunk/css/default/images/inventory.gif =================================================================== (Binary files differ) Deleted: trunk/css/default/images/maintenance.gif =================================================================== (Binary files differ) Modified: trunk/css/default/images/next.svg =================================================================== --- trunk/css/default/images/next.svg 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/css/default/images/next.svg 2017-06-18 16:08:54 UTC (rev 7775) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3336">Next image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Next image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Next image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Next" d="M 46,32 18,6 18,58 Z" /></g></svg> Deleted: trunk/css/default/images/previous.png =================================================================== (Binary files differ) Modified: trunk/css/default/images/previous.svg =================================================================== --- trunk/css/default/images/previous.svg 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/css/default/images/previous.svg 2017-06-18 16:08:54 UTC (rev 7775) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3336">Previous image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Previous image</dc:title><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:date>2016-09-28</dc:date><dc:description>Previous image</dc:description><dc:language>en-GB</dc:language><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#fc0e0c" id="Previous" d="M 18,32 46,6 46,58 Z" /></g></svg> Deleted: trunk/css/default/images/reports.gif =================================================================== (Binary files differ) Modified: trunk/css/default/images/return.svg =================================================================== --- trunk/css/default/images/return.svg 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/css/default/images/return.svg 2017-06-18 16:08:54 UTC (rev 7775) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="64" height="64" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg2" version="1.1" width="36" height="36" viewBox="0 0 64 64"><title id="title3359">Return image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Return image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Return image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter id="sh" width="150%" height="150%"><feOffset result="offOut" in="SourceAlpha" dx="2" dy="4" id="feOffset6" /><feGaussianBlur result="blurOut" in="offOut" stdDeviation="1" id="feGaussianBlur8" /><feBlend in="SourceGraphic" in2="blurOut" mode="normal" id="feBlend10" /></filter><g filter="url(#sh)" id="g12"><path id="Return" d="M 20.96875,54.658359 8.46875,43.158359 C 7.84375,42.158359 7.84375,41.158359 8.46875,40.158359 L 20.96875,29.658359 C 22.46875,28.428777 27.062502,26.158966 27,32.15864 L 27,35.15864 37.5,35.157999 C 40.5,35.157816 42.5,31.4 42.5,28.4 42.5,25.4 40.5,21.5 37.5,21.5 L 27,21.5 C 25.5,21.5 24,20 24,18.5 L 24,11 C 24,9.5 25.5,8 27,8 L 37.5,8 C 46.75,8 56,18.275 56,28.4 56,38.525 46.75,48.657684 37.5,48.657999 L 27,48.65864 27,51.65864 C 27,57.65864 22.588527,56.158359 20.96875,54.658359 Z" style="fill:#000080" /></g></svg> Deleted: trunk/css/default/images/tick.png =================================================================== (Binary files differ) Modified: trunk/css/default/images/tick.svg =================================================================== --- trunk/css/default/images/tick.svg 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/css/default/images/tick.svg 2017-06-18 16:08:54 UTC (rev 7775) @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="64" width="64" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" height="36" width="36" version="1.1" id="svg2"><title id="title3383">Tick image</title><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title>Tick image</dc:title><dc:date>2016-09-28</dc:date><dc:creator><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:creator><dc:publisher><cc:Agent><dc:title>Rafael E. Chacon</dc:title></cc:Agent></dc:publisher><dc:description>Tick image</dc:description><dc:language>en-GB</dc:language><cc:license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/3.0/" /></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/by-nc-sa/3.0/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:prohibits rdf:resource="http://creativecommons.org/ns#CommercialUse" /><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><filter height="150%" width="150%" id="sh"><feOffset id="feOffset6" dy="4" dx="2" in="SourceAlpha" result="offOut" /><feGaussianBlur id="feGaussianBlur8" stdDeviation="1" in="offOut" result="blurOut" /><feBlend id="feBlend10" mode="normal" in2="blurOut" in="SourceGraphic" /></filter><g id="g12" filter="url(#sh)"><path style="fill:#008000" id="Tick" d="M 55,17 C 59,12 49,5 46,10 19,36 27,51 19,32 15,26 5,33 9,39 30,75 23,45 55,17 Z" /></g></svg> Deleted: trunk/css/default/images/transactions.gif =================================================================== --- trunk/css/default/images/transactions.gif 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/css/default/images/transactions.gif 2017-06-18 16:08:54 UTC (rev 7775) @@ -1,2 +0,0 @@ -GIF89axD2VE`\xB9p\xE1\xE6\xE9\xB1be\x9Eϟ\xF3\xE8\xA1\xEBV\xF3\xDFMx{\xEA\xD9[\xCAti\xBD(\xED\x88ڬb.iӦO\xE3I5Z\x9E)`Ê\x9D\xB7nk\xB9s\xEDڽ{\xB7n]\xBAo\xDF\xC0\x81cG\xBBxk\xF3\xAEm\xCBwN\x81\xE1\xE0\xB1G\x98pKy\xD9ڝ3w.\x9C7\xC0\xE6\xFA\xDD\xC3&/\xA1\xBC\xC9\xFD҉\xF3&α@o渭`8z\xF2\x8A\xCC\xE1\xB6U\xA9\xD2M`7u\xF7\x82Ʀ\xB7p^\xBFqUT\x97k\xFD\xEF58\xF7\xB2\xE7\x96\xCF\xDFmq\xDB@?\xFE\xB7\xAD]\xBC\xD1\xD9J\xDF[\xE1\xB2ܶpCn[\x87͝\xBB\x97+\x80\xE3\xB6\xCB\xC7\xEE\7o\xED¹\xCE\xAC=\xBB\xD1\xF1\xF4\xED\xD3\xD7O\xDD\xF9o\xE2ַ\x9D\xE1\x83\xF9\ No newline at end of file Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 10:05:48 UTC (rev 7774) +++ trunk/doc/Change.log 2017-06-18 16:08:54 UTC (rev 7775) @@ -1,4 +1,6 @@ webERP Change Log + +18/06/17 RChacon: Add missing images and delete unused images in css/custom/. 18/06/17 Exson: Fixed a typo in GLPostings.inc. 18/06/17 Giankocr created a custom theme for webERP, Exson port part of it to webERP. 17/06/17 RChacon: In CustomerReceipt.php, it jumps to enter a GL receipt if 'Type'=='GL'. |
From: <ex...@us...> - 2017-06-18 10:05:50
|
Revision: 7774 http://sourceforge.net/p/web-erp/reponame/7774 Author: exsonqu Date: 2017-06-18 10:05:48 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Modified Paths: -------------- trunk/doc/Change.log Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 10:04:51 UTC (rev 7773) +++ trunk/doc/Change.log 2017-06-18 10:05:48 UTC (rev 7774) @@ -1,5 +1,6 @@ webERP Change Log - +18/06/17 Exson: Fixed a typo in GLPostings.inc. +18/06/17 Giankocr created a custom theme for webERP, Exson port part of it to webERP. 17/06/17 RChacon: In CustomerReceipt.php, it jumps to enter a GL receipt if 'Type'=='GL'. 08/06/17 Exson: Fixed quotation and orders are mixed in searching result of SelectSalesOrder.php. 1/6/17 VortecCPI fixed empty list error in GLAccounts.php, GLCashFlowsIndirect.php, GLCashFlowsSetup.php |
From: <ex...@us...> - 2017-06-18 10:04:54
|
Revision: 7773 http://sourceforge.net/p/web-erp/reponame/7773 Author: exsonqu Date: 2017-06-18 10:04:51 +0000 (Sun, 18 Jun 2017) Log Message: ----------- 18/06/17 Exson: Fixed a typo in GLPostings.inc. Modified Paths: -------------- trunk/includes/GLPostings.inc Modified: trunk/includes/GLPostings.inc =================================================================== --- trunk/includes/GLPostings.inc 2017-06-18 09:30:06 UTC (rev 7772) +++ trunk/includes/GLPostings.inc 2017-06-18 10:04:51 UTC (rev 7773) @@ -63,11 +63,11 @@ AND chartdetails.accountcode IS NULL ORDER BY accountcode,periodno"; $ErrMsg = _('Failed to retrieve new account code and periods'); $NewPeriodResult = DB_query($sql,$ErrMsg); - if (DB_num_rows($result)>0){ + if (DB_num_rows($NewPeriodResult)>0){ $NewPeriods = array(); while ($NewPeriodsRow = DB_fetch_array($NewPeriodResult)) { if (!isset($NewPeriods[$NewPeriodsRow['accountcode']])) { - $NewPeriods[$NewPeriodsRow['accountcode']] = $NewPeriodsRow['period']; + $NewPeriods[$NewPeriodsRow['accountcode']] = $NewPeriodsRow['periods']; } } /*Now insert the chartdetails records that do not already exist */ |
From: <ex...@us...> - 2017-06-18 09:30:10
|
Revision: 7772 http://sourceforge.net/p/web-erp/reponame/7772 Author: exsonqu Date: 2017-06-18 09:30:06 +0000 (Sun, 18 Jun 2017) Log Message: ----------- 18/06/17 Giankocr created a custom theme for webERP, Exson port part of it to webERP. Modified Paths: -------------- trunk/SalesCategories.php trunk/SelectProduct.php trunk/index.php Added Paths: ----------- trunk/css/custom/ trunk/css/custom/bullet.gif trunk/css/custom/css/ trunk/css/custom/css/bootstrap-theme.css trunk/css/custom/css/bootstrap-theme.css.map trunk/css/custom/css/bootstrap-theme.min.css trunk/css/custom/css/bootstrap-theme.min.css.map trunk/css/custom/css/bootstrap.css trunk/css/custom/css/bootstrap.css.map trunk/css/custom/css/bootstrap.min.css trunk/css/custom/css/bootstrap.min.css.map trunk/css/custom/css/custom.css trunk/css/custom/default.css trunk/css/custom/fonts/ trunk/css/custom/fonts/glyphicons-halflings-regular.eot trunk/css/custom/fonts/glyphicons-halflings-regular.svg trunk/css/custom/fonts/glyphicons-halflings-regular.ttf trunk/css/custom/fonts/glyphicons-halflings-regular.woff trunk/css/custom/fonts/glyphicons-halflings-regular.woff2 trunk/css/custom/images/ trunk/css/custom/images/Graphique-32.png trunk/css/custom/images/allocation.gif trunk/css/custom/images/allocation.png trunk/css/custom/images/ar.gif trunk/css/custom/images/ar.png trunk/css/custom/images/back.png trunk/css/custom/images/background.png trunk/css/custom/images/bank.png trunk/css/custom/images/company.gif trunk/css/custom/images/company.png trunk/css/custom/images/contract.png trunk/css/custom/images/credit.png trunk/css/custom/images/cross.png trunk/css/custom/images/currency.png trunk/css/custom/images/customer.png trunk/css/custom/images/email.png trunk/css/custom/images/error.png trunk/css/custom/images/folder_add.png trunk/css/custom/images/folders.gif trunk/css/custom/images/folders.png trunk/css/custom/images/gl.png trunk/css/custom/images/group_add.png trunk/css/custom/images/help.png trunk/css/custom/images/icons.ai trunk/css/custom/images/inquiries.png trunk/css/custom/images/inventory.gif trunk/css/custom/images/inventory.png trunk/css/custom/images/login.png trunk/css/custom/images/logo.jpg trunk/css/custom/images/magnifier.png trunk/css/custom/images/maintenance.gif trunk/css/custom/images/maintenance.png trunk/css/custom/images/menucurve.gif trunk/css/custom/images/money_add.png trunk/css/custom/images/money_delete.png trunk/css/custom/images/note_add.png trunk/css/custom/images/pdf.png trunk/css/custom/images/preview.png trunk/css/custom/images/previous.png trunk/css/custom/images/printer.png trunk/css/custom/images/reports.gif trunk/css/custom/images/reports.png trunk/css/custom/images/sales.png trunk/css/custom/images/security.png trunk/css/custom/images/stripe.png trunk/css/custom/images/supplier.png trunk/css/custom/images/tick.png trunk/css/custom/images/transactions.gif trunk/css/custom/images/transactions.png trunk/css/custom/images/user.png trunk/css/custom/js/ trunk/css/custom/js/bootstrap.js trunk/css/custom/js/bootstrap.min.js trunk/css/custom/js/custom.js trunk/css/custom/js/npm.js trunk/css/custom/login.css Modified: trunk/SalesCategories.php =================================================================== --- trunk/SalesCategories.php 2017-06-18 02:25:26 UTC (rev 7771) +++ trunk/SalesCategories.php 2017-06-18 09:30:06 UTC (rev 7772) @@ -36,7 +36,6 @@ if (isset($SelectedCategory) AND isset($_FILES['CategoryPicture']) AND $_FILES['CategoryPicture']['name'] !='') { $ImgExt = pathinfo($_FILES['CategoryPicture']['name'], PATHINFO_EXTENSION); - $result = $_FILES['CategoryPicture']['error']; $UploadTheFile = 'Yes'; //Assume all is well to start off with // Stock is always capatalized so there is no confusion since "cat_" is lowercase @@ -157,11 +156,9 @@ $result = DB_query($sql); prnMsg(_('The sales category') . ' ' . $SelectedCategory . ' ' . _('has been deleted') . ' !','success'); - //if( file_exists($_SESSION['part_pics_dir'] . '/SALESCAT_' . $SelectedCategory . '.jpg') ) { // unlink($_SESSION['part_pics_dir'] . '/SALESCAT_' . $SelectedCategory . '.jpg'); //} - foreach ($SupportedImgExt as $ext) { $file = $_SESSION['part_pics_dir'] . '/SALESCAT_' . $SelectedCategory . '.' . $ext; if (file_exists ($file) ) { @@ -282,7 +279,6 @@ echo '<tr class="OddTableRows">'; $k=1; } - $SupportedImgExt = array('png','jpg','jpeg'); $imagefile = reset((glob($_SESSION['part_pics_dir'] . '/SALESCAT_' . $myrow['salescatid'] . '.{' . implode(",", $SupportedImgExt) . '}', GLOB_BRACE))); if( extension_loaded('gd') && function_exists('gd_info') && file_exists($imagefile) ) { @@ -297,7 +293,6 @@ } else { $CatImgLink = _('No Image'); } - if ($myrow['active'] == 1){ $Active = _('Yes'); }else{ @@ -394,7 +389,6 @@ } echo '</select></td> </tr>'; - // Image upload only if we have a selected category if (isset($SelectedCategory)) { echo '<tr> @@ -468,7 +462,6 @@ echo '<input type="hidden" name="ParentCategory" value="' . (isset($_POST['ParentCategory'])?($_POST['ParentCategory']):('0')) . '" /> '; - echo '<table class="selection"> <tr> <th colspan="2">' . _('Add Inventory to this category') . '</th> @@ -476,7 +469,6 @@ <tr> <td>' . _('Select Item') . ':</td> <td><select name="AddStockID">'; - while( $myrow = DB_fetch_array($result) ) { if ( !array_keys( $StockIDs, $myrow['stockid'] ) ) { // Only if the StockID is not already selected Modified: trunk/SelectProduct.php =================================================================== --- trunk/SelectProduct.php 2017-06-18 02:25:26 UTC (rev 7771) +++ trunk/SelectProduct.php 2017-06-18 09:30:06 UTC (rev 7772) @@ -425,19 +425,19 @@ $StockImgLink = '<img src="GetStockImage.php?automake=1&textcolor=FFFFFF&bgcolor=CCCCCC'. '&StockID='.urlencode($StockID). '&text='. - '&width=100'. - '&height=100'. + '&width=200'. + '&height=200'. '" alt="" />'; } else { $StockImgLink = '<img src="GetStockImage.php?automake=1&textcolor=FFFFFF&bgcolor=CCCCCC'. '&StockID='.urlencode($StockID). '&text='. $StockID . - '&width=100'. - '&height=100'. + '&width=200'. + '&height=200'. '" alt="" />'; } } else if (file_exists ($imagefile)) { - $StockImgLink = '<img src="' . $imagefile . '" height="100" width="100" />'; + $StockImgLink = '<img src="' . $imagefile . '" height="200" width="200" />'; } else { $StockImgLink = _('No Image'); } @@ -828,6 +828,7 @@ $TableHeader = '<tr> <th>' . _('Stock Status') . '</th> <th class="ascending">' . _('Code') . '</th> + <th>'. _('image').'</th> <th class="ascending">' . _('Description') . '</th> <th>' . _('Total Qty On Hand') . '</th> <th>' . _('Units') . '</th> @@ -857,9 +858,21 @@ } else { $ItemStatus =''; } + $imagefile = reset((glob($_SESSION['part_pics_dir'] . '/' . $StockID . '.{' . implode(",", $SupportedImgExt) . '}', GLOB_BRACE))); + if (!empty($imagefile)){ + $StockImgLink = '<img src="GetStockImage.php?automake=1&textcolor=FFFFFF&bgcolor=CCCCCC'. + '&StockID='.urlencode($myrow['stockid']). + '&text='. $myrow['stockid'] . + '&width=100'. + '&height=100'. + '" alt="" />'; + }else{ + $StockImgLink = '<p>'._('No Image').'</p>'; + } echo '<td>' . $ItemStatus . '</td> <td><input type="submit" name="Select" value="' . $myrow['stockid'] . '" /></td> + <td>'.$StockImgLink.'</td> <td title="'. $myrow['longdescription'] . '">' . $myrow['description'] . '</td> <td class="number">' . $qoh . '</td> <td>' . $myrow['units'] . '</td> Added: trunk/css/custom/bullet.gif =================================================================== (Binary files differ) Index: trunk/css/custom/bullet.gif =================================================================== --- trunk/css/custom/bullet.gif 2017-06-18 02:25:26 UTC (rev 7771) +++ trunk/css/custom/bullet.gif 2017-06-18 09:30:06 UTC (rev 7772) Property changes on: trunk/css/custom/bullet.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: trunk/css/custom/css/bootstrap-theme.css =================================================================== --- trunk/css/custom/css/bootstrap-theme.css (rev 0) +++ trunk/css/custom/css/bootstrap-theme.css 2017-06-18 09:30:06 UTC (rev 7772) @@ -0,0 +1,587 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +.btn-default, +.btn-primary, +.btn-success, +.btn-info, +.btn-warning, +.btn-danger { + text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); +} +.btn-default:active, +.btn-primary:active, +.btn-success:active, +.btn-info:active, +.btn-warning:active, +.btn-danger:active, +.btn-default.active, +.btn-primary.active, +.btn-success.active, +.btn-info.active, +.btn-warning.active, +.btn-danger.active { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn-default.disabled, +.btn-primary.disabled, +.btn-success.disabled, +.btn-info.disabled, +.btn-warning.disabled, +.btn-danger.disabled, +.btn-default[disabled], +.btn-primary[disabled], +.btn-success[disabled], +.btn-info[disabled], +.btn-warning[disabled], +.btn-danger[disabled], +fieldset[disabled] .btn-default, +fieldset[disabled] .btn-primary, +fieldset[disabled] .btn-success, +fieldset[disabled] .btn-info, +fieldset[disabled] .btn-warning, +fieldset[disabled] .btn-danger { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-default .badge, +.btn-primary .badge, +.btn-success .badge, +.btn-info .badge, +.btn-warning .badge, +.btn-danger .badge { + text-shadow: none; +} +.btn:active, +.btn.active { + background-image: none; +} +.btn-default { + text-shadow: 0 1px 0 #fff; + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #dbdbdb; + border-color: #ccc; +} +.btn-default:hover, +.btn-default:focus { + background-color: #e0e0e0; + background-position: 0 -15px; +} +.btn-default:active, +.btn-default.active { + background-color: #e0e0e0; + border-color: #dbdbdb; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #e0e0e0; + background-image: none; +} +.btn-primary { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); + background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #245580; +} +.btn-primary:hover, +.btn-primary:focus { + background-color: #265a88; + background-position: 0 -15px; +} +.btn-primary:active, +.btn-primary.active { + background-color: #265a88; + border-color: #245580; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #265a88; + background-image: none; +} +.btn-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #3e8f3e; +} +.btn-success:hover, +.btn-success:focus { + background-color: #419641; + background-position: 0 -15px; +} +.btn-success:active, +.btn-success.active { + background-color: #419641; + border-color: #3e8f3e; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #419641; + background-image: none; +} +.btn-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #28a4c9; +} +.btn-info:hover, +.btn-info:focus { + background-color: #2aabd2; + background-position: 0 -15px; +} +.btn-info:active, +.btn-info.active { + background-color: #2aabd2; + border-color: #28a4c9; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #2aabd2; + background-image: none; +} +.btn-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #e38d13; +} +.btn-warning:hover, +.btn-warning:focus { + background-color: #eb9316; + background-position: 0 -15px; +} +.btn-warning:active, +.btn-warning.active { + background-color: #eb9316; + border-color: #e38d13; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #eb9316; + background-image: none; +} +.btn-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #b92c28; +} +.btn-danger:hover, +.btn-danger:focus { + background-color: #c12e2a; + background-position: 0 -15px; +} +.btn-danger:active, +.btn-danger.active { + background-color: #c12e2a; + border-color: #b92c28; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #c12e2a; + background-image: none; +} +.thumbnail, +.img-thumbnail { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + background-color: #e8e8e8; + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + background-color: #2e6da4; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.navbar-default { + background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); + background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); + background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); + background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); +} +.navbar-brand, +.navbar-nav > li > a { + text-shadow: 0 1px 0 rgba(255, 255, 255, .25); +} +.navbar-inverse { + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-radius: 4px; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); + background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); +} +.navbar-inverse .navbar-brand, +.navbar-inverse .navbar-nav > li > a { + text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); +} +.navbar-static-top, +.navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; +} +@media (max-width: 767px) { + .navbar .navbar-nav .open .dropdown-menu > .active > a, + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; + } +} +.alert { + text-shadow: 0 1px 0 rgba(255, 255, 255, .2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); +} +.alert-success { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); + background-repeat: repeat-x; + border-color: #b2dba1; +} +.alert-info { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); + background-repeat: repeat-x; + border-color: #9acfea; +} +.alert-warning { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); + background-repeat: repeat-x; + border-color: #f5e79e; +} +.alert-danger { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); + background-repeat: repeat-x; + border-color: #dca7a7; +} +.progress { + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); + background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.list-group { + border-radius: 4px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + text-shadow: 0 -1px 0 #286090; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); + background-repeat: repeat-x; + border-color: #2b669a; +} +.list-group-item.active .badge, +.list-group-item.active:hover .badge, +.list-group-item.active:focus .badge { + text-shadow: none; +} +.panel { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); + box-shadow: 0 1px 2px rgba(0, 0, 0, .05); +} +.panel-default > .panel-heading { + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.panel-primary > .panel-heading { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.panel-success > .panel-heading { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); + background-repeat: repeat-x; +} +.panel-info > .panel-heading { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); + background-repeat: repeat-x; +} +.panel-warning > .panel-heading { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); + background-repeat: repeat-x; +} +.panel-danger > .panel-heading { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); + background-repeat: repeat-x; +} +.well { + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; + border-color: #dcdcdc; + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); +} +/*# sourceMappingURL=bootstrap-theme.css.map */ Added: trunk/css/custom/css/bootstrap-theme.css.map =================================================================== --- trunk/css/custom/css/bootstrap-theme.css.map (rev 0) +++ trunk/css/custom/css/bootstrap-theme.css.map 2017-06-18 09:30:06 UTC (rev 7772) @@ -0,0 +1 @@ +{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"AAAA;;;;GAIG;ACeH;;;;;;EAME,yCAAA;EC2CA,4FAAA;EACQ,oFAAA;CFvDT;ACgBC;;;;;;;;;;;;ECsCA,yDAAA;EACQ,iDAAA;CFxCT;ACMC;;;;;;;;;;;;;;;;;;ECiCA,yBAAA;EACQ,iBAAA;CFnBT;AC/BD;;;;;;EAuBI,kBAAA;CDgBH;ACyBC;;EAEE,uBAAA;CDvBH;AC4BD;EErEI,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;EAuC2C,0BAAA;EAA2B,mBAAA;CDjBvE;ACpBC;;EAEE,0BAAA;EACA,6BAAA;CDsBH;ACnBC;;EAEE,0BAAA;EACA,sBAAA;CDqBH;ACfG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6BL;ACbD;EEtEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8DD;AC5DC;;EAEE,0BAAA;EACA,6BAAA;CD8DH;AC3DC;;EAEE,0BAAA;EACA,sBAAA;CD6DH;ACvDG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqEL;ACpDD;EEvEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsGD;ACpGC;;EAEE,0BAAA;EACA,6BAAA;CDsGH;ACnGC;;EAEE,0BAAA;EACA,sBAAA;CDqGH;AC/FG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6GL;AC3FD;EExEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ID;AC5IC;;EAEE,0BAAA;EACA,6BAAA;CD8IH;AC3IC;;EAEE,0BAAA;EACA,sBAAA;CD6IH;ACvIG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqJL;AClID;EEzEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsLD;ACpLC;;EAEE,0BAAA;EACA,6BAAA;CDsLH;ACnLC;;EAEE,0BAAA;EACA,sBAAA;CDqLH;AC/KG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CD6LL;ACzKD;EE1EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ND;AC5NC;;EAEE,0BAAA;EACA,6BAAA;CD8NH;AC3NC;;EAEE,0BAAA;EACA,sBAAA;CD6NH;ACvNG;;;;;;;;;;;;;;;;;;EAME,0BAAA;EACA,uBAAA;CDqOL;AC1MD;;EClCE,mDAAA;EACQ,2CAAA;CFgPT;ACrMD;;EE3FI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF0FF,0BAAA;CD2MD;ACzMD;;;EEhGI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFgGF,0BAAA;CD+MD;ACtMD;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EH+HA,mBAAA;ECjEA,4FAAA;EACQ,oFAAA;CF8QT;ACjND;;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,yDAAA;EACQ,iDAAA;CFwRT;AC9MD;;EAEE,+CAAA;CDgND;AC5MD;EEhII,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EHkJA,mBAAA;CDkND;ACrND;;EEhII,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,wDAAA;EACQ,gDAAA;CF+ST;AC/ND;;EAYI,0CAAA;CDuNH;AClND;;;EAGE,iBAAA;CDoND;AC/LD;EAfI;;;IAGE,YAAA;IE7JF,yEAAA;IACA,oEAAA;IACA,8FAAA;IAAA,uEAAA;IACA,4BAAA;IACA,uHAAA;GH+WD;CACF;AC3MD;EACE,8CAAA;EC3HA,2FAAA;EACQ,mFAAA;CFyUT;ACnMD;EEtLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+MD;AC1MD;EEvLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuND;ACjND;EExLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+ND;ACxND;EEzLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuOD;ACxND;EEjMI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH4ZH;ACrND;EE3MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHmaH;AC3ND;EE5MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH0aH;ACjOD;EE7MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHibH;ACvOD;EE9MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHwbH;AC7OD;EE/MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH+bH;AChPD;EElLI,8MAAA;EACA,yMAAA;EACA,sMAAA;CHqaH;AC5OD;EACE,mBAAA;EC9KA,mDAAA;EACQ,2CAAA;CF6ZT;AC7OD;;;EAGE,8BAAA;EEnOE,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFiOF,sBAAA;CDmPD;ACxPD;;;EAQI,kBAAA;CDqPH;AC3OD;ECnME,kDAAA;EACQ,0CAAA;CFibT;ACrOD;EE5PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHoeH;AC3OD;EE7PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH2eH;ACjPD;EE9PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHkfH;ACvPD;EE/PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHyfH;AC7PD;EEhQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHggBH;ACnQD;EEjQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHugBH;ACnQD;EExQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFsQF,sBAAA;EC3NA,0FAAA;EACQ,kFAAA;CFqeT","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradie... [truncated message content] |
From: <rc...@us...> - 2017-06-18 02:25:29
|
Revision: 7771 http://sourceforge.net/p/web-erp/reponame/7771 Author: rchacon Date: 2017-06-18 02:25:26 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Update Spanish tranlation. Modified Paths: -------------- trunk/CustomerReceipt.php trunk/doc/Change.log trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po Modified: trunk/CustomerReceipt.php =================================================================== --- trunk/CustomerReceipt.php 2017-06-18 01:53:16 UTC (rev 7770) +++ trunk/CustomerReceipt.php 2017-06-18 02:25:26 UTC (rev 7771) @@ -608,6 +608,7 @@ } echo '">', _('Enter Receipts'), '</a></p>', '</div>'; + unset($_SESSION['ReceiptBatch' . $identifier]); include('includes/footer.php'); exit; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 01:53:16 UTC (rev 7770) +++ trunk/doc/Change.log 2017-06-18 02:25:26 UTC (rev 7771) @@ -1,6 +1,6 @@ webERP Change Log -17/06/17 RChacon: In CustomerReceipt.php, if 'Type'=='GL' it jumps to enter a GL receipt. +17/06/17 RChacon: In CustomerReceipt.php, it jumps to enter a GL receipt if 'Type'=='GL'. 08/06/17 Exson: Fixed quotation and orders are mixed in searching result of SelectSalesOrder.php. 1/6/17 VortecCPI fixed empty list error in GLAccounts.php, GLCashFlowsIndirect.php, GLCashFlowsSetup.php 18/5/17 Phil: remove changes in Andrew's PO_Items.php script that increased dp for purchase price to 5 - for some low value currencies this would be inappropriate, better to use the currency decimal places + 2 as per Ricard's idea Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-06-18 01:53:16 UTC (rev 7770) +++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-06-18 02:25:26 UTC (rev 7771) @@ -8,7 +8,7 @@ "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-06-17 19:13-0600\n" -"PO-Revision-Date: 2017-06-17 19:13-0600\n" +"PO-Revision-Date: 2017-06-17 20:23-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: TecnoSoluciones.com <web...@te...>\n" "Language: es_ES\n" @@ -3558,7 +3558,7 @@ #: BOMListing.php:121 msgid "From Inventory Part Code" -msgstr "Desde Código de Inventario" +msgstr "Desde el código de inventario" #: BOMListing.php:122 msgid "" @@ -3568,7 +3568,7 @@ #: BOMListing.php:125 msgid "To Inventory Part Code" -msgstr "A Código de Inventario" +msgstr "Hasta el código de inventario" #: BOMListing.php:126 msgid "" @@ -3586,7 +3586,7 @@ #: BOMs.php:43 msgid "The component and the parent is the same" -msgstr "" +msgstr "El componente y el padre es el mismo" #: BOMs.php:59 msgid "" @@ -3695,7 +3695,7 @@ #: BOMs.php:339 msgid "The component selected is the same with the parent, it is not allowed" -msgstr "" +msgstr "El componente seleccionado es el mismo que el padre, no está permitido" #: BOMs.php:366 msgid "Could not update this BOM component because" @@ -3882,7 +3882,7 @@ #: BOMs.php:692 msgid "Print Date" -msgstr "" +msgstr "Fecha de impresión" #: BOMs.php:729 msgid "Edit the details of the selected component in the fields below" @@ -3914,11 +3914,11 @@ #: BOMs.php:797 msgid "Sequence in BOM" -msgstr "" +msgstr "Secuencia en la lista de materiales" #: BOMs.php:798 msgid "Number with decimal places is acceptable" -msgstr "" +msgstr "Número con decimales es aceptable" #: BOMs.php:830 msgid "Work Centre Added" @@ -3939,6 +3939,7 @@ #: BOMs.php:859 msgid "Enter the quantity of this item required for the parent item" msgstr "" +"Introduzca la cantidad necesaria de este artículo para el elemento principal" #: BOMs.php:887 msgid "Auto Issue this Component to Work Orders" @@ -4050,11 +4051,11 @@ #: CollectiveWorkOrderCost.php:33 msgid "There are no work orders selected" -msgstr "" +msgstr "No hay órdenes de trabajo seleccionadas" #: CollectiveWorkOrderCost.php:48 msgid "Failed to retrieve wo cost data" -msgstr "" +msgstr "No se pudo recuperar los datos del costo de la orden de trabajo" #: CollectiveWorkOrderCost.php:52 CollectiveWorkOrderCost.php:452 #: DiscountCategories.php:222 GoodsReceived.php:121 @@ -4076,15 +4077,15 @@ #: CollectiveWorkOrderCost.php:54 WorkOrderCosting.php:133 msgid "Date Issued" -msgstr "Fecha de Emisión" +msgstr "Fecha de emisión" #: CollectiveWorkOrderCost.php:55 WorkOrderCosting.php:134 msgid "Issued Qty" -msgstr "Cantidad Emitida" +msgstr "Cantidad emitida" #: CollectiveWorkOrderCost.php:56 WorkOrderCosting.php:135 msgid "Issued Cost" -msgstr "Costos Emitidos" +msgstr "Costo emitido" #: CollectiveWorkOrderCost.php:57 PDFFGLabel.php:202 PDFWOPrint.php:258 #: PDFWOPrint.php:499 includes/DatabaseTranslations.php:49 @@ -4093,7 +4094,7 @@ #: CollectiveWorkOrderCost.php:84 msgid "There are no data available" -msgstr "" +msgstr "No hay datos disponibles" #: CollectiveWorkOrderCost.php:89 msgid "Select Other Work Orders" @@ -4107,7 +4108,7 @@ #: PDFWOPrint.php:480 SelectWorkOrder.php:44 api/api_xml-rpc.php:2573 #: api/api_xml-rpc.php:2769 includes/PDFWOPageHeader.inc:10 msgid "Work Order Number" -msgstr "Número de Orden de Trabajo" +msgstr "Número de orden de trabajo" #: CollectiveWorkOrderCost.php:191 SelectWorkOrder.php:110 msgid "No items were returned by the SQL because" @@ -4174,11 +4175,11 @@ #: CollectiveWorkOrderCost.php:276 msgid "Start Date To" -msgstr "Fecha inicial al" +msgstr "Fecha inicial hasta" #: CollectiveWorkOrderCost.php:282 SelectWorkOrder.php:175 msgid "New Work Order" -msgstr "Nueva Orden de Trabajo" +msgstr "Nueva orden de trabajo" #: CollectiveWorkOrderCost.php:296 SelectWorkOrder.php:190 msgid "" @@ -4753,7 +4754,7 @@ #: ConfirmDispatch_Invoice.php:252 msgid "To dispatch quantity is" -msgstr "" +msgstr "Para enviar la cantidad es" #: ConfirmDispatch_Invoice.php:252 msgid "And the order balance is " @@ -9572,7 +9573,7 @@ #: SalesTopCustomersInquiry.php:66 SalesTopItemsInquiry.php:67 #: StockCategorySalesInquiry.php:58 SuppPriceList.php:309 msgid "Date From" -msgstr "Fecha Inicio" +msgstr "Fecha desde" #: CustomerBalancesMovement.php:62 InternalStockRequestInquiry.php:165 #: SalesByTypePeriodInquiry.php:74 SalesCategoryPeriodInquiry.php:68 @@ -9579,7 +9580,7 @@ #: SalesTopCustomersInquiry.php:70 SalesTopItemsInquiry.php:71 #: StockCategorySalesInquiry.php:62 msgid "Date To" -msgstr "Fecha Final" +msgstr "Fecha hasta" #: CustomerBalancesMovement.php:66 msgid "Create CSV" @@ -10288,7 +10289,7 @@ #: CustomerReceipt.php:289 CustomerReceipt.php:856 msgid "Date Banked" -msgstr "Fecha del Banco" +msgstr "Fecha del banco" #: CustomerReceipt.php:291 CustomerReceipt.php:989 msgid "GL Code" @@ -33130,7 +33131,7 @@ #: StockLocTransferReceive.php:423 msgid "To Location" -msgstr "" +msgstr "Hasta la ubicación" #: StockLocTransferReceive.php:424 msgid "Stock code" @@ -51609,7 +51610,7 @@ #: install/index.php:878 install/index.php:953 msgid "Next Step" -msgstr "" +msgstr "Siguiente paso" #: install/index.php:884 msgid "" @@ -51634,11 +51635,11 @@ #: install/index.php:912 msgid "Host Name" -msgstr "" +msgstr "Nombre del servidor" #: install/index.php:913 msgid "Enter database host name" -msgstr "" +msgstr "Introduzca el nombre del servidor de la base de datos" #: install/index.php:914 msgid "Commonly: localhost or 127.0.0.1" @@ -51658,7 +51659,7 @@ #: install/index.php:923 msgid "Useful with shared hosting" -msgstr "" +msgstr "Útil con servidor compartido" #: install/index.php:924 msgid "Optional: in the form of prefix_" @@ -51709,7 +51710,7 @@ #: install/index.php:1029 msgid "Chart of Accounts" -msgstr "" +msgstr "Catálogo contable" #: install/index.php:1047 msgid "" @@ -52769,7 +52770,7 @@ #: reportwriter/languages/en_US/reports.php:347 msgid "This Year" -msgstr "" +msgstr "Este año" #: reportwriter/languages/en_US/reports.php:348 msgid "This Year To Date" |
From: <rc...@us...> - 2017-06-18 01:53:18
|
Revision: 7770 http://sourceforge.net/p/web-erp/reponame/7770 Author: rchacon Date: 2017-06-18 01:53:16 +0000 (Sun, 18 Jun 2017) Log Message: ----------- It jumps to enter a GL receipt if 'Type'=='GL'. Modified Paths: -------------- trunk/CustomerReceipt.php trunk/doc/Change.log Modified: trunk/CustomerReceipt.php =================================================================== --- trunk/CustomerReceipt.php 2017-06-18 01:16:51 UTC (rev 7769) +++ trunk/CustomerReceipt.php 2017-06-18 01:53:16 UTC (rev 7770) @@ -600,9 +600,14 @@ echo '<div class="centre noprint">', '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/printer.png" title="' . _('Print') . '" alt="" />' . ' ' . '<a href="' . $RootPath . '/PDFBankingSummary.php?BatchNo=' . $_SESSION['ReceiptBatch' . $identifier]->BatchNo . '">' . _('Print PDF Batch Summary') . '</a></p>'; echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/allocation.png" title="' . _('Allocate') . '" alt="" />' . ' ' . '<a href="' . $RootPath . '/CustomerAllocations.php">' . _('Allocate Receipts') . '</a></p>'; - echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/transactions.png" title="', _('Enter Receipts'), '" /> ', '<a href="', $RootPath, '/CustomerReceipt.php?NewReceipt=Yes&Type=Customer">', _('Enter Receipts'), '</a></p>', + echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/transactions.png" title="', _('Enter Receipts'), '" /> ', '<a href="', $RootPath, '/CustomerReceipt.php?NewReceipt=Yes&Type='; + if ($_GET['Type']=='GL') { + echo 'GL'; + } else { + echo 'Customer'; + } + echo '">', _('Enter Receipts'), '</a></p>', '</div>'; - unset($_SESSION['ReceiptBatch' . $identifier]); include('includes/footer.php'); exit; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-18 01:16:51 UTC (rev 7769) +++ trunk/doc/Change.log 2017-06-18 01:53:16 UTC (rev 7770) @@ -1,5 +1,6 @@ webERP Change Log +17/06/17 RChacon: In CustomerReceipt.php, if 'Type'=='GL' it jumps to enter a GL receipt. 08/06/17 Exson: Fixed quotation and orders are mixed in searching result of SelectSalesOrder.php. 1/6/17 VortecCPI fixed empty list error in GLAccounts.php, GLCashFlowsIndirect.php, GLCashFlowsSetup.php 18/5/17 Phil: remove changes in Andrew's PO_Items.php script that increased dp for purchase price to 5 - for some low value currencies this would be inappropriate, better to use the currency decimal places + 2 as per Ricard's idea |
From: <rc...@us...> - 2017-06-18 01:16:57
|
Revision: 7769 http://sourceforge.net/p/web-erp/reponame/7769 Author: rchacon Date: 2017-06-18 01:16:51 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Rebuild languages files *.pot, *.po and *.mo. Modified Paths: -------------- trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.mo trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.po trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.mo trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po trunk/locale/de_DE.utf8/LC_MESSAGES/messages.mo trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po trunk/locale/el_GR.utf8/LC_MESSAGES/messages.mo trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot trunk/locale/en_US.utf8/LC_MESSAGES/messages.mo trunk/locale/en_US.utf8/LC_MESSAGES/messages.po trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po trunk/locale/et_EE.utf8/LC_MESSAGES/messages.mo trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.mo trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.mo trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.mo trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po trunk/locale/he_IL.utf8/LC_MESSAGES/messages.mo trunk/locale/he_IL.utf8/LC_MESSAGES/messages.po trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.mo trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.po trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.mo trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.po trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.mo trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.po trunk/locale/id_ID.utf8/LC_MESSAGES/messages.mo trunk/locale/id_ID.utf8/LC_MESSAGES/messages.po trunk/locale/it_IT.utf8/LC_MESSAGES/messages.mo trunk/locale/it_IT.utf8/LC_MESSAGES/messages.po trunk/locale/ja_JP.utf8/LC_MESSAGES/messages.mo trunk/locale/ja_JP.utf8/LC_MESSAGES/messages.po trunk/locale/ko_KR.utf8/LC_MESSAGES/messages.mo trunk/locale/ko_KR.utf8/LC_MESSAGES/messages.po trunk/locale/lv_LV.utf8/LC_MESSAGES/messages.mo trunk/locale/lv_LV.utf8/LC_MESSAGES/messages.po trunk/locale/mr_IN.utf8/LC_MESSAGES/messages.po trunk/locale/nl_NL.utf8/LC_MESSAGES/messages.mo trunk/locale/nl_NL.utf8/LC_MESSAGES/messages.po trunk/locale/pl_PL.utf8/LC_MESSAGES/messages.mo trunk/locale/pl_PL.utf8/LC_MESSAGES/messages.po trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.mo trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po trunk/locale/pt_PT.utf8/LC_MESSAGES/messages.mo trunk/locale/pt_PT.utf8/LC_MESSAGES/messages.po trunk/locale/ro_RO.utf8/LC_MESSAGES/messages.mo trunk/locale/ro_RO.utf8/LC_MESSAGES/messages.po trunk/locale/ru_RU.utf8/LC_MESSAGES/messages.mo trunk/locale/ru_RU.utf8/LC_MESSAGES/messages.po trunk/locale/sq_AL.utf8/LC_MESSAGES/messages.mo trunk/locale/sq_AL.utf8/LC_MESSAGES/messages.po trunk/locale/sv_SE.utf8/LC_MESSAGES/messages.mo trunk/locale/sv_SE.utf8/LC_MESSAGES/messages.po trunk/locale/sw_KE.utf8/LC_MESSAGES/messages.mo trunk/locale/sw_KE.utf8/LC_MESSAGES/messages.po trunk/locale/tr_TR.utf8/LC_MESSAGES/messages.mo trunk/locale/tr_TR.utf8/LC_MESSAGES/messages.po trunk/locale/vi_VN.utf8/LC_MESSAGES/messages.mo trunk/locale/vi_VN.utf8/LC_MESSAGES/messages.po trunk/locale/zh_CN.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_CN.utf8/LC_MESSAGES/messages.po trunk/locale/zh_HK.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_HK.utf8/LC_MESSAGES/messages.po trunk/locale/zh_TW.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_TW.utf8/LC_MESSAGES/messages.po Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-06-18 01:08:18 UTC (rev 7768) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-06-18 01:16:51 UTC (rev 7769) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-14 17:52-0600\n" +"POT-Creation-Date: 2017-06-17 19:13-0600\n" "PO-Revision-Date: 2013-06-01 11:19-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -159,23 +159,23 @@ #: Areas.php:115 Areas.php:124 BankAccounts.php:165 CreditStatus.php:125 #: Currencies.php:247 Currencies.php:255 Currencies.php:263 Currencies.php:273 #: CustomerBranches.php:300 CustomerBranches.php:310 CustomerBranches.php:320 -#: CustomerBranches.php:330 CustomerBranches.php:340 CustomerTypes.php:146 -#: CustomerTypes.php:156 Customers.php:296 Customers.php:305 Customers.php:313 -#: Customers.php:324 Customers.php:334 Departments.php:141 Factors.php:134 -#: FixedAssetCategories.php:137 GLAccounts.php:110 GLAccounts.php:124 -#: Locations.php:279 Locations.php:287 Locations.php:298 Locations.php:307 -#: Locations.php:316 Locations.php:325 Locations.php:334 Locations.php:343 -#: Locations.php:351 MRPDemandTypes.php:87 Manufacturers.php:185 -#: PaymentMethods.php:162 PaymentTerms.php:146 PaymentTerms.php:153 -#: PcExpenses.php:161 SalesCategories.php:147 SalesCategories.php:154 -#: SalesPeople.php:159 SalesPeople.php:166 SalesPeople.php:172 -#: SalesTypes.php:140 SalesTypes.php:150 Shippers.php:81 Shippers.php:93 -#: StockCategories.php:216 Stocks.php:767 Stocks.php:776 Stocks.php:784 -#: Stocks.php:792 Stocks.php:800 Stocks.php:808 Stocks.php:816 Stocks.php:824 -#: SupplierTypes.php:126 Suppliers.php:646 Suppliers.php:655 Suppliers.php:663 -#: TaxCategories.php:132 TaxGroups.php:135 TaxGroups.php:143 -#: TaxProvinces.php:129 UnitsOfMeasure.php:135 WWW_Access.php:88 -#: WorkCentres.php:91 WorkCentres.php:97 +#: CustomerBranches.php:330 CustomerBranches.php:340 Customers.php:296 +#: Customers.php:305 Customers.php:313 Customers.php:324 Customers.php:334 +#: CustomerTypes.php:146 CustomerTypes.php:156 Departments.php:141 +#: Factors.php:134 FixedAssetCategories.php:137 GLAccounts.php:110 +#: GLAccounts.php:124 Locations.php:279 Locations.php:287 Locations.php:298 +#: Locations.php:307 Locations.php:316 Locations.php:325 Locations.php:334 +#: Locations.php:343 Locations.php:351 Manufacturers.php:185 +#: MRPDemandTypes.php:87 PaymentMethods.php:162 PaymentTerms.php:146 +#: PaymentTerms.php:153 PcExpenses.php:161 SalesCategories.php:147 +#: SalesCategories.php:154 SalesPeople.php:159 SalesPeople.php:166 +#: SalesPeople.php:172 SalesTypes.php:140 SalesTypes.php:150 Shippers.php:81 +#: Shippers.php:93 StockCategories.php:216 Stocks.php:767 Stocks.php:776 +#: Stocks.php:784 Stocks.php:792 Stocks.php:800 Stocks.php:808 Stocks.php:816 +#: Stocks.php:824 Suppliers.php:646 Suppliers.php:655 Suppliers.php:663 +#: SupplierTypes.php:126 TaxCategories.php:132 TaxGroups.php:135 +#: TaxGroups.php:143 TaxProvinces.php:129 UnitsOfMeasure.php:135 +#: WorkCentres.php:91 WorkCentres.php:97 WWW_Access.php:88 msgid "There are" msgstr "يوجد" @@ -231,46 +231,45 @@ #: BOMIndented.php:249 BOMIndentedReverse.php:236 BOMInquiry.php:186 #: BOMListing.php:110 BOMs.php:285 BOMs.php:990 CollectiveWorkOrderCost.php:281 #: CompanyPreferences.php:100 CounterReturns.php:1625 CounterSales.php:2097 -#: CounterSales.php:2193 CreditStatus.php:21 Credit_Invoice.php:286 +#: CounterSales.php:2193 Credit_Invoice.php:286 CreditStatus.php:21 #: CustEDISetup.php:17 CustItem.php:120 CustItem.php:210 CustItem.php:238 #: DebtorsAtPeriodEnd.php:129 DiscountCategories.php:12 #: DiscountCategories.php:149 DiscountMatrix.php:16 EDIMessageFormat.php:105 #: FixedAssetLocations.php:13 FixedAssetRegister.php:16 #: FixedAssetRegister.php:256 FixedAssetTransfer.php:14 FormDesigner.php:185 -#: GLBudgets.php:32 GLJournal.php:250 GLJournalInquiry.php:11 -#: HistoricalTestResults.php:42 InternalStockRequest.php:316 -#: InternalStockRequestInquiry.php:167 InventoryPlanning.php:459 -#: InventoryPlanningPrefSupplier.php:386 MRPReport.php:543 -#: MaintenanceTasks.php:14 MaintenanceUserSchedule.php:16 NoSalesItems.php:91 -#: PDFPickingList.php:29 PDFStockLocTransfer.php:16 POReport.php:60 -#: POReport.php:64 POReport.php:68 PO_AuthorisationLevels.php:10 -#: PO_SelectOSPurchOrder.php:153 PcAssignCashTabToTab.php:76 -#: PcAssignCashTabToTab.php:156 PcAssignCashTabToTab.php:212 -#: PcAssignCashToTab.php:59 PcAssignCashToTab.php:144 PcAssignCashToTab.php:160 -#: PcAssignCashToTab.php:207 PriceMatrix.php:16 Prices.php:11 -#: PricesBasedOnMarkUp.php:8 Prices_Customer.php:35 ProductSpecs.php:38 -#: PurchData.php:241 PurchData.php:373 PurchData.php:401 -#: PurchaseByPrefSupplier.php:305 QATests.php:22 RecurringSalesOrders.php:320 -#: SalesAnalReptCols.php:51 SalesAnalRepts.php:14 SalesCategories.php:11 -#: SalesGLPostings.php:19 SalesGraph.php:39 SalesPeople.php:28 -#: SalesTypes.php:20 SelectAsset.php:48 SelectCompletedOrder.php:11 -#: SelectContract.php:69 SelectCreditItems.php:221 SelectCreditItems.php:292 -#: SelectCustomer.php:258 SelectGLAccount.php:86 SelectOrderItems.php:588 -#: SelectOrderItems.php:1501 SelectOrderItems.php:1601 SelectProduct.php:523 -#: SelectQASamples.php:45 SelectSalesOrder.php:545 SelectSupplier.php:14 -#: SelectSupplier.php:222 SelectWorkOrder.php:9 SelectWorkOrder.php:174 -#: SellThroughSupport.php:229 ShipmentCosting.php:11 Shipments.php:17 -#: Shippers.php:123 Shippers.php:160 Shipt_Select.php:8 +#: GLBudgets.php:32 GLJournalInquiry.php:11 GLJournal.php:250 +#: HistoricalTestResults.php:42 InternalStockRequestInquiry.php:167 +#: InternalStockRequest.php:316 InventoryPlanning.php:459 +#: InventoryPlanningPrefSupplier.php:386 MaintenanceTasks.php:14 +#: MaintenanceUserSchedule.php:16 MRPReport.php:543 NoSalesItems.php:91 +#: PcAssignCashTabToTab.php:76 PcAssignCashTabToTab.php:156 +#: PcAssignCashTabToTab.php:212 PcAssignCashToTab.php:59 +#: PcAssignCashToTab.php:144 PcAssignCashToTab.php:160 +#: PcAssignCashToTab.php:207 PDFPickingList.php:29 PDFStockLocTransfer.php:16 +#: PO_AuthorisationLevels.php:10 POReport.php:60 POReport.php:64 +#: POReport.php:68 PO_SelectOSPurchOrder.php:153 PriceMatrix.php:16 +#: PricesBasedOnMarkUp.php:8 Prices_Customer.php:35 Prices.php:11 +#: ProductSpecs.php:38 PurchaseByPrefSupplier.php:305 PurchData.php:241 +#: PurchData.php:373 PurchData.php:401 QATests.php:22 +#: RecurringSalesOrders.php:320 SalesAnalReptCols.php:51 SalesAnalRepts.php:14 +#: SalesCategories.php:11 SalesGLPostings.php:19 SalesGraph.php:39 +#: SalesPeople.php:28 SalesTypes.php:20 SelectAsset.php:48 +#: SelectCompletedOrder.php:11 SelectContract.php:69 SelectCreditItems.php:221 +#: SelectCreditItems.php:292 SelectCustomer.php:258 SelectGLAccount.php:86 +#: SelectOrderItems.php:588 SelectOrderItems.php:1501 SelectOrderItems.php:1601 +#: SelectProduct.php:523 SelectQASamples.php:45 SelectSalesOrder.php:545 +#: SelectSupplier.php:14 SelectSupplier.php:222 SelectWorkOrder.php:9 +#: SelectWorkOrder.php:174 SellThroughSupport.php:229 ShipmentCosting.php:11 +#: Shipments.php:17 Shippers.php:123 Shippers.php:160 Shipt_Select.php:8 #: StockLocMovements.php:14 StockSerialItemResearch.php:30 #: SupplierPriceList.php:14 SupplierPriceList.php:229 SupplierPriceList.php:399 -#: SupplierPriceList.php:458 SupplierPriceList.php:503 +#: SupplierPriceList.php:458 SupplierPriceList.php:503 Suppliers.php:304 #: SupplierTenderCreate.php:556 SupplierTenderCreate.php:664 #: SupplierTenders.php:322 SupplierTenders.php:388 SupplierTransInquiry.php:10 -#: Suppliers.php:304 TestPlanResults.php:27 TopItems.php:118 -#: UnitsOfMeasure.php:10 WhereUsedInquiry.php:18 WorkCentres.php:113 -#: WorkOrderCosting.php:22 WorkOrderIssue.php:22 WorkOrderReceive.php:34 -#: WorkOrderStatus.php:58 Z_BottomUpCosts.php:57 -#: ../webSHOP/includes/header.php:251 +#: TestPlanResults.php:27 TopItems.php:118 UnitsOfMeasure.php:10 +#: WhereUsedInquiry.php:18 WorkCentres.php:113 WorkOrderCosting.php:22 +#: WorkOrderIssue.php:22 WorkOrderReceive.php:34 WorkOrderStatus.php:58 +#: Z_BottomUpCosts.php:57 ../webSHOP/includes/header.php:251 msgid "Search" msgstr "إبحث" @@ -308,24 +307,24 @@ #: InternalStockRequestInquiry.php:438 InternalStockRequestInquiry.php:449 #: Labels.php:606 Labels.php:608 Labels.php:634 Locations.php:446 #: Locations.php:670 Locations.php:672 Locations.php:685 Locations.php:687 -#: Locations.php:703 MRP.php:554 MRP.php:558 MRP.php:562 MRP.php:566 -#: MRP.php:570 MRPCalendar.php:224 PDFChequeListing.php:65 PDFDIFOT.php:80 -#: PDFDeliveryDifferences.php:76 PDFWOPrint.php:602 PDFWOPrint.php:606 -#: PO_AuthorisationLevels.php:134 PO_AuthorisationLevels.php:139 -#: PO_Header.php:807 PO_PDFPurchOrder.php:413 PO_PDFPurchOrder.php:416 -#: PaymentMethods.php:227 PaymentMethods.php:228 PaymentMethods.php:229 -#: PaymentMethods.php:230 PaymentMethods.php:301 PaymentMethods.php:308 -#: PaymentMethods.php:315 PaymentMethods.php:322 PcAuthorizeExpenses.php:249 -#: ProductSpecs.php:188 ProductSpecs.php:409 ProductSpecs.php:414 -#: ProductSpecs.php:420 ProductSpecs.php:425 ProductSpecs.php:430 -#: ProductSpecs.php:562 ProductSpecs.php:608 ProductSpecs.php:610 -#: ProductSpecs.php:621 ProductSpecs.php:623 ProductSpecs.php:634 -#: ProductSpecs.php:636 ProductSpecs.php:647 ProductSpecs.php:649 -#: PurchData.php:296 PurchData.php:667 PurchData.php:670 QATests.php:293 -#: QATests.php:295 QATests.php:306 QATests.php:308 QATests.php:319 -#: QATests.php:321 QATests.php:332 QATests.php:334 QATests.php:345 -#: QATests.php:347 QATests.php:414 QATests.php:419 QATests.php:424 -#: QATests.php:429 QATests.php:434 RecurringSalesOrders.php:493 +#: Locations.php:703 MRPCalendar.php:224 MRP.php:554 MRP.php:558 MRP.php:562 +#: MRP.php:566 MRP.php:570 PaymentMethods.php:227 PaymentMethods.php:228 +#: PaymentMethods.php:229 PaymentMethods.php:230 PaymentMethods.php:301 +#: PaymentMethods.php:308 PaymentMethods.php:315 PaymentMethods.php:322 +#: PcAuthorizeExpenses.php:249 PDFChequeListing.php:65 +#: PDFDeliveryDifferences.php:76 PDFDIFOT.php:80 PDFWOPrint.php:602 +#: PDFWOPrint.php:606 PO_AuthorisationLevels.php:134 +#: PO_AuthorisationLevels.php:139 PO_Header.php:807 PO_PDFPurchOrder.php:413 +#: PO_PDFPurchOrder.php:416 ProductSpecs.php:188 ProductSpecs.php:409 +#: ProductSpecs.php:414 ProductSpecs.php:420 ProductSpecs.php:425 +#: ProductSpecs.php:430 ProductSpecs.php:562 ProductSpecs.php:608 +#: ProductSpecs.php:610 ProductSpecs.php:621 ProductSpecs.php:623 +#: ProductSpecs.php:634 ProductSpecs.php:636 ProductSpecs.php:647 +#: ProductSpecs.php:649 PurchData.php:296 PurchData.php:667 PurchData.php:670 +#: QATests.php:293 QATests.php:295 QATests.php:306 QATests.php:308 +#: QATests.php:319 QATests.php:321 QATests.php:332 QATests.php:334 +#: QATests.php:345 QATests.php:347 QATests.php:414 QATests.php:419 +#: QATests.php:424 QATests.php:429 QATests.php:434 RecurringSalesOrders.php:493 #: RecurringSalesOrders.php:496 SalesAnalReptCols.php:284 #: SalesAnalReptCols.php:419 SalesAnalReptCols.php:422 SalesAnalRepts.php:420 #: SalesAnalRepts.php:423 SalesAnalRepts.php:448 SalesAnalRepts.php:451 @@ -364,9 +363,9 @@ #: AccountGroups.php:312 AccountGroups.php:472 AccountGroups.php:475 #: AddCustomerContacts.php:165 AddCustomerContacts.php:274 -#: AddCustomerContacts.php:278 AddCustomerContacts.php:281 BOMs.php:142 -#: BOMs.php:895 BOMs.php:899 BankAccounts.php:218 BankAccounts.php:412 -#: BankAccounts.php:414 BankAccounts.php:418 BankAccounts.php:426 +#: AddCustomerContacts.php:278 AddCustomerContacts.php:281 BankAccounts.php:218 +#: BankAccounts.php:412 BankAccounts.php:414 BankAccounts.php:418 +#: BankAccounts.php:426 BOMs.php:142 BOMs.php:895 BOMs.php:899 #: CompanyPreferences.php:422 CompanyPreferences.php:426 #: CompanyPreferences.php:437 CompanyPreferences.php:441 #: CompanyPreferences.php:452 CompanyPreferences.php:456 @@ -379,15 +378,15 @@ #: InternalStockRequestInquiry.php:436 InternalStockRequestInquiry.php:447 #: Labels.php:605 Labels.php:609 Labels.php:635 Locations.php:446 #: Locations.php:675 Locations.php:677 Locations.php:690 Locations.php:692 -#: Locations.php:704 MRP.php:552 MRP.php:556 MRP.php:560 MRP.php:564 -#: MRP.php:568 MRPCalendar.php:226 NoSalesItems.php:191 PDFChequeListing.php:64 -#: PDFDIFOT.php:79 PDFDeliveryDifferences.php:75 PDFWOPrint.php:603 +#: Locations.php:704 MRPCalendar.php:226 MRP.php:552 MRP.php:556 MRP.php:560 +#: MRP.php:564 MRP.php:568 NoSalesItems.php:191 PaymentMethods.php:227 +#: PaymentMethods.php:228 PaymentMethods.php:229 PaymentMethods.php:230 +#: PaymentMethods.php:302 PaymentMethods.php:309 PaymentMethods.php:316 +#: PaymentMethods.php:323 PcAuthorizeExpenses.php:247 PDFChequeListing.php:64 +#: PDFDeliveryDifferences.php:75 PDFDIFOT.php:79 PDFWOPrint.php:603 #: PDFWOPrint.php:607 PO_AuthorisationLevels.php:136 #: PO_AuthorisationLevels.php:141 PO_Header.php:806 PO_PDFPurchOrder.php:414 -#: PO_PDFPurchOrder.php:417 PaymentMethods.php:227 PaymentMethods.php:228 -#: PaymentMethods.php:229 PaymentMethods.php:230 PaymentMethods.php:302 -#: PaymentMethods.php:309 PaymentMethods.php:316 PaymentMethods.php:323 -#: PcAuthorizeExpenses.php:247 ProductSpecs.php:191 ProductSpecs.php:411 +#: PO_PDFPurchOrder.php:417 ProductSpecs.php:191 ProductSpecs.php:411 #: ProductSpecs.php:417 ProductSpecs.php:422 ProductSpecs.php:427 #: ProductSpecs.php:432 ProductSpecs.php:613 ProductSpecs.php:615 #: ProductSpecs.php:626 ProductSpecs.php:628 ProductSpecs.php:639 @@ -436,33 +435,32 @@ #: AccountGroups.php:321 AccountSections.php:196 AddCustomerContacts.php:158 #: AddCustomerNotes.php:137 AddCustomerTypeNotes.php:131 Areas.php:164 -#: BOMs.php:198 BankAccounts.php:243 COGSGLPostings.php:115 +#: BankAccounts.php:243 BOMs.php:198 COGSGLPostings.php:115 #: COGSGLPostings.php:222 CreditStatus.php:175 Currencies.php:374 #: Currencies.php:391 CustItem.php:166 CustomerBranches.php:456 -#: CustomerTypes.php:205 Customers.php:1131 Customers.php:1165 +#: Customers.php:1131 Customers.php:1165 CustomerTypes.php:205 #: Departments.php:186 EDIMessageFormat.php:150 Factors.php:334 #: FixedAssetCategories.php:190 FixedAssetLocations.php:111 -#: FreightCosts.php:253 GLAccounts.php:335 GLTags.php:96 GeocodeSetup.php:173 +#: FreightCosts.php:253 GeocodeSetup.php:173 GLAccounts.php:335 GLTags.php:96 #: ImportBankTransAnalysis.php:223 InternalStockRequest.php:297 Labels.php:333 -#: Labels.php:358 Locations.php:439 MRPDemandTypes.php:120 MRPDemands.php:309 -#: MailingGroupMaintenance.php:178 MaintenanceTasks.php:118 -#: Manufacturers.php:260 PO_AuthorisationLevels.php:151 PaymentMethods.php:232 -#: PaymentTerms.php:205 PcAssignCashToTab.php:291 -#: PcClaimExpensesFromTab.php:280 PcExpenses.php:226 PcTabs.php:256 -#: PcTypeTabs.php:180 PriceMatrix.php:293 Prices.php:253 -#: Prices_Customer.php:286 ProductSpecs.php:465 PurchData.php:312 -#: QATests.php:467 SalesCategories.php:310 SalesGLPostings.php:137 -#: SalesGLPostings.php:255 SalesPeople.php:240 SalesTypes.php:206 -#: SecurityTokens.php:116 SelectCustomer.php:733 SelectCustomer.php:759 -#: SelectCustomer.php:814 SelectCustomer.php:832 SelectCustomer.php:856 -#: SelectCustomer.php:873 SelectGLAccount.php:139 SelectGLAccount.php:154 -#: SelectQASamples.php:417 SellThroughSupport.php:298 Shippers.php:144 -#: StockCategories.php:296 SuppTransGLAnalysis.php:126 SupplierContacts.php:165 -#: SupplierTenderCreate.php:157 SupplierTypes.php:170 TaxAuthorities.php:172 -#: TaxCategories.php:184 TaxGroups.php:191 TaxProvinces.php:179 -#: UnitsOfMeasure.php:185 WWW_Access.php:132 WWW_Users.php:391 -#: WorkCentres.php:145 includes/InputSerialItems.php:110 -#: includes/OutputSerialItems.php:20 +#: Labels.php:358 Locations.php:439 MailingGroupMaintenance.php:178 +#: MaintenanceTasks.php:118 Manufacturers.php:260 MRPDemands.php:309 +#: MRPDemandTypes.php:120 PaymentMethods.php:232 PaymentTerms.php:205 +#: PcAssignCashToTab.php:291 PcClaimExpensesFromTab.php:280 PcExpenses.php:226 +#: PcTabs.php:256 PcTypeTabs.php:180 PO_AuthorisationLevels.php:151 +#: PriceMatrix.php:293 Prices_Customer.php:286 Prices.php:253 +#: ProductSpecs.php:465 PurchData.php:312 QATests.php:467 +#: SalesCategories.php:310 SalesGLPostings.php:137 SalesGLPostings.php:255 +#: SalesPeople.php:240 SalesTypes.php:206 SecurityTokens.php:116 +#: SelectCustomer.php:733 SelectCustomer.php:759 SelectCustomer.php:814 +#: SelectCustomer.php:832 SelectCustomer.php:856 SelectCustomer.php:873 +#: SelectGLAccount.php:139 SelectGLAccount.php:154 SelectQASamples.php:417 +#: SellThroughSupport.php:298 Shippers.php:144 StockCategories.php:296 +#: SupplierContacts.php:165 SupplierTenderCreate.php:157 SupplierTypes.php:170 +#: SuppTransGLAnalysis.php:126 TaxAuthorities.php:172 TaxCategories.php:184 +#: TaxGroups.php:191 TaxProvinces.php:179 UnitsOfMeasure.php:185 +#: WorkCentres.php:145 WWW_Access.php:132 WWW_Users.php:391 +#: includes/InputSerialItems.php:110 includes/OutputSerialItems.php:20 #: reportwriter/languages/en_US/reports.php:143 #, php-format msgid "Edit" @@ -474,24 +472,24 @@ #: AccountGroups.php:322 AccountSections.php:201 AddCustomerContacts.php:159 #: AddCustomerNotes.php:138 AddCustomerTypeNotes.php:132 Areas.php:165 -#: BOMs.php:200 BankAccounts.php:244 COGSGLPostings.php:116 +#: BankAccounts.php:244 BOMs.php:200 COGSGLPostings.php:116 #: COGSGLPostings.php:223 ContractBOM.php:271 ContractOtherReqts.php:123 -#: CounterReturns.php:740 CounterSales.php:836 CreditStatus.php:176 -#: Credit_Invoice.php:419 Currencies.php:377 CustItem.php:167 -#: CustomerReceipt.php:1009 CustomerTypes.php:206 Customers.php:1166 +#: CounterReturns.php:740 CounterSales.php:836 Credit_Invoice.php:419 +#: CreditStatus.php:176 Currencies.php:377 CustItem.php:167 +#: CustomerReceipt.php:1009 Customers.php:1166 CustomerTypes.php:206 #: Departments.php:187 DiscountCategories.php:238 DiscountMatrix.php:183 #: EDIMessageFormat.php:151 FixedAssetCategories.php:191 FreightCosts.php:254 -#: GLAccounts.php:336 GLJournal.php:431 GLTags.php:97 GeocodeSetup.php:174 +#: GeocodeSetup.php:174 GLAccounts.php:336 GLJournal.php:431 GLTags.php:97 #: ImportBankTransAnalysis.php:224 InternalStockCategoriesByRole.php:184 #: InternalStockRequest.php:298 Labels.php:334 Labels.php:359 Labels.php:612 -#: Locations.php:440 MRPDemandTypes.php:121 MRPDemands.php:310 -#: MailingGroupMaintenance.php:179 MaintenanceTasks.php:119 -#: Manufacturers.php:261 PO_AuthorisationLevels.php:153 PO_Items.php:768 -#: PaymentMethods.php:233 PaymentTerms.php:206 Payments.php:1155 +#: Locations.php:440 MailingGroupMaintenance.php:179 MaintenanceTasks.php:119 +#: Manufacturers.php:261 MRPDemands.php:310 MRPDemandTypes.php:121 +#: PaymentMethods.php:233 Payments.php:1155 PaymentTerms.php:206 #: PcAssignCashToTab.php:295 PcClaimExpensesFromTab.php:281 PcExpenses.php:227 #: PcExpensesTypeTab.php:186 PcTabs.php:257 PcTypeTabs.php:181 -#: PriceMatrix.php:292 Prices.php:254 Prices_Customer.php:287 -#: ProductSpecs.php:466 PurchData.php:314 PurchData.php:721 QATests.php:468 +#: PO_AuthorisationLevels.php:153 PO_Items.php:768 PriceMatrix.php:292 +#: Prices_Customer.php:287 Prices.php:254 ProductSpecs.php:466 +#: PurchData.php:314 PurchData.php:721 QATests.php:468 #: RelatedItemsUpdate.php:161 RelatedItemsUpdate.php:176 #: SalesAnalReptCols.php:299 SalesAnalRepts.php:307 SalesCategories.php:311 #: SalesGLPostings.php:138 SalesGLPostings.php:256 SalesPeople.php:241 @@ -502,14 +500,13 @@ #: Shipments.php:438 Shippers.php:145 SpecialOrder.php:667 #: StockCategories.php:297 StockCategories.php:626 StockLocTransfer.php:325 #: SuppContractChgs.php:99 SuppCreditGRNs.php:117 SuppFixedAssetChgs.php:86 -#: SuppInvGRNs.php:151 SuppShiptChgs.php:90 SuppTransGLAnalysis.php:127 -#: SupplierContacts.php:166 SupplierTenderCreate.php:422 -#: SupplierTenderCreate.php:452 SupplierTypes.php:172 TaxAuthorities.php:173 -#: TaxCategories.php:186 TaxGroups.php:192 TaxProvinces.php:180 -#: TestPlanResults.php:920 UnitsOfMeasure.php:186 WOSerialNos.php:335 -#: WWW_Access.php:133 WWW_Users.php:392 WorkCentres.php:146 -#: WorkOrderEntry.php:865 includes/InputSerialItemsKeyed.php:60 -#: includes/OutputSerialItems.php:99 +#: SuppInvGRNs.php:151 SupplierContacts.php:166 SupplierTenderCreate.php:422 +#: SupplierTenderCreate.php:452 SupplierTypes.php:172 SuppShiptChgs.php:90 +#: SuppTransGLAnalysis.php:127 TaxAuthorities.php:173 TaxCategories.php:186 +#: TaxGroups.php:192 TaxProvinces.php:180 TestPlanResults.php:920 +#: UnitsOfMeasure.php:186 WorkCentres.php:146 WorkOrderEntry.php:865 +#: WOSerialNos.php:335 WWW_Access.php:133 WWW_Users.php:392 +#: includes/InputSerialItemsKeyed.php:60 includes/OutputSerialItems.php:99 #: reportwriter/languages/en_US/reports.php:141 #, php-format msgid "Delete" @@ -540,16 +537,17 @@ #: GLCashFlowsSetup.php:172 GLTags.php:68 GoodsReceived.php:298 #: GoodsReceived.php:304 GoodsReceived.php:311 GoodsReceived.php:819 #: ImportBankTransAnalysis.php:154 ImportBankTransAnalysis.php:185 -#: InternalStockRequest.php:255 InternalStockRequestAuthorisation.php:123 -#: InternalStockRequestFulfill.php:364 LocationUsers.php:177 -#: MRPCalendar.php:315 PO_AuthoriseMyOrders.php:142 Payments.php:981 -#: PcAuthorizeExpenses.php:109 PcAuthorizeExpenses.php:294 PricesByCost.php:223 -#: PurchData.php:758 ReorderLevelLocation.php:140 RevisionTranslations.php:111 -#: SMTPServer.php:126 SecurityTokens.php:136 SelectCreditItems.php:954 -#: SellThroughSupport.php:476 ShopParameters.php:610 StockCostUpdate.php:196 +#: InternalStockRequestAuthorisation.php:123 +#: InternalStockRequestFulfill.php:364 InternalStockRequest.php:255 +#: LocationUsers.php:177 MRPCalendar.php:315 Payments.php:981 +#: PcAuthorizeExpenses.php:109 PcAuthorizeExpenses.php:294 +#: PO_AuthoriseMyOrders.php:142 PricesByCost.php:223 PurchData.php:758 +#: ReorderLevelLocation.php:140 RevisionTranslations.php:111 +#: SecurityTokens.php:136 SelectCreditItems.php:954 SellThroughSupport.php:476 +#: ShopParameters.php:610 SMTPServer.php:126 StockCostUpdate.php:196 #: StockReorderLevel.php:111 Stocks.php:1452 SystemParameters.php:1246 -#: UserGLAccounts.php:159 UserLocations.php:178 WOSerialNos.php:345 -#: WorkOrderEntry.php:887 reportwriter/languages/en_US/reports.php:156 +#: UserGLAccounts.php:159 UserLocations.php:178 WorkOrderEntry.php:887 +#: WOSerialNos.php:345 reportwriter/languages/en_US/reports.php:156 msgid "Update" msgstr "" @@ -556,8 +554,8 @@ #: AccountGroups.php:378 AccountGroups.php:418 AnalysisHorizontalIncome.php:125 #: AnalysisHorizontalIncome.php:526 AnalysisHorizontalPosition.php:79 #: AnalysisHorizontalPosition.php:362 DailyBankTransactions.php:256 -#: GLAccountUsers.php:253 GLBalanceSheet.php:720 GLCashFlowsIndirect.php:743 -#: GLCashFlowsIndirect.php:776 GLCashFlowsSetup.php:180 GLProfit_Loss.php:1317 +#: GLAccountUsers.php:253 GLBalanceSheet.php:720 GLCashFlowsIndirect.php:749 +#: GLCashFlowsIndirect.php:782 GLCashFlowsSetup.php:180 GLProfit_Loss.php:1317 #: GLTrialBalance.php:740 InternalStockRequestInquiry.php:263 #: PurchasesReport.php:231 PurchasesReport.php:253 SecurityTokens.php:140 #: SecurityTokens.php:156 UserGLAccounts.php:259 @@ -679,22 +677,22 @@ msgstr "" #: AccountSections.php:285 AddCustomerContacts.php:297 AddCustomerNotes.php:242 -#: AddCustomerTypeNotes.php:221 Areas.php:229 BOMs.php:916 BankAccounts.php:433 +#: AddCustomerTypeNotes.php:221 Areas.php:229 BankAccounts.php:433 BOMs.php:916 #: COGSGLPostings.php:371 CreditStatus.php:259 Currencies.php:537 #: CustLoginSetup.php:273 Departments.php:258 DiscountMatrix.php:142 #: EDIMessageFormat.php:248 FixedAssetCategories.php:350 -#: FixedAssetLocations.php:161 FreightCosts.php:371 GLAccounts.php:285 -#: GeocodeSetup.php:271 Labels.php:647 Locations.php:716 MRPDemandTypes.php:188 -#: MRPDemands.php:424 Manufacturers.php:375 OffersReceived.php:57 -#: OffersReceived.php:146 PO_AuthorisationLevels.php:264 PaymentMethods.php:332 -#: PaymentTerms.php:310 PriceMatrix.php:236 Prices_Customer.php:369 +#: FixedAssetLocations.php:161 FreightCosts.php:371 GeocodeSetup.php:271 +#: GLAccounts.php:285 Labels.php:647 Locations.php:716 Manufacturers.php:375 +#: MRPDemands.php:424 MRPDemandTypes.php:188 OffersReceived.php:57 +#: OffersReceived.php:146 PaymentMethods.php:332 PaymentTerms.php:310 +#: PO_AuthorisationLevels.php:264 PriceMatrix.php:236 Prices_Customer.php:369 #: ProductSpecs.php:661 QATests.php:359 SalesAnalReptCols.php:552 #: SalesAnalRepts.php:519 SalesGLPostings.php:427 SalesPeople.php:381 #: SelectQASamples.php:531 SelectQASamples.php:601 Shippers.php:203 -#: StockCategories.php:653 SuppLoginSetup.php:291 SupplierContacts.php:284 +#: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 -#: TestPlanResults.php:967 UnitsOfMeasure.php:241 WWW_Users.php:835 -#: WorkCentres.php:289 +#: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 +#: WWW_Users.php:835 msgid "Enter Information" msgstr "أدخل المعلومات" @@ -735,11 +733,11 @@ #: AddCustomerContacts.php:63 AddCustomerNotes.php:51 #: AddCustomerTypeNotes.php:48 Areas.php:72 CustomerTypes.php:68 #: DeliveryDetails.php:809 DeliveryDetails.php:826 Factors.php:105 -#: FixedAssetItems.php:255 MRPCalendar.php:176 PO_Items.php:380 -#: PcAssignCashToTab.php:102 PcClaimExpensesFromTab.php:86 PcExpenses.php:98 -#: PcTabs.php:124 PcTypeTabs.php:63 ProductSpecs.php:315 QATests.php:76 +#: FixedAssetItems.php:255 MRPCalendar.php:176 PcAssignCashToTab.php:102 +#: PcClaimExpensesFromTab.php:86 PcExpenses.php:98 PcTabs.php:124 +#: PcTypeTabs.php:63 PO_Items.php:380 ProductSpecs.php:315 QATests.php:76 #: SalesAnalReptCols.php:129 SalesPeople.php:105 SalesTypes.php:66 -#: SelectQASamples.php:85 Stocks.php:594 SupplierTypes.php:68 Suppliers.php:531 +#: SelectQASamples.php:85 Stocks.php:594 Suppliers.php:531 SupplierTypes.php:68 msgid "has been updated" msgstr "" @@ -757,7 +755,7 @@ #: PrintWOItemSlip.php:195 PrintWOItemSlip.php:206 ProductSpecs.php:164 #: ProductSpecs.php:385 QATests.php:391 SalesPeople.php:208 #: SelectCustomer.php:727 StockDispatch.php:277 StockDispatch.php:288 -#: StockDispatch.php:299 SuppTransGLAnalysis.php:108 SupplierContacts.php:152 +#: StockDispatch.php:299 SupplierContacts.php:152 SuppTransGLAnalysis.php:108 #: Tax.php:411 TestPlanResults.php:508 UserBankAccounts.php:164 #: UserGLAccounts.php:157 UserLocations.php:176 #: includes/InputSerialItemsFile.php:92 includes/InputSerialItemsFile.php:144 @@ -803,15 +801,15 @@ #: AddCustomerContacts.php:138 AddCustomerContacts.php:289 #: AnalysisHorizontalIncome.php:173 AnalysisHorizontalPosition.php:123 -#: Customers.php:1122 Customers.php:1130 GLCashFlowsIndirect.php:128 -#: GLCashFlowsIndirect.php:447 PDFQuotation.php:252 -#: PDFQuotationPortrait.php:249 PcAssignCashTabToTab.php:261 +#: Customers.php:1122 Customers.php:1130 GLCashFlowsIndirect.php:130 +#: GLCashFlowsIndirect.php:450 PcAssignCashTabToTab.php:261 #: PcAssignCashTabToTab.php:384 PcAssignCashToTab.php:256 #: PcAssignCashToTab.php:394 PcAuthorizeExpenses.php:98 #: PcClaimExpensesFromTab.php:242 PcClaimExpensesFromTab.php:409 -#: PcReportExpense.php:137 PcReportTab.php:336 PurchasesReport.php:56 -#: SelectCustomer.php:732 ShopParameters.php:198 SystemParameters.php:411 -#: WOSerialNos.php:306 WOSerialNos.php:312 +#: PcReportExpense.php:137 PcReportTab.php:336 PDFQuotation.php:252 +#: PDFQuotationPortrait.php:249 PurchasesReport.php:56 SelectCustomer.php:732 +#: ShopParameters.php:198 SystemParameters.php:411 WOSerialNos.php:306 +#: WOSerialNos.php:312 msgid "Notes" msgstr "" @@ -897,13 +895,13 @@ #: AddCustomerTypeNotes.php:111 AddCustomerTypeNotes.php:211 #: AgedControlledInventory.php:47 BankMatching.php:281 #: BankReconciliation.php:212 BankReconciliation.php:289 -#: ContractCosting.php:177 CustWhereAlloc.php:133 CustomerAccount.php:252 -#: CustomerAllocations.php:348 CustomerAllocations.php:378 -#: CustomerInquiry.php:252 CustomerTransInquiry.php:100 GLAccountReport.php:347 +#: ContractCosting.php:177 CustomerAccount.php:252 CustomerAllocations.php:348 +#: CustomerAllocations.php:378 CustomerInquiry.php:252 +#: CustomerTransInquiry.php:100 CustWhereAlloc.php:133 GLAccountReport.php:347 #: GLTransInquiry.php:47 GoodsReceived.php:130 MRPCalendar.php:219 -#: PDFOrdersInvoiced.php:378 PDFRemittanceAdvice.php:308 PDFWOPrint.php:450 #: PaymentAllocations.php:67 PcAssignCashTabToTab.php:257 #: PcAssignCashToTab.php:252 PcAuthorizeExpenses.php:94 PcReportExpense.php:133 +#: PDFOrdersInvoiced.php:378 PDFRemittanceAdvice.php:308 PDFWOPrint.php:450 #: PrintCustTrans.php:822 PrintCustTransPortrait.php:902 #: PrintWOItemSlip.php:186 PrintWOItemSlip.php:197 PrintWOItemSlip.php:208 #: PurchasesReport.php:67 ReverseGRN.php:401 SelectCustomer.php:810 @@ -910,10 +908,10 @@ #: SelectCustomer.php:852 ShipmentCosting.php:538 ShipmentCosting.php:615 #: Shipments.php:489 StockDispatch.php:279 StockDispatch.php:290 #: StockDispatch.php:301 StockLocMovements.php:92 StockMovements.php:105 -#: StockSerialItemResearch.php:82 SuppWhereAlloc.php:132 -#: SupplierAllocations.php:458 SupplierAllocations.php:572 -#: SupplierAllocations.php:647 SupplierInquiry.php:204 -#: SupplierTransInquiry.php:111 Tax.php:408 Z_CheckGLTransBalance.php:11 +#: StockSerialItemResearch.php:82 SupplierAllocations.php:458 +#: SupplierAllocations.php:572 SupplierAllocations.php:647 +#: SupplierInquiry.php:204 SupplierTransInquiry.php:111 SuppWhereAlloc.php:132 +#: Tax.php:408 Z_CheckGLTransBalance.php:11 #: includes/PDFQuotationPageHeader.inc:31 #: includes/PDFQuotationPortraitPageHeader.inc:80 #: includes/PDFStatementPageHeader.inc:164 includes/PDFTransPageHeader.inc:51 @@ -1021,10 +1019,10 @@ #: AgedControlledInventory.php:12 GLCashFlowsSetup.php:109 #: InventoryQuantities.php:155 InventoryValuation.php:217 Locations.php:12 -#: MRP.php:542 MRPCalendar.php:21 MRPCreateDemands.php:193 -#: MRPDemandTypes.php:17 MRPDemands.php:27 MRPPlannedPurchaseOrders.php:264 +#: MRPCalendar.php:21 MRPCreateDemands.php:193 MRPDemands.php:27 +#: MRPDemandTypes.php:17 MRP.php:542 MRPPlannedPurchaseOrders.php:264 #: MRPPlannedWorkOrders.php:245 MRPPlannedWorkOrders.php:319 PricesByCost.php:8 -#: ReorderLevel.php:194 ReorderLevelLocation.php:12 SelectProduct.php:91 +#: ReorderLevelLocation.php:12 ReorderLevel.php:194 SelectProduct.php:91 #: StockDispatch.php:321 StockMovements.php:22 StockQties_csv.php:8 #: StockQuantityByDate.php:10 StockReorderLevel.php:20 #: StockSerialItemResearch.php:9 StockSerialItems.php:9 StockStatus.php:45 @@ -1054,24 +1052,24 @@ #: FixedAssetRegister.php:87 FixedAssetRegister.php:388 #: FixedAssetTransfer.php:60 FixedAssetTransfer.php:162 GLTags.php:63 #: GLTags.php:82 GLTransInquiry.php:49 GoodsReceived.php:122 -#: InternalStockCategoriesByRole.php:168 InternalStockRequest.php:350 -#: InternalStockRequest.php:564 InternalStockRequest.php:634 -#: InternalStockRequestInquiry.php:221 InternalStockRequestInquiry.php:267 -#: InternalStockRequestInquiry.php:406 InventoryPlanning.php:419 +#: InternalStockCategoriesByRole.php:168 InternalStockRequestInquiry.php:221 +#: InternalStockRequestInquiry.php:267 InternalStockRequestInquiry.php:406 +#: InternalStockRequest.php:350 InternalStockRequest.php:564 +#: InternalStockRequest.php:634 InventoryPlanning.php:419 #: InventoryQuantities.php:246 InventoryValuation.php:197 Labels.php:290 -#: MRPDemandTypes.php:113 MRPDemands.php:92 MRPDemands.php:295 -#: MRPPlannedWorkOrders.php:256 MRPReport.php:563 MRPReport.php:777 -#: MRPReschedules.php:190 MRPShortages.php:349 MaintenanceTasks.php:95 -#: MaintenanceUserSchedule.php:50 MaterialsNotUsed.php:35 NoSalesItems.php:194 -#: PDFCOA.php:64 PDFOrderStatus.php:337 PDFOrdersInvoiced.php:335 -#: PDFSalesBySalesperson.php:86 PDFWeeklyOrders.php:82 PO_Items.php:716 -#: PO_Items.php:1194 PO_SelectOSPurchOrder.php:310 PO_SelectPurchOrder.php:214 -#: PaymentTerms.php:182 PcExpenses.php:190 PcExpenses.php:296 -#: PcExpensesTypeTab.php:170 PcReportTab.php:181 PcTypeTabs.php:164 -#: PricesByCost.php:153 RelatedItemsUpdate.php:160 ReorderLevel.php:298 -#: ReorderLevelLocation.php:73 ReverseGRN.php:400 SalesCategories.php:549 -#: SecurityTokens.php:107 SecurityTokens.php:167 SelectAsset.php:264 -#: SelectCompletedOrder.php:506 SelectContract.php:147 +#: MaintenanceTasks.php:95 MaintenanceUserSchedule.php:50 +#: MaterialsNotUsed.php:35 MRPDemands.php:92 MRPDemands.php:295 +#: MRPDemandTypes.php:113 MRPPlannedWorkOrders.php:256 MRPReport.php:563 +#: MRPReport.php:777 MRPReschedules.php:190 MRPShortages.php:349 +#: NoSalesItems.php:194 PaymentTerms.php:182 PcExpenses.php:190 +#: PcExpenses.php:296 PcExpensesTypeTab.php:170 PcReportTab.php:181 +#: PcTypeTabs.php:164 PDFCOA.php:64 PDFOrdersInvoiced.php:335 +#: PDFOrderStatus.php:337 PDFSalesBySalesperson.php:86 PDFWeeklyOrders.php:82 +#: PO_Items.php:716 PO_Items.php:1194 PO_SelectOSPurchOrder.php:310 +#: PO_SelectPurchOrder.php:214 PricesByCost.php:153 RelatedItemsUpdate.php:160 +#: ReorderLevelLocation.php:73 ReorderLevel.php:298 ReverseGRN.php:400 +#: SalesCategories.php:549 SecurityTokens.php:107 SecurityTokens.php:167 +#: SelectAsset.php:264 SelectCompletedOrder.php:506 SelectContract.php:147 #: SelectCreditItems.php:1019 SelectOrderItems.php:1511 #: SelectOrderItems.php:1682 SelectProduct.php:543 SelectProduct.php:831 #: SelectQASamples.php:299 SelectQASamples.php:397 SelectSalesOrder.php:603 @@ -1079,16 +1077,17 @@ #: StockCounts.php:142 StockDispatch.php:506 StockLocStatus.php:176 #: StockQuantityByDate.php:109 Stocks.php:1018 SuppCreditGRNs.php:92 #: SuppCreditGRNs.php:192 SuppFixedAssetChgs.php:74 SuppInvGRNs.php:120 -#: SuppInvGRNs.php:263 SuppPriceList.php:306 SupplierCredit.php:317 -#: SupplierCredit.php:385 SupplierInvoice.php:668 SupplierInvoice.php:750 -#: SupplierPriceList.php:44 SupplierPriceList.php:276 SupplierPriceList.php:542 +#: SuppInvGRNs.php:263 SupplierCredit.php:317 SupplierCredit.php:385 +#: SupplierInvoice.php:668 SupplierInvoice.php:750 SupplierPriceList.php:44 +#: SupplierPriceList.php:276 SupplierPriceList.php:542 #: SupplierTenderCreate.php:434 SupplierTenderCreate.php:695 #: SupplierTenderCreate.php:853 SupplierTenders.php:326 SupplierTenders.php:421 -#: SupplierTenders.php:687 TestPlanResults.php:177 TestPlanResults.php:280 -#: TopItems.php:170 WorkCentres.php:130 WorkOrderCosting.php:98 -#: WorkOrderCosting.php:130 WorkOrderEntry.php:973 WorkOrderIssue.php:1009 -#: Z_ItemsWithoutPicture.php:35 api/api_xml-rpc.php:3489 -#: includes/PDFGrnHeader.inc:30 includes/PDFInventoryPlanPageHeader.inc:51 +#: SupplierTenders.php:687 SuppPriceList.php:306 TestPlanResults.php:177 +#: TestPlanResults.php:280 TopItems.php:170 WorkCentres.php:130 +#: WorkOrderCosting.php:98 WorkOrderCosting.php:130 WorkOrderEntry.php:973 +#: WorkOrderIssue.php:1009 Z_ItemsWithoutPicture.php:35 +#: api/api_xml-rpc.php:3489 includes/PDFGrnHeader.inc:30 +#: includes/PDFInventoryPlanPageHeader.inc:51 #: includes/PDFOstdgGRNsPageHeader.inc:38 #: includes/PDFStockLocTransferHeader.inc:65 #: includes/PDFStockTransferHeader.inc:36 includes/PDFTopItemsHeader.inc:50 @@ -1134,10 +1133,10 @@ #: SalesByTypePeriodInquiry.php:465 SalesByTypePeriodInquiry.php:500 #: SalesByTypePeriodInquiry.php:561 SelectCreditItems.php:693 #: SelectCreditItems.php:697 SelectOrderItems.php:1352 SuppContractChgs.php:107 -#: SuppFixedAssetChgs.php:93 SuppShiptChgs.php:97 SuppTransGLAnalysis.php:140 -#: SupplierAllocations.php:460 SupplierAllocations.php:573 -#: SupplierAllocations.php:648 SupplierCredit.php:407 SupplierInquiry.php:209 -#: Tax.php:250 Z_CheckDebtorsControl.php:149 +#: SuppFixedAssetChgs.php:93 SupplierAllocations.php:460 +#: SupplierAllocations.php:573 SupplierAllocations.php:648 +#: SupplierCredit.php:407 SupplierInquiry.php:209 SuppShiptChgs.php:97 +#: SuppTransGLAnalysis.php:140 Tax.php:250 Z_CheckDebtorsControl.php:149 #: api/api_debtortransactions.php:1271 api/api_debtortransactions.php:1284 #: api/api_debtortransactions.php:1581 includes/PDFQuotationPageHeader.inc:119 #: includes/PDFQuotationPortraitPageHeader.inc:100 @@ -1166,18 +1165,18 @@ #: BOMIndentedReverse.php:140 BOMListing.php:42 BOMListing.php:53 #: DebtorsAtPeriodEnd.php:57 DebtorsAtPeriodEnd.php:69 GLBalanceSheet.php:112 #: GLBalanceSheet.php:152 GLProfit_Loss.php:188 GLTagProfit_Loss.php:195 -#: GLTrialBalance.php:167 InternalStockRequest.php:325 -#: InternalStockRequestInquiry.php:250 InventoryPlanning.php:99 +#: GLTrialBalance.php:167 InternalStockRequestInquiry.php:250 +#: InternalStockRequest.php:325 InventoryPlanning.php:99 #: InventoryPlanning.php:176 InventoryPlanning.php:213 #: InventoryPlanning.php:262 InventoryPlanningPrefSupplier.php:183 #: InventoryPlanningPrefSupplier.php:241 InventoryPlanningPrefSupplier.php:268 #: InventoryPlanningPrefSupplier.php:301 InventoryQuantities.php:84 -#: InventoryValuation.php:64 MRPPlannedPurchaseOrders.php:113 +#: InventoryValuation.php:64 MailInventoryValuation.php:22 +#: MailInventoryValuation.php:120 MailSalesReport_csv.php:30 +#: MailSalesReport.php:23 MRPPlannedPurchaseOrders.php:113 #: MRPPlannedWorkOrders.php:104 MRPReport.php:146 MRPReport.php:535 #: MRPReschedules.php:43 MRPReschedules.php:55 MRPShortages.php:154 -#: MRPShortages.php:166 MailInventoryValuation.php:22 -#: MailInventoryValuation.php:120 MailSalesReport.php:23 -#: MailSalesReport_csv.php:30 OutstandingGRNs.php:46 OutstandingGRNs.php:59 +#: MRPShortages.php:166 OutstandingGRNs.php:46 OutstandingGRNs.php:59 #: PDFCustomerList.php:20 PDFCustomerList.php:232 PDFCustomerList.php:244 #: PDFLowGP.php:20 PDFSalesBySalesperson.php:15 #: PDFSellThroughSupportClaim.php:17 PDFStockCheckComparison.php:33 @@ -1186,8 +1185,8 @@ #: PurchaseByPrefSupplier.php:447 PurchaseByPrefSupplier.php:471 #: PurchaseByPrefSupplier.php:500 PurchaseByPrefSupplier.php:531 #: ReorderLevel.php:60 SelectAsset.php:39 SelectProduct.php:46 -#: StockCheck.php:60 StockCheck.php:132 SuppPriceList.php:138 -#: SupplierTenderCreate.php:671 SupplierTenders.php:397 +#: StockCheck.php:60 StockCheck.php:132 SupplierTenderCreate.php:671 +#: SupplierTenders.php:397 SuppPriceList.php:138 #: includes/PDFPaymentRun_PymtFooter.php:152 msgid "Problem Report" msgstr "" @@ -1204,10 +1203,10 @@ #: BOMIndentedReverse.php:144 BOMIndentedReverse.php:222 BOMListing.php:45 #: Credit_Invoice.php:201 Dashboard.php:158 Dashboard.php:245 Dashboard.php:398 #: DebtorsAtPeriodEnd.php:60 DebtorsAtPeriodEnd.php:72 FTP_RadioBeacon.php:187 -#: GLBalanceSheet.php:116 GLBalanceSheet.php:155 GLBalanceSheet.php:334 -#: GLProfit_Loss.php:191 GLProfit_Loss.php:203 GLTagProfit_Loss.php:199 -#: GLTagProfit_Loss.php:212 GLTrialBalance.php:170 GLTrialBalance.php:182 -#: GetStockImage.php:143 InventoryPlanning.php:102 InventoryPlanning.php:179 +#: GetStockImage.php:143 GLBalanceSheet.php:116 GLBalanceSheet.php:155 +#: GLBalanceSheet.php:334 GLProfit_Loss.php:191 GLProfit_Loss.php:203 +#: GLTagProfit_Loss.php:199 GLTagProfit_Loss.php:212 GLTrialBalance.php:170 +#: GLTrialBalance.php:182 InventoryPlanning.php:102 InventoryPlanning.php:179 #: InventoryPlanning.php:216 InventoryPlanning.php:265 #: InventoryPlanning.php:340 InventoryPlanningPrefSupplier.php:186 #: InventoryPlanningPrefSupplier.php:244 InventoryPlanningPrefSupplier.php:271 @@ -1214,34 +1213,35 @@ #: InventoryPlanningPrefSupplier.php:304 InventoryPlanningPrefSupplier.php:372 #: InventoryQuantities.php:87 InventoryQuantities.php:98 #: InventoryValuation.php:67 InventoryValuation.php:92 +#: MailInventoryValuation.php:123 MailInventoryValuation.php:219 +#: MailInventoryValuation.php:243 MailInventoryValuation.php:251 #: MRPPlannedPurchaseOrders.php:116 MRPPlannedPurchaseOrders.php:127 #: MRPPlannedWorkOrders.php:107 MRPPlannedWorkOrders.php:118 #: MRPPlannedWorkOrders.php:309 MRPReport.php:38 MRPReport.php:49 #: MRPReport.php:149 MRPReschedules.php:46 MRPReschedules.php:58 -#: MRPShortages.php:157 MRPShortages.php:169 MailInventoryValuation.php:123 -#: MailInventoryValuation.php:219 MailInventoryValuation.php:243 -#: MailInventoryValuation.php:251 OutstandingGRNs.php:49 OutstandingGRNs.php:62 -#: PDFCustomerList.php:235 PDFCustomerList.php:247 PDFFGLabel.php:217 -#: PDFGLJournal.php:108 PDFGLJournalCN.php:148 PDFGrn.php:180 PDFLowGP.php:59 -#: PDFLowGP.php:71 PDFPriceList.php:147 PDFPrintLabel.php:42 PDFQALabel.php:116 -#: PDFQuotation.php:276 PDFQuotationPortrait.php:268 PDFRemittanceAdvice.php:83 +#: MRPShortages.php:157 MRPShortages.php:169 OutstandingGRNs.php:49 +#: OutstandingGRNs.php:62 PDFCustomerList.php:235 PDFCustomerList.php:247 +#: PDFFGLabel.php:217 PDFGLJournalCN.php:148 PDFGLJournal.php:108 +#: PDFGrn.php:180 PDFLowGP.php:59 PDFLowGP.php:71 PDFPriceList.php:147 +#: PDFPrintLabel.php:42 PDFQALabel.php:116 PDFQuotation.php:276 +#: PDFQuotationPortrait.php:268 PDFRemittanceAdvice.php:83 #: PDFSalesBySalesperson.php:160 PDFSalesBySalesperson.php:168 #: PDFSellThroughSupportClaim.php:74 PDFSellThroughSupportClaim.php:86 #: PDFStockCheckComparison.php:37 PDFStockCheckComparison.php:63 -#: PDFStockCheckComparison.php:271 PDFWOPrint.php:109 PDFWeeklyOrders.php:209 -#: PDFWeeklyOrders.php:217 PO_PDFPurchOrder.php:31 PO_PDFPurchOrder.php:156 -#: PrintCustOrder.php:238 PrintCustOrder_generic.php:256 -#: PrintWOItemSlip.php:122 PurchaseByPrefSupplier.php:402 -#: PurchaseByPrefSupplier.php:450 PurchaseByPrefSupplier.php:474 -#: PurchaseByPrefSupplier.php:503 PurchaseByPrefSupplier.php:534 -#: ReorderLevel.php:63 ReorderLevel.php:182 SalesAnalysis_UserDefined.php:28 -#: SelectCreditItems.php:32 StockCheck.php:42 StockCheck.php:63 -#: StockCheck.php:93 StockCheck.php:135 StockCheck.php:146 StockCheck.php:188 -#: StockDispatch.php:128 StockDispatch.php:141 SuppPaymentRun.php:112 -#: SuppPaymentRun.php:122 SuppPaymentRun.php:186 SuppPaymentRun.php:217 -#: SuppPriceList.php:142 SupplierBalsAtPeriodEnd.php:54 -#: SupplierBalsAtPeriodEnd.php:65 Tax.php:57 Tax.php:171 Tax.php:310 -#: Z_DataExport.php:72 Z_DataExport.php:168 Z_DataExport.php:259 +#: PDFStockCheckComparison.php:271 PDFWeeklyOrders.php:209 +#: PDFWeeklyOrders.php:217 PDFWOPrint.php:109 PO_PDFPurchOrder.php:31 +#: PO_PDFPurchOrder.php:156 PrintCustOrder_generic.php:256 +#: PrintCustOrder.php:238 PrintWOItemSlip.php:122 +#: PurchaseByPrefSupplier.php:402 PurchaseByPrefSupplier.php:450 +#: PurchaseByPrefSupplier.php:474 PurchaseByPrefSupplier.php:503 +#: PurchaseByPrefSupplier.php:534 ReorderLevel.php:63 ReorderLevel.php:182 +#: SalesAnalysis_UserDefined.php:28 SelectCreditItems.php:32 StockCheck.php:42 +#: StockCheck.php:63 StockCheck.php:93 StockCheck.php:135 StockCheck.php:146 +#: StockCheck.php:188 StockDispatch.php:128 StockDispatch.php:141 +#: SupplierBalsAtPeriodEnd.php:54 SupplierBalsAtPeriodEnd.php:65 +#: SuppPaymentRun.php:112 SuppPaymentRun.php:122 SuppPaymentRun.php:186 +#: SuppPaymentRun.php:217 SuppPriceList.php:142 Tax.php:57 Tax.php:171 +#: Tax.php:310 Z_DataExport.php:72 Z_DataExport.php:168 Z_DataExport.php:259 #: Z_DataExport.php:308 Z_DataExport.php:347 Z_DataExport.php:383 #: Z_DataExport.php:419 Z_DataExport.php:471 Z_poRebuildDefault.php:41 #: includes/ConstructSQLForUserDefinedSalesReport.inc:180 @@ -1279,27 +1279,26 @@ #: CustomerReceipt.php:595 CustomerReceipt.php:748 CustomerReceipt.php:776 #: CustomerTransInquiry.php:91 Dashboard.php:247 Dashboard.php:400 #: DeliveryDetails.php:412 GLProfit_Loss.php:613 GLTagProfit_Loss.php:516 -#: PDFRemittanceAdvice.php:85 Payments.php:389 PurchData.php:114 +#: Payments.php:389 PDFRemittanceAdvice.php:85 PurchData.php:114 #: PurchData.php:132 PurchData.php:360 RecurringSalesOrders.php:267 -#: ReverseGRN.php:193 ReverseGRN.php:207 ReverseGRN.php:387 SMTPServer.php:66 +#: ReverseGRN.php:193 ReverseGRN.php:207 ReverseGRN.php:387 #: SelectCreditItems.php:1454 SelectSalesOrder.php:213 SelectSalesOrder.php:379 -#: SellThroughSupport.php:81 SellThroughSupport.php:97 StockCheck.php:217 -#: StockClone.php:446 StockClone.php:520 StockCostUpdate.php:78 -#: StockCostUpdate.php:88 StockLocStatus.php:167 +#: SellThroughSupport.php:81 SellThroughSupport.php:97 SMTPServer.php:66 +#: StockCheck.php:217 StockClone.php:446 StockClone.php:520 +#: StockCostUpdate.php:78 StockCostUpdate.php:88 StockLocStatus.php:167 #: StockLocTransferReceive.php:215 StockLocTransferReceive.php:368 #: StockMovements.php:98 StockQuantityByDate.php:98 StockReorderLevel.php:45 #: StockStatus.php:285 StockTransfers.php:202 StockTransfers.php:232 -#: StockTransfers.php:388 StockUsage.php:142 StockUsageGraph.php:55 -#: SuppPaymentRun.php:114 SuppPaymentRun.php:188 SuppPaymentRun.php:219 +#: StockTransfers.php:388 StockUsageGraph.php:55 StockUsage.php:142 #: SupplierInquiry.php:78 SupplierInquiry.php:99 SupplierInquiry.php:135 #: SupplierInquiry.php:190 SupplierPriceList.php:387 -#: SupplierTransInquiry.php:103 WOSerialNos.php:49 WorkOrderCosting.php:431 -#: WorkOrderReceive.php:305 Z_ChangeBranchCode.php:112 -#: Z_ChangeCustomerCode.php:97 Z_ChangeSupplierCode.php:88 -#: Z_DeleteCreditNote.php:63 Z_DeleteCreditNote.php:73 -#: Z_DeleteCreditNote.php:82 Z_DeleteInvoice.php:88 Z_DeleteInvoice.php:98 -#: Z_DeleteInvoice.php:110 Z_UpdateItemCosts.php:93 -#: includes/ConnectDB_mysql.inc:62 includes/ConnectDB_mysqli.inc:70 +#: SupplierTransInquiry.php:103 SuppPaymentRun.php:114 SuppPaymentRun.php:188 +#: SuppPaymentRun.php:219 WorkOrderCosting.php:431 WorkOrderReceive.php:305 +#: WOSerialNos.php:49 Z_ChangeBranchCode.php:112 Z_ChangeCustomerCode.php:97 +#: Z_ChangeSupplierCode.php:88 Z_DeleteCreditNote.php:63 +#: Z_DeleteCreditNote.php:73 Z_DeleteCreditNote.php:82 Z_DeleteInvoice.php:88 +#: Z_DeleteInvoice.php:98 Z_DeleteInvoice.php:110 Z_UpdateItemCosts.php:93 +#: includes/ConnectDB_mysqli.inc:70 includes/ConnectDB_mysql.inc:62 #: includes/PDFPaymentRun_PymtFooter.php:61 #: includes/PDFPaymentRun_PymtFooter.php:91 #: includes/PDFPaymentRun_PymtFooter.php:121 @@ -1386,7 +1385,7 @@ #: PDFPriceList.php:351 PDFRemittanceAdvice.php:175 #: PDFStockCheckComparison.php:373 PrintCustTrans.php:564 #: PrintCustTransPortrait.php:609 ReorderLevel.php:259 StockDispatch.php:449 -#: SuppPriceList.php:260 SupplierBalsAtPeriodEnd.php:159 Tax.php:385 +#: SupplierBalsAtPeriodEnd.php:159 SuppPriceList.php:260 Tax.php:385 msgid "Print PDF" msgstr "" @@ -1423,7 +1422,7 @@ msgstr "" #: AgedSuppliers.php:287 OutstandingGRNs.php:270 PDFRemittanceAdvice.php:153 -#: SuppPaymentRun.php:265 SupplierBalsAtPeriodEnd.php:131 +#: SupplierBalsAtPeriodEnd.php:131 SuppPaymentRun.php:265 #: Z_ClearPOBackOrders.php:20 msgid "From Supplier Code" msgstr "" @@ -1433,7 +1432,7 @@ msgstr "" #: AgedSuppliers.php:291 OutstandingGRNs.php:274 PDFRemittanceAdvice.php:157 -#: SuppPaymentRun.php:269 SupplierBalsAtPeriodEnd.php:135 +#: SupplierBalsAtPeriodEnd.php:135 SuppPaymentRun.php:269 #: Z_ClearPOBackOrders.php:23 msgid "To Supplier Code" msgstr "" @@ -1455,9 +1454,9 @@ msgstr "" #: AnalysisHorizontalIncome.php:11 AnalysisHorizontalPosition.php:10 -#: BOMs.php:138 BOMs.php:144 BOMs.php:152 BOMs.php:1032 BankAccounts.php:369 -#: InternalStockRequest.php:584 PO_SelectOSPurchOrder.php:651 -#: PaymentTerms.php:190 PaymentTerms.php:196 SalesAnalReptCols.php:285 +#: BankAccounts.php:369 BOMs.php:138 BOMs.php:144 BOMs.php:152 BOMs.php:1032 +#: InternalStockRequest.php:584 PaymentTerms.php:190 PaymentTerms.php:196 +#: PO_SelectOSPurchOrder.php:651 SalesAnalReptCols.php:285 #: SelectProduct.php:137 SelectProduct.php:187 SelectProduct.php:248 #: SelectProduct.php:249 SelectProduct.php:851 #: StockCategorySalesInquiry.php:154 StockCategorySalesInquiry.php:188 @@ -1510,12 +1509,12 @@ "when expenses are owed based on the supplier invoice date." msgstr "" -#: AnalysisHorizontalIncome.php:47 GLCashFlowsIndirect.php:784 +#: AnalysisHorizontalIncome.php:47 GLCashFlowsIndirect.php:790 #: PurchasesReport.php:261 msgid "Select period from" msgstr "" -#: AnalysisHorizontalIncome.php:83 GLCashFlowsIndirect.php:805 +#: AnalysisHorizontalIncome.php:83 GLCashFlowsIndirect.php:811 #: PurchasesReport.php:271 msgid "Select period to" msgstr "" @@ -1594,7 +1593,7 @@ #: AnalysisHorizontalIncome.php:154 AnalysisHorizontalPosition.php:104 #: Contracts.php:836 CustomerAccount.php:230 CustomerInquiry.php:162 -#: CustomerReceipt.php:1044 GLBalanceSheet.php:404 GLCashFlowsIndirect.php:83 +#: CustomerReceipt.php:1044 GLBalanceSheet.php:404 GLCashFlowsIndirect.php:85 #: GLProfit_Loss.php:626 PDFRemittanceAdvice.php:275 PO_Header.php:609 #: PrintCustTrans.php:776 PrintCustTransPortrait.php:928 #: SupplierInquiry.php:121 includes/PDFQuotationPageHeader.inc:98 @@ -1607,11 +1606,10 @@ #: AnalysisHorizontalIncome.php:159 AnalysisHorizontalPosition.php:109 #: GLAccountInquiry.php:53 GLAccounts.php:214 GLBalanceSheet.php:410 -#: GLCashFlowsIndirect.php:88 GLProfit_Loss.php:635 GLTagProfit_Loss.php:537 +#: GLCashFlowsIndirect.php:90 GLProfit_Loss.php:635 GLTagProfit_Loss.php:537 #: GLTrialBalance.php:452 ImportBankTransAnalysis.php:206 -#: PrintCustTransPortrait.php:96 SuppTransGLAnalysis.php:107 -#: SupplierCredit.php:458 SupplierInvoice.php:832 -#: includes/PDFProfitAndLossPageHeader.inc:31 +#: PrintCustTransPortrait.php:96 SupplierCredit.php:458 SupplierInvoice.php:832 +#: SuppTransGLAnalysis.php:107 includes/PDFProfitAndLossPageHeader.inc:31 #: includes/PDFTagProfitAndLossPageHeader.inc:33 #: includes/PDFTrialBalancePageHeader.inc:28 msgid "Account" @@ -1619,7 +1617,7 @@ #: AnalysisHorizontalIncome.php:160 AnalysisHorizontalPosition.php:110 #: Dashboard.php:484 GLAccounts.php:251 GLAccounts.php:302 -#: GLBalanceSheet.php:411 GLCashFlowsIndirect.php:89 GLCodesInquiry.php:27 +#: GLBalanceSheet.php:411 GLCashFlowsIndirect.php:91 GLCodesInquiry.php:27 #: GLProfit_Loss.php:636 GLTagProfit_Loss.php:538 GLTrialBalance.php:453 #: SelectGLAccount.php:135 SupplierCredit.php:459 SupplierInvoice.php:833 #: Z_CreateCompanyTemplateFile.php:237 @@ -1701,10 +1699,10 @@ #: BOMs.php:918 ConfirmDispatch_Invoice.php:1655 #: ConfirmDispatch_Invoice.php:1657 ContractBOM.php:298 CounterReturns.php:1603 #: CounterReturns.php:1605 CounterSales.php:2056 CounterSales.php:2058 -#: CustWhereAlloc.php:198 CustomerReceipt.php:601 DailyBankTransactions.php:251 +#: CustomerReceipt.php:601 CustWhereAlloc.php:198 DailyBankTransactions.php:251 #: DeliveryDetails.php:605 DeliveryDetails.php:609 DeliveryDetails.php:831 #: DeliveryDetails.php:835 GLAccountUsers.php:248 GLBalanceSheet.php:716 -#: GLCashFlowsIndirect.php:739 GLJournalInquiry.php:156 +#: GLCashFlowsIndirect.php:745 GLJournalInquiry.php:156 #: GLJournalInquiry.php:158 GLProfit_Loss.php:1313 GLTagProfit_Loss.php:25 #: GLTagProfit_Loss.php:524 GLTags.php:54 GLTrialBalance.php:736 PDFCOA.php:29 #: PDFPrintLabel.php:64 PDFProdSpec.php:19 PDFStockLocTransfer.php:29 @@ -1833,12 +1831,12 @@ #: Areas.php:131 CustomerTypes.php:167 Factors.php:140 #: FixedAssetCategories.php:142 GLAccounts.php:214 -#: InternalStockCategoriesByRole.php:102 Locations.php:380 MRPDemands.php:250 -#: Manufacturers.php:197 PcAssignCashToTab.php:149 +#: InternalStockCategoriesByRole.php:102 Locations.php:380 +#: Manufacturers.php:197 MRPDemands.php:250 PcAssignCashToTab.php:149 #: PcClaimExpensesFromTab.php:134 PcExpenses.php:169 PcExpensesTypeTab.php:100 #: PcTabs.php:188 PcTypeTabs.php:143 SalesAnalReptCols.php:215 #: SalesCategories.php:158 SalesTypes.php:156 StockCategories.php:233 -#: SupplierTypes.php:132 Suppliers.php:672 Z_DeleteInvoice.php:178 +#: Suppliers.php:672 SupplierTypes.php:132 Z_DeleteInvoice.php:178 #: includes/DefineOfferClass.php:134 msgid "has been deleted" msgstr "" @@ -1904,7 +1902,7 @@ #: MRPReport.php:551 MRPReport.php:553 MRPReschedules.php:143 #: NoSalesItems.php:22 NoSalesItems.php:50 NoSalesItems.php:70 #: NoSalesItems.php:72 PDFPeriodStockTransListing.php:58 PDFPriceList.php:225 -#: PDFPriceList.php:324 POReport.php:1600 PO_Items.php:1131 +#: PDFPriceList.php:324 PO_Items.php:1131 POReport.php:1600 #: PO_SelectOSPurchOrder.php:185 PO_SelectOSPurchOrder.php:195 #: PO_SelectOSPurchOrder.php:208 PO_SelectOSPurchOrder.php:278 #: ReorderLevel.php:212 ReorderLevel.php:214 ReorderLevel.php:244 @@ -1959,17 +1957,17 @@ msgstr "" #: AuditTrail.php:177 BankReconciliation.php:213 BankReconciliation.php:290 -#: CustWhereAlloc.php:26 CustWhereAlloc.php:134 CustomerAccount.php:250 -#: CustomerAllocations.php:376 CustomerInquiry.php:250 CustomerPurchases.php:82 -#: CustomerTransInquiry.php:21 CustomerTransInquiry.php:98 +#: CustomerAccount.php:250 CustomerAllocations.php:376 CustomerInquiry.php:250 +#: CustomerPurchases.php:82 CustomerTransInquiry.php:21 +#: CustomerTransInquiry.php:98 CustWhereAlloc.php:26 CustWhereAlloc.php:134 #: DailyBankTransactions.php:153 GLAccountInquiry.php:190 #: GLAccountReport.php:345 GLJournal.php:266 MRPReschedules.php:192 #: ProductSpecs.php:388 QATests.php:257 QATests.php:395 #: SalesByTypePeriodInquiry.php:356 SelectCustomer.php:405 #: ShipmentCosting.php:536 ShipmentCosting.php:613 StockLocMovements.php:90 -#: StockMovements.php:103 SuppWhereAlloc.php:26 SuppWhereAlloc.php:133 -#: SupplierAllocations.php:456 SupplierInquiry.php:205 -#: SupplierTransInquiry.php:20 SupplierTransInquiry.php:108 Tax.php:409 +#: StockMovements.php:103 SupplierAllocations.php:456 SupplierInquiry.php:205 +#: SupplierTransInquiry.php:20 SupplierTransInquiry.php:108 +#: SuppWhereAlloc.php:26 SuppWhereAlloc.php:133 Tax.php:409 #: Z_CheckAllocationsFrom.php:32 Z_CheckAllocationsFrom.php:57 #: Z_CheckAllocs.php:62 Z_CheckGLTransBalance.php:12 #: includes/InputSerialItemsFile.php:94 includes/InputSerialItemsFile.php:152 @@ -2011,11 +2009,11 @@ #: BOMs.php:1013 CollectiveWorkOrderCost.php:324 ContractBOM.php:352 #: CounterReturns.php:1687 CounterSales.php:2101 CounterSales.php:2255 #: CustItem.php:297 CustomerBranches.php:408 CustomerReceipt.php:1232 -#: GLCodesInquiry.php:26 InternalStockRequest.php:563 -#: InternalStockRequest.php:633 InternalStockRequestInquiry.php:266 -#: MRPDemands.php:91 MRPPlannedWorkOrders.php:255 MRPReport.php:776 -#: MaterialsNotUsed.php:34 NoSalesItems.php:193 PDFOrderStatus.php:336 -#: PDFOrdersInvoiced.php:334 PO_Header.php:561 PO_Items.php:1193 +#: GLCodesInquiry.php:26 InternalStockRequestInquiry.php:266 +#: InternalStockRequest.php:563 InternalStockRequest.php:633 +#: MaterialsNotUsed.php:34 MRPDemands.php:91 MRPPlannedWorkOrders.php:255 +#: MRPReport.php:776 NoSalesItems.php:193 PDFOrdersInvoiced.php:334 +#: PDFOrderStatus.php:336 PO_Header.php:561 PO_Items.php:1193 #: PO_SelectOSPurchOrder.php:309 PO_SelectPurchOrder.php:213 #: PricesByCost.php:152 PurchData.php:469 RelatedItemsUpdate.php:159 #: ReorderLevelLocation.php:72 RevisionTranslations.php:59 SalesPeople.php:207 @@ -2024,21 +2022,20 @@ #: SelectOrderItems.php:1681 SelectProduct.php:325 SelectProduct.php:830 #: SelectQASamples.php:298 SelectSalesOrder.php:602 SelectSupplier.php:282 #: SelectWorkOrder.php:218 SellThroughSupport.php:159 Shipt_Select.php:190 -#: SpecialOrder.php:148 StockCategories.php:263 SuppPriceList.php:305 -#: SupplierPriceList.php:275 SupplierPriceList.php:466 -#: SupplierTenderCreate.php:617 SupplierTenderCreate.php:852 -#: SupplierTenders.php:686 TestPlanResults.php:176 TopItems.php:169 -#: UserBankAccounts.php:163 UserGLAccounts.php:156 UserLocations.php:175 -#: WorkOrderEntry.php:972 WorkOrderIssue.php:1008 -#: includes/PDFTopItemsHeader.inc:49 includes/PO_PDFOrderPageHeader.inc:75 -#: ../webSHOP/ItemDetails.php:72 +#: SpecialOrder.php:148 StockCategories.php:263 SupplierPriceList.php:275 +#: SupplierPriceList.php:466 SupplierTenderCreate.php:617 +#: SupplierTenderCreate.php:852 SupplierTenders.php:686 SuppPriceList.php:305 +#: TestPlanResults.php:176 TopItems.php:169 UserBankAccounts.php:163 +#: UserGLAccounts.php:156 UserLocations.php:175 WorkOrderEntry.php:972 +#: WorkOrderIssue.php:1008 includes/PDFTopItemsHeader.inc:49 +#: includes/PO_PDFOrderPageHeader.inc:75 ../webSHOP/ItemDetails.php:72 msgid "Code" msgstr "" #: AutomaticTranslationDescriptions.php:38 CustomerTransInquiry.php:52 #: FixedAssetRegister.php:366 GLJournalInquiry.php:45 GLJournalInquiry.php:62 -#: POReport.php:519 POReport.php:1535 PcReportExpense.php:102 -#: PcReportTab.php:272 PcTabExpensesList.php:211 SalesAnalRepts.php:436 +#: PcReportExpense.php:102 PcReportTab.php:272 PcTabExpensesList.php:211 +#: POReport.php:519 POReport.php:1535 Sales... [truncated message content] |
From: <rc...@us...> - 2017-06-18 01:08:21
|
Revision: 7768 http://sourceforge.net/p/web-erp/reponame/7768 Author: rchacon Date: 2017-06-18 01:08:18 +0000 (Sun, 18 Jun 2017) Log Message: ----------- Update Spanish translation. Modified Paths: -------------- trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-06-17 23:07:46 UTC (rev 7767) +++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-06-18 01:08:18 UTC (rev 7768) @@ -8,7 +8,7 @@ "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-05-14 17:52-0600\n" -"PO-Revision-Date: 2017-04-28 10:37-0600\n" +"PO-Revision-Date: 2017-06-17 19:05-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: TecnoSoluciones.com <web...@te...>\n" "Language: es_ES\n" @@ -882,7 +882,7 @@ #: AddCustomerContacts.php:271 msgid "Send Statement" -msgstr "" +msgstr "Enviar estado de cuenta" #: AddCustomerContacts.php:272 msgid "" @@ -889,6 +889,8 @@ "This flag identifies the contact as one who should receive an email " "cusstomer statement" msgstr "" +"Este indicador identifica al contacto como quien debe recibir un estado de " +"cuenta del cliente por correo-e" #: AddCustomerNotes.php:6 AddCustomerNotes.php:51 SelectCustomer.php:807 #: SelectCustomer.php:840 @@ -1043,7 +1045,7 @@ #: AgedControlledInventory.php:8 msgid "Aged Controlled Inventory" -msgstr "" +msgstr "Inventario controlado Antiguo" #: AgedControlledInventory.php:8 msgid "as-of" @@ -1066,7 +1068,7 @@ #: AgedControlledInventory.php:32 msgid "The stock held could not be retrieved because" -msgstr "" +msgstr "No se pudo recuperar el inventario retenido porque" #: AgedControlledInventory.php:42 MRPReschedules.php:124 MRPShortages.php:260 #: StockClone.php:53 Stocks.php:63 reportwriter/languages/en_US/reports.php:103 @@ -1142,7 +1144,7 @@ #: AgedControlledInventory.php:48 msgid "Days Old" -msgstr "" +msgstr "Días de antigüedad" #: AgedControlledInventory.php:91 ConfirmDispatch_Invoice.php:310 #: ConfirmDispatch_Invoice.php:314 CounterReturns.php:676 @@ -2167,6 +2169,8 @@ "Enter the item code that you wish to display the extended bill of material " "for" msgstr "" +"Introduzca el código de artículo que desea mostrar la lista de materiales " +"extendida para" #: BOMExtendedQty.php:267 BOMExtendedQty.php:334 BOMExtendedQty.php:335 #: BOMExtendedQty.php:336 BOMExtendedQty.php:337 BOMIndented.php:318 @@ -2423,6 +2427,8 @@ #: BOMIndented.php:257 msgid "Enter the item code of parent item to list the bill of material for" msgstr "" +"Introduzca el código del artículo del elemento principal para listar la " +"lista de materiales para" #: BOMIndented.php:260 msgid "Levels" @@ -2473,6 +2479,8 @@ #: BOMIndentedReverse.php:243 msgid "Enter the item code required to list the bill of material for" msgstr "" +"Introduzca el código del artículo requerido para enumerar la lista de " +"materiales para" #: BOMIndentedReverse.php:301 msgid "Component:" @@ -4472,6 +4480,10 @@ "the total amount owed by customers to the business. Only balance sheet " "accounts are available for this selection." msgstr "" +"Seleccione la cuenta contable que se usará para contabilizar el valor de " +"moneda local de todas las transacciones de clientes. Esta cuenta siempre " +"representará el monto total adeudado por los clientes al negocio. Solamente " +"las cuentas de balance están disponibles para esta selección." #: CompanyPreferences.php:276 msgid "Creditors Control GL Account" @@ -4484,6 +4496,10 @@ "the total amount owed by the business to suppliers. Only balance sheet " "accounts are available for this selection." msgstr "" +"Seleccione la cuenta contable que se usará para contabilizar el valor de la " +"moneda local de todas las transacciones de proveedores. Esta cuenta siempre " +"representará el monto total adeudado por la empresa a los proveedores. " +"Solamente las cuentas de balance están disponibles para esta selección." #: CompanyPreferences.php:293 msgid "Payroll Net Pay Clearing GL Account" @@ -4500,6 +4516,11 @@ "will represent the value of goods received yet to be invoiced by suppliers. " "Only balance sheet accounts are available for this selection." msgstr "" +"Seleccione la cuenta contable que se usará para contabilizar el costo de las " +"mercancías recibidas hasta que se ingresen las facturas de los proveedores " +"para las mercancías. Esta cuenta representará el valor de las mercancías " +"recibidas aún por facturar por los proveedores. Solamente las cuentas de " +"balance están disponibles para esta selección." #: CompanyPreferences.php:326 msgid "Retained Earning Clearing GL Account" @@ -4511,6 +4532,10 @@ "accounts to that represents the accumulated retained profits of the " "business. Only balance sheet accounts are available for this selection." msgstr "" +"Seleccione la cuenta contable que se usará para compensar las cuentas de " +"pérdidas y ganancias a la que representa las utilidades retenidas del " +"negocio. Solamente las cuentas del estado de situación están disponibles " +"para esta selección." #: CompanyPreferences.php:343 msgid "Freight Re-charged GL Account" @@ -4529,6 +4554,12 @@ "account. Only profit and loss general ledger accounts are available for this " "selection." msgstr "" +"Seleccione la cuenta contable que se usará para contabilizar las diferencias " +"de tipo de cambio de las cuentas por cobrar a -cuando el tipo de cambio de " +"las ventas es diferente al tipo de cambio de los ingresos de divisas de los " +"clientes, el tipo de cambio se calcula automáticamente y se contabiliza en " +"esta cuenta contable. Solamente cuentas del estado de resultados están " +"disponibles para esta selección." #: CompanyPreferences.php:384 msgid "Purchases Exchange Variances GL Account" @@ -4543,6 +4574,12 @@ "this general ledger account. Only profit and loss general ledger accounts " "are available for this selection." msgstr "" +"Seleccione la cuenta contable que se usará para contabilizar las diferencias " +"de cambio en las transacciones de cuentas por pagar a. Las facturas de " +"proveedores introducidas en una moneda y pagadas en la divisa del proveedor " +"a un tipo de cambio diferente tienen las diferencias calculadas " +"automáticamente y contabilizadas en esta cuenta contable. Solamente cuentas " +"del estado de resultados están disponibles para esta selección." #: CompanyPreferences.php:401 msgid "Payment Discount GL Account" @@ -4554,6 +4591,10 @@ "payment discounts given to customers at the time of entering a receipt. Only " "profit and loss general ledger accounts are available for this selection." msgstr "" +"Seleccione la cuenta contable que se usará para contabilizar el valor de los " +"descuentos de pago otorgados a los clientes en el momento de introducir un " +"recibo. Solamente cuentas del estado de resultados están disponibles para " +"esta selección." #: CompanyPreferences.php:418 msgid "Create GL entries for accounts receivable transactions" @@ -6458,7 +6499,7 @@ #: Contracts.php:126 FixedAssetItems.php:40 Manufacturers.php:41 #: Manufacturers.php:135 SalesCategories.php:47 StockClone.php:81 Stocks.php:76 msgid "Only " -msgstr "" +msgstr "Solamente" #: Contracts.php:129 FixedAssetItems.php:43 Manufacturers.php:44 #: Manufacturers.php:138 SalesCategories.php:50 Stocks.php:79 @@ -6867,6 +6908,9 @@ "Enter the contract reference. This reference will be used as the item code " "so no more than 20 alpha-numeric characters or underscore" msgstr "" +"Introduzca la referencia del contrato. Esta referencia se usará como el " +"código de artículo por lo que no más de 20 caracteres alfanuméricos o " +"subrayado" #: Contracts.php:859 InventoryQuantities.php:237 PricesByCost.php:245 #: ReorderLevel.php:286 ReorderLevelLocation.php:179 @@ -6930,7 +6974,7 @@ #: Contracts.php:943 msgid "Enter the reference that the customer uses for this contract" -msgstr "" +msgstr "Introduzca la referencia que el cliente usa para este contrato" #: Contracts.php:955 Currencies.php:311 Currencies.php:500 PO_Header.php:1143 #: PO_OrderDetails.php:114 SuppPaymentRun.php:297 SupplierCredit.php:291 @@ -6943,6 +6987,8 @@ "The exchange rate between the customer's currency and the functional " "currency of the business must be entered" msgstr "" +"Se debe introducir el tipo de cambio entre la moneda del cliente y la moneda " +"funcional de la empresa" #: Contracts.php:963 msgid "Contract Status" @@ -8473,10 +8519,12 @@ "Cannot delete this currency because there are bank accounts that use this " "currency" msgstr "" +"No se puede eliminar esta moneda porque hay cuentas bancarias que usan esta " +"moneda" #: Currencies.php:273 msgid "bank accounts that refer to this currency" -msgstr "" +msgstr "cuentas bancarias que se refieren a esta moneda" #: Currencies.php:278 msgid "The currency definition record has been deleted" @@ -16746,7 +16794,7 @@ #: InternalStockRequest.php:140 msgid "There are no items added to this request" -msgstr "" +msgstr "No hay elementos añadidos a esta solicitud" #: InternalStockRequest.php:143 StockAdjustments.php:123 #: StockLocTransfer.php:245 StockLocTransferReceive.php:524 @@ -16996,11 +17044,11 @@ #: InternalStockRequestFulfill.php:173 InternalStockRequestFulfill.php:192 msgid "An internal stock request for" -msgstr "" +msgstr "Una solicitud interna de inventario para" #: InternalStockRequestFulfill.php:173 InternalStockRequestFulfill.php:192 msgid "has been fulfilled from location" -msgstr "" +msgstr "se ha cumplido desde la ubicación" #: InternalStockRequestFulfill.php:173 InternalStockRequestFulfill.php:192 #: StockAdjustments.php:371 StockLocTransferReceive.php:393 @@ -17019,7 +17067,7 @@ #: InternalStockRequestFulfill.php:178 msgid "Internal Stock Request Fulfillment for" -msgstr "" +msgstr "Cumplimiento de solicitud interna de inventario para" #: InternalStockRequestFulfill.php:192 msgid "" @@ -17057,7 +17105,7 @@ #: InternalStockRequestInquiry.php:4 msgid "Internal Stock Request Inquiry" -msgstr "" +msgstr "Consulta de solicitud interna de inventario" #: InternalStockRequestInquiry.php:35 ReorderLevel.php:206 #: SelectSalesOrder.php:482 StockDispatch.php:349 StockLocMovements.php:19 @@ -17069,6 +17117,8 @@ #: InternalStockRequestInquiry.php:96 msgid "You have no authority to do the internal request inquiry" msgstr "" +"No tiene autorización para realizar la consulta de solicitud interna de " +"inventario" #: InternalStockRequestInquiry.php:105 msgid "Authorisation status" @@ -17099,11 +17149,11 @@ #: InternalStockRequestInquiry.php:268 msgid "Total Applied" -msgstr "" +msgstr "Total aplicado" #: InternalStockRequestInquiry.php:401 InternalStockRequestInquiry.php:415 msgid "Locations" -msgstr "" +msgstr "Ubicaciones" #: InternalStockRequestInquiry.php:403 InternalStockRequestInquiry.php:417 msgid "Authorization" @@ -28826,7 +28876,7 @@ #: SelectCustomer.php:202 msgid "Email Customer Statement" -msgstr "" +msgstr "Estado de cuenta del cliente por correo-e" #: SelectCustomer.php:203 msgid "Order Inquiries" @@ -28949,7 +28999,7 @@ #: SelectCustomer.php:488 msgid "You must first setup the geocode parameters" -msgstr "" +msgstr "Debe configurar primero los parámetros de geocodificación" #: SelectCustomer.php:557 msgid "GeoCode has been updated for CustomerID" @@ -29075,11 +29125,11 @@ #: SelectOrderItems.php:59 msgid "There are no items that can be imported" -msgstr "" +msgstr "No hay elementos que se puedan importar" #: SelectOrderItems.php:61 msgid "rows have been added to the order" -msgstr "" +msgstr "se han añadido filas a la orden" #: SelectOrderItems.php:175 msgid "" @@ -29340,19 +29390,20 @@ #: SelectOrderItems.php:1643 msgid "Raw material flag" -msgstr "" +msgstr "Marcador para materia prima" #: SelectOrderItems.php:1643 msgid "If checked, Raw material will be shown on search result" msgstr "" +"Si se selecciona, se mostrará la materia prima en el resultado de búsqueda" #: SelectOrderItems.php:1644 msgid "Customer Item flag" -msgstr "" +msgstr "Marcador para artículo de cliente" #: SelectOrderItems.php:1644 msgid "If checked, only items for this customer will show" -msgstr "" +msgstr "Si está marcada, solo se mostrarán los artículos para este cliente" #: SelectOrderItems.php:1653 msgid "Fixed Asset Disposal" @@ -29364,15 +29415,16 @@ #: SelectOrderItems.php:1659 msgid "Upload items from csv file" -msgstr "" +msgstr "Cargar artículos desde un archivo CSV" #: SelectOrderItems.php:1660 msgid "Upload File" -msgstr "" +msgstr "Cargar archivo" #: SelectOrderItems.php:1667 msgid "The csv file should have exactly 2 columns, part code and quantity." msgstr "" +"El archivo CSV debe tener exactamente 2 columnas: código de pieza y cantidad." #: SelectOrderItems.php:1785 msgid "Use this screen for the " @@ -29384,7 +29436,7 @@ #: SelectOrderItems.php:1802 msgid "Enter the customer purchase order reference" -msgstr "" +msgstr "Introduzca la referencia de la orden de compra del cliente" #: SelectOrderItems.php:1804 msgid "Enter the item code ordered" @@ -29438,7 +29490,7 @@ #: SelectProduct.php:99 msgid "Item Type" -msgstr "" +msgstr "Tipo de artículo" #: SelectProduct.php:103 msgid "Assembly Item" @@ -29837,11 +29889,11 @@ #: SelectSalesOrder.php:541 msgid "Due Date From" -msgstr "" +msgstr "Fecha de vencimiento desde" #: SelectSalesOrder.php:543 msgid "Due Date To" -msgstr "" +msgstr "Fecha de vencimiento hasta" #: SelectSalesOrder.php:547 msgid "Add Sales Order" @@ -29849,11 +29901,11 @@ #: SelectSalesOrder.php:552 msgid "Order Date From" -msgstr "" +msgstr "Fecha de pedido desde" #: SelectSalesOrder.php:554 msgid "Order Date To" -msgstr "" +msgstr "Fecha de pedido hasta" #: SelectSalesOrder.php:852 msgid "Dispatch Note" @@ -36065,15 +36117,15 @@ #: SupplierTenderCreate.php:372 SupplierTenderCreate.php:376 #: SupplierTenderCreate.php:380 msgid "The address should not be over 40 characters" -msgstr "" +msgstr "No más de 40 caracteres" #: SupplierTenderCreate.php:384 SupplierTenderCreate.php:388 msgid "The characters should not be over 20 characters" -msgstr "" +msgstr "No más de 20 caracteres" #: SupplierTenderCreate.php:392 msgid "The characters should not be over 15 characters" -msgstr "" +msgstr "No más de 15 caracteres" #: SupplierTenderCreate.php:396 msgid "" @@ -38600,7 +38652,7 @@ #: TaxGroups.php:242 msgid "4 to 40 legal characters" -msgstr "" +msgstr "4 a 40 caracteres legales" #: TaxGroups.php:243 msgid "Enter Group" @@ -38767,7 +38819,7 @@ #: TestPlanResults.php:277 msgid "Copy Results" -msgstr "" +msgstr "Copiar resultados" #: TestPlanResults.php:300 msgid "Copy to This Sample" @@ -38803,7 +38855,7 @@ #: TestPlanResults.php:474 msgid "Test Results have been copied to" -msgstr "" +msgstr "Los resultados de las pruebas fueron copiados a" #: TestPlanResults.php:474 msgid " from " @@ -38879,7 +38931,7 @@ #: TestPlanResults.php:973 msgid "Copy These Results" -msgstr "" +msgstr "Copiar estos resultados" #: TestPlanResults.php:976 msgid "Print COA" @@ -51794,7 +51846,7 @@ #: reportwriter/languages/en_US/reports.php:20 msgid " was saved and copied to report: " -msgstr "" +msgstr "fue guardado y copiado al informe:" #: reportwriter/languages/en_US/reports.php:21 msgid "The report name has been updated!" @@ -51818,27 +51870,29 @@ #: reportwriter/languages/en_US/reports.php:26 msgid "Press OK to delete this report." -msgstr "" +msgstr "Pulse Aceptar para eliminar este informe." #: reportwriter/languages/en_US/reports.php:27 msgid "Press OK to overwrite this report." -msgstr "" +msgstr "Pulse Aceptar para sobrescribir este informe." #: reportwriter/languages/en_US/reports.php:29 msgid "There are no fields to show!" -msgstr "" +msgstr "¡No hay campos para mostrar!" #: reportwriter/languages/en_US/reports.php:30 msgid "Enter a name for this form." -msgstr "" +msgstr "Introduzca un nombre para este formulario." #: reportwriter/languages/en_US/reports.php:31 msgid "Enter a name for this report." -msgstr "" +msgstr "Introduzca un nombre para este informe." #: reportwriter/languages/en_US/reports.php:32 msgid "(Leave blank to use default report name from import file)" msgstr "" +"(Deje en blanco para usar el nombre de informe predeterminado del archivo de " +"importación)" #: reportwriter/languages/en_US/reports.php:33 msgid "(maximum 30 characters)" @@ -52396,7 +52450,7 @@ #: reportwriter/languages/en_US/reports.php:226 msgid "Report Import" -msgstr "" +msgstr "Importar informe" #: reportwriter/languages/en_US/reports.php:227 msgid "Sorting Information" @@ -52416,7 +52470,7 @@ #: reportwriter/languages/en_US/reports.php:231 msgid "Text to Display" -msgstr "" +msgstr "Texto a mostrar" #: reportwriter/languages/en_US/reports.php:232 msgid "Text Processing" @@ -52436,7 +52490,7 @@ #: reportwriter/languages/en_US/reports.php:248 msgid "Financial Reports" -msgstr "" +msgstr "Informes financieros" #: reportwriter/languages/en_US/reports.php:249 msgid "Miscellaneous" @@ -52448,7 +52502,7 @@ #: reportwriter/languages/en_US/reports.php:253 msgid "Bank Deposit Slips" -msgstr "" +msgstr "Colillas de depósito bancario" #: reportwriter/languages/en_US/reports.php:254 msgid "Collection Letters" @@ -52460,11 +52514,11 @@ #: reportwriter/languages/en_US/reports.php:256 msgid "Customer Quotes" -msgstr "" +msgstr "Cotizaciones de clientes" #: reportwriter/languages/en_US/reports.php:258 msgid "Invoices and Packing Slips" -msgstr "" +msgstr "Facturas y colillas de embalaje" #: reportwriter/languages/en_US/reports.php:261 msgid "Sales Receipts" @@ -52496,7 +52550,7 @@ #: reportwriter/languages/en_US/reports.php:271 msgid "Image - JPG or PNG" -msgstr "" +msgstr "Imagen - JPG o PNG" #: reportwriter/languages/en_US/reports.php:272 msgid "Rectangle" @@ -52524,7 +52578,7 @@ #: reportwriter/languages/en_US/reports.php:278 msgid "Lowercase" -msgstr "" +msgstr "Minúscula" #: reportwriter/languages/en_US/reports.php:279 msgid "Negate" @@ -52536,11 +52590,11 @@ #: reportwriter/languages/en_US/reports.php:281 msgid "Convert Dollars" -msgstr "" +msgstr "Convertir dólares" #: reportwriter/languages/en_US/reports.php:282 msgid "Convert Euros" -msgstr "" +msgstr "Convertir euros" #: reportwriter/languages/en_US/reports.php:283 msgid "Single Space" @@ -53027,7 +53081,7 @@ #: ../webSHOP/Checkout.php:584 ../webSHOP/Checkout.php:598 msgid "for your reference" -msgstr "" +msgstr "para su referencia" #: ../webSHOP/Checkout.php:591 msgid "" @@ -53213,11 +53267,11 @@ #: ../webSHOP/CreditCardPayPalPro.php:275 msgid "First Name" -msgstr "" +msgstr "Nombre" #: ../webSHOP/CreditCardPayPalPro.php:276 msgid "The first name of the credit card holder" -msgstr "" +msgstr "El nombre del titular de la tarjeta de crédito" #: ../webSHOP/CreditCardPayPalPro.php:277 msgid "Last Name" @@ -53225,15 +53279,15 @@ #: ../webSHOP/CreditCardPayPalPro.php:278 msgid "The last name of the credit card holder" -msgstr "" +msgstr "El apellido del titular de la tarjeta de crédito" #: ../webSHOP/CreditCardPayPalPro.php:282 msgid "The street of the card holder" -msgstr "" +msgstr "La calle del titular de la tarjeta de crédito" #: ../webSHOP/CreditCardPayPalPro.php:284 msgid "The city of the card holder" -msgstr "" +msgstr "La ciudad del titular de la tarjeta de crédito" #: ../webSHOP/CreditCardPayPalPro.php:287 msgid "State" @@ -53253,11 +53307,11 @@ #: ../webSHOP/CreditCardPayPalPro.php:295 msgid "The Country of the card holder" -msgstr "" +msgstr "El país del titular de la tarjeta de crédito" #: ../webSHOP/ItemDetails.php:98 msgid "incl Tax" -msgstr "" +msgstr "impuesto incluido" #: ../webSHOP/ItemDetails.php:102 ../webSHOP/ItemDetails.php:111 #: ../webSHOP/includes/Functions.php:43 ../webSHOP/includes/Functions.php:52 @@ -53619,7 +53673,7 @@ #: ../webSHOP/includes/Functions.php:50 msgid "Stock QTY" -msgstr "" +msgstr "Cantidad de inventario" #: ../webSHOP/includes/Functions.php:278 msgid "Sending the PayPal Request" |
From: Rafael C. <raf...@gm...> - 2017-06-17 23:13:19
|
Thanks Paul. Fixed call to session.php, header.php, and footer.php. 2017-06-07 21:26 GMT-06:00 Paul T. <pth...@gm...>: > @exsonqu: I believe that 4 include changes (plus one in a comment) should > be reverted? > > There was a previous change that renamed a few .inc files to .php, and then > updated many, MANY files to match the change, one of which was > SelectSalesOrder.php. [see revision > https://sourceforge.net/p/web-erp/code/7751/?page=10] > > > Thanks!, > -Paul > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Web-erp-svn mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-svn > |
From: <rc...@us...> - 2017-06-17 23:07:48
|
Revision: 7767 http://sourceforge.net/p/web-erp/reponame/7767 Author: rchacon Date: 2017-06-17 23:07:46 +0000 (Sat, 17 Jun 2017) Log Message: ----------- Fix call to session.php, header.php, and footer.php. Modified Paths: -------------- trunk/SelectSalesOrder.php Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2017-06-08 02:30:51 UTC (rev 7766) +++ trunk/SelectSalesOrder.php 2017-06-17 23:07:46 UTC (rev 7767) @@ -2,12 +2,12 @@ /* $Id$*/ -include('includes/session.inc'); +include('includes/session.php'); $Title = _('Search Outstanding Sales Orders'); -/* webERP manual links before header.inc */ +/* webERP manual links before header.php */ $ViewTopic= "SalesOrders"; $BookMark = "SelectSalesOrder"; -include('includes/header.inc'); +include('includes/header.php'); include('includes/SQL_CommonFunctions.inc'); if (isset($_POST['Reset'])) { unset($_POST); @@ -439,7 +439,7 @@ <b>' . _('The Order Number entered MUST be numeric') . '</b> <br />'; unset ($OrderNumber); - include('includes/footer.inc'); + include('includes/footer.php'); exit; } else { echo _('Order Number') . ' - ' . $OrderNumber; @@ -1028,7 +1028,7 @@ } //end StockID already selected -include('includes/footer.inc'); +include('includes/footer.php'); function GetSearchItems ($SQLConstraint='') { global $db; if ($_POST['Keywords'] AND $_POST['StockCode']) { |
From: Paul T. <pth...@gm...> - 2017-06-08 03:26:13
|
@exsonqu: I believe that 4 include changes (plus one in a comment) should be reverted? There was a previous change that renamed a few .inc files to .php, and then updated many, MANY files to match the change, one of which was SelectSalesOrder.php. [see revision https://sourceforge.net/p/web-erp/code/7751/?page=10] Thanks!, -Paul |
From: <ex...@us...> - 2017-06-08 02:30:53
|
Revision: 7766 http://sourceforge.net/p/web-erp/reponame/7766 Author: exsonqu Date: 2017-06-08 02:30:51 +0000 (Thu, 08 Jun 2017) Log Message: ----------- Modified Paths: -------------- trunk/doc/Change.log Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-06-08 02:28:42 UTC (rev 7765) +++ trunk/doc/Change.log 2017-06-08 02:30:51 UTC (rev 7766) @@ -1,5 +1,7 @@ webERP Change Log +08/06/17 Exson: Fixed quotation and orders are mixed in searching result of SelectSalesOrder.php. +1/6/17 VortecCPI fixed empty list error in GLAccounts.php, GLCashFlowsIndirect.php, GLCashFlowsSetup.php 18/5/17 Phil: remove changes in Andrew's PO_Items.php script that increased dp for purchase price to 5 - for some low value currencies this would be inappropriate, better to use the currency decimal places + 2 as per Ricard's idea 16/5/17 Andrew Couling: SQL correction in PO_Items.php. Line 1094. 7/5/17 Andy Couling/Janb: Fixes to MRP scripts SQL to get table names per forum post http://www.weberp.org/forum/showthread.php?tid=2448 |
From: <ex...@us...> - 2017-06-08 02:28:45
|
Revision: 7765 http://sourceforge.net/p/web-erp/reponame/7765 Author: exsonqu Date: 2017-06-08 02:28:42 +0000 (Thu, 08 Jun 2017) Log Message: ----------- 08/06/17 Exson: Fixed quotation and orders are mixed in searching result of SelectSalesOrder.php. Modified Paths: -------------- trunk/SelectSalesOrder.php Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2017-06-01 01:21:09 UTC (rev 7764) +++ trunk/SelectSalesOrder.php 2017-06-08 02:28:42 UTC (rev 7765) @@ -2,12 +2,12 @@ /* $Id$*/ -include('includes/session.php'); +include('includes/session.inc'); $Title = _('Search Outstanding Sales Orders'); -/* webERP manual links before header.php */ +/* webERP manual links before header.inc */ $ViewTopic= "SalesOrders"; $BookMark = "SelectSalesOrder"; -include('includes/header.php'); +include('includes/header.inc'); include('includes/SQL_CommonFunctions.inc'); if (isset($_POST['Reset'])) { unset($_POST); @@ -439,7 +439,7 @@ <b>' . _('The Order Number entered MUST be numeric') . '</b> <br />'; unset ($OrderNumber); - include('includes/footer.php'); + include('includes/footer.inc'); exit; } else { echo _('Order Number') . ' - ' . $OrderNumber; @@ -643,7 +643,7 @@ //figure out the SQL required from the inputs available if (isset($_POST['Quotations']) AND $_POST['Quotations']=='Orders_Only'){ $Quotations = 0; - } elseif(isset($_POST['Quotations']) AND $_POST['Quotations'] == 'Quotations_Only') { + } elseif(isset($_POST['Quotations']) AND $_POST['Quotations'] == 'Quotes_Only') { $Quotations =1; } elseif(isset($_POST['Quotations']) AND $_POST['Quotations'] == 'Overdue_Only') { $Quotations = "0 AND itemdue<'" . Date('Y-m-d') . "'"; @@ -1028,7 +1028,7 @@ } //end StockID already selected -include('includes/footer.php'); +include('includes/footer.inc'); function GetSearchItems ($SQLConstraint='') { global $db; if ($_POST['Keywords'] AND $_POST['StockCode']) { |
From: <ex...@us...> - 2017-06-01 01:21:11
|
Revision: 7764 http://sourceforge.net/p/web-erp/reponame/7764 Author: exsonqu Date: 2017-06-01 01:21:09 +0000 (Thu, 01 Jun 2017) Log Message: ----------- 1/6/17 VortecCPI fixed empty list error in GLAccounts.php, GLCashFlowsIndirect.php, GLCashFlowsSetup.php Modified Paths: -------------- trunk/GLAccounts.php trunk/GLCashFlowsIndirect.php trunk/GLCashFlowsSetup.php Modified: trunk/GLAccounts.php =================================================================== --- trunk/GLAccounts.php 2017-05-18 09:24:16 UTC (rev 7763) +++ trunk/GLAccounts.php 2017-06-01 01:21:09 UTC (rev 7764) @@ -319,7 +319,7 @@ $Result = DB_query($Sql, $ErrMsg); $k = 1;// Row colour counter. - foreach($Result as $MyRow) { + while ($MyRow = DB_fech_array($Result)) { if($k == 1) { echo '<tr class="OddTableRows">'; $k = 0; Modified: trunk/GLCashFlowsIndirect.php =================================================================== --- trunk/GLCashFlowsIndirect.php 2017-05-18 09:24:16 UTC (rev 7763) +++ trunk/GLCashFlowsIndirect.php 2017-06-01 01:21:09 UTC (rev 7764) @@ -76,8 +76,10 @@ $Title, '" /> ', // Icon title. $Title, '<br />', // Page title, reporting statement. stripslashes($_SESSION['CompanyRecord']['coyname']), '<br />'; // Page title, reporting entity. - $PeriodFromName = DB_fetch_array(DB_query('SELECT lastdate_in_period FROM `periods` WHERE `periodno`=' . $_POST['PeriodFrom'])); - $PeriodToName = DB_fetch_array(DB_query('SELECT lastdate_in_period FROM `periods` WHERE `periodno`=' . $_POST['PeriodTo'])); + $Result = DB_query('SELECT lastdate_in_period FROM `periods` WHERE `periodno`=' . $_POST['PeriodFrom']); + $PeriodFromName = DB_fetch_array($Result); + $Result = DB_query('SELECT lastdate_in_period FROM `periods` WHERE `periodno`=' . $_POST['PeriodTo']); + $PeriodToName = DB_fetch_array($Result); echo _('From'), ' ', MonthAndYearFromSQLDate($PeriodFromName['lastdate_in_period']), ' ', _('to'), ' ', MonthAndYearFromSQLDate($PeriodToName['lastdate_in_period']), '<br />'; // Page title, reporting period. include_once('includes/CurrenciesArray.php');// Array to retrieve currency name. echo _('All amounts stated in'), ': ', _($CurrencyName[$_SESSION['CompanyRecord']['currencydefault']]), '</p>';// Page title, reporting presentation currency and level of rounding used. @@ -205,7 +207,7 @@ $IdSection = -1; // Looks for an account without setting up: $NeedSetup = FALSE; - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['cashflowsactivity'] == -1) { $NeedSetup = TRUE; echo '<tr><td colspan="8"> </td></tr>'; @@ -212,7 +214,8 @@ break; } } - foreach($Result as $MyRow) { + DB_data_seek($Result,0); + while($MyRow = DB_fetch_array($Result)) { if($IdSection <> $MyRow['cashflowsactivity']) { // Prints section total: echo '<tr> @@ -290,7 +293,7 @@ GROUP BY chartdetails.accountcode ORDER BY chartdetails.accountcode"; $Result = DB_query($Sql); - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['ActualAmount']<>0 OR $MyRow['BudgetAmount']<>0 OR $MyRow['LastAmount']<>0 OR isset($_POST['ShowZeroBalance'])) { @@ -351,7 +354,7 @@ GROUP BY chartdetails.accountcode ORDER BY chartdetails.accountcode"; $Result = DB_query($Sql); - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['ActualAmount']<>0 OR $MyRow['BudgetAmount']<>0 OR $MyRow['LastAmount']<>0 OR isset($_POST['ShowZeroBalance'])) { @@ -403,7 +406,7 @@ ORDER BY chartdetails.accountcode"; $Result = DB_query($Sql); - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['ActualAmount']<>0 OR $MyRow['BudgetAmount']<>0 OR $MyRow['LastAmount']<>0 OR isset($_POST['ShowZeroBalance'])) { @@ -467,7 +470,8 @@ INNER JOIN chartdetails ON chartmaster.accountcode=chartdetails.accountcode INNER JOIN accountgroups ON chartmaster.group_=accountgroups.groupname WHERE accountgroups.pandl=1"; - $MyRow1 = DB_fetch_array(DB_query($Sql)); + $Result = DB_query($Sql); + $MyRow1 = DB_fetch_array($Result); echo colDebitCredit($MyRow1['ActualProfit']), colDebitCredit($MyRow1['LastProfit']), '</tr> @@ -484,7 +488,8 @@ WHERE accountgroups.pandl=0 AND chartdetails.accountcode!='" . $_SESSION['PeriodProfitAccount'] . "' AND chartdetails.accountcode!='" . $_SESSION['RetainedEarningsAccount'] . "'";// Gets retained earnings by the complement method to include differences. The complement method: Changes(retained earnings) = -Changes(other accounts). - $MyRow2 = DB_fetch_array(DB_query($Sql)); + $Result = DB_query($Sql); + $MyRow2 = DB_fetch_array($Result); echo colDebitCredit($MyRow2['ActualRetained'] - $MyRow1['ActualProfit']), colDebitCredit($MyRow2['LastRetained'] - $MyRow1['LastProfit']), '</tr><tr>', @@ -515,7 +520,7 @@ $IdSection = -1; // Looks for an account without setting up: $NeedSetup = FALSE; - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['cashflowsactivity'] == -1) { $NeedSetup = TRUE; echo '<tr><td colspan="8"> </td></tr>'; @@ -522,7 +527,8 @@ break; } } - foreach($Result as $MyRow) { + DB_data_seek($Result,0); + while($MyRow = DB_fetch_array($Result)) { if($IdSection <> $MyRow['cashflowsactivity']) { // Prints section total: echo '<tr> @@ -590,7 +596,7 @@ GROUP BY chartdetails.accountcode ORDER BY chartdetails.accountcode"; $Result = DB_query($Sql); - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['ActualAmount']<>0 OR $MyRow['LastAmount']<>0 OR isset($_POST['ShowZeroBalance'])) { if($k == 1) { @@ -644,7 +650,7 @@ GROUP BY chartdetails.accountcode ORDER BY chartdetails.accountcode"; $Result = DB_query($Sql); - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['ActualAmount']<>0 OR $MyRow['LastAmount']<>0 OR isset($_POST['ShowZeroBalance'])) { if($k == 1) { @@ -691,7 +697,7 @@ ORDER BY chartdetails.accountcode"; $Result = DB_query($Sql); - foreach($Result as $MyRow) { + while($MyRow = DB_fetch_array($Result)) { if($MyRow['ActualAmount']<>0 OR $MyRow['LastAmount']<>0 OR isset($_POST['ShowZeroBalance'])) { if($k == 1) { @@ -793,7 +799,7 @@ } $_POST['PeriodFrom'] = GetPeriod(date($_SESSION['DefaultDateFormat'], $BeginDate), $db); } - foreach($Periods as $MyRow) { + while($MyRow = DB_fetch_array($Periods)) { echo '<option',($MyRow['periodno'] == $_POST['PeriodFrom'] ? ' selected="selected"' : '' ), ' value="', $MyRow['periodno'], '">', MonthAndYearFromSQLDate($MyRow['lastdate_in_period']), '</option>'; } echo '</select>', @@ -807,7 +813,8 @@ if(!isset($_POST['PeriodTo'])) { $_POST['PeriodTo'] = GetPeriod(date($_SESSION['DefaultDateFormat']), $db); } - foreach($Periods as $MyRow) { + DB_data_seek($Periods,0); + while($MyRow = DB_fetch_array($Periods)) { echo '<option',($MyRow['periodno'] == $_POST['PeriodTo'] ? ' selected="selected"' : '' ), ' value="', $MyRow['periodno'], '">', MonthAndYearFromSQLDate($MyRow['lastdate_in_period']), '</option>'; } echo '</select>', Modified: trunk/GLCashFlowsSetup.php =================================================================== --- trunk/GLCashFlowsSetup.php 2017-05-18 09:24:16 UTC (rev 7763) +++ trunk/GLCashFlowsSetup.php 2017-06-01 01:21:09 UTC (rev 7764) @@ -205,7 +205,7 @@ $_SESSION['PeriodProfitAccount'] = $Result['confvalue']; } } -foreach($GLAccounts as $MyRow) { +while($MyRow = DB_fetch_array($GLAccounts)) { echo '<option', ($MyRow['accountcode'] == $_SESSION['PeriodProfitAccount'] ? ' selected="selected"' : '' ), ' value="', $MyRow['accountcode'], '">', $MyRow['accountcode'], ' - ', $MyRow['accountname'], '</option>'; } echo '</select>', @@ -225,7 +225,8 @@ $_SESSION['RetainedEarningsAccount'] = $Result['retainedearnings']; } } -foreach($GLAccounts as $MyRow) { +DB_data_seek($GLAccounts,0); +while($MyRow = DB_fetch_array($GLAccounts)) { echo '<option', ($MyRow['accountcode'] == $_SESSION['RetainedEarningsAccount'] ? ' selected="selected"' : '' ), ' value="', $MyRow['accountcode'], '">', $MyRow['accountcode'], ' - ', $MyRow['accountname'], '</option>'; } echo '</select>', @@ -238,4 +239,4 @@ include('includes/footer.php'); // END: Procedure division ----------------------------------------------------- -?> \ No newline at end of file +?> |
From: <dai...@us...> - 2017-05-18 09:24:19
|
Revision: 7763 http://sourceforge.net/p/web-erp/reponame/7763 Author: daintree Date: 2017-05-18 09:24:16 +0000 (Thu, 18 May 2017) Log Message: ----------- Ricards idea to show the suppliers currency decimal places plus 2 for the purchase price Modified Paths: -------------- trunk/PO_Items.php trunk/doc/Change.log Modified: trunk/PO_Items.php =================================================================== --- trunk/PO_Items.php 2017-05-16 05:38:49 UTC (rev 7762) +++ trunk/PO_Items.php 2017-05-18 09:24:16 UTC (rev 7763) @@ -735,12 +735,12 @@ $DisplayLineTotal = locale_number_format($LineTotal,$_SESSION['PO'.$identifier]->CurrDecimalPlaces); // Note if the price is greater than 1 use 2 decimal place, if the price is a fraction of 1, use 4 decimal places // This should help display where item-price is a fraction - if ($POLine->Price > 100000) { + if ($POLine->Price > 1) { $DisplayPrice = locale_number_format($POLine->Price,$_SESSION['PO'.$identifier]->CurrDecimalPlaces); $SuppPrice = locale_number_format(round(($POLine->Price *$POLine->ConversionFactor),$_SESSION['PO'.$identifier]->CurrDecimalPlaces),$_SESSION['PO'.$identifier]->CurrDecimalPlaces); } else { - $DisplayPrice = locale_number_format($POLine->Price,5); - $SuppPrice = locale_number_format(round(($POLine->Price *$POLine->ConversionFactor),5),5); + $DisplayPrice = locale_number_format($POLine->Price,($_SESSION['PO'.$identifier]->CurrDecimalPlaces + 2)); + $SuppPrice = locale_number_format(round(($POLine->Price *$POLine->ConversionFactor),($_SESSION['PO'.$identifier]->CurrDecimalPlaces+2)),($_SESSION['PO'.$identifier]->CurrDecimalPlaces+2)); } if ($k==1){ Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-05-16 05:38:49 UTC (rev 7762) +++ trunk/doc/Change.log 2017-05-18 09:24:16 UTC (rev 7763) @@ -1,5 +1,6 @@ webERP Change Log +18/5/17 Phil: remove changes in Andrew's PO_Items.php script that increased dp for purchase price to 5 - for some low value currencies this would be inappropriate, better to use the currency decimal places + 2 as per Ricard's idea 16/5/17 Andrew Couling: SQL correction in PO_Items.php. Line 1094. 7/5/17 Andy Couling/Janb: Fixes to MRP scripts SQL to get table names per forum post http://www.weberp.org/forum/showthread.php?tid=2448 13/4/17 RChacon: Rename includes/footer.inc, includes/header.inc and includes/session.inc to includes/footer.php, includes/header.php and includes/session.php. |
From: <dai...@us...> - 2017-05-16 05:38:52
|
Revision: 7762 http://sourceforge.net/p/web-erp/reponame/7762 Author: daintree Date: 2017-05-16 05:38:49 +0000 (Tue, 16 May 2017) Log Message: ----------- Andy Couling fix SQL in PO_Items.php Modified Paths: -------------- trunk/PO_Items.php trunk/doc/Change.log Modified: trunk/PO_Items.php =================================================================== --- trunk/PO_Items.php 2017-05-14 23:58:40 UTC (rev 7761) +++ trunk/PO_Items.php 2017-05-16 05:38:49 UTC (rev 7762) @@ -735,12 +735,12 @@ $DisplayLineTotal = locale_number_format($LineTotal,$_SESSION['PO'.$identifier]->CurrDecimalPlaces); // Note if the price is greater than 1 use 2 decimal place, if the price is a fraction of 1, use 4 decimal places // This should help display where item-price is a fraction - if ($POLine->Price > 1) { + if ($POLine->Price > 100000) { $DisplayPrice = locale_number_format($POLine->Price,$_SESSION['PO'.$identifier]->CurrDecimalPlaces); $SuppPrice = locale_number_format(round(($POLine->Price *$POLine->ConversionFactor),$_SESSION['PO'.$identifier]->CurrDecimalPlaces),$_SESSION['PO'.$identifier]->CurrDecimalPlaces); } else { - $DisplayPrice = locale_number_format($POLine->Price,4); - $SuppPrice = locale_number_format(round(($POLine->Price *$POLine->ConversionFactor),4),4); + $DisplayPrice = locale_number_format($POLine->Price,5); + $SuppPrice = locale_number_format(round(($POLine->Price *$POLine->ConversionFactor),5),5); } if ($k==1){ @@ -1091,7 +1091,7 @@ $Offset = $ListPageMax; } - $sql = $sql . "LIMIT " . $_SESSION['DisplayRecordsMax']." OFFSET " . strval($_SESSION['DisplayRecordsMax']*$Offset); + $sql = $sql . " LIMIT " . $_SESSION['DisplayRecordsMax']." OFFSET " . strval($_SESSION['DisplayRecordsMax']*$Offset); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-05-14 23:58:40 UTC (rev 7761) +++ trunk/doc/Change.log 2017-05-16 05:38:49 UTC (rev 7762) @@ -1,5 +1,6 @@ webERP Change Log +16/5/17 Andrew Couling: SQL correction in PO_Items.php. Line 1094. 7/5/17 Andy Couling/Janb: Fixes to MRP scripts SQL to get table names per forum post http://www.weberp.org/forum/showthread.php?tid=2448 13/4/17 RChacon: Rename includes/footer.inc, includes/header.inc and includes/session.inc to includes/footer.php, includes/header.php and includes/session.php. 09/4/17 RChacon: In UserSettings.php, add options to turn off/on page help and field help. In WWW_Users.php, improve code and documentation. |