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: <tu...@us...> - 2018-01-02 19:18:58
|
Revision: 7899 http://sourceforge.net/p/web-erp/reponame/7899 Author: turbopt Date: 2018-01-02 19:18:56 +0000 (Tue, 02 Jan 2018) Log Message: ----------- SelectSalesOrder.php: Move handling for URL Quotations parameter to top of file to avoid potential page error(s). [Reported in forums by Paul Becker] Handling move reduces code within some conditional checks. This change also includes minor whitespace improvements and removes an unused global reference. Modified Paths: -------------- trunk/SelectSalesOrder.php trunk/doc/Change.log Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2018-01-02 05:27:00 UTC (rev 7898) +++ trunk/SelectSalesOrder.php 2018-01-02 19:18:56 UTC (rev 7899) @@ -29,6 +29,13 @@ unset($SelectedCustomer); } +if ( isset($_GET['Quotations']) ) { + $_POST['Quotations'] = $_GET['Quotations']; +} +else { + $_POST['Quotations'] = ''; +} + if (isset($_POST['PlacePO'])){ /*user hit button to place PO for selected orders */ /*Note the button would not have been displayed if the user had no authority to create purchase orders */ @@ -505,15 +512,11 @@ echo '</select></td> <td><select name="Quotations">'; - if (isset($_GET['Quotations']) AND $_GET['Quotations']=='Quotes_Only'){ - $_POST['Quotations']='Quotes_Only'; - } - - if (isset($_POST['Quotations']) AND $_POST['Quotations']=='Quotes_Only'){ + if ( $_POST['Quotations'] == 'Quotes_Only' ){ echo '<option selected="selected" value="Quotes_Only">' . _('Quotations Only') . '</option>'; echo '<option value="Orders_Only">' . _('Orders Only') . '</option>'; echo '<option value="Overdue_Only">' . _('Overdue Only') . '</option>'; - } elseif (isset($_POST['Quotations']) AND $_POST['Quotations'] == 'Overdue_Only'){ + } elseif ( $_POST['Quotations'] == 'Overdue_Only' ){ echo '<option selected="selected" value="Overdue_Only">' . _('Overdue Only') . '</option>'; echo '<option value="Quotes_Only">' . _('Quotations Only') . '</option>'; echo '<option value="Orders_Only">' . _('Orders Only') . '</option>'; @@ -522,6 +525,7 @@ echo '<option value="Quotes_Only">' . _('Quotations Only') . '</option>'; echo '<option value="Overdue_Only">' . _('Overdue Only') . '</option>'; } + if (!isset($_POST['DueDateFrom'])) { $_POST['DueDateFrom'] = ''; } @@ -643,15 +647,14 @@ } //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'] == 'Quotes_Only') { - $Quotations =1; - } elseif(isset($_POST['Quotations']) AND $_POST['Quotations'] == 'Overdue_Only') { + if( $_POST['Quotations'] == 'Quotes_Only' ) { + $Quotations = 1; + } elseif( $_POST['Quotations'] == 'Overdue_Only' ) { $Quotations = "0 AND itemdue<'" . Date('Y-m-d') . "'"; } else { $Quotations = 0; } + if (isset($_POST['DueDateFrom']) AND is_date($_POST['DueDateFrom'])) { $DueDateFrom = " AND itemdue>='" . FormatDateForSQL($_POST['DueDateFrom']) . "' "; } else { @@ -777,8 +780,7 @@ $SQL .= " AND salesorders.salesperson='" . $_SESSION['SalesmanLogin'] . "'"; } - if (isset($OrderNumber) - AND $OrderNumber !='') { + if (isset($OrderNumber) AND $OrderNumber !='') { $SQL .= "AND salesorders.orderno=". $OrderNumber ." AND salesorders.quotation=" .$Quotations; @@ -788,7 +790,6 @@ AND salesorders.quotation=" . $Quotations; } else { - /* $DateAfterCriteria = FormatDateforSQL($OrdersAfterDate); */ if (isset($SelectedCustomer)) { @@ -847,7 +848,7 @@ echo '<table cellpadding="2" width="95%" class="selection">'; - if (isset($_POST['Quotations']) AND ($_POST['Quotations']=='Orders_Only' OR $_POST['Quotations'] == 'Overdue_Only')){ + if ( $_POST['Quotations'] == 'Orders_Only' OR $_POST['Quotations'] == 'Overdue_Only' ){ $TableHeader = '<tr> <th class="ascending" >' . _('Modify') . '</th> <th>' . _('Invoice') . '</th> @@ -1012,13 +1013,16 @@ </tr> </tfoot>'; } - echo '<tfoot><tr><td colspan="9" class="number">'; + + echo '<tfoot><tr><td colspan="9" class="number"><b>'; + if ($_POST['Quotations']=='Orders_Only'){ - echo '<b>' . _('Total Order(s) Value in'); + echo _('Total Order(s) Value in'); } else { - echo '<b>' . _('Total Quotation(s) Value in'); + echo _('Total Quotation(s) Value in'); } - echo ' ' . $_SESSION['CompanyRecord']['currencydefault'] . ' :</b></td> + + echo ' ' . $_SESSION['CompanyRecord']['currencydefault'] . ':</b></td> <td class="number"><b>' . locale_number_format($OrdersTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</b></td> </tr></tfoot> </table>'; @@ -1031,11 +1035,13 @@ } //end StockID already selected include('includes/footer.php'); + function GetSearchItems ($SQLConstraint='') { - global $db; + if ($_POST['Keywords'] AND $_POST['StockCode']) { echo _('Stock description keywords have been used in preference to the Stock code extract entered'); } + $SQL = "SELECT stockmaster.stockid, stockmaster.description, stockmaster.decimalplaces, @@ -1045,6 +1051,7 @@ ON salesorderdetails.stkcode = stockmaster.stockid AND completed=0 INNER JOIN locstock ON stockmaster.stockid=locstock.stockid"; + if (isset($_POST['StockCat']) AND ((trim($_POST['StockCat']) == '') OR $_POST['StockCat'] == 'All')){ $WhereStockCat = ''; @@ -1051,14 +1058,13 @@ } else { $WhereStockCat = " AND stockmaster.categoryid='" . $_POST['StockCat'] . "' "; } + if ($_POST['Keywords']) { //insert wildcard characters in spaces $SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%'; - $SQL .= " WHERE stockmaster.description " . LIKE . " '" . $SearchString . "' - " . $WhereStockCat ; + $SQL .= " WHERE stockmaster.description " . LIKE . " '" . $SearchString . "' " . $WhereStockCat; - } elseif (isset($_POST['StockCode'])){ $SQL .= " WHERE stockmaster.stockid " . LIKE . " '%" . $_POST['StockCode'] . "%'" . $WhereStockCat; @@ -1066,6 +1072,7 @@ $SQL .= " WHERE stockmaster.categoryid='" . $_POST['StockCat'] ."'"; } + $SQL .= $SQLConstraint; $SQL .= " GROUP BY stockmaster.stockid, stockmaster.description, @@ -1076,7 +1083,7 @@ $ErrMsg = _('No stock items were returned by the SQL because'); $DbgMsg = _('The SQL used to retrieve the searched parts was'); $StockItemsResult = DB_query($SQL,$ErrMsg,$DbgMsg); + return $StockItemsResult; - } ?> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2018-01-02 05:27:00 UTC (rev 7898) +++ trunk/doc/Change.log 2018-01-02 19:18:56 UTC (rev 7899) @@ -1,5 +1,6 @@ webERP Change Log +2/1/18: PaulT: SelectSalesOrder.php: Move handling for URL Quotations parameter to top of file to avoid potential page error(s). (Reported in forums by Paul Becker) Handling move reduces code within some conditional checks. This change also includes minor whitespace improvements and removes an unused global reference. 2/1/18: PaulT: css/default/default.css: Add text alignment in a couple of styles to match the same use in other CSS to avoid formatting issues when the default theme is used. Also, set several property names to lowercase. 20/12/17 PaulT: FormMaker.php, ReportMaker.php, WriteForm.inc: A few more PHP 7.1 array compatibility changes. 20/12/17 PaulT: RCFunctions.inc, FormMaker.php: PHP 7.1 array compatibility change. |
From: <tu...@us...> - 2018-01-02 05:27:02
|
Revision: 7898 http://sourceforge.net/p/web-erp/reponame/7898 Author: turbopt Date: 2018-01-02 05:27:00 +0000 (Tue, 02 Jan 2018) Log Message: ----------- css/default/default.css: Add text alignment in a couple of styles to match the same use as other CSS files to avoid formatting issues when the default theme is used. Also, converted several property names to lowercase. Modified Paths: -------------- trunk/css/default/default.css trunk/doc/Change.log Modified: trunk/css/default/default.css =================================================================== --- trunk/css/default/default.css 2017-12-22 21:45:32 UTC (rev 7897) +++ trunk/css/default/default.css 2018-01-02 05:27:00 UTC (rev 7898) @@ -159,15 +159,15 @@ } div.warn { -background-color:#f5dbfd; -color:maroon; -border:1px solid maroon; + background-color:#f5dbfd; + color:maroon; + border:1px solid maroon; } div.success { -background-color:#b9ecb4; -color:darkgreen; -border:1px solid darkgreen; + background-color:#b9ecb4; + color:darkgreen; + border:1px solid darkgreen; } div.info { @@ -176,33 +176,33 @@ border:1px solid navy; } -DIV.page_help_text { +div.page_help_text { background:lightgrey url(images/help.png) top left no-repeat; - BORDER:#a52a2a 1px solid; + border:#a52a2a 1px solid; padding-top:2px; padding-bottom:2px; - PADDING-LEFT:10px; - Z-INDEX:1; + padding-left:10px; + z-index:1; width:80%; - FLOAT:none; - VISIBILITY:visible; - MARGIN:0 auto; - POSITION:static; + float:none; + visibility:visible; + margin:0 auto; + position:static; font-family:Arial, Verdana, Helvetica, sans-serif; font-weight:normal; color:black; - TEXT-ALIGN:center; + text-align:center; } -DIV.system_check { - BORDER:#a52a2a 1px solid; - PADDING-LEFT:3px; - Z-INDEX:1; +div.system_check { + border:#a52a2a 1px solid; + padding-left:3px; + z-index:1; width:40%; - FLOAT:none; - VISIBILITY:visible; - MARGIN:0 auto; - POSITION:static; + float:none; + visibility:visible; + margin:0 auto; + position:static; background:lightgray; font-family:Arial, Verdana, Helvetica, sans-serif; padding-top:1px; @@ -209,7 +209,7 @@ padding-bottom:1px; font-weight:normal; color:black; - TEXT-ALIGN:left; + text-align:left; } .dpTbl { /* date picker background */ @@ -250,16 +250,6 @@ margin:0 auto; } -/* Table type is used for UI tables type 2 */ -/*.table2 { -width:90%; -background:#eee; -border:0px 0px 2px 2px #222 solid; -margin:0 auto; -} - -*/ - .tableheader { font-weight:normal; background-color:#800000; @@ -369,12 +359,13 @@ #BodyDiv { clear:both; + text-align:center; } #BodyWrapDiv { background:#CCCCCC; /*border:thin solid #ccc;*/ - clear:both; + /*clear:both;*/ } /*** BODY - MAIN MENU ***/ @@ -425,6 +416,7 @@ display:table; float:right; overflow:hidden; + text-align:left; width:88.5%; } @@ -470,7 +462,7 @@ .menu_group_item p { color:#00f; /* This is the color for bullets, I like it to be the same as the anchor color, but it's up to you */ text-indent:-12px; /* this makes the bullet to appear as the li tag previously used */ - margin:0 0 0 12px; /* One thing that I didn´t like of the li was that it had no left margin applied */ + margin:0 0 0 12px; /* One thing that I didn't like of the li was that it had no left margin applied */ } #InquiriesDiv div { /* header for standard reports/forms, custom reports */ Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-22 21:45:32 UTC (rev 7897) +++ trunk/doc/Change.log 2018-01-02 05:27:00 UTC (rev 7898) @@ -1,5 +1,6 @@ webERP Change Log +2/1/18: PaulT: css/default/default.css: Add text alignment in a couple of styles to match the same use in other CSS to avoid formatting issues when the default theme is used. Also, set several property names to lowercase. 20/12/17 PaulT: FormMaker.php, ReportMaker.php, WriteForm.inc: A few more PHP 7.1 array compatibility changes. 20/12/17 PaulT: RCFunctions.inc, FormMaker.php: PHP 7.1 array compatibility change. 19/12/17 PaulT: PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file) |
From: <dai...@us...> - 2017-12-22 21:45:35
|
Revision: 7897 http://sourceforge.net/p/web-erp/reponame/7897 Author: daintree Date: 2017-12-22 21:45:32 +0000 (Fri, 22 Dec 2017) Log Message: ----------- Giberto updated pt_BR translation Modified Paths: -------------- trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po Modified: trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po 2017-12-22 06:04:09 UTC (rev 7896) +++ trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po 2017-12-22 21:45:32 UTC (rev 7897) @@ -1,35 +1,43 @@ -# webERP - Portuguese Portugal Translation File. -# Copyright (C) 2014 WebERP Contrib +# webERP - Portuguese BRASIL Translation File. +# Copyright (C) 2014-2017 WebERP Contrib revisado para weberp 4.14.1 # This file is distributed under the same license as the webERP package. -# gsavix <gs...@gm...> 2014 +# gsavix <gs...@gm...> 2014-2017 # msgid "" msgstr "" -"Project-Id-Version: webERP 4.13\n" +"Project-Id-Version: webERP 4.14.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-22 18:59+1300\n" -"PO-Revision-Date: 2014-01-28 14:48-0300\n" -"Last-Translator: gilberto dos santos alves <gs...@gm...>\n" -"Language-Team: pt-PT <gs...@gm...>\n" -"Language: pt_PT\n" +"POT-Creation-Date: 2017-10-02 10:21-0600\n" +"PO-Revision-Date: 2017-12-11 17:28-0200\n" +"Last-Translator: gsavix <gs...@gm...>\n" +"Language-Team: pt-BR <gs...@gm...>\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: normal;\n" -"X-Generator: Poedit 1.6.1\n" +"X-Generator: Poedit 2.0.4\n" "X-Poedit-SourceCharset: utf-8\n" -#: AccountGroups.php:6 includes/MainMenuLinksArray.php:405 +#: AccountGroups.php:6 includes/MainMenuLinksArray.php:403 msgid "Account Groups" msgstr "Grupo de Contas" #: AccountGroups.php:19 -msgid "An error occurred in retrieving the account groups of the parent account group during the check for recursion" -msgstr "Ocorreu erro recuperando o grupo de contas do grupo da conta principal quando da verificação de recursividade" +msgid "" +"An error occurred in retrieving the account groups of the parent account " +"group during the check for recursion" +msgstr "" +"Ocorreu erro recuperando o grupo de contas do grupo da conta principal " +"quando da verificação de recursividade" #: AccountGroups.php:20 -msgid "The SQL that was used to retrieve the account groups of the parent account group and that failed in the process was" -msgstr "SQL que foi usado para recuperar o grupo de contas do principal grupo de contas e que falhou no processo foi" +msgid "" +"The SQL that was used to retrieve the account groups of the parent account " +"group and that failed in the process was" +msgstr "" +"SQL que foi usado para recuperar o grupo de contas do principal grupo de " +"contas e que falhou no processo foi" #: AccountGroups.php:45 msgid "An error occurred in moving the account group" @@ -77,8 +85,14 @@ msgstr "O nome do grupo da conta necessita ter um mínimo de um caracter" #: AccountGroups.php:95 -msgid "The parent account group selected appears to result in a recursive account structure - select an alternative parent account group or make this group a top level account group" -msgstr "O grupo selecionado da conta principal parece resultar em estrutura recursiva da conta - selecione um grupo de conta principal alternativo ou defina um grupo de conta num nível acima" +msgid "" +"The parent account group selected appears to result in a recursive account " +"structure - select an alternative parent account group or make this group a " +"top level account group" +msgstr "" +"O grupo selecionado da conta principal parece resultar em estrutura " +"recursiva da conta - selecione um grupo de conta principal alternativo ou " +"defina um grupo de conta num nível acima" #: AccountGroups.php:106 msgid "Could not check whether the group is recursive because" @@ -85,8 +99,18 @@ msgstr "Não pode ser verificado se o grupo é recursivo porque" #: AccountGroups.php:114 -msgid "Since this account group is a child group, the sequence in the trial balance, the section in the accounts and whether or not the account group appears in the balance sheet or profit and loss account are all properties inherited from the parent account group. Any changes made to these fields will have no effect." -msgstr "Desde que esta conta de grupo é um grupo filho, a sequência no balancete, a seção das contas e talvez ou não o grupo de contas aparece na folha do balanço ou na conta de lucros e perdas são todas com propriedades inerentes ao grupo de contas pai. Quaisquer mudanças feitas nesses campos não terão efeito." +msgid "" +"Since this account group is a child group, the sequence in the trial " +"balance, the section in the accounts and whether or not the account group " +"appears in the balance sheet or profit and loss account are all properties " +"inherited from the parent account group. Any changes made to these fields " +"will have no effect." +msgstr "" +"Desde que esta conta de grupo é um grupo filho, a sequência no balancete, a " +"seção das contas e talvez ou não o grupo de contas aparece na folha do " +"balanço ou na conta de lucros e perdas são todas com propriedades inerentes " +"ao grupo de contas pai. Quaisquer mudanças feitas nesses campos não terão " +"efeito." #: AccountGroups.php:119 msgid "The section in accounts must be an integer" @@ -134,11 +158,16 @@ #: AccountGroups.php:206 msgid "An error occurred in retrieving the group information from chartmaster" -msgstr "Ocorreu erro ao recuperar o informação do grupo a partir do chartmaster" +msgstr "" +"Ocorreu erro ao recuperar o informação do grupo a partir do chartmaster" #: AccountGroups.php:211 -msgid "Cannot delete this account group because general ledger accounts have been created using this group" -msgstr "Este grupo de contas não pode ser apagado porque o Plano Geral de Contas foi criado usando este grupo" +msgid "" +"Cannot delete this account group because general ledger accounts have been " +"created using this group" +msgstr "" +"Este grupo de contas não pode ser apagado porque o Plano Geral de Contas foi " +"criado usando este grupo" #: AccountGroups.php:212 AccountGroups.php:247 AccountSections.php:130 #: Areas.php:115 Areas.php:124 BankAccounts.php:165 CreditStatus.php:125 @@ -152,7 +181,7 @@ #: 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:117 SalesCategories.php:146 +#: PaymentTerms.php:153 PcExpenses.php:115 SalesCategories.php:146 #: SalesCategories.php:153 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 @@ -181,12 +210,17 @@ msgstr "Ocorreu um erro na recuperação do principal grupo de informação" #: AccountGroups.php:246 -msgid "Cannot delete this account group because it is a parent account group of other account group(s)" -msgstr "Este grupo de contas não pode ser apagado porque é uma conta de de grupo principal de outro grupo(s) de contas" +msgid "" +"Cannot delete this account group because it is a parent account group of " +"other account group(s)" +msgstr "" +"Este grupo de contas não pode ser apagado porque é uma conta de de grupo " +"principal de outro grupo(s) de contas" #: AccountGroups.php:247 msgid "account groups that have this group as its/there parent account group" -msgstr "grupo de contas que têm seu grupo como seu/seus grupo de contas principal" +msgstr "" +"grupo de contas que têm seu grupo como seu/seus grupo de contas principal" #: AccountGroups.php:251 msgid "An error occurred in deleting the account group" @@ -210,14 +244,12 @@ #: AccountGroups.php:281 AddCustomerContacts.php:28 AddCustomerContacts.php:30 #: AddCustomerNotes.php:101 AddCustomerTypeNotes.php:94 AgedDebtors.php:454 -#: AgedSuppliers.php:276 Areas.php:144 AuditTrail.php:11 -#: BOMExtendedQty.php:256 BOMIndented.php:251 BOMIndentedReverse.php:239 -#: BOMInquiry.php:186 BOMListing.php:112 BOMs.php:285 BOMs.php:997 -#: BOMs_SingleLevel.php:231 BOMs_SingleLevel.php:881 -#: CollectiveWorkOrderCost.php:281 CompanyPreferences.php:100 -#: CounterReturns.php:1625 CounterSales.php:2107 CounterSales.php:2203 -#: Credit_Invoice.php:286 CreditStatus.php:21 CustEDISetup.php:17 -#: CustItem.php:120 CustItem.php:210 CustItem.php:238 +#: AgedSuppliers.php:276 Areas.php:144 AuditTrail.php:11 BOMExtendedQty.php:256 +#: 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:2107 +#: CounterSales.php:2203 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 @@ -224,15 +256,15 @@ #: FixedAssetRegister.php:256 FixedAssetTransfer.php:14 FormDesigner.php:185 #: GLBudgets.php:32 GLJournalInquiry.php:11 GLJournal.php:250 #: HistoricalTestResults.php:42 InternalStockRequestInquiry.php:167 -#: InternalStockRequest.php:316 InventoryPlanning.php:460 +#: InternalStockRequest.php:316 InventoryPlanning.php:459 #: InventoryPlanningPrefSupplier.php:386 MaintenanceTasks.php:14 #: MaintenanceUserSchedule.php:16 MRPReport.php:543 NoSalesItems.php:91 -#: PcAssignCashTabToTab.php:80 PcAssignCashTabToTab.php:157 -#: PcAssignCashTabToTab.php:213 PcAssignCashToTab.php:50 -#: PcAssignCashToTab.php:118 PcAssignCashToTab.php:133 -#: PcAssignCashToTab.php:167 PDFPickingList.php:29 PDFStockLocTransfer.php:16 +#: PcAssignCashTabToTab.php:80 PcAssignCashTabToTab.php:160 +#: PcAssignCashTabToTab.php:216 PcAssignCashToTab.php:49 +#: PcAssignCashToTab.php:121 PcAssignCashToTab.php:136 +#: PcAssignCashToTab.php:170 PDFPickingList.php:29 PDFStockLocTransfer.php:16 #: POReport.php:60 POReport.php:64 POReport.php:68 -#: PO_SelectOSPurchOrder.php:147 PriceMatrix.php:16 PricesBasedOnMarkUp.php:8 +#: 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 @@ -240,21 +272,20 @@ #: 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:594 -#: SelectOrderItems.php:1522 SelectOrderItems.php:1622 SelectProduct.php:539 -#: SelectQASamples.php:45 SelectSalesOrder.php:547 SelectSupplier.php:233 +#: SelectCustomer.php:258 SelectGLAccount.php:86 SelectOrderItems.php:588 +#: SelectOrderItems.php:1514 SelectOrderItems.php:1614 SelectProduct.php:539 +#: SelectQASamples.php:45 SelectSalesOrder.php:545 SelectSupplier.php:233 #: 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 Suppliers.php:304 SupplierTenderCreate.php:556 -#: SupplierTenderCreate.php:664 SupplierTenders.php:322 -#: SupplierTenders.php:388 SupplierTransInquiry.php:10 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:218 +#: SupplierPriceList.php:14 SupplierPriceList.php:229 SupplierPriceList.php:399 +#: SupplierPriceList.php:458 SupplierPriceList.php:503 Suppliers.php:304 +#: SupplierTenderCreate.php:556 SupplierTenderCreate.php:664 +#: SupplierTenders.php:322 SupplierTenders.php:388 SupplierTransInquiry.php:10 +#: 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 "Pesquisar" @@ -279,8 +310,7 @@ #: AccountGroups.php:306 AccountGroups.php:309 AccountGroups.php:473 #: AccountGroups.php:476 AddCustomerContacts.php:165 #: AddCustomerContacts.php:275 AddCustomerContacts.php:279 -#: AddCustomerContacts.php:282 BOMs.php:140 BOMs.php:903 BOMs.php:905 -#: BOMs_SingleLevel.php:125 BOMs_SingleLevel.php:793 BOMs_SingleLevel.php:795 +#: AddCustomerContacts.php:282 BOMs.php:140 BOMs.php:896 BOMs.php:898 #: CompanyPreferences.php:423 CompanyPreferences.php:425 #: CompanyPreferences.php:438 CompanyPreferences.php:440 #: CompanyPreferences.php:453 CompanyPreferences.php:455 @@ -309,56 +339,54 @@ #: 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 SalesAnalRepts.php:476 -#: SalesAnalRepts.php:479 SalesCategories.php:297 SalesCategories.php:384 -#: SalesCategories.php:388 SalesPeople.php:227 SalesPeople.php:367 -#: SalesPeople.php:369 SelectCustomer.php:757 SelectProduct.php:251 -#: SelectProduct.php:390 SelectQASamples.php:424 SelectQASamples.php:518 -#: SelectQASamples.php:520 SelectQASamples.php:574 SelectQASamples.php:576 -#: SelectQASamples.php:588 SelectQASamples.php:590 ShipmentCosting.php:667 -#: ShopParameters.php:289 ShopParameters.php:293 ShopParameters.php:337 -#: ShopParameters.php:341 ShopParameters.php:391 ShopParameters.php:395 -#: ShopParameters.php:413 ShopParameters.php:417 ShopParameters.php:495 -#: ShopParameters.php:499 StockClone.php:938 StockClone.php:940 -#: StockClone.php:963 StockClone.php:965 Stocks.php:1266 Stocks.php:1268 -#: Stocks.php:1291 Stocks.php:1293 SuppContractChgs.php:90 +#: 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 +#: SalesAnalRepts.php:476 SalesAnalRepts.php:479 SalesCategories.php:297 +#: SalesCategories.php:384 SalesCategories.php:388 SalesPeople.php:227 +#: SalesPeople.php:367 SalesPeople.php:369 SelectCustomer.php:757 +#: SelectProduct.php:251 SelectProduct.php:390 SelectQASamples.php:424 +#: SelectQASamples.php:518 SelectQASamples.php:520 SelectQASamples.php:574 +#: SelectQASamples.php:576 SelectQASamples.php:588 SelectQASamples.php:590 +#: ShipmentCosting.php:667 ShopParameters.php:289 ShopParameters.php:293 +#: ShopParameters.php:337 ShopParameters.php:341 ShopParameters.php:391 +#: ShopParameters.php:395 ShopParameters.php:413 ShopParameters.php:417 +#: ShopParameters.php:495 ShopParameters.php:499 StockClone.php:938 +#: StockClone.php:940 StockClone.php:963 StockClone.php:965 Stocks.php:1266 +#: Stocks.php:1268 Stocks.php:1291 Stocks.php:1293 SuppContractChgs.php:90 #: SystemParameters.php:479 SystemParameters.php:502 SystemParameters.php:543 #: SystemParameters.php:624 SystemParameters.php:632 SystemParameters.php:672 #: SystemParameters.php:763 SystemParameters.php:772 SystemParameters.php:780 #: SystemParameters.php:798 SystemParameters.php:805 SystemParameters.php:849 -#: SystemParameters.php:945 SystemParameters.php:1088 -#: SystemParameters.php:1090 SystemParameters.php:1100 -#: SystemParameters.php:1102 SystemParameters.php:1156 -#: SystemParameters.php:1168 SystemParameters.php:1170 -#: SystemParameters.php:1208 SystemParameters.php:1210 -#: SystemParameters.php:1232 SystemParameters.php:1234 TaxGroups.php:311 -#: TaxGroups.php:314 TaxGroups.php:365 TestPlanResults.php:304 -#: TestPlanResults.php:532 TestPlanResults.php:747 TestPlanResults.php:864 -#: TestPlanResults.php:924 TestPlanResults.php:928 UserGLAccounts.php:187 -#: UserGLAccounts.php:196 UserSettings.php:209 UserSettings.php:212 -#: UserSettings.php:224 UserSettings.php:227 WWW_Users.php:547 -#: WWW_Users.php:549 WWW_Users.php:718 WWW_Users.php:721 WWW_Users.php:734 -#: WWW_Users.php:737 WWW_Users.php:749 WWW_Users.php:752 WWW_Users.php:764 -#: WWW_Users.php:767 +#: SystemParameters.php:945 SystemParameters.php:1088 SystemParameters.php:1090 +#: SystemParameters.php:1100 SystemParameters.php:1102 +#: SystemParameters.php:1156 SystemParameters.php:1168 +#: SystemParameters.php:1170 SystemParameters.php:1208 +#: SystemParameters.php:1210 SystemParameters.php:1232 +#: SystemParameters.php:1234 TaxGroups.php:311 TaxGroups.php:314 +#: TaxGroups.php:365 TestPlanResults.php:304 TestPlanResults.php:532 +#: TestPlanResults.php:747 TestPlanResults.php:864 TestPlanResults.php:924 +#: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 +#: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 +#: UserSettings.php:227 WWW_Users.php:547 WWW_Users.php:549 WWW_Users.php:718 +#: WWW_Users.php:721 WWW_Users.php:734 WWW_Users.php:737 WWW_Users.php:749 +#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Sim" #: AccountGroups.php:312 AccountGroups.php:472 AccountGroups.php:475 #: AddCustomerContacts.php:165 AddCustomerContacts.php:274 -#: 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:902 -#: BOMs.php:906 BOMs_SingleLevel.php:127 BOMs_SingleLevel.php:792 -#: BOMs_SingleLevel.php:796 CompanyPreferences.php:422 -#: CompanyPreferences.php:426 CompanyPreferences.php:437 -#: CompanyPreferences.php:441 CompanyPreferences.php:452 -#: CompanyPreferences.php:456 ContractCosting.php:200 Currencies.php:344 -#: Currencies.php:525 Currencies.php:527 CustomerBranches.php:445 -#: Customers.php:658 Customers.php:1047 Customers.php:1054 Customers.php:1057 +#: 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 +#: ContractCosting.php:200 Currencies.php:344 Currencies.php:525 +#: Currencies.php:527 CustomerBranches.php:445 Customers.php:658 +#: Customers.php:1047 Customers.php:1054 Customers.php:1057 #: DailyBankTransactions.php:217 DeliveryDetails.php:1159 #: DeliveryDetails.php:1200 DeliveryDetails.php:1203 FormDesigner.php:99 #: GLAccountUsers.php:183 GLAccountUsers.php:193 GLTransInquiry.php:93 @@ -369,71 +397,72 @@ #: 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 PDFChequeListing.php:64 -#: PDFDeliveryDifferences.php:75 PDFDIFOT.php:79 PDFWOPrint.php:609 -#: PDFWOPrint.php:613 PO_AuthorisationLevels.php:141 -#: PO_AuthorisationLevels.php:146 PO_Header.php:808 PO_PDFPurchOrder.php:414 -#: 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 -#: ProductSpecs.php:641 ProductSpecs.php:652 ProductSpecs.php:654 -#: PurchData.php:299 PurchData.php:668 PurchData.php:671 QATests.php:298 -#: QATests.php:300 QATests.php:311 QATests.php:313 QATests.php:324 -#: QATests.php:326 QATests.php:337 QATests.php:339 QATests.php:350 -#: QATests.php:352 QATests.php:416 QATests.php:421 QATests.php:426 -#: QATests.php:431 QATests.php:436 RecurringSalesOrders.php:492 -#: RecurringSalesOrders.php:495 SalesAnalReptCols.php:282 -#: SalesAnalReptCols.php:420 SalesAnalReptCols.php:423 SalesAnalRepts.php:419 -#: SalesAnalRepts.php:422 SalesAnalRepts.php:447 SalesAnalRepts.php:450 -#: SalesAnalRepts.php:475 SalesAnalRepts.php:478 SalesCategories.php:299 -#: SalesCategories.php:385 SalesCategories.php:387 SalesPeople.php:229 -#: SalesPeople.php:372 SalesPeople.php:374 SelectCustomer.php:757 -#: SelectProduct.php:253 SelectProduct.php:392 SelectQASamples.php:426 -#: SelectQASamples.php:523 SelectQASamples.php:525 SelectQASamples.php:579 -#: SelectQASamples.php:581 SelectQASamples.php:593 SelectQASamples.php:595 -#: ShipmentCosting.php:668 ShopParameters.php:290 ShopParameters.php:292 -#: ShopParameters.php:338 ShopParameters.php:340 ShopParameters.php:392 -#: ShopParameters.php:394 ShopParameters.php:414 ShopParameters.php:416 -#: ShopParameters.php:496 ShopParameters.php:498 StockClone.php:933 -#: StockClone.php:935 StockClone.php:958 StockClone.php:960 Stocks.php:1261 -#: Stocks.php:1263 Stocks.php:1286 Stocks.php:1288 SuppContractChgs.php:92 +#: PaymentMethods.php:323 PDFChequeListing.php:64 PDFDeliveryDifferences.php:75 +#: PDFDIFOT.php:79 PDFWOPrint.php:609 PDFWOPrint.php:613 +#: PO_AuthorisationLevels.php:141 PO_AuthorisationLevels.php:146 +#: PO_Header.php:808 PO_PDFPurchOrder.php:414 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 ProductSpecs.php:641 +#: ProductSpecs.php:652 ProductSpecs.php:654 PurchData.php:299 +#: PurchData.php:668 PurchData.php:671 QATests.php:298 QATests.php:300 +#: QATests.php:311 QATests.php:313 QATests.php:324 QATests.php:326 +#: QATests.php:337 QATests.php:339 QATests.php:350 QATests.php:352 +#: QATests.php:416 QATests.php:421 QATests.php:426 QATests.php:431 +#: QATests.php:436 RecurringSalesOrders.php:492 RecurringSalesOrders.php:495 +#: SalesAnalReptCols.php:282 SalesAnalReptCols.php:420 +#: SalesAnalReptCols.php:423 SalesAnalRepts.php:419 SalesAnalRepts.php:422 +#: SalesAnalRepts.php:447 SalesAnalRepts.php:450 SalesAnalRepts.php:475 +#: SalesAnalRepts.php:478 SalesCategories.php:299 SalesCategories.php:385 +#: SalesCategories.php:387 SalesPeople.php:229 SalesPeople.php:372 +#: SalesPeople.php:374 SelectCustomer.php:757 SelectProduct.php:253 +#: SelectProduct.php:392 SelectQASamples.php:426 SelectQASamples.php:523 +#: SelectQASamples.php:525 SelectQASamples.php:579 SelectQASamples.php:581 +#: SelectQASamples.php:593 SelectQASamples.php:595 ShipmentCosting.php:668 +#: ShopParameters.php:290 ShopParameters.php:292 ShopParameters.php:338 +#: ShopParameters.php:340 ShopParameters.php:392 ShopParameters.php:394 +#: ShopParameters.php:414 ShopParameters.php:416 ShopParameters.php:496 +#: ShopParameters.php:498 StockClone.php:933 StockClone.php:935 +#: StockClone.php:958 StockClone.php:960 Stocks.php:1261 Stocks.php:1263 +#: Stocks.php:1286 Stocks.php:1288 SuppContractChgs.php:92 #: SystemParameters.php:480 SystemParameters.php:503 SystemParameters.php:544 #: SystemParameters.php:625 SystemParameters.php:633 SystemParameters.php:673 #: SystemParameters.php:764 SystemParameters.php:773 SystemParameters.php:781 #: SystemParameters.php:799 SystemParameters.php:806 SystemParameters.php:850 -#: SystemParameters.php:946 SystemParameters.php:1087 -#: SystemParameters.php:1091 SystemParameters.php:1099 -#: SystemParameters.php:1103 SystemParameters.php:1157 -#: SystemParameters.php:1167 SystemParameters.php:1171 -#: SystemParameters.php:1207 SystemParameters.php:1211 -#: SystemParameters.php:1231 SystemParameters.php:1235 TaxGroups.php:312 -#: TaxGroups.php:315 TaxGroups.php:367 TestPlanResults.php:306 -#: TestPlanResults.php:535 TestPlanResults.php:749 TestPlanResults.php:866 -#: TestPlanResults.php:925 TestPlanResults.php:927 UserGLAccounts.php:189 -#: UserGLAccounts.php:199 UserSettings.php:208 UserSettings.php:211 -#: UserSettings.php:223 UserSettings.php:226 WWW_Users.php:546 -#: WWW_Users.php:550 WWW_Users.php:717 WWW_Users.php:720 WWW_Users.php:733 -#: WWW_Users.php:736 WWW_Users.php:748 WWW_Users.php:751 WWW_Users.php:763 -#: WWW_Users.php:766 includes/PDFLowGPPageHeader.inc:44 +#: SystemParameters.php:946 SystemParameters.php:1087 SystemParameters.php:1091 +#: SystemParameters.php:1099 SystemParameters.php:1103 +#: SystemParameters.php:1157 SystemParameters.php:1167 +#: SystemParameters.php:1171 SystemParameters.php:1207 +#: SystemParameters.php:1211 SystemParameters.php:1231 +#: SystemParameters.php:1235 TaxGroups.php:312 TaxGroups.php:315 +#: TaxGroups.php:367 TestPlanResults.php:306 TestPlanResults.php:535 +#: TestPlanResults.php:749 TestPlanResults.php:866 TestPlanResults.php:925 +#: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 +#: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 +#: UserSettings.php:226 WWW_Users.php:546 WWW_Users.php:550 WWW_Users.php:717 +#: WWW_Users.php:720 WWW_Users.php:733 WWW_Users.php:736 WWW_Users.php:748 +#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: includes/PDFLowGPPageHeader.inc:44 +#: reportwriter/languages/en_US/reports.php:82 msgid "No" msgstr "Não" #: AccountGroups.php:321 AccountSections.php:196 AddCustomerContacts.php:158 #: AddCustomerNotes.php:137 AddCustomerTypeNotes.php:131 Areas.php:164 -#: BankAccounts.php:243 BOMs.php:198 BOMs_SingleLevel.php:153 -#: COGSGLPostings.php:115 COGSGLPostings.php:222 CreditStatus.php:175 -#: Currencies.php:374 Currencies.php:391 CustItem.php:166 -#: CustomerBranches.php:449 Customers.php:1131 Customers.php:1165 -#: CustomerTypes.php:205 Departments.php:186 EDIMessageFormat.php:150 -#: Factors.php:334 FixedAssetCategories.php:190 FixedAssetLocations.php:111 +#: 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:449 +#: 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 GeocodeSetup.php:173 GLAccounts.php:335 GLTags.php:96 #: ImportBankTransAnalysis.php:223 InternalStockRequest.php:297 Labels.php:333 #: 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:283 PcClaimExpensesFromTab.php:460 PcExpenses.php:179 -#: PcTabs.php:216 PcTypeTabs.php:126 PO_AuthorisationLevels.php:156 +#: PcAssignCashToTab.php:271 PcClaimExpensesFromTab.php:330 PcExpenses.php:177 +#: PcTabs.php:214 PcTypeTabs.php:124 PO_AuthorisationLevels.php:156 #: PriceMatrix.php:293 Prices_Customer.php:286 Prices.php:253 #: ProductSpecs.php:465 PurchData.php:312 QATests.php:467 #: SalesCategories.php:305 SalesGLPostings.php:137 SalesGLPostings.php:255 @@ -447,6 +476,7 @@ #: 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" msgstr "Editar" @@ -457,22 +487,21 @@ #: AccountGroups.php:322 AccountSections.php:201 AddCustomerContacts.php:159 #: AddCustomerNotes.php:138 AddCustomerTypeNotes.php:132 Areas.php:165 -#: BankAccounts.php:244 BOMs.php:200 BOMs_SingleLevel.php:154 -#: COGSGLPostings.php:116 COGSGLPostings.php:223 ContractBOM.php:271 -#: ContractOtherReqts.php:123 CounterReturns.php:740 CounterSales.php:836 -#: Credit_Invoice.php:429 CreditStatus.php:176 Currencies.php:377 -#: CustItem.php:167 CustomerReceipt.php:1024 Customers.php:1166 -#: CustomerTypes.php:206 Departments.php:187 DiscountCategories.php:238 -#: DiscountMatrix.php:183 EDIMessageFormat.php:151 -#: FixedAssetCategories.php:191 FreightCosts.php:254 GeocodeSetup.php:174 -#: GLAccounts.php:336 GLJournal.php:431 GLTags.php:97 +#: BankAccounts.php:244 BOMs.php:200 COGSGLPostings.php:116 +#: COGSGLPostings.php:223 ContractBOM.php:271 ContractOtherReqts.php:123 +#: CounterReturns.php:740 CounterSales.php:836 Credit_Invoice.php:429 +#: 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 +#: 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 MailingGroupMaintenance.php:179 MaintenanceTasks.php:119 #: Manufacturers.php:261 MRPDemands.php:310 MRPDemandTypes.php:121 -#: PaymentMethods.php:233 Payments.php:1297 PaymentTerms.php:206 -#: PcAssignCashToTab.php:284 PcClaimExpensesFromTab.php:461 PcExpenses.php:180 -#: PcExpensesTypeTab.php:158 PcTabs.php:217 PcTypeTabs.php:127 +#: PaymentMethods.php:233 Payments.php:1283 PaymentTerms.php:206 +#: PcAssignCashToTab.php:272 PcClaimExpensesFromTab.php:331 PcExpenses.php:178 +#: PcExpensesTypeTab.php:156 PcTabs.php:215 PcTypeTabs.php:125 #: PO_AuthorisationLevels.php:158 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 @@ -482,18 +511,18 @@ #: SalesTypes.php:207 SecurityTokens.php:117 SelectCreditItems.php:776 #: SelectCustomer.php:734 SelectCustomer.php:760 SelectCustomer.php:815 #: SelectCustomer.php:833 SelectCustomer.php:857 SelectCustomer.php:874 -#: SelectOrderItems.php:1434 SelectQASamples.php:418 -#: SellThroughSupport.php:299 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 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 +#: SelectOrderItems.php:1426 SelectQASamples.php:418 SellThroughSupport.php:299 +#: 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 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" msgstr "Excluir" @@ -503,7 +532,9 @@ msgstr "Um erro ocorreu na recuperação inf. grupo conta" #: AccountGroups.php:351 -msgid "The SQL that was used to retrieve the account group and that failed in the process was" +msgid "" +"The SQL that was used to retrieve the account group and that failed in the " +"process was" msgstr "SQL usado para recuperar grupo de conta foi:" #: AccountGroups.php:354 @@ -518,14 +549,14 @@ #: ConfirmDispatch_Invoice.php:656 ConfirmDispatch_Invoice.php:1707 #: Credit_Invoice.php:1643 CustItem.php:452 FixedAssetItems.php:132 #: FixedAssetItems.php:683 GLAccountUsers.php:153 GLBudgets.php:240 -#: GLCashFlowsSetup.php:170 GLTags.php:68 GoodsReceived.php:298 +#: GLCashFlowsSetup.php:172 GLTags.php:68 GoodsReceived.php:298 #: GoodsReceived.php:304 GoodsReceived.php:311 GoodsReceived.php:819 #: ImportBankTransAnalysis.php:154 ImportBankTransAnalysis.php:185 #: InternalStockRequestAuthorisation.php:123 #: InternalStockRequestFulfill.php:364 InternalStockRequest.php:255 -#: LocationUsers.php:177 MRPCalendar.php:315 Payments.php:1123 -#: Payments.php:1364 PcAuthorizeCash.php:104 PcAuthorizeCash.php:269 -#: PcAuthorizeExpenses.php:145 PcAuthorizeExpenses.php:370 +#: LocationUsers.php:177 MRPCalendar.php:315 Payments.php:1109 +#: Payments.php:1350 PcAuthorizeCash.php:100 PcAuthorizeCash.php:274 +#: PcAuthorizeExpenses.php:140 PcAuthorizeExpenses.php:361 #: 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 @@ -532,22 +563,21 @@ #: ShopParameters.php:610 SMTPServer.php:126 StockCostUpdate.php:196 #: StockReorderLevel.php:111 Stocks.php:1452 SystemParameters.php:1246 #: UserGLAccounts.php:159 UserLocations.php:178 WorkOrderEntry.php:887 -#: WOSerialNos.php:345 +#: WOSerialNos.php:345 reportwriter/languages/en_US/reports.php:156 msgid "Update" msgstr "Atualizar" -#: 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:749 GLCashFlowsIndirect.php:782 -#: GLCashFlowsSetup.php:178 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 Z_GLAccountUsersCopyAuthority.php:96 -#: includes/Login.php: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: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 +#: Z_GLAccountUsersCopyAuthority.php:96 includes/Login.php:8 msgid "Return" -msgstr "" +msgstr "Retornar" #: AccountGroups.php:409 msgid "New Account Group Details" @@ -568,8 +598,13 @@ msgstr "Informe Nome Grupo de Conta" #: AccountGroups.php:429 -msgid "A unique name for the account group must be entered - at least 3 characters long and less than 30 characters long. Only alpha numeric characters can be used." -msgstr "Nome do Grupo de Conta deve ser informado. Tamanho entre 3 caract. e no máximo 30 caract." +msgid "" +"A unique name for the account group must be entered - at least 3 characters " +"long and less than 30 characters long. Only alpha numeric characters can be " +"used." +msgstr "" +"Nome do Grupo de Conta deve ser informado. Tamanho entre 3 caract. e no " +"máximo 30 caract." #: AccountGroups.php:438 msgid "Top Level Group" @@ -580,15 +615,24 @@ msgstr "Seções Contábil" #: AccountGroups.php:470 -msgid "Select YES if this account group will contain accounts that will consist of only profit and loss accounts or NO if the group will contain balance sheet account" -msgstr "Selecione SIM se esse grupo de conta irá conter contas que são de Lucros e Perdas; Selecione NÃO se o grupo irá conter contas de Resultado" +msgid "" +"Select YES if this account group will contain accounts that will consist of " +"only profit and loss accounts or NO if the group will contain balance sheet " +"account" +msgstr "" +"Selecione SIM se esse grupo de conta irá conter contas que são de Lucros e " +"Perdas; Selecione NÃO se o grupo irá conter contas de Resultado" #: AccountGroups.php:482 -msgid "Enter the sequence number that this account group and its child general ledger accounts should display in the trial balance" -msgstr "Informe o número de sequência para determinar, onde esse grupo de contas e subcontas, irá aparecer no balancete" +msgid "" +"Enter the sequence number that this account group and its child general " +"ledger accounts should display in the trial balance" +msgstr "" +"Informe o número de sequência para determinar, onde esse grupo de contas e " +"subcontas, irá aparecer no balancete" #: AccountSections.php:6 AccountSections.php:172 AccountSections.php:173 -#: includes/MainMenuLinksArray.php:404 +#: includes/MainMenuLinksArray.php:402 msgid "Account Sections" msgstr "Seções Contas" @@ -609,8 +653,11 @@ msgstr "O número da seção deve ser um inteiro" #: AccountSections.php:128 -msgid "Cannot delete this account section because general ledger accounts groups have been created using this section" -msgstr "Não é possivel remover esta seção porque existe(m) grupo(s) usando esta seção" +msgid "" +"Cannot delete this account section because general ledger accounts groups " +"have been created using this section" +msgstr "" +"Não é possivel remover esta seção porque existe(m) grupo(s) usando esta seção" #: AccountSections.php:130 msgid "general ledger accounts groups that refer to this account section" @@ -646,15 +693,14 @@ #: AccountSections.php:243 msgid "Edit Account Section Details" -msgstr "" +msgstr "Editar Detalhes Seção Conta" #: AccountSections.php:267 msgid "New Account Section Details" -msgstr "" +msgstr "Detalhes Nova Seção Contas" -#: AccountSections.php:285 AddCustomerContacts.php:297 -#: AddCustomerNotes.php:242 AddCustomerTypeNotes.php:221 Areas.php:229 -#: BankAccounts.php:433 BOMs.php:923 BOMs_SingleLevel.php:809 +#: AccountSections.php:285 AddCustomerContacts.php:297 AddCustomerNotes.php:242 +#: 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 @@ -711,11 +757,10 @@ #: AddCustomerTypeNotes.php:48 Areas.php:72 CustomerTypes.php:68 #: DeliveryDetails.php:809 DeliveryDetails.php:826 Factors.php:105 #: FixedAssetItems.php:255 MRPCalendar.php:176 PcAssignCashToTab.php:83 -#: PcClaimExpensesFromTab.php:73 PcExpenses.php:65 PcTabs.php:78 -#: PcTypeTabs.php:40 PO_Items.php:380 ProductSpecs.php:315 QATests.php:76 +#: PcClaimExpensesFromTab.php:69 PcExpenses.php:63 PcTabs.php:76 +#: PcTypeTabs.php:38 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 Suppliers.php:524 -#: SupplierTypes.php:68 +#: SelectQASamples.php:85 Stocks.php:594 Suppliers.php:524 SupplierTypes.php:68 msgid "has been updated" msgstr "foi atualizado" @@ -734,7 +779,7 @@ #: ProductSpecs.php:385 QATests.php:391 SalesPeople.php:208 #: SelectCustomer.php:727 StockDispatch.php:277 StockDispatch.php:288 #: StockDispatch.php:299 SupplierContacts.php:152 SuppTransGLAnalysis.php:108 -#: Tax.php:435 TestPlanResults.php:508 UserBankAccounts.php:164 +#: Tax.php:433 TestPlanResults.php:508 UserBankAccounts.php:164 #: UserGLAccounts.php:157 UserLocations.php:176 #: includes/InputSerialItemsFile.php:92 includes/InputSerialItemsFile.php:144 msgid "Name" @@ -759,17 +804,16 @@ #: EmailCustTrans.php:65 Factors.php:246 Factors.php:297 Locations.php:639 #: OrderDetails.php:127 PDFRemittanceAdvice.php:251 PDFWOPrint.php:599 #: PDFWOPrint.php:602 PDFWOPrint.php:682 PDFWOPrint.php:685 -#: PO_PDFPurchOrder.php:400 PO_PDFPurchOrder.php:403 -#: PrintCustStatements.php:99 PrintCustTrans.php:762 -#: PrintCustTransPortrait.php:787 PrintCustTransPortrait.php:1033 -#: PrintCustTransPortrait.php:1089 SelectCustomer.php:408 -#: SelectCustomer.php:730 SelectSupplier.php:301 SupplierContacts.php:156 -#: SupplierContacts.php:277 UserSettings.php:184 WWW_Users.php:333 -#: includes/PDFPickingListHeader.inc:25 includes/PDFStatementPageHeader.inc:76 -#: includes/PDFTransPageHeader.inc:85 +#: PO_PDFPurchOrder.php:400 PO_PDFPurchOrder.php:403 PrintCustStatements.php:99 +#: PrintCustTrans.php:740 PrintCustTransPortrait.php:787 +#: PrintCustTransPortrait.php:1033 PrintCustTransPortrait.php:1089 +#: SelectCustomer.php:408 SelectCustomer.php:730 SelectSupplier.php:301 +#: SupplierContacts.php:156 SupplierContacts.php:277 UserSettings.php:184 +#: WWW_Users.php:333 includes/PDFPickingListHeader.inc:25 +#: includes/PDFStatementPageHeader.inc:76 includes/PDFTransPageHeader.inc:85 #: includes/PDFTransPageHeaderPortrait.inc:113 includes/PDFWOPageHeader.inc:19 -#: includes/PO_PDFOrderPageHeader.inc:29 ../webSHOP/Checkout.php:443 -#: ../webSHOP/Register.php:607 +#: includes/PO_PDFOrderPageHeader.inc:29 ../webSHOP/Checkout.php:298 +#: ../webSHOP/Register.php:595 msgid "Email" msgstr "Email" @@ -781,14 +825,14 @@ #: AddCustomerContacts.php:138 AddCustomerContacts.php:289 #: AnalysisHorizontalIncome.php:173 AnalysisHorizontalPosition.php:123 #: Customers.php:1122 Customers.php:1130 GLCashFlowsIndirect.php:130 -#: GLCashFlowsIndirect.php:450 PcAssignCashTabToTab.php:284 -#: PcAssignCashTabToTab.php:427 PcAssignCashToTab.php:232 -#: PcAssignCashToTab.php:380 PcAuthorizeCash.php:96 -#: PcAuthorizeExpenses.php:100 PcClaimExpensesFromTab.php:377 -#: PcClaimExpensesFromTab.php:675 PcReportExpense.php:145 PcReportTab.php:222 -#: PcReportTab.php:472 PDFQuotation.php:252 PDFQuotationPortrait.php:249 -#: PurchasesReport.php:56 SelectCustomer.php:732 ShopParameters.php:198 -#: SystemParameters.php:411 WOSerialNos.php:306 WOSerialNos.php:312 +#: GLCashFlowsIndirect.php:450 PcAssignCashTabToTab.php:283 +#: PcAssignCashTabToTab.php:414 PcAssignCashToTab.php:232 +#: PcAssignCashToTab.php:370 PcAuthorizeCash.php:91 PcAuthorizeExpenses.php:95 +#: PcClaimExpensesFromTab.php:261 PcClaimExpensesFromTab.php:524 +#: PcReportExpense.php:144 PcReportTab.php:469 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 "Notas" @@ -803,7 +847,7 @@ #: AddCustomerContacts.php:217 msgid "Edit Customer Contact Details" -msgstr "" +msgstr "Editar Detalhes Contato Cliente" #: AddCustomerContacts.php:222 msgid "Contact Code" @@ -811,30 +855,32 @@ #: AddCustomerContacts.php:229 msgid "New Customer Contact Details" -msgstr "" +msgstr "Detalhes Contato Novo Cliente" #: AddCustomerContacts.php:236 Factors.php:234 SupplierContacts.php:239 -#: ../webSHOP/Checkout.php:527 ../webSHOP/Register.php:622 +#: ../webSHOP/Checkout.php:379 ../webSHOP/Register.php:610 msgid "Contact Name" msgstr "Nome Contato" #: AddCustomerContacts.php:254 Contracts.php:788 PDFRemittanceAdvice.php:247 #: PO_Header.php:1028 PO_Header.php:1113 SelectCreditItems.php:246 -#: SelectCustomer.php:406 SelectOrderItems.php:632 -#: SupplierTenderCreate.php:395 includes/PDFStatementPageHeader.inc:72 -#: includes/PDFTransPageHeader.inc:84 -#: includes/PDFTransPageHeaderPortrait.inc:109 ../webSHOP/Checkout.php:537 -#: ../webSHOP/Register.php:260 ../webSHOP/Register.php:735 +#: SelectCustomer.php:406 SelectOrderItems.php:626 SupplierTenderCreate.php:395 +#: includes/PDFStatementPageHeader.inc:72 includes/PDFTransPageHeader.inc:84 +#: includes/PDFTransPageHeaderPortrait.inc:109 ../webSHOP/Checkout.php:389 +#: ../webSHOP/Register.php:255 ../webSHOP/Register.php:723 msgid "Phone" msgstr "Telefone" #: AddCustomerContacts.php:271 msgid "Send Statement" -msgstr "" +msgstr "Enviar Comando" #: AddCustomerContacts.php:272 -msgid "This flag identifies the contact as one who should receive an email cusstomer statement" +msgid "" +"This flag identifies the contact as one who should receive an email " +"cusstomer statement" msgstr "" +"Esse ID identifica contatos como destinatário que deve receber avisos cliente" #: AddCustomerNotes.php:6 AddCustomerNotes.php:51 SelectCustomer.php:807 #: SelectCustomer.php:840 @@ -877,10 +923,9 @@ #: CustomerAllocations.php:378 CustomerInquiry.php:252 #: CustomerTransInquiry.php:100 CustWhereAlloc.php:144 GLAccountReport.php:347 #: GLTransInquiry.php:47 GoodsReceived.php:130 MRPCalendar.php:219 -#: PaymentAllocations.php:67 Payments.php:974 Payments.php:1337 -#: PcAssignCashTabToTab.php:281 PcAssignCashToTab.php:229 -#: PcAuthorizeCash.php:93 PDFOrdersInvoiced.php:378 -#: PDFRemittanceAdvice.php:308 PDFWOPrint.php:456 PrintCustTrans.php:844 +#: PaymentAllocations.php:67 Payments.php:1323 PcAssignCashTabToTab.php:280 +#: PcAssignCashToTab.php:229 PcAuthorizeCash.php:88 PDFOrdersInvoiced.php:378 +#: PDFRemittanceAdvice.php:308 PDFWOPrint.php:456 PrintCustTrans.php:822 #: PrintCustTransPortrait.php:901 PrintWOItemSlip.php:186 #: PrintWOItemSlip.php:197 PrintWOItemSlip.php:208 PurchasesReport.php:67 #: ReverseGRN.php:405 SelectCustomer.php:810 SelectCustomer.php:852 @@ -890,15 +935,16 @@ #: StockSerialItemResearch.php:82 SupplierAllocations.php:458 #: SupplierAllocations.php:572 SupplierAllocations.php:647 #: SupplierInquiry.php:204 SupplierTransInquiry.php:111 SuppWhereAlloc.php:132 -#: Tax.php:432 Z_CheckGLTransBalance.php:11 +#: Tax.php:430 Z_CheckGLTransBalance.php:11 #: includes/PDFQuotationPageHeader.inc:31 #: includes/PDFQuotationPortraitPageHeader.inc:80 #: includes/PDFStatementPageHeader.inc:164 includes/PDFTransPageHeader.inc:51 #: includes/PDFTransPageHeaderPortrait.inc:62 +#: reportwriter/languages/en_US/reports.php:64 msgid "Date" msgstr "Data" -#: AddCustomerNotes.php:118 AddCustomerTypeNotes.php:112 +#: AddCustomerNotes.php:118 AddCustomerTypeNotes.php:112 PcReportTab.php:226 #: SelectCustomer.php:811 SelectCustomer.php:853 StockClone.php:942 #: Stocks.php:1270 UpgradeDatabase.php:253 UpgradeDatabase.php:256 #: UpgradeDatabase.php:259 UpgradeDatabase.php:262 UpgradeDatabase.php:265 @@ -914,7 +960,7 @@ #: AddCustomerNotes.php:119 AddCustomerNotes.php:213 msgid "WWW" -msgstr "www" +msgstr "WWW" #: AddCustomerNotes.php:120 AddCustomerNotes.php:231 #: AddCustomerTypeNotes.php:114 AddCustomerTypeNotes.php:215 @@ -989,69 +1035,67 @@ #: AgedControlledInventory.php:8 msgid "Aged Controlled Inventory" -msgstr "" +msgstr "Inventário Controlado Data" #: AgedControlledInventory.php:8 msgid "as-of" -msgstr "" +msgstr "em" #: AgedControlledInventory.php:12 GLCashFlowsSetup.php:109 #: InventoryQuantities.php:155 InventoryValuation.php:217 Locations.php:12 #: MRPCalendar.php:21 MRPCreateDemands.php:193 MRPDemands.php:27 -#: MRPDemandTypes.php:17 MRP.php:542 MRPPlannedPurchaseOrders.php:272 -#: MRPPlannedWorkOrders.php:243 MRPPlannedWorkOrders.php:317 -#: PricesByCost.php:8 ReorderLevelLocation.php:12 ReorderLevel.php:183 -#: 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 -#: StockTransferControlled.php:14 SuppLoginSetup.php:24 WWW_Users.php:28 -#: includes/MainMenuLinksArray.php:24 +#: MRPDemandTypes.php:17 MRP.php:542 MRPPlannedPurchaseOrders.php:264 +#: MRPPlannedWorkOrders.php:245 MRPPlannedWorkOrders.php:319 PricesByCost.php:8 +#: ReorderLevelLocation.php:12 ReorderLevel.php:183 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 StockTransferControlled.php:14 +#: SuppLoginSetup.php:24 WWW_Users.php:28 includes/MainMenuLinksArray.php:24 +#: reportwriter/languages/en_US/reports.php:243 msgid "Inventory" msgstr "Estoque" #: AgedControlledInventory.php:32 msgid "The stock held could not be retrieved because" -msgstr "" +msgstr "Estoque existente ou reservado não pode ser recuperado porque" #: AgedControlledInventory.php:42 MRPReschedules.php:124 MRPShortages.php:260 -#: StockClone.php:53 Stocks.php:63 +#: StockClone.php:53 Stocks.php:63 reportwriter/languages/en_US/reports.php:103 msgid "Stock" msgstr "Estoque" #: AgedControlledInventory.php:43 AutomaticTranslationDescriptions.php:37 -#: BOMIndented.php:317 BOMIndentedReverse.php:295 BOMInquiry.php:109 -#: BOMInquiry.php:198 BOMs.php:663 BOMs.php:1021 BOMs_SingleLevel.php:558 -#: BOMs_SingleLevel.php:905 CollectiveWorkOrderCost.php:53 +#: BOMIndented.php:315 BOMIndentedReverse.php:293 BOMInquiry.php:109 +#: BOMInquiry.php:198 BOMs.php:656 BOMs.php:1014 CollectiveWorkOrderCost.php:53 #: CollectiveWorkOrderCost.php:325 ContractBOM.php:241 ContractBOM.php:353 #: ContractOtherReqts.php:97 CounterReturns.php:1688 CounterSales.php:2112 #: CounterSales.php:2266 CreditStatus.php:152 CreditStatus.php:243 -#: CustomerPurchases.php:81 EmailConfirmation.php:219 -#: EmailConfirmation.php:349 FixedAssetCategories.php:167 -#: FixedAssetDepreciation.php:91 FixedAssetRegister.php:87 -#: FixedAssetRegister.php:388 FixedAssetTransfer.php:60 -#: FixedAssetTransfer.php:162 GLTags.php:63 GLTags.php:82 -#: GLTransInquiry.php:49 GoodsReceived.php:122 +#: CustomerPurchases.php:81 EmailConfirmation.php:219 EmailConfirmation.php:349 +#: FixedAssetCategories.php:167 FixedAssetDepreciation.php:91 +#: 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 InternalStockRequestInquiry.php:221 #: InternalStockRequestInquiry.php:267 InternalStockRequestInquiry.php:406 #: InternalStockRequest.php:350 InternalStockRequest.php:564 -#: InternalStockRequest.php:634 InventoryPlanning.php:420 +#: InternalStockRequest.php:634 InventoryPlanning.php:419 #: InventoryQuantities.php:246 InventoryValuation.php:197 Labels.php:290 #: MaintenanceTasks.php:95 MaintenanceUserSchedule.php:50 #: MaterialsNotUsed.php:35 MRPDemands.php:92 MRPDemands.php:295 -#: MRPDemandTypes.php:113 MRPPlannedWorkOrders.php:254 MRPReport.php:563 +#: 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:143 -#: PcExpenses.php:231 PcExpensesTypeTab.php:145 PcTypeTabs.php:113 -#: PDFCOA.php:64 PDFOrdersInvoiced.php:335 PDFOrderStatus.php:336 +#: NoSalesItems.php:194 PaymentTerms.php:182 PcExpenses.php:141 +#: PcExpenses.php:229 PcExpensesTypeTab.php:143 PcTypeTabs.php:111 +#: 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:302 PO_SelectPurchOrder.php:214 +#: PO_Items.php:1194 PO_SelectOSPurchOrder.php:310 PO_SelectPurchOrder.php:214 #: PricesByCost.php:153 RelatedItemsUpdate.php:160 ReorderLevelLocation.php:73 #: ReorderLevel.php:287 ReverseGRN.php:404 SalesCategories.php:541 #: SecurityTokens.php:107 SecurityTokens.php:167 SelectAsset.php:264 #: SelectCompletedOrder.php:506 SelectContract.php:147 -#: SelectCreditItems.php:1019 SelectOrderItems.php:1532 -#: SelectOrderItems.php:1703 SelectProduct.php:559 SelectProduct.php:848 -#: SelectQASamples.php:299 SelectQASamples.php:397 SelectSalesOrder.php:605 +#: SelectCreditItems.php:1019 SelectOrderItems.php:1524 +#: SelectOrderItems.php:1695 SelectProduct.php:559 SelectProduct.php:848 +#: SelectQASamples.php:299 SelectQASamples.php:397 SelectSalesOrder.php:603 #: SelectWorkOrder.php:219 Shipt_Select.php:191 StockClone.php:695 #: StockCounts.php:142 StockDispatch.php:506 StockLocStatus.php:176 #: StockQuantityByDate.php:109 Stocks.php:1018 SuppCreditGRNs.php:92 @@ -1060,20 +1104,19 @@ #: SupplierInvoice.php:675 SupplierInvoice.php:759 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 SuppPriceList.php:214 -#: SuppPriceList.php:346 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 includes/DefineLabelClass.php:12 -#: includes/DefineLabelClass.php:45 includes/PDFGrnHeader.inc:30 -#: includes/PDFInventoryPlanPageHeader.inc:50 +#: SupplierTenderCreate.php:853 SupplierTenders.php:326 SupplierTenders.php:421 +#: 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 #: includes/PDFTransPageHeader.inc:211 -#: includes/PDFTransPageHeaderPortrait.inc:256 api/api_xml-rpc.php:3489 -#: ../webSHOP/includes/PlaceOrder.php:250 +#: includes/PDFTransPageHeaderPortrait.inc:256 includes/DefineLabelClass.php:12 +#: includes/DefineLabelClass.php:45 ../webSHOP/includes/PlaceOrder.php:236 msgid "Description" msgstr "Descrição" @@ -1083,15 +1126,15 @@ #: AgedControlledInventory.php:45 msgid "Quantity Remaining" -msgstr "" +msgstr "Qtd Restante" #: AgedControlledInventory.php:46 msgid "Inventory Value" -msgstr "" +msgstr "Valor Inventário" #: AgedControlledInventory.php:48 msgid "Days Old" -msgstr "" +msgstr "N. Dias " #: AgedControlledInventory.php:91 ConfirmDispatch_Invoice.php:310 #: ConfirmDispatch_Invoice.php:314 CounterReturns.php:676 @@ -1112,17 +1155,18 @@ #: SalesByTypePeriodInquiry.php:395 SalesByTypePeriodInquiry.php:430 #: SalesByTypePeriodInquiry.php:465 SalesByTypePeriodInquiry.php:500 #: SalesByTypePeriodInquiry.php:561 SelectCreditItems.php:693 -#: SelectCreditItems.php:697 SelectOrderItems.php:1371 -#: SuppContractChgs.php:107 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:303 -#: Z_CheckDebtorsControl.php:149 includes/PDFQuotationPageHeader.inc:119 +#: SelectCreditItems.php:697 SelectOrderItems.php:1365 SuppContractChgs.php:107 +#: 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:301 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 -#: includes/PO_PDFOrderPageHeader.inc:81 api/api_debtortransactions.php:1271 -#: api/api_debtortransactions.php:1284 api/api_debtortransactions.php:1581 -#: ../webSHOP/includes/DisplayShoppingCart.php:8 -#: ../webSHOP/includes/PlaceOrder.php:299 +#: includes/PO_PDFOrderPageHeader.inc:81 +#: reportwriter/languages/en_US/reports.php:107 +#: ../webSHOP/includes/DisplayShoppingCart.php:7 +#: ../webSHOP/includes/PlaceOrder.php:285 #, php-format msgid "Total" msgstr "Total" @@ -1141,13 +1185,13 @@ #: AgedDebtors.php:268 AgedDebtors.php:370 AgedDebtors.php:434 #: AgedSuppliers.php:108 BOMExtendedQty.php:154 BOMIndented.php:153 -#: BOMIndentedReverse.php:140 BOMListing.php:43 BOMListing.php:54 +#: 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 InternalStockRequestInquiry.php:250 #: InternalStockRequest.php:325 InventoryPlanning.php:99 -#: InventoryPlanning.php:177 InventoryPlanning.php:214 -#: InventoryPlanning.php:263 InventoryPlanningPrefSupplier.php:183 +#: 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 MailInventoryValuation.php:22 @@ -1178,53 +1222,55 @@ #: AgedDebtors.php:271 AgedDebtors.php:373 AgedDebtors.php:437 #: AgedSuppliers.php:111 AgedSuppliers.php:198 BOMExtendedQty.php:157 -#: BOMExtendedQty.php:244 BOMIndented.php:156 BOMIndented.php:239 -#: BOMIndentedReverse.php:144 BOMIndentedReverse.php:225 BOMListing.php:46 -#: Credit_Invoice.php:201 Dashboard.php:158 Dashboard.php:247 -#: Dashboard.php:400 DebtorsAtPeriodEnd.php:60 DebtorsAtPeriodEnd.php:72 -#: FTP_RadioBeacon.php:187 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:180 InventoryPlanning.php:217 -#: InventoryPlanning.php:266 InventoryPlanning.php:341 -#: InventoryPlanningPrefSupplier.php:186 InventoryPlanningPrefSupplier.php:244 -#: InventoryPlanningPrefSupplier.php:271 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:307 MRPReport.php:38 -#: MRPReport.php:49 MRPReport.php:149 MRPReschedules.php:46 -#: MRPReschedules.php:58 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 -#: 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:171 SalesAnalysis_UserDefined.php:28 -#: SelectCreditItems.php:32 Stock... [truncated message content] |
From: <dai...@us...> - 2017-12-22 06:04:15
|
Revision: 7896 http://sourceforge.net/p/web-erp/reponame/7896 Author: daintree Date: 2017-12-22 06:04:09 +0000 (Fri, 22 Dec 2017) Log Message: ----------- fixes to rebuild of language files using no-wrap as per forum thread from Paul Becker Modified Paths: -------------- trunk/build/make_release.sh trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo trunk/locale/ar_EG.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/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.mo 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 trunk/sql/mysql/country_sql/default.sql trunk/sql/mysql/country_sql/demo.sql Modified: trunk/build/make_release.sh =================================================================== --- trunk/build/make_release.sh 2017-12-20 19:25:18 UTC (rev 7895) +++ trunk/build/make_release.sh 2017-12-22 06:04:09 UTC (rev 7896) @@ -9,39 +9,39 @@ xgettext --no-wrap --from-code=utf-8 --language=PHP -o locale/en_GB.utf8/LC_MESSAGES/messages.pot *php includes/*.php includes/*.inc reportwriter/*.php reportwriter/*.inc reportwriter/forms/*.html reportwriter/admin/*.php reportwriter/admin/*.inc reportwriter/admin/forms/*.html api/*.php install/*.php ../webSHOP/*.php ../webSHOP/includes/*.php -msgmerge -U -N --backup=off locale/ar_EG.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/cs_CZ.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/de_DE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/en_US.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/el_GR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/es_ES.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/et_EE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/fa_IR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/fr_CA.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/fr_FR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/hi_IN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/hr_HR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/hu_HU.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/id_ID.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/it_IT.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/ja_JP.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/ko_KR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/lv_LV.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/mr_IN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/nl_NL.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/pl_PL.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/pt_BR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/pt_PT.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/ru_RU.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/ro_RO.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/sq_AL.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/sv_SE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/sw_KE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/tr_TR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/zh_CN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/zh_HK.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/zh_TW.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot -msgmerge -U -N --backup=off locale/vi_VN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/ar_EG.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/cs_CZ.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/de_DE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/en_US.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/el_GR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/es_ES.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/et_EE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/fa_IR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/fr_CA.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/fr_FR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/hi_IN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/hr_HR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/hu_HU.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/id_ID.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/it_IT.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/ja_JP.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/ko_KR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/lv_LV.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/mr_IN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/nl_NL.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/pl_PL.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/pt_BR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/pt_PT.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/ru_RU.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/ro_RO.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/sq_AL.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/sv_SE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/sw_KE.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/tr_TR.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/zh_CN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/zh_HK.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/zh_TW.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot +msgmerge -U -N --backup=off --no-wrap locale/vi_VN.utf8/LC_MESSAGES/messages.po locale/en_GB.utf8/LC_MESSAGES/messages.pot msgfmt -o locale/ar_EG.utf8/LC_MESSAGES/messages.mo locale/ar_EG.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-12-20 19:25:18 UTC (rev 7895) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-12-22 06:04:09 UTC (rev 7896) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-12 17:19-0600\n" +"POT-Creation-Date: 2017-12-22 18:59+1300\n" "PO-Revision-Date: 2017-10-02 10:22-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -23,17 +23,11 @@ msgstr "مجموعات العضوية" #: AccountGroups.php:19 -msgid "" -"An error occurred in retrieving the account groups of the parent account " -"group during the check for recursion" -msgstr "" -"لقد حدث خطأ فى استرجاع بيانات مجموعات العضو الخاصة باعضوية الأب اثناء " -"االتحقق من وجود استدعاء ذاتي" +msgid "An error occurred in retrieving the account groups of the parent account group during the check for recursion" +msgstr "لقد حدث خطأ فى استرجاع بيانات مجموعات العضو الخاصة باعضوية الأب اثناء االتحقق من وجود استدعاء ذاتي" #: AccountGroups.php:20 -msgid "" -"The SQL that was used to retrieve the account groups of the parent account " -"group and that failed in the process was" +msgid "The SQL that was used to retrieve the account groups of the parent account group and that failed in the process was" msgstr "" #: AccountGroups.php:45 @@ -82,10 +76,7 @@ msgstr "اسم المجموعة يجب ان يحتوي علي الأقل علي حرف واحد" #: AccountGroups.php:95 -msgid "" -"The parent account group selected appears to result in a recursive account " -"structure - select an alternative parent account group or make this group a " -"top level account group" +msgid "The parent account group selected appears to result in a recursive account structure - select an alternative parent account group or make this group a top level account group" msgstr "" #: AccountGroups.php:106 @@ -93,12 +84,7 @@ msgstr "لم أستطيع التخقق اذا كانت المجموعة ذاتيى الأسترجاع لأن" #: AccountGroups.php:114 -msgid "" -"Since this account group is a child group, the sequence in the trial " -"balance, the section in the accounts and whether or not the account group " -"appears in the balance sheet or profit and loss account are all properties " -"inherited from the parent account group. Any changes made to these fields " -"will have no effect." +msgid "Since this account group is a child group, the sequence in the trial balance, the section in the accounts and whether or not the account group appears in the balance sheet or profit and loss account are all properties inherited from the parent account group. Any changes made to these fields will have no effect." msgstr "" #: AccountGroups.php:119 @@ -150,9 +136,7 @@ msgstr "" #: AccountGroups.php:211 -msgid "" -"Cannot delete this account group because general ledger accounts have been " -"created using this group" +msgid "Cannot delete this account group because general ledger accounts have been created using this group" msgstr "" #: AccountGroups.php:212 AccountGroups.php:247 AccountSections.php:130 @@ -196,9 +180,7 @@ msgstr "" #: AccountGroups.php:246 -msgid "" -"Cannot delete this account group because it is a parent account group of " -"other account group(s)" +msgid "Cannot delete this account group because it is a parent account group of other account group(s)" msgstr "" #: AccountGroups.php:247 @@ -227,12 +209,14 @@ #: AccountGroups.php:281 AddCustomerContacts.php:28 AddCustomerContacts.php:30 #: AddCustomerNotes.php:101 AddCustomerTypeNotes.php:94 AgedDebtors.php:454 -#: AgedSuppliers.php:276 Areas.php:144 AuditTrail.php:11 BOMExtendedQty.php:256 -#: BOMIndented.php:249 BOMIndentedReverse.php:236 BOMInquiry.php:186 -#: BOMListing.php:110 BOMs.php:285 BOMs.php:997 CollectiveWorkOrderCost.php:281 -#: CompanyPreferences.php:100 CounterReturns.php:1625 CounterSales.php:2107 -#: CounterSales.php:2203 Credit_Invoice.php:286 CreditStatus.php:21 -#: CustEDISetup.php:17 CustItem.php:120 CustItem.php:210 CustItem.php:238 +#: AgedSuppliers.php:276 Areas.php:144 AuditTrail.php:11 +#: BOMExtendedQty.php:256 BOMIndented.php:251 BOMIndentedReverse.php:239 +#: BOMInquiry.php:186 BOMListing.php:112 BOMs.php:285 BOMs.php:997 +#: BOMs_SingleLevel.php:231 BOMs_SingleLevel.php:881 +#: CollectiveWorkOrderCost.php:281 CompanyPreferences.php:100 +#: CounterReturns.php:1625 CounterSales.php:2107 CounterSales.php:2203 +#: 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 @@ -261,14 +245,15 @@ #: 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 Suppliers.php:304 -#: SupplierTenderCreate.php:556 SupplierTenderCreate.php:664 -#: SupplierTenders.php:322 SupplierTenders.php:388 SupplierTransInquiry.php:10 -#: 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:218 +#: SupplierPriceList.php:14 SupplierPriceList.php:229 +#: SupplierPriceList.php:399 SupplierPriceList.php:458 +#: SupplierPriceList.php:503 Suppliers.php:304 SupplierTenderCreate.php:556 +#: SupplierTenderCreate.php:664 SupplierTenders.php:322 +#: SupplierTenders.php:388 SupplierTransInquiry.php:10 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:218 msgid "Search" msgstr "إبحث" @@ -294,6 +279,7 @@ #: AccountGroups.php:476 AddCustomerContacts.php:165 #: AddCustomerContacts.php:275 AddCustomerContacts.php:279 #: AddCustomerContacts.php:282 BOMs.php:140 BOMs.php:903 BOMs.php:905 +#: BOMs_SingleLevel.php:125 BOMs_SingleLevel.php:793 BOMs_SingleLevel.php:795 #: CompanyPreferences.php:423 CompanyPreferences.php:425 #: CompanyPreferences.php:438 CompanyPreferences.php:440 #: CompanyPreferences.php:453 CompanyPreferences.php:455 @@ -322,54 +308,56 @@ #: 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 -#: SalesAnalRepts.php:476 SalesAnalRepts.php:479 SalesCategories.php:297 -#: SalesCategories.php:384 SalesCategories.php:388 SalesPeople.php:227 -#: SalesPeople.php:367 SalesPeople.php:369 SelectCustomer.php:757 -#: SelectProduct.php:251 SelectProduct.php:390 SelectQASamples.php:424 -#: SelectQASamples.php:518 SelectQASamples.php:520 SelectQASamples.php:574 -#: SelectQASamples.php:576 SelectQASamples.php:588 SelectQASamples.php:590 -#: ShipmentCosting.php:667 ShopParameters.php:289 ShopParameters.php:293 -#: ShopParameters.php:337 ShopParameters.php:341 ShopParameters.php:391 -#: ShopParameters.php:395 ShopParameters.php:413 ShopParameters.php:417 -#: ShopParameters.php:495 ShopParameters.php:499 StockClone.php:938 -#: StockClone.php:940 StockClone.php:963 StockClone.php:965 Stocks.php:1266 -#: Stocks.php:1268 Stocks.php:1291 Stocks.php:1293 SuppContractChgs.php:90 +#: 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 SalesAnalRepts.php:476 +#: SalesAnalRepts.php:479 SalesCategories.php:297 SalesCategories.php:384 +#: SalesCategories.php:388 SalesPeople.php:227 SalesPeople.php:367 +#: SalesPeople.php:369 SelectCustomer.php:757 SelectProduct.php:251 +#: SelectProduct.php:390 SelectQASamples.php:424 SelectQASamples.php:518 +#: SelectQASamples.php:520 SelectQASamples.php:574 SelectQASamples.php:576 +#: SelectQASamples.php:588 SelectQASamples.php:590 ShipmentCosting.php:667 +#: ShopParameters.php:289 ShopParameters.php:293 ShopParameters.php:337 +#: ShopParameters.php:341 ShopParameters.php:391 ShopParameters.php:395 +#: ShopParameters.php:413 ShopParameters.php:417 ShopParameters.php:495 +#: ShopParameters.php:499 StockClone.php:938 StockClone.php:940 +#: StockClone.php:963 StockClone.php:965 Stocks.php:1266 Stocks.php:1268 +#: Stocks.php:1291 Stocks.php:1293 SuppContractChgs.php:90 #: SystemParameters.php:479 SystemParameters.php:502 SystemParameters.php:543 #: SystemParameters.php:624 SystemParameters.php:632 SystemParameters.php:672 #: SystemParameters.php:763 SystemParameters.php:772 SystemParameters.php:780 #: SystemParameters.php:798 SystemParameters.php:805 SystemParameters.php:849 -#: SystemParameters.php:945 SystemParameters.php:1088 SystemParameters.php:1090 -#: SystemParameters.php:1100 SystemParameters.php:1102 -#: SystemParameters.php:1156 SystemParameters.php:1168 -#: SystemParameters.php:1170 SystemParameters.php:1208 -#: SystemParameters.php:1210 SystemParameters.php:1232 -#: SystemParameters.php:1234 TaxGroups.php:311 TaxGroups.php:314 -#: TaxGroups.php:365 TestPlanResults.php:304 TestPlanResults.php:532 -#: TestPlanResults.php:747 TestPlanResults.php:864 TestPlanResults.php:924 -#: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 -#: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 -#: UserSettings.php:227 WWW_Users.php:547 WWW_Users.php:549 WWW_Users.php:718 -#: WWW_Users.php:721 WWW_Users.php:734 WWW_Users.php:737 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 -#: reportwriter/languages/en_US/reports.php:114 +#: SystemParameters.php:945 SystemParameters.php:1088 +#: SystemParameters.php:1090 SystemParameters.php:1100 +#: SystemParameters.php:1102 SystemParameters.php:1156 +#: SystemParameters.php:1168 SystemParameters.php:1170 +#: SystemParameters.php:1208 SystemParameters.php:1210 +#: SystemParameters.php:1232 SystemParameters.php:1234 TaxGroups.php:311 +#: TaxGroups.php:314 TaxGroups.php:365 TestPlanResults.php:304 +#: TestPlanResults.php:532 TestPlanResults.php:747 TestPlanResults.php:864 +#: TestPlanResults.php:924 TestPlanResults.php:928 UserGLAccounts.php:187 +#: UserGLAccounts.php:196 UserSettings.php:209 UserSettings.php:212 +#: UserSettings.php:224 UserSettings.php:227 WWW_Users.php:547 +#: WWW_Users.php:549 WWW_Users.php:718 WWW_Users.php:721 WWW_Users.php:734 +#: WWW_Users.php:737 WWW_Users.php:749 WWW_Users.php:752 WWW_Users.php:764 +#: WWW_Users.php:767 msgid "Yes" msgstr "موافق" #: AccountGroups.php:312 AccountGroups.php:472 AccountGroups.php:475 #: AddCustomerContacts.php:165 AddCustomerContacts.php:274 -#: 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:902 BOMs.php:906 -#: CompanyPreferences.php:422 CompanyPreferences.php:426 -#: CompanyPreferences.php:437 CompanyPreferences.php:441 -#: CompanyPreferences.php:452 CompanyPreferences.php:456 -#: ContractCosting.php:200 Currencies.php:344 Currencies.php:525 -#: Currencies.php:527 CustomerBranches.php:445 Customers.php:658 -#: Customers.php:1047 Customers.php:1054 Customers.php:1057 +#: 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:902 +#: BOMs.php:906 BOMs_SingleLevel.php:127 BOMs_SingleLevel.php:792 +#: BOMs_SingleLevel.php:796 CompanyPreferences.php:422 +#: CompanyPreferences.php:426 CompanyPreferences.php:437 +#: CompanyPreferences.php:441 CompanyPreferences.php:452 +#: CompanyPreferences.php:456 ContractCosting.php:200 Currencies.php:344 +#: Currencies.php:525 Currencies.php:527 CustomerBranches.php:445 +#: Customers.php:658 Customers.php:1047 Customers.php:1054 Customers.php:1057 #: DailyBankTransactions.php:217 DeliveryDetails.php:1159 #: DeliveryDetails.php:1200 DeliveryDetails.php:1203 FormDesigner.php:99 #: GLAccountUsers.php:183 GLAccountUsers.php:193 GLTransInquiry.php:93 @@ -380,65 +368,64 @@ #: 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 PDFChequeListing.php:64 PDFDeliveryDifferences.php:75 -#: PDFDIFOT.php:79 PDFWOPrint.php:609 PDFWOPrint.php:613 -#: PO_AuthorisationLevels.php:141 PO_AuthorisationLevels.php:146 -#: PO_Header.php:808 PO_PDFPurchOrder.php:414 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 ProductSpecs.php:641 -#: ProductSpecs.php:652 ProductSpecs.php:654 PurchData.php:299 -#: PurchData.php:668 PurchData.php:671 QATests.php:298 QATests.php:300 -#: QATests.php:311 QATests.php:313 QATests.php:324 QATests.php:326 -#: QATests.php:337 QATests.php:339 QATests.php:350 QATests.php:352 -#: QATests.php:416 QATests.php:421 QATests.php:426 QATests.php:431 -#: QATests.php:436 RecurringSalesOrders.php:492 RecurringSalesOrders.php:495 -#: SalesAnalReptCols.php:282 SalesAnalReptCols.php:420 -#: SalesAnalReptCols.php:423 SalesAnalRepts.php:419 SalesAnalRepts.php:422 -#: SalesAnalRepts.php:447 SalesAnalRepts.php:450 SalesAnalRepts.php:475 -#: SalesAnalRepts.php:478 SalesCategories.php:299 SalesCategories.php:385 -#: SalesCategories.php:387 SalesPeople.php:229 SalesPeople.php:372 -#: SalesPeople.php:374 SelectCustomer.php:757 SelectProduct.php:253 -#: SelectProduct.php:392 SelectQASamples.php:426 SelectQASamples.php:523 -#: SelectQASamples.php:525 SelectQASamples.php:579 SelectQASamples.php:581 -#: SelectQASamples.php:593 SelectQASamples.php:595 ShipmentCosting.php:668 -#: ShopParameters.php:290 ShopParameters.php:292 ShopParameters.php:338 -#: ShopParameters.php:340 ShopParameters.php:392 ShopParameters.php:394 -#: ShopParameters.php:414 ShopParameters.php:416 ShopParameters.php:496 -#: ShopParameters.php:498 StockClone.php:933 StockClone.php:935 -#: StockClone.php:958 StockClone.php:960 Stocks.php:1261 Stocks.php:1263 -#: Stocks.php:1286 Stocks.php:1288 SuppContractChgs.php:92 +#: PaymentMethods.php:323 PDFChequeListing.php:64 +#: PDFDeliveryDifferences.php:75 PDFDIFOT.php:79 PDFWOPrint.php:609 +#: PDFWOPrint.php:613 PO_AuthorisationLevels.php:141 +#: PO_AuthorisationLevels.php:146 PO_Header.php:808 PO_PDFPurchOrder.php:414 +#: 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 +#: ProductSpecs.php:641 ProductSpecs.php:652 ProductSpecs.php:654 +#: PurchData.php:299 PurchData.php:668 PurchData.php:671 QATests.php:298 +#: QATests.php:300 QATests.php:311 QATests.php:313 QATests.php:324 +#: QATests.php:326 QATests.php:337 QATests.php:339 QATests.php:350 +#: QATests.php:352 QATests.php:416 QATests.php:421 QATests.php:426 +#: QATests.php:431 QATests.php:436 RecurringSalesOrders.php:492 +#: RecurringSalesOrders.php:495 SalesAnalReptCols.php:282 +#: SalesAnalReptCols.php:420 SalesAnalReptCols.php:423 SalesAnalRepts.php:419 +#: SalesAnalRepts.php:422 SalesAnalRepts.php:447 SalesAnalRepts.php:450 +#: SalesAnalRepts.php:475 SalesAnalRepts.php:478 SalesCategories.php:299 +#: SalesCategories.php:385 SalesCategories.php:387 SalesPeople.php:229 +#: SalesPeople.php:372 SalesPeople.php:374 SelectCustomer.php:757 +#: SelectProduct.php:253 SelectProduct.php:392 SelectQASamples.php:426 +#: SelectQASamples.php:523 SelectQASamples.php:525 SelectQASamples.php:579 +#: SelectQASamples.php:581 SelectQASamples.php:593 SelectQASamples.php:595 +#: ShipmentCosting.php:668 ShopParameters.php:290 ShopParameters.php:292 +#: ShopParameters.php:338 ShopParameters.php:340 ShopParameters.php:392 +#: ShopParameters.php:394 ShopParameters.php:414 ShopParameters.php:416 +#: ShopParameters.php:496 ShopParameters.php:498 StockClone.php:933 +#: StockClone.php:935 StockClone.php:958 StockClone.php:960 Stocks.php:1261 +#: Stocks.php:1263 Stocks.php:1286 Stocks.php:1288 SuppContractChgs.php:92 #: SystemParameters.php:480 SystemParameters.php:503 SystemParameters.php:544 #: SystemParameters.php:625 SystemParameters.php:633 SystemParameters.php:673 #: SystemParameters.php:764 SystemParameters.php:773 SystemParameters.php:781 #: SystemParameters.php:799 SystemParameters.php:806 SystemParameters.php:850 -#: SystemParameters.php:946 SystemParameters.php:1087 SystemParameters.php:1091 -#: SystemParameters.php:1099 SystemParameters.php:1103 -#: SystemParameters.php:1157 SystemParameters.php:1167 -#: SystemParameters.php:1171 SystemParameters.php:1207 -#: SystemParameters.php:1211 SystemParameters.php:1231 -#: SystemParameters.php:1235 TaxGroups.php:312 TaxGroups.php:315 -#: TaxGroups.php:367 TestPlanResults.php:306 TestPlanResults.php:535 -#: TestPlanResults.php:749 TestPlanResults.php:866 TestPlanResults.php:925 -#: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 -#: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 -#: UserSettings.php:226 WWW_Users.php:546 WWW_Users.php:550 WWW_Users.php:717 -#: WWW_Users.php:720 WWW_Users.php:733 WWW_Users.php:736 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 -#: includes/PDFLowGPPageHeader.inc:44 -#: reportwriter/languages/en_US/reports.php:82 +#: SystemParameters.php:946 SystemParameters.php:1087 +#: SystemParameters.php:1091 SystemParameters.php:1099 +#: SystemParameters.php:1103 SystemParameters.php:1157 +#: SystemParameters.php:1167 SystemParameters.php:1171 +#: SystemParameters.php:1207 SystemParameters.php:1211 +#: SystemParameters.php:1231 SystemParameters.php:1235 TaxGroups.php:312 +#: TaxGroups.php:315 TaxGroups.php:367 TestPlanResults.php:306 +#: TestPlanResults.php:535 TestPlanResults.php:749 TestPlanResults.php:866 +#: TestPlanResults.php:925 TestPlanResults.php:927 UserGLAccounts.php:189 +#: UserGLAccounts.php:199 UserSettings.php:208 UserSettings.php:211 +#: UserSettings.php:223 UserSettings.php:226 WWW_Users.php:546 +#: WWW_Users.php:550 WWW_Users.php:717 WWW_Users.php:720 WWW_Users.php:733 +#: WWW_Users.php:736 WWW_Users.php:748 WWW_Users.php:751 WWW_Users.php:763 +#: WWW_Users.php:766 includes/PDFLowGPPageHeader.inc:44 msgid "No" msgstr "ﻻ" #: AccountGroups.php:321 AccountSections.php:196 AddCustomerContacts.php:158 #: AddCustomerNotes.php:137 AddCustomerTypeNotes.php:131 Areas.php:164 -#: 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:449 -#: Customers.php:1131 Customers.php:1165 CustomerTypes.php:205 -#: Departments.php:186 EDIMessageFormat.php:150 Factors.php:334 -#: FixedAssetCategories.php:190 FixedAssetLocations.php:111 +#: BankAccounts.php:243 BOMs.php:198 BOMs_SingleLevel.php:153 +#: COGSGLPostings.php:115 COGSGLPostings.php:222 CreditStatus.php:175 +#: Currencies.php:374 Currencies.php:391 CustItem.php:166 +#: CustomerBranches.php:449 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 GeocodeSetup.php:173 GLAccounts.php:335 GLTags.php:96 #: ImportBankTransAnalysis.php:223 InternalStockRequest.php:297 Labels.php:333 #: Labels.php:358 Locations.php:439 MailingGroupMaintenance.php:178 @@ -459,7 +446,6 @@ #: 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" msgstr "تحرير" @@ -470,14 +456,15 @@ #: AccountGroups.php:322 AccountSections.php:201 AddCustomerContacts.php:159 #: AddCustomerNotes.php:138 AddCustomerTypeNotes.php:132 Areas.php:165 -#: BankAccounts.php:244 BOMs.php:200 COGSGLPostings.php:116 -#: COGSGLPostings.php:223 ContractBOM.php:271 ContractOtherReqts.php:123 -#: CounterReturns.php:740 CounterSales.php:836 Credit_Invoice.php:429 -#: CreditStatus.php:176 Currencies.php:377 CustItem.php:167 -#: CustomerReceipt.php:1021 Customers.php:1166 CustomerTypes.php:206 -#: Departments.php:187 DiscountCategories.php:238 DiscountMatrix.php:183 -#: EDIMessageFormat.php:151 FixedAssetCategories.php:191 FreightCosts.php:254 -#: GeocodeSetup.php:174 GLAccounts.php:336 GLJournal.php:431 GLTags.php:97 +#: BankAccounts.php:244 BOMs.php:200 BOMs_SingleLevel.php:154 +#: COGSGLPostings.php:116 COGSGLPostings.php:223 ContractBOM.php:271 +#: ContractOtherReqts.php:123 CounterReturns.php:740 CounterSales.php:836 +#: Credit_Invoice.php:429 CreditStatus.php:176 Currencies.php:377 +#: CustItem.php:167 CustomerReceipt.php:1024 Customers.php:1166 +#: CustomerTypes.php:206 Departments.php:187 DiscountCategories.php:238 +#: DiscountMatrix.php:183 EDIMessageFormat.php:151 +#: FixedAssetCategories.php:191 FreightCosts.php:254 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 MailingGroupMaintenance.php:179 MaintenanceTasks.php:119 @@ -494,18 +481,18 @@ #: SalesTypes.php:207 SecurityTokens.php:117 SelectCreditItems.php:776 #: SelectCustomer.php:734 SelectCustomer.php:760 SelectCustomer.php:815 #: SelectCustomer.php:833 SelectCustomer.php:857 SelectCustomer.php:874 -#: SelectOrderItems.php:1434 SelectQASamples.php:418 SellThroughSupport.php:299 -#: 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 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 +#: SelectOrderItems.php:1434 SelectQASamples.php:418 +#: SellThroughSupport.php:299 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 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 #, php-format msgid "Delete" msgstr "حذف" @@ -515,9 +502,7 @@ msgstr "" #: AccountGroups.php:351 -msgid "" -"The SQL that was used to retrieve the account group and that failed in the " -"process was" +msgid "The SQL that was used to retrieve the account group and that failed in the process was" msgstr "" #: AccountGroups.php:354 @@ -546,19 +531,20 @@ #: ShopParameters.php:610 SMTPServer.php:126 StockCostUpdate.php:196 #: StockReorderLevel.php:111 Stocks.php:1452 SystemParameters.php:1246 #: UserGLAccounts.php:159 UserLocations.php:178 WorkOrderEntry.php:887 -#: WOSerialNos.php:345 reportwriter/languages/en_US/reports.php:156 +#: WOSerialNos.php:345 msgid "Update" msgstr "" -#: 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:749 -#: GLCashFlowsIndirect.php:782 GLCashFlowsSetup.php:178 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 -#: Z_GLAccountUsersCopyAuthority.php:96 includes/Login.php: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:749 GLCashFlowsIndirect.php:782 +#: GLCashFlowsSetup.php:178 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 Z_GLAccountUsersCopyAuthority.php:96 +#: includes/Login.php:8 msgid "Return" msgstr "" @@ -581,10 +567,7 @@ msgstr "" #: AccountGroups.php:429 -msgid "" -"A unique name for the account group must be entered - at least 3 characters " -"long and less than 30 characters long. Only alpha numeric characters can be " -"used." +msgid "A unique name for the account group must be entered - at least 3 characters long and less than 30 characters long. Only alpha numeric characters can be used." msgstr "" #: AccountGroups.php:438 @@ -596,16 +579,11 @@ msgstr "" #: AccountGroups.php:470 -msgid "" -"Select YES if this account group will contain accounts that will consist of " -"only profit and loss accounts or NO if the group will contain balance sheet " -"account" +msgid "Select YES if this account group will contain accounts that will consist of only profit and loss accounts or NO if the group will contain balance sheet account" msgstr "" #: AccountGroups.php:482 -msgid "" -"Enter the sequence number that this account group and its child general " -"ledger accounts should display in the trial balance" +msgid "Enter the sequence number that this account group and its child general ledger accounts should display in the trial balance" msgstr "" #: AccountSections.php:6 AccountSections.php:172 AccountSections.php:173 @@ -630,9 +608,7 @@ msgstr "قسم الرقم يجب ان يكون عدد صحيح" #: AccountSections.php:128 -msgid "" -"Cannot delete this account section because general ledger accounts groups " -"have been created using this section" +msgid "Cannot delete this account section because general ledger accounts groups have been created using this section" msgstr "" #: AccountSections.php:130 @@ -675,8 +651,9 @@ msgid "New Account Section Details" msgstr "" -#: AccountSections.php:285 AddCustomerContacts.php:297 AddCustomerNotes.php:242 -#: AddCustomerTypeNotes.php:221 Areas.php:229 BankAccounts.php:433 BOMs.php:923 +#: AccountSections.php:285 AddCustomerContacts.php:297 +#: AddCustomerNotes.php:242 AddCustomerTypeNotes.php:221 Areas.php:229 +#: BankAccounts.php:433 BOMs.php:923 BOMs_SingleLevel.php:809 #: COGSGLPostings.php:371 CreditStatus.php:259 Currencies.php:537 #: CustLoginSetup.php:273 Departments.php:258 DiscountMatrix.php:142 #: EDIMessageFormat.php:248 FixedAssetCategories.php:350 @@ -736,7 +713,8 @@ #: PcClaimExpensesFromTab.php:73 PcExpenses.php:65 PcTabs.php:78 #: PcTypeTabs.php:40 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 Suppliers.php:524 SupplierTypes.php:68 +#: SelectQASamples.php:85 Stocks.php:594 Suppliers.php:524 +#: SupplierTypes.php:68 msgid "has been updated" msgstr "" @@ -780,13 +758,14 @@ #: EmailCustTrans.php:65 Factors.php:246 Factors.php:297 Locations.php:639 #: OrderDetails.php:127 PDFRemittanceAdvice.php:251 PDFWOPrint.php:599 #: PDFWOPrint.php:602 PDFWOPrint.php:682 PDFWOPrint.php:685 -#: PO_PDFPurchOrder.php:400 PO_PDFPurchOrder.php:403 PrintCustStatements.php:99 -#: PrintCustTrans.php:762 PrintCustTransPortrait.php:787 -#: PrintCustTransPortrait.php:1033 PrintCustTransPortrait.php:1089 -#: SelectCustomer.php:408 SelectCustomer.php:730 SelectSupplier.php:301 -#: SupplierContacts.php:156 SupplierContacts.php:277 UserSettings.php:184 -#: WWW_Users.php:333 includes/PDFPickingListHeader.inc:25 -#: includes/PDFStatementPageHeader.inc:76 includes/PDFTransPageHeader.inc:85 +#: PO_PDFPurchOrder.php:400 PO_PDFPurchOrder.php:403 +#: PrintCustStatements.php:99 PrintCustTrans.php:762 +#: PrintCustTransPortrait.php:787 PrintCustTransPortrait.php:1033 +#: PrintCustTransPortrait.php:1089 SelectCustomer.php:408 +#: SelectCustomer.php:730 SelectSupplier.php:301 SupplierContacts.php:156 +#: SupplierContacts.php:277 UserSettings.php:184 WWW_Users.php:333 +#: includes/PDFPickingListHeader.inc:25 includes/PDFStatementPageHeader.inc:76 +#: includes/PDFTransPageHeader.inc:85 #: includes/PDFTransPageHeaderPortrait.inc:113 includes/PDFWOPageHeader.inc:19 #: includes/PO_PDFOrderPageHeader.inc:29 ../webSHOP/Checkout.php:443 #: ../webSHOP/Register.php:607 @@ -803,12 +782,12 @@ #: Customers.php:1122 Customers.php:1130 GLCashFlowsIndirect.php:130 #: GLCashFlowsIndirect.php:450 PcAssignCashTabToTab.php:284 #: PcAssignCashTabToTab.php:427 PcAssignCashToTab.php:232 -#: PcAssignCashToTab.php:380 PcAuthorizeCash.php:96 PcAuthorizeExpenses.php:100 -#: PcClaimExpensesFromTab.php:377 PcClaimExpensesFromTab.php:675 -#: PcReportExpense.php:145 PcReportTab.php:222 PcReportTab.php:472 -#: PDFQuotation.php:252 PDFQuotationPortrait.php:249 PurchasesReport.php:56 -#: SelectCustomer.php:732 ShopParameters.php:198 SystemParameters.php:411 -#: WOSerialNos.php:306 WOSerialNos.php:312 +#: PcAssignCashToTab.php:380 PcAuthorizeCash.php:96 +#: PcAuthorizeExpenses.php:100 PcClaimExpensesFromTab.php:377 +#: PcClaimExpensesFromTab.php:675 PcReportExpense.php:145 PcReportTab.php:222 +#: PcReportTab.php:472 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 "" @@ -840,8 +819,9 @@ #: AddCustomerContacts.php:254 Contracts.php:788 PDFRemittanceAdvice.php:247 #: PO_Header.php:1028 PO_Header.php:1113 SelectCreditItems.php:246 -#: SelectCustomer.php:406 SelectOrderItems.php:632 SupplierTenderCreate.php:395 -#: includes/PDFStatementPageHeader.inc:72 includes/PDFTransPageHeader.inc:84 +#: SelectCustomer.php:406 SelectOrderItems.php:632 +#: SupplierTenderCreate.php:395 includes/PDFStatementPageHeader.inc:72 +#: includes/PDFTransPageHeader.inc:84 #: includes/PDFTransPageHeaderPortrait.inc:109 ../webSHOP/Checkout.php:537 #: ../webSHOP/Register.php:260 ../webSHOP/Register.php:735 msgid "Phone" @@ -852,9 +832,7 @@ msgstr "" #: AddCustomerContacts.php:272 -msgid "" -"This flag identifies the contact as one who should receive an email " -"cusstomer statement" +msgid "This flag identifies the contact as one who should receive an email cusstomer statement" msgstr "" #: AddCustomerNotes.php:6 AddCustomerNotes.php:51 SelectCustomer.php:807 @@ -900,13 +878,14 @@ #: GLTransInquiry.php:47 GoodsReceived.php:130 MRPCalendar.php:219 #: PaymentAllocations.php:67 Payments.php:974 Payments.php:1337 #: PcAssignCashTabToTab.php:281 PcAssignCashToTab.php:229 -#: PcAuthorizeCash.php:93 PDFOrdersInvoiced.php:378 PDFRemittanceAdvice.php:308 -#: PDFWOPrint.php:456 PrintCustTrans.php:844 PrintCustTransPortrait.php:901 -#: PrintWOItemSlip.php:186 PrintWOItemSlip.php:197 PrintWOItemSlip.php:208 -#: PurchasesReport.php:67 ReverseGRN.php:405 SelectCustomer.php:810 -#: 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 +#: PcAuthorizeCash.php:93 PDFOrdersInvoiced.php:378 +#: PDFRemittanceAdvice.php:308 PDFWOPrint.php:456 PrintCustTrans.php:844 +#: PrintCustTransPortrait.php:901 PrintWOItemSlip.php:186 +#: PrintWOItemSlip.php:197 PrintWOItemSlip.php:208 PurchasesReport.php:67 +#: ReverseGRN.php:405 SelectCustomer.php:810 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 SupplierAllocations.php:458 #: SupplierAllocations.php:572 SupplierAllocations.php:647 #: SupplierInquiry.php:204 SupplierTransInquiry.php:111 SuppWhereAlloc.php:132 @@ -915,20 +894,20 @@ #: includes/PDFQuotationPortraitPageHeader.inc:80 #: includes/PDFStatementPageHeader.inc:164 includes/PDFTransPageHeader.inc:51 #: includes/PDFTransPageHeaderPortrait.inc:62 -#: reportwriter/languages/en_US/reports.php:64 msgid "Date" msgstr "" -#: AddCustomerNotes.php:118 AddCustomerTypeNotes.php:112 SelectCustomer.php:811 -#: SelectCustomer.php:853 StockClone.php:942 Stocks.php:1270 -#: UpgradeDatabase.php:253 UpgradeDatabase.php:256 UpgradeDatabase.php:259 -#: UpgradeDatabase.php:262 UpgradeDatabase.php:265 UpgradeDatabase.php:268 -#: UpgradeDatabase.php:271 UpgradeDatabase.php:274 UpgradeDatabase.php:277 -#: Z_Upgrade_3.10-3.11.php:62 Z_Upgrade_3.10-3.11.php:66 -#: Z_Upgrade_3.10-3.11.php:70 Z_Upgrade_3.10-3.11.php:74 -#: Z_Upgrade_3.10-3.11.php:78 Z_Upgrade_3.11-4.00.php:62 -#: Z_Upgrade_3.11-4.00.php:66 Z_Upgrade_3.11-4.00.php:70 -#: Z_Upgrade_3.11-4.00.php:74 Z_Upgrade_3.11-4.00.php:78 +#: AddCustomerNotes.php:118 AddCustomerTypeNotes.php:112 +#: SelectCustomer.php:811 SelectCustomer.php:853 StockClone.php:942 +#: Stocks.php:1270 UpgradeDatabase.php:253 UpgradeDatabase.php:256 +#: UpgradeDatabase.php:259 UpgradeDatabase.php:262 UpgradeDatabase.php:265 +#: UpgradeDatabase.php:268 UpgradeDatabase.php:271 UpgradeDatabase.php:274 +#: UpgradeDatabase.php:277 Z_Upgrade_3.10-3.11.php:62 +#: Z_Upgrade_3.10-3.11.php:66 Z_Upgrade_3.10-3.11.php:70 +#: Z_Upgrade_3.10-3.11.php:74 Z_Upgrade_3.10-3.11.php:78 +#: Z_Upgrade_3.11-4.00.php:62 Z_Upgrade_3.11-4.00.php:66 +#: Z_Upgrade_3.11-4.00.php:70 Z_Upgrade_3.11-4.00.php:74 +#: Z_Upgrade_3.11-4.00.php:78 msgid "Note" msgstr "" @@ -1018,14 +997,14 @@ #: AgedControlledInventory.php:12 GLCashFlowsSetup.php:109 #: InventoryQuantities.php:155 InventoryValuation.php:217 Locations.php:12 #: 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 -#: ReorderLevelLocation.php:12 ReorderLevel.php:183 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 StockTransferControlled.php:14 -#: SuppLoginSetup.php:24 WWW_Users.php:28 includes/MainMenuLinksArray.php:24 -#: reportwriter/languages/en_US/reports.php:243 +#: MRPDemandTypes.php:17 MRP.php:542 MRPPlannedPurchaseOrders.php:272 +#: MRPPlannedWorkOrders.php:243 MRPPlannedWorkOrders.php:317 +#: PricesByCost.php:8 ReorderLevelLocation.php:12 ReorderLevel.php:183 +#: 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 +#: StockTransferControlled.php:14 SuppLoginSetup.php:24 WWW_Users.php:28 +#: includes/MainMenuLinksArray.php:24 msgid "Inventory" msgstr "" @@ -1034,21 +1013,23 @@ msgstr "" #: AgedControlledInventory.php:42 MRPReschedules.php:124 MRPShortages.php:260 -#: StockClone.php:53 Stocks.php:63 reportwriter/languages/en_US/reports.php:103 +#: StockClone.php:53 Stocks.php:63 msgid "Stock" msgstr "" #: AgedControlledInventory.php:43 AutomaticTranslationDescriptions.php:37 -#: BOMIndented.php:315 BOMIndentedReverse.php:293 BOMInquiry.php:109 -#: BOMInquiry.php:198 BOMs.php:663 BOMs.php:1021 CollectiveWorkOrderCost.php:53 +#: BOMIndented.php:317 BOMIndentedReverse.php:295 BOMInquiry.php:109 +#: BOMInquiry.php:198 BOMs.php:663 BOMs.php:1021 BOMs_SingleLevel.php:558 +#: BOMs_SingleLevel.php:905 CollectiveWorkOrderCost.php:53 #: CollectiveWorkOrderCost.php:325 ContractBOM.php:241 ContractBOM.php:353 #: ContractOtherReqts.php:97 CounterReturns.php:1688 CounterSales.php:2112 #: CounterSales.php:2266 CreditStatus.php:152 CreditStatus.php:243 -#: CustomerPurchases.php:81 EmailConfirmation.php:219 EmailConfirmation.php:349 -#: FixedAssetCategories.php:167 FixedAssetDepreciation.php:91 -#: FixedAssetRegister.php:87 FixedAssetRegister.php:388 -#: FixedAssetTransfer.php:60 FixedAssetTransfer.php:162 GLTags.php:63 -#: GLTags.php:82 GLTransInquiry.php:49 GoodsReceived.php:122 +#: CustomerPurchases.php:81 EmailConfirmation.php:219 +#: EmailConfirmation.php:349 FixedAssetCategories.php:167 +#: FixedAssetDepreciation.php:91 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 InternalStockRequestInquiry.php:221 #: InternalStockRequestInquiry.php:267 InternalStockRequestInquiry.php:406 #: InternalStockRequest.php:350 InternalStockRequest.php:564 @@ -1056,11 +1037,11 @@ #: InventoryQuantities.php:246 InventoryValuation.php:197 Labels.php:290 #: MaintenanceTasks.php:95 MaintenanceUserSchedule.php:50 #: MaterialsNotUsed.php:35 MRPDemands.php:92 MRPDemands.php:295 -#: MRPDemandTypes.php:113 MRPPlannedWorkOrders.php:256 MRPReport.php:563 +#: MRPDemandTypes.php:113 MRPPlannedWorkOrders.php:254 MRPReport.php:563 #: MRPReport.php:777 MRPReschedules.php:190 MRPShortages.php:349 #: NoSalesItems.php:194 PaymentTerms.php:182 PcExpenses.php:143 #: PcExpenses.php:231 PcExpensesTypeTab.php:145 PcTypeTabs.php:113 -#: PDFCOA.php:64 PDFOrdersInvoiced.php:335 PDFOrderStatus.php:337 +#: PDFCOA.php:64 PDFOrdersInvoiced.php:335 PDFOrderStatus.php:336 #: PDFSalesBySalesperson.php:86 PDFWeeklyOrders.php:82 PO_Items.php:716 #: PO_Items.php:1194 PO_SelectOSPurchOrder.php:302 PO_SelectPurchOrder.php:214 #: PricesByCost.php:153 RelatedItemsUpdate.php:160 ReorderLevelLocation.php:73 @@ -1078,19 +1059,20 @@ #: SupplierInvoice.php:675 SupplierInvoice.php:759 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 SuppPriceList.php:214 SuppPriceList.php:346 -#: 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 +#: SupplierTenderCreate.php:853 SupplierTenders.php:326 +#: SupplierTenders.php:421 SupplierTenders.php:687 SuppPriceList.php:214 +#: SuppPriceList.php:346 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 includes/DefineLabelClass.php:12 +#: includes/DefineLabelClass.php:45 includes/PDFGrnHeader.inc:30 #: includes/PDFInventoryPlanPageHeader.inc:50 #: includes/PDFOstdgGRNsPageHeader.inc:38 #: includes/PDFStockLocTransferHeader.inc:65 #: includes/PDFStockTransferHeader.inc:36 includes/PDFTopItemsHeader.inc:50 #: includes/PDFTransPageHeader.inc:211 -#: includes/PDFTransPageHeaderPortrait.inc:256 includes/DefineLabelClass.php:12 -#: includes/DefineLabelClass.php:45 ../webSHOP/includes/PlaceOrder.php:250 +#: includes/PDFTransPageHeaderPortrait.inc:256 api/api_xml-rpc.php:3489 +#: ../webSHOP/includes/PlaceOrder.php:250 msgid "Description" msgstr "" @@ -1129,16 +1111,15 @@ #: SalesByTypePeriodInquiry.php:395 SalesByTypePeriodInquiry.php:430 #: SalesByTypePeriodInquiry.php:465 SalesByTypePeriodInquiry.php:500 #: SalesByTypePeriodInquiry.php:561 SelectCreditItems.php:693 -#: SelectCreditItems.php:697 SelectOrderItems.php:1371 SuppContractChgs.php:107 -#: 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:303 Z_CheckDebtorsControl.php:149 -#: api/api_debtortransactions.php:1271 api/api_debtortransactions.php:1284 -#: api/api_debtortransactions.php:1581 includes/PDFQuotationPageHeader.inc:119 +#: SelectCreditItems.php:697 SelectOrderItems.php:1371 +#: SuppContractChgs.php:107 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:303 +#: Z_CheckDebtorsControl.php:149 includes/PDFQuotationPageHeader.inc:119 #: includes/PDFQuotationPortraitPageHeader.inc:100 -#: includes/PO_PDFOrderPageHeader.inc:81 -#: reportwriter/languages/en_US/reports.php:107 +#: includes/PO_PDFOrderPageHeader.inc:81 api/api_debtortransactions.php:1271 +#: api/api_debtortransactions.php:1284 api/api_debtortransactions.php:1581 #: ../webSHOP/includes/DisplayShoppingCart.php:8 #: ../webSHOP/includes/PlaceOrder.php:299 #, php-format @@ -1159,7 +1140,7 @@ #: AgedDebtors.php:268 AgedDebtors.php:370 AgedDebtors.php:434 #: AgedSuppliers.php:108 BOMExtendedQty.php:154 BOMIndented.php:153 -#: BOMIndentedReverse.php:140 BOMListing.php:42 BOMListing.php:53 +#: BOMIndentedReverse.php:140 BOMListing.php:43 BOMListing.php:54 #: DebtorsAtPeriodEnd.php:57 DebtorsAtPeriodEnd.php:69 GLBalanceSheet.php:112 #: GLBalanceSheet.php:152 GLProfit_Loss.php:188 GLTagProfit_Loss.php:195 #: GLTrialBalance.php:167 InternalStockRequestInquiry.php:250 @@ -1196,55 +1177,53 @@ #: AgedDebtors.php:271 AgedDebtors.php:373 AgedDebtors.php:437 #: AgedSuppliers.php:111 AgedSuppliers.php:198 BOMExtendedQty.php:157 -#: BOMExtendedQty.php:244 BOMIndented.php:156 BOMIndented.php:237 -#: BOMIndentedReverse.php:144 BOMIndentedReverse.php:222 BOMListing.php:45 -#: Credit_Invoice.php:201 Dashboard.php:158 Dashboard.php:247 Dashboard.php:400 -#: DebtorsAtPeriodEnd.php:60 DebtorsAtPeriodEnd.php:72 FTP_RadioBeacon.php:187 -#: 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:180 -#: InventoryPlanning.php:217 InventoryPlanning.php:266 -#: InventoryPlanning.php:341 InventoryPlanningPrefSupplier.php:186 -#: InventoryPlanningPrefSupplier.php:244 InventoryPlanningPrefSupplier.php:271 -#: 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 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 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:171 -#: 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:49 Tax.php:154 -#: Tax.php:183 Tax.php:342 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 -#: includes/ConstructSQLForUserDefinedSalesReport.inc:188 -#: includes/ConstructSQLForUserDefinedSalesReport.inc:343 +#: BOMExtendedQty.php:244 BOMIndented.php:156 BOMIndented.php:239 +#: BOMIndentedReverse.php:144 BOMIndentedReverse.php:225 BOMListing.php:46 +#: Credit_Invoice.php:201 Dashboard.php:158 Dashboard.php:247 +#: Dashboard.php:400 DebtorsAtPeriodEnd.php:60 DebtorsAtPeriodEnd.php:72 +#: FTP_RadioBeacon.php:187 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:180 InventoryPlanning.php:217 +#: InventoryPlanning.php:266 InventoryPlanning.php:341 +#: InventoryPlanningPrefSupplier.php:186 InventoryPlanningPrefSupplier.php:244 +#: InventoryPlanningPrefSupplier.php:271 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 MRPPlannedPurc... [truncated message content] |
From: <tu...@us...> - 2017-12-20 19:25:21
|
Revision: 7895 http://sourceforge.net/p/web-erp/reponame/7895 Author: turbopt Date: 2017-12-20 19:25:18 +0000 (Wed, 20 Dec 2017) Log Message: ----------- FormMaker.php, ReportMaker.php, WriteForm.inc: A few more PHP 7.1 array compatibility changes. Modified Paths: -------------- trunk/doc/Change.log trunk/reportwriter/FormMaker.php trunk/reportwriter/ReportMaker.php trunk/reportwriter/WriteForm.inc Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-20 18:36:08 UTC (rev 7894) +++ trunk/doc/Change.log 2017-12-20 19:25:18 UTC (rev 7895) @@ -1,5 +1,6 @@ webERP Change Log +20/12/17 PaulT: FormMaker.php, ReportMaker.php, WriteForm.inc: A few more PHP 7.1 array compatibility changes. 20/12/17 PaulT: RCFunctions.inc, FormMaker.php: PHP 7.1 array compatibility change. 19/12/17 PaulT: PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file) 19/12/17 PaulT: Change.log: Correct my Day/Month entry references over the last few days. Modified: trunk/reportwriter/FormMaker.php =================================================================== --- trunk/reportwriter/FormMaker.php 2017-12-20 18:36:08 UTC (rev 7894) +++ trunk/reportwriter/FormMaker.php 2017-12-20 19:25:18 UTC (rev 7895) @@ -18,7 +18,7 @@ require('languages/'.$ReportLanguage.'/reports.php'); // include translation before defaults.php require('admin/defaults.php'); // load default values -$usrMsg = ''; // setup array for return messages +$usrMsg = array(); // setup array for return messages $GoBackURL = $RootPath.'/index.php'; // set the return path to the index.php page if (isset($_GET['id'])) { // then entered with form group requested @@ -218,7 +218,7 @@ function RetrieveFields($ReportID, $EntryType) { global $db; - $FieldListings = ''; + $FieldListings = array(); $sql= "SELECT * FROM ".DBRptFields." WHERE reportid = '".$ReportID."' AND entrytype = '".$EntryType."' Modified: trunk/reportwriter/ReportMaker.php =================================================================== --- trunk/reportwriter/ReportMaker.php 2017-12-20 18:36:08 UTC (rev 7894) +++ trunk/reportwriter/ReportMaker.php 2017-12-20 19:25:18 UTC (rev 7895) @@ -18,7 +18,7 @@ require('languages/'.$ReportLanguage.'/reports.php'); // include translation before defaults.php require('admin/defaults.php'); // load default values -$usrMsg = ''; // setup array for return messages +$usrMsg = array(); // setup array for return messages if (isset($_GET['reportid'])) { // then entered with report id requested, fix variable to show filter form $_POST['todo'] = RPT_BTN_CONT; // fake the code to think the continue button was pressed $_POST['ReportID'] = (int) $_GET['reportid']; // convert Report ID to a POST variable @@ -240,7 +240,7 @@ function RetrieveFields($ReportID, $EntryType) { global $db; - $FieldListings = ''; + $FieldListings = array(); $sql= "SELECT * FROM ".DBRptFields." WHERE reportid = '".$ReportID."' AND entrytype = '".$EntryType."' ORDER BY seqnum"; Modified: trunk/reportwriter/WriteForm.inc =================================================================== --- trunk/reportwriter/WriteForm.inc 2017-12-20 18:36:08 UTC (rev 7894) +++ trunk/reportwriter/WriteForm.inc 2017-12-20 19:25:18 UTC (rev 7895) @@ -567,7 +567,7 @@ } // Build the sql $tblField = ''; - $tblHeading = ''; + $tblHeading = array(); foreach ($SingleObject['params']['Seq'] as $TableField) { $tblField .= $TableField['TblField'].', '; $tblHeading[] = $TableField['TblDesc']; |
From: <tu...@us...> - 2017-12-20 18:36:11
|
Revision: 7894 http://sourceforge.net/p/web-erp/reponame/7894 Author: turbopt Date: 2017-12-20 18:36:08 +0000 (Wed, 20 Dec 2017) Log Message: ----------- RCFunctions.inc, FormMaker.php: PHP 7.1 array compatibility change. Modified Paths: -------------- trunk/doc/Change.log trunk/reportwriter/FormMaker.php trunk/reportwriter/admin/RCFunctions.inc Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-20 01:29:04 UTC (rev 7893) +++ trunk/doc/Change.log 2017-12-20 18:36:08 UTC (rev 7894) @@ -1,5 +1,6 @@ webERP Change Log +20/12/17 PaulT: RCFunctions.inc, FormMaker.php: PHP 7.1 array compatibility change. 19/12/17 PaulT: PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file) 19/12/17 PaulT: Change.log: Correct my Day/Month entry references over the last few days. 19/12/17 PaulT: Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist. Modified: trunk/reportwriter/FormMaker.php =================================================================== --- trunk/reportwriter/FormMaker.php 2017-12-20 01:29:04 UTC (rev 7893) +++ trunk/reportwriter/FormMaker.php 2017-12-20 18:36:08 UTC (rev 7894) @@ -147,7 +147,7 @@ ORDER BY groupname, reportname"; $Result=DB_query($sql,'','',false,true); - $FormList = ''; + $FormList = array(); while ($Temp = DB_fetch_array($Result)) $FormList[] = $Temp; foreach ($FormGroups as $index=>$value) { $Group=explode(':',$index); // break into main group and form group array Modified: trunk/reportwriter/admin/RCFunctions.inc =================================================================== --- trunk/reportwriter/admin/RCFunctions.inc 2017-12-20 01:29:04 UTC (rev 7893) +++ trunk/reportwriter/admin/RCFunctions.inc 2017-12-20 18:36:08 UTC (rev 7894) @@ -75,7 +75,7 @@ WHERE defaultreport='1' AND reporttype='frm' ORDER BY groupname, reportname"; $Result=DB_query($sql,'','',false,true); - $FormList = ''; + $FormList = array(); while ($Temp = DB_fetch_array($Result)) $FormList[] = $Temp; foreach ($FormGroups as $index=>$value) { $Group=explode(':',$index); // break into main group and form group array |
From: <tu...@us...> - 2017-12-20 01:29:06
|
Revision: 7893 http://sourceforge.net/p/web-erp/reponame/7893 Author: turbopt Date: 2017-12-20 01:29:04 +0000 (Wed, 20 Dec 2017) Log Message: ----------- PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file) Modified Paths: -------------- trunk/PDFOrderStatus.php trunk/doc/Change.log Modified: trunk/PDFOrderStatus.php =================================================================== --- trunk/PDFOrderStatus.php 2017-12-20 01:10:51 UTC (rev 7892) +++ trunk/PDFOrderStatus.php 2017-12-20 01:29:04 UTC (rev 7893) @@ -2,7 +2,7 @@ /* $Id$*/ -include ('includes/session.php'); +include('includes/session.php'); include('includes/SQL_CommonFunctions.inc'); $InputError=0; @@ -86,7 +86,6 @@ include('includes/footer.php'); exit; } else { - include('includes/ConnectDB.inc'); include('includes/PDFStarter.php'); $pdf->addInfo('Title',_('Order Status Report')); $pdf->addInfo('Subject',_('Orders from') . ' ' . $_POST['FromDate'] . ' ' . _('to') . ' ' . $_POST['ToDate']); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-20 01:10:51 UTC (rev 7892) +++ trunk/doc/Change.log 2017-12-20 01:29:04 UTC (rev 7893) @@ -1,5 +1,6 @@ webERP Change Log +19/12/17 PaulT: PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file) 19/12/17 PaulT: Change.log: Correct my Day/Month entry references over the last few days. 19/12/17 PaulT: Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist. 19/12/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified. |
From: <tu...@us...> - 2017-12-20 01:10:53
|
Revision: 7892 http://sourceforge.net/p/web-erp/reponame/7892 Author: turbopt Date: 2017-12-20 01:10:51 +0000 (Wed, 20 Dec 2017) Log Message: ----------- Change.log: Correct my Day/Month entry references over the last few days. Modified Paths: -------------- trunk/doc/Change.log Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-20 00:48:35 UTC (rev 7891) +++ trunk/doc/Change.log 2017-12-20 01:10:51 UTC (rev 7892) @@ -1,18 +1,19 @@ webERP Change Log -11/19/17 PaulT: Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist. -11/19/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified. -11/18/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink) -11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) -11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) -11/15/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) -11/14/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) -11/13/17 PaulT: PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) -11/13/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) -11/13/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) -11/13/17 PaulT: PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) -11/13/17 PaulT: CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) -11/13/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) +19/12/17 PaulT: Change.log: Correct my Day/Month entry references over the last few days. +19/12/17 PaulT: Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist. +19/12/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified. +18/12/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink) +18/12/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) +18/12/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) +15/12/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) +14/12/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) +13/12/17 PaulT: PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) +13/12/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) +13/12/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) +13/12/17 PaulT: PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) +13/12/17 PaulT: CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) +13/12/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) 11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) 11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. 11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php |
From: <tu...@us...> - 2017-12-20 00:48:38
|
Revision: 7891 http://sourceforge.net/p/web-erp/reponame/7891 Author: turbopt Date: 2017-12-20 00:48:35 +0000 (Wed, 20 Dec 2017) Log Message: ----------- Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist. Modified Paths: -------------- trunk/Contracts.php trunk/doc/Change.log Modified: trunk/Contracts.php =================================================================== --- trunk/Contracts.php 2017-12-19 20:49:25 UTC (rev 7890) +++ trunk/Contracts.php 2017-12-20 00:48:35 UTC (rev 7891) @@ -840,6 +840,16 @@ } echo '</p>'; + $sql = "SELECT code, description FROM workcentres INNER JOIN locationusers ON locationusers.loccode=workcentres.location AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1"; + $wcresults = DB_query($sql); + + if (DB_num_rows($wcresults)==0){ + prnMsg( _('There are no work centres set up yet') . '. ' . _('Please use the link below to set up work centres'),'warn'); + echo '<br /><a href="'.$RootPath.'/WorkCentres.php">' . _('Work Centre Maintenance') . '</a>'; + include('includes/footer.php'); + exit; + } + /*Set up form for entry of contract header stuff */ echo '<table class="selection"> @@ -857,7 +867,7 @@ </tr> <tr> <td>' . _('Category') . ':</td> - <td><select name="CategoryID" >'; + <td><select name="CategoryID">'; $sql = "SELECT categoryid, categorydescription FROM stockcategory"; $ErrMsg = _('The stock categories could not be retrieved because'); @@ -872,7 +882,7 @@ } } - echo '</select><a target="_blank" href="'. $RootPath . '/StockCategories.php">' . _('Add or Modify Contract Categories') . '</a></td></tr>'; + echo '</select> <a target="_blank" href="'. $RootPath . '/StockCategories.php">' . _('Add or Modify Contract Categories') . '</a></td></tr>'; $sql = "SELECT locations.loccode, locationname FROM locations INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1"; $ErrMsg = _('The stock locations could not be retrieved because'); @@ -881,7 +891,7 @@ echo '<tr> <td>' . _('Location') . ':</td> - <td><select name="LocCode" >'; + <td><select name="LocCode">'; while ($myrow=DB_fetch_array($result)){ if (!isset($_SESSION['Contract'.$identifier]->LocCode) or $myrow['loccode']==$_SESSION['Contract'.$identifier]->LocCode){ echo '<option selected="selected" value="'. $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>'; @@ -891,20 +901,11 @@ } echo '</select></td></tr>'; - $sql = "SELECT code, description FROM workcentres INNER JOIN locationusers ON locationusers.loccode=workcentres.location AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1"; - $result = DB_query($sql); - - if (DB_num_rows($result)==0){ - prnMsg( _('There are no work centres set up yet') . '. ' . _('Please use the link below to set up work centres'),'warn'); - echo '<br /><a href="'.$RootPath.'/WorkCentres.php">' . _('Work Centre Maintenance') . '</a>'; - include('includes/footer.php'); - exit; - } echo '<tr><td>' . _('Default Work Centre') . ': </td><td>'; echo '<select name="DefaultWorkCentre">'; - while ($myrow = DB_fetch_array($result)) { + while ($myrow = DB_fetch_array($wcresults)) { if (isset($_POST['DefaultWorkCentre']) and $myrow['code']==$_POST['DefaultWorkCentre']) { echo '<option selected="selected" value="'.$myrow['code'] . '">' . $myrow['description'] . '</option>'; } else { @@ -913,6 +914,7 @@ } //end while loop DB_free_result($result); + DB_free_result($wcresults); echo '</select></td> </tr> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-19 20:49:25 UTC (rev 7890) +++ trunk/doc/Change.log 2017-12-20 00:48:35 UTC (rev 7891) @@ -1,5 +1,6 @@ webERP Change Log +11/19/17 PaulT: Contracts.php: Move work center handling causing a partial form to appear after the footer when no work centers exist. 11/19/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified. 11/18/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink) 11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) |
From: <tu...@us...> - 2017-12-19 20:49:27
|
Revision: 7890 http://sourceforge.net/p/web-erp/reponame/7890 Author: turbopt Date: 2017-12-19 20:49:25 +0000 (Tue, 19 Dec 2017) Log Message: ----------- Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified. Modified Paths: -------------- trunk/doc/Change.log trunk/includes/Contract_Readin.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-19 04:31:39 UTC (rev 7889) +++ trunk/doc/Change.log 2017-12-19 20:49:25 UTC (rev 7890) @@ -1,5 +1,6 @@ webERP Change Log +11/19/17 PaulT: Contract_Readin.php: Add customerref field to query to appear in the form when a contract is modified. 11/18/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink) 11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) 11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) Modified: trunk/includes/Contract_Readin.php =================================================================== --- trunk/includes/Contract_Readin.php 2017-12-19 04:31:39 UTC (rev 7889) +++ trunk/includes/Contract_Readin.php 2017-12-19 20:49:25 UTC (rev 7890) @@ -6,6 +6,7 @@ contracts.debtorno, contracts.branchcode, contracts.loccode, + contracts.customerref, status, categoryid, orderno, @@ -39,6 +40,7 @@ $_SESSION['Contract'.$identifier]->DebtorNo = $myrow['debtorno']; $_SESSION['Contract'.$identifier]->BranchCode = $myrow['branchcode']; $_SESSION['Contract'.$identifier]->LocCode = $myrow['loccode']; + $_SESSION['Contract'.$identifier]->CustomerRef = $myrow['customerref']; $_SESSION['Contract'.$identifier]->Status = $myrow['status']; $_SESSION['Contract'.$identifier]->CategoryID = $myrow['categoryid']; $_SESSION['Contract'.$identifier]->OrderNo = $myrow['orderno']; |
From: <tu...@us...> - 2017-12-19 04:31:42
|
Revision: 7889 http://sourceforge.net/p/web-erp/reponame/7889 Author: turbopt Date: 2017-12-19 04:31:39 +0000 (Tue, 19 Dec 2017) Log Message: ----------- ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink) Modified Paths: -------------- trunk/doc/Change.log trunk/reportwriter/admin/ReportCreator.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-19 00:06:37 UTC (rev 7888) +++ trunk/doc/Change.log 2017-12-19 04:31:39 UTC (rev 7889) @@ -1,5 +1,6 @@ webERP Change Log +11/18/17 PaulT: ReportCreator.php: PHP 7.1 array compatibility change. (Reported in forums by rjonesbsink) 11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) 11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) 11/15/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) Modified: trunk/reportwriter/admin/ReportCreator.php =================================================================== --- trunk/reportwriter/admin/ReportCreator.php 2017-12-19 00:06:37 UTC (rev 7888) +++ trunk/reportwriter/admin/ReportCreator.php 2017-12-19 04:31:39 UTC (rev 7889) @@ -35,7 +35,8 @@ require_once('defaults.php'); require('RCFunctions.inc'); -$usrMsg = ''; // initialize array for return messages +$usrMsg = array(); // initialize array for return messages + // a valid report id needs to be passed as a post field to do anything, except create new report if (!isset($_POST['ReportID'])) { // entered for the first time or created new report $ReportID = ''; |
From: <tu...@us...> - 2017-12-19 00:06:39
|
Revision: 7888 http://sourceforge.net/p/web-erp/reponame/7888 Author: turbopt Date: 2017-12-19 00:06:37 +0000 (Tue, 19 Dec 2017) Log Message: ----------- BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/BOMIndented.php trunk/BOMIndentedReverse.php trunk/doc/Change.log Modified: trunk/BOMIndented.php =================================================================== --- trunk/BOMIndented.php 2017-12-18 23:35:39 UTC (rev 7887) +++ trunk/BOMIndented.php 2017-12-19 00:06:37 UTC (rev 7888) @@ -177,7 +177,8 @@ $Tot_Val=0; $sql = "SELECT tempbom.*, stockmaster.description, - stockmaster.mbflag + stockmaster.mbflag, + stockmaster.units FROM tempbom,stockmaster WHERE tempbom.component = stockmaster.stockid ORDER BY sortpart"; @@ -206,14 +207,15 @@ // 1) X position 2) Y position 3) Width // 4) Height 5) Text 6) Alignment 7) Border 8) Fill - True to use SetFillColor // and False to set to transparent - $pdf->addTextWrap($Left_Margin+($myrow['level'] * 5),$YPos,90,$FontSize,$myrow['component'],'',0,$fill); - $pdf->addTextWrap(160,$YPos,20,$FontSize,$myrow['mbflag'],'',0,$fill); - $pdf->addTextWrap(180,$YPos,180,$FontSize,$myrow['description'],'',0,$fill); - $pdf->addTextWrap(360,$YPos,30,$FontSize,$myrow['loccode'],'right',0,$fill); - $pdf->addTextWrap(390,$YPos,25,$FontSize,$myrow['workcentreadded'],'right',0,$fill); - $pdf->addTextWrap(415,$YPos,45,$FontSize,locale_number_format($myrow['quantity'],'Variable'),'right',0,$fill); - $pdf->addTextWrap(460,$YPos,55,$FontSize,$FormatedEffectiveAfter,'right',0,$fill); - $pdf->addTextWrap(515,$YPos,50,$FontSize,$FormatedEffectiveTo,'right',0,$fill); + $pdf->addTextWrap($Left_Margin+($myrow['level'] * 5),$YPos,90,$FontSize,$myrow['component'],'left',0,$fill); + $pdf->addTextWrap(160,$YPos,20,$FontSize,$myrow['mbflag'],'left',0,$fill); + $pdf->addTextWrap(180,$YPos,165,$FontSize,$myrow['description'],'left',0,$fill); + $pdf->addTextWrap(345,$YPos,30,$FontSize,$myrow['loccode'],'left',0,$fill); + $pdf->addTextWrap(375,$YPos,25,$FontSize,$myrow['workcentreadded'],'left',0,$fill); + $pdf->addTextWrap(400,$YPos,45,$FontSize,locale_number_format($myrow['quantity'],'Variable'),'right',0,$fill); + $pdf->addTextWrap(445,$YPos,20,$FontSize,$myrow['units'],'left',0,$fill); + $pdf->addTextWrap(465,$YPos,50,$FontSize,$FormatedEffectiveAfter,'left',0,$fill); + $pdf->addTextWrap(515,$YPos,50,$FontSize,$FormatedEffectiveTo,'left',0,$fill); if ($YPos < $Bottom_Margin + $line_height){ PrintHeader($pdf,$YPos,$PageNumber,$Page_Height,$Top_Margin,$Left_Margin,$Page_Width, @@ -312,12 +314,13 @@ $pdf->addTextWrap($Xpos,$YPos,90,$FontSize,_('Part Number'), 'left'); $pdf->addTextWrap(160,$YPos,20,$FontSize,_('M/B'), 'left'); - $pdf->addTextWrap(180,$YPos,180,$FontSize,_('Description'), 'center'); - $pdf->addTextWrap(360,$YPos,30,$FontSize,_('Locn'), 'right'); - $pdf->addTextWrap(390,$YPos,25,$FontSize,_('WC'), 'right'); - $pdf->addTextWrap(415,$YPos,45,$FontSize,_('Quantity'), 'right'); - $pdf->addTextWrap(460,$YPos,55,$FontSize,_('From Date'), 'right'); - $pdf->addTextWrap(515,$YPos,50,$FontSize,_('To Date'), 'right'); + $pdf->addTextWrap(180,$YPos,165,$FontSize,_('Description'), 'center'); + $pdf->addTextWrap(345,$YPos,30,$FontSize,_('Locn'), 'left'); + $pdf->addTextWrap(375,$YPos,25,$FontSize,_('WC'), 'left'); + $pdf->addTextWrap(400,$YPos,45,$FontSize,_('Quantity'), 'right'); + $pdf->addTextWrap(445,$YPos,20,$FontSize,_('UOM'), 'left'); + $pdf->addTextWrap(465,$YPos,50,$FontSize,_('From Date'), 'left'); + $pdf->addTextWrap(515,$YPos,50,$FontSize,_('To Date'), 'left'); $YPos =$YPos - $line_height; $FontSize=8; @@ -328,8 +331,6 @@ $pdf->addTextWrap(185,$YPos,150,$FontSize,$assemblydesc,'',0); $YPos -=(2*$line_height); $Xpos = $Left_Margin+5; - $pdf->addTextWrap($Xpos,$YPos,90,$FontSize,_(' 12345678901234567890'), 'left'); - $YPos -=$line_height; $PageNumber++; Modified: trunk/BOMIndentedReverse.php =================================================================== --- trunk/BOMIndentedReverse.php 2017-12-18 23:35:39 UTC (rev 7887) +++ trunk/BOMIndentedReverse.php 2017-12-19 00:06:37 UTC (rev 7888) @@ -166,7 +166,8 @@ $pdf->SetFillColor(224,235,255); $sql = "SELECT tempbom.*, stockmaster.description, - stockmaster.mbflag + stockmaster.mbflag, + stockmaster.units FROM tempbom INNER JOIN stockmaster ON tempbom.parent = stockmaster.stockid INNER JOIN locationusers ON locationusers.loccode=tempbom.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1 @@ -192,14 +193,15 @@ // 1) X position 2) Y position 3) Width // 4) Height 5) Text 6) Alignment 7) Border 8) Fill - True to use SetFillColor // and False to set to transparent - $pdf->addTextWrap($Left_Margin+($myrow['level'] * 5),$YPos,90,$FontSize,$myrow['parent'],'',0,$fill); - $pdf->addTextWrap(160,$YPos,20,$FontSize,$myrow['mbflag'],'',0,$fill); - $pdf->addTextWrap(180,$YPos,180,$FontSize,$myrow['description'],'',0,$fill); - $pdf->addTextWrap(360,$YPos,30,$FontSize,$myrow['loccode'],'right',0,$fill); - $pdf->addTextWrap(390,$YPos,25,$FontSize,$myrow['workcentreadded'],'right',0,$fill); - $pdf->addTextWrap(415,$YPos,45,$FontSize,locale_number_format($myrow['quantity'],'Variable'),'right',0,$fill); - $pdf->addTextWrap(460,$YPos,55,$FontSize,$FormatedEffectiveAfter,'right',0,$fill); - $pdf->addTextWrap(515,$YPos,50,$FontSize,$FormatedEffectiveTo,'right',0,$fill); + $pdf->addTextWrap($Left_Margin+($myrow['level'] * 5),$YPos,90,$FontSize,$myrow['component'],'left',0,$fill); + $pdf->addTextWrap(160,$YPos,20,$FontSize,$myrow['mbflag'],'left',0,$fill); + $pdf->addTextWrap(180,$YPos,165,$FontSize,$myrow['description'],'left',0,$fill); + $pdf->addTextWrap(345,$YPos,30,$FontSize,$myrow['loccode'],'left',0,$fill); + $pdf->addTextWrap(375,$YPos,25,$FontSize,$myrow['workcentreadded'],'left',0,$fill); + $pdf->addTextWrap(400,$YPos,45,$FontSize,locale_number_format($myrow['quantity'],'Variable'),'right',0,$fill); + $pdf->addTextWrap(445,$YPos,20,$FontSize,$myrow['units'],'left',0,$fill); + $pdf->addTextWrap(465,$YPos,50,$FontSize,$FormatedEffectiveAfter,'left',0,$fill); + $pdf->addTextWrap(515,$YPos,50,$FontSize,$FormatedEffectiveTo,'left',0,$fill); if ($YPos < $Bottom_Margin + $line_height){ PrintHeader($pdf,$YPos,$PageNumber,$Page_Height,$Top_Margin,$Left_Margin,$Page_Width, @@ -215,6 +217,7 @@ PrintHeader($pdf,$YPos,$PageNumber,$Page_Height,$Top_Margin,$Left_Margin,$Page_Width, $Right_Margin,$AssemblyDesc); } + if ($ListCount == 0) { $Title = _('Print Reverse Indented BOM Listing Error'); include('includes/header.php'); @@ -265,7 +268,6 @@ function PrintHeader(&$pdf,&$YPos,&$PageNumber,$Page_Height,$Top_Margin,$Left_Margin, $Page_Width,$Right_Margin,$AssemblyDesc) { - $line_height=12; /*PDF page header for Reverse Indented BOM Listing report */ if ($PageNumber>1){ @@ -290,23 +292,24 @@ $pdf->addTextWrap($Xpos,$YPos,90,$FontSize,_('Part Number'), 'left'); $pdf->addTextWrap(160,$YPos,20,$FontSize,_('M/B'), 'left'); - $pdf->addTextWrap(180,$YPos,180,$FontSize,_('Description'), 'center'); - $pdf->addTextWrap(360,$YPos,30,$FontSize,_('Locn'), 'right'); - $pdf->addTextWrap(390,$YPos,25,$FontSize,_('WC'), 'right'); - $pdf->addTextWrap(415,$YPos,45,$FontSize,_('Quantity'), 'right'); - $pdf->addTextWrap(460,$YPos,55,$FontSize,_('From Date'), 'right'); - $pdf->addTextWrap(515,$YPos,50,$FontSize,_('To Date'), 'right'); + $pdf->addTextWrap(180,$YPos,165,$FontSize,_('Description'), 'center'); + $pdf->addTextWrap(345,$YPos,30,$FontSize,_('Locn'), 'left'); + $pdf->addTextWrap(375,$YPos,25,$FontSize,_('WC'), 'left'); + $pdf->addTextWrap(400,$YPos,45,$FontSize,_('Quantity'), 'right'); + $pdf->addTextWrap(445,$YPos,20,$FontSize,_('UOM'), 'left'); + $pdf->addTextWrap(465,$YPos,50,$FontSize,_('From Date'), 'left'); + $pdf->addTextWrap(515,$YPos,50,$FontSize,_('To Date'), 'left'); $YPos =$YPos - $line_height; + $FontSize=8; + $YPos =$YPos - (2*$line_height); + $pdf->addTextWrap($Left_Margin+1,$YPos,60,$FontSize,_('Component:'),'',0); $pdf->addTextWrap(100,$YPos,100,$FontSize,mb_strtoupper($_POST['Part']),'',0); $pdf->addTextWrap(200,$YPos,150,$FontSize,$AssemblyDesc,'',0); $YPos -=(2*$line_height); $Xpos = $Left_Margin+5; - $FontSize=8; - $pdf->addTextWrap($Xpos,$YPos,90,$FontSize,_(' 12345678901234567890'), 'left'); - $YPos =$YPos - (2*$line_height); $PageNumber++; } // End of PrintHeader function Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-18 23:35:39 UTC (rev 7887) +++ trunk/doc/Change.log 2017-12-19 00:06:37 UTC (rev 7888) @@ -1,5 +1,6 @@ webERP Change Log +11/18/17 PaulT: BOMIndented.php, BOMIndentedReverse.php: Adjust PDF position values, and add UoM, remove stray 0-9 string output. (Reported in forums by Paul Becker) 11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) 11/15/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) 11/14/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) |
From: <tu...@us...> - 2017-12-18 23:35:41
|
Revision: 7887 http://sourceforge.net/p/web-erp/reponame/7887 Author: turbopt Date: 2017-12-18 23:35:39 +0000 (Mon, 18 Dec 2017) Log Message: ----------- PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/BOMListing.php trunk/doc/Change.log trunk/includes/PDFBOMListingPageHeader.inc Modified: trunk/BOMListing.php =================================================================== --- trunk/BOMListing.php 2017-12-15 22:54:45 UTC (rev 7886) +++ trunk/BOMListing.php 2017-12-18 23:35:39 UTC (rev 7887) @@ -22,6 +22,7 @@ bom.component, stockmaster.description as compdescription, stockmaster.decimalplaces, + stockmaster.units, bom.quantity, bom.loccode, bom.workcentreadded, @@ -86,10 +87,11 @@ $DisplayQuantity = locale_number_format($BOMList['quantity'],$BOMList['decimalplaces']); $LeftOvers = $pdf->addTextWrap(320,$YPos,50,$FontSize,ConvertSQLDate($BOMList['eff_frm']),'left'); - $LeftOvers = $pdf->addTextWrap(370,$YPos,50,$FontSize,ConvertSQLDate($BOMList['eff_to']),'left'); - $LeftOvers = $pdf->addTextWrap(420,$YPos,20,$FontSize,$BOMList['loccode'],'left'); - $LeftOvers = $pdf->addTextWrap(440,$YPos,30,$FontSize,$BOMList['workcentreadded'],'left'); + $LeftOvers = $pdf->addTextWrap(375,$YPos,50,$FontSize,ConvertSQLDate($BOMList['eff_to']),'left'); + $LeftOvers = $pdf->addTextWrap(430,$YPos,30,$FontSize,$BOMList['loccode'],'left'); + $LeftOvers = $pdf->addTextWrap(465,$YPos,30,$FontSize,$BOMList['workcentreadded'],'left'); $LeftOvers = $pdf->addTextWrap(480,$YPos,60,$FontSize,$DisplayQuantity,'right'); + $LeftOvers = $pdf->addTextWrap(540,$YPos,20,$FontSize,$BOMList['units'],'left'); if ($YPos < $Bottom_Margin + $line_height){ include('includes/PDFBOMListingPageHeader.inc'); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-15 22:54:45 UTC (rev 7886) +++ trunk/doc/Change.log 2017-12-18 23:35:39 UTC (rev 7887) @@ -1,6 +1,7 @@ webERP Change Log -11/14/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) +11/18/17 PaulT: PDFBOMListingPageHeader.inc, BOMListing.php: Adjust PDF position values, and add UoM. (Reported in forums by Paul Becker) +11/15/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) 11/14/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) 11/13/17 PaulT: PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) 11/13/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) Modified: trunk/includes/PDFBOMListingPageHeader.inc =================================================================== --- trunk/includes/PDFBOMListingPageHeader.inc 2017-12-15 22:54:45 UTC (rev 7886) +++ trunk/includes/PDFBOMListingPageHeader.inc 2017-12-18 23:35:39 UTC (rev 7887) @@ -36,12 +36,12 @@ /*set up the headings */ $Xpos = $Left_Margin+1; -$LeftOvers = $pdf->addTextWrap($Xpos,$YPos,320 - $Left_Margin,$FontSize,_('Component Part/Description'),'centre'); -$LeftOvers = $pdf->addTextWrap(300,$YPos,60,$FontSize,_('Effective After'),'centre'); -$LeftOvers = $pdf->addTextWrap(348,$YPos,60,$FontSize,_('Effective To'),'centre'); -$LeftOvers = $pdf->addTextWrap(403,$YPos,40,$FontSize,_('Locn'),'centre'); -$LeftOvers = $pdf->addTextWrap(435,$YPos,40,$FontSize,_('Wrk Cntr'),'centre'); -$LeftOvers = $pdf->addTextWrap(500,$YPos,60,$FontSize,_('Quantity'),'centre'); +$LeftOvers = $pdf->addTextWrap($Xpos,$YPos,320 - $Left_Margin,$FontSize,_('Component Part/Description'),'center'); +$LeftOvers = $pdf->addTextWrap(320,$YPos,50,$FontSize,_('Effective After'),'left'); +$LeftOvers = $pdf->addTextWrap(380,$YPos,50,$FontSize,_('Effective To'),'left'); +$LeftOvers = $pdf->addTextWrap(440,$YPos,30,$FontSize,_('Locn'),'left'); +$LeftOvers = $pdf->addTextWrap(480,$YPos,30,$FontSize,_('Wrk Cntr'),'left'); +$LeftOvers = $pdf->addTextWrap(500,$YPos,60,$FontSize,_('Quantity'),'right'); $YPos =$YPos - (2*$line_height); |
From: <tu...@us...> - 2017-12-15 22:54:47
|
Revision: 7886 http://sourceforge.net/p/web-erp/reponame/7886 Author: turbopt Date: 2017-12-15 22:54:45 +0000 (Fri, 15 Dec 2017) Log Message: ----------- MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/MRPPlannedPurchaseOrders.php trunk/MRPPlannedWorkOrders.php trunk/doc/Change.log Modified: trunk/MRPPlannedPurchaseOrders.php =================================================================== --- trunk/MRPPlannedPurchaseOrders.php 2017-12-15 01:06:48 UTC (rev 7885) +++ trunk/MRPPlannedPurchaseOrders.php 2017-12-15 22:54:45 UTC (rev 7886) @@ -149,26 +149,24 @@ while ($myrow = DB_fetch_array($result,$db)){ $YPos -=$line_height; - // Use to alternate between lines with transparent and painted background - if ($_POST['Fill'] == 'yes'){ - $fill=!$fill; - } - // Print information on part break - if ($Partctr > 0 & $holdpart != $myrow['part']) { + if ($Partctr > 0 AND $holdpart != $myrow['part']) { $pdf->addTextWrap(50,$YPos,130,$FontSize,$holddescription,'',0,$fill); $pdf->addTextWrap(180,$YPos,50,$FontSize,_('Unit Cost: '),'center',0,$fill); - $pdf->addTextWrap(230,$YPos,40,$FontSize,locale_number_format($holdcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); - $pdf->addTextWrap(270,$YPos,50,$FontSize,locale_number_format($totalpartqty, $holddecimalplaces),'right',0,$fill); - $pdf->addTextWrap(320,$YPos,60,$FontSize,locale_number_format($totalpartcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); - $pdf->addTextWrap(380,$YPos,30,$FontSize,_('M/B: '),'right',0,$fill); - $pdf->addTextWrap(410,$YPos,15,$FontSize,$holdmbflag,'right',0,$fill); + $pdf->addTextWrap(220,$YPos,40,$FontSize,locale_number_format($holdcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); + $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($totalpartqty, $holddecimalplaces),'right',0,$fill); + $pdf->addTextWrap(310,$YPos,60,$FontSize,locale_number_format($totalpartcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); + $pdf->addTextWrap(370,$YPos,30,$FontSize,_('M/B: '),'right',0,$fill); + $pdf->addTextWrap(400,$YPos,15,$FontSize,$holdmbflag,'right',0,$fill); + // Get and print supplier info for part list($lastdate,$lastsupplier,$preferredsupplier) = GetPartInfo($db,$holdpart); $displaydate = $lastdate; + if (!Is_Date($lastdate)) { $displaydate = ' '; } + $YPos -= $line_height; $pdf->addTextWrap(50,$YPos,80,$FontSize,_('Last Purchase Date: '),'left',0,$fill); $pdf->addTextWrap(130,$YPos,60,$FontSize,$displaydate,'left',0,$fill); @@ -179,6 +177,11 @@ $totalpartcost = 0; $totalpartqty = 0; $YPos -= (2*$line_height); + + // Use to alternate between lines with transparent and painted background + if ($_POST['Fill'] == 'yes'){ + $fill=!$fill; + } } // Parameters for addTextWrap are defined in /includes/class.pdf.php @@ -193,12 +196,14 @@ $pdf->addTextWrap(200,$YPos,60,$FontSize,$FormatedSupMRPDate,'right',0,$fill); $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($myrow['supplyquantity'],$myrow['decimalplaces']),'right',0,$fill); $pdf->addTextWrap(310,$YPos,60,$FontSize,locale_number_format($extcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); + if ($_POST['Consolidation'] == 'None'){ $pdf->addTextWrap(370,$YPos,80,$FontSize,$myrow['ordertype'],'right',0,$fill); $pdf->addTextWrap(450,$YPos,80,$FontSize,$myrow['orderno'],'right',0,$fill); } else { $pdf->addTextWrap(370,$YPos,100,$FontSize,$myrow['consolidatedcount'],'right',0,$fill); - }; + } + $holddescription = $myrow['description']; $holdpart = $myrow['part']; $holdmbflag = $myrow['mbflag']; @@ -214,23 +219,26 @@ PrintHeader($pdf,$YPos,$PageNumber,$Page_Height,$Top_Margin,$Left_Margin,$Page_Width, $Right_Margin,$_POST['Consolidation'],$ReportDate); } + } /*end while loop */ - } /*end while loop */ // Print summary information for last part $YPos -=$line_height; - $pdf->addTextWrap(40,$YPos,130,$FontSize,$holddescription,'',0,$fill); - $pdf->addTextWrap(170,$YPos,50,$FontSize,_('Unit Cost: '),'center',0,$fill); + $pdf->addTextWrap(50,$YPos,130,$FontSize,$holddescription,'',0,$fill); + $pdf->addTextWrap(180,$YPos,50,$FontSize,_('Unit Cost: '),'center',0,$fill); $pdf->addTextWrap(220,$YPos,40,$FontSize,locale_number_format($holdcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($totalpartqty,$holddecimalplaces),'right',0,$fill); $pdf->addTextWrap(310,$YPos,60,$FontSize,locale_number_format($totalpartcost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); $pdf->addTextWrap(370,$YPos,30,$FontSize,_('M/B: '),'right',0,$fill); $pdf->addTextWrap(400,$YPos,15,$FontSize,$holdmbflag,'right',0,$fill); + // Get and print supplier info for part list($lastdate,$lastsupplier,$preferredsupplier) = GetPartInfo($db,$holdpart); $displaydate = $lastdate; + if (!Is_Date($lastdate)) { $displaydate = ' '; } + $YPos -= $line_height; $pdf->addTextWrap(50,$YPos,80,$FontSize,_('Last Purchase Date: '),'left',0,$fill); $pdf->addTextWrap(130,$YPos,60,$FontSize,$displaydate,'left',0,$fill); @@ -246,7 +254,8 @@ $Right_Margin,$_POST['Consolidation'],$ReportDate); // include('includes/MRPPlannedPurchaseOrdersPageHeader.inc'); } -/*Print out the grand totals */ + + /*Print out the grand totals */ $pdf->addTextWrap($Left_Margin,$YPos,120,$FontSize,_('Number of Purchase Orders: '), 'left'); $pdf->addTextWrap(150,$YPos,30,$FontSize,$Partctr, 'left'); $pdf->addTextWrap(200,$YPos,100,$FontSize,_('Total Extended Cost:'), 'right'); @@ -255,7 +264,6 @@ $pdf->OutputD($_SESSION['DatabaseName'] . '_MRP_Planned_Purchase_Orders_' . Date('Y-m-d') . '.pdf'); $pdf->__destruct(); - } else { /*The option to print PDF was not hit so display form */ $Title=_('MRP Planned Purchase Orders Reporting'); Modified: trunk/MRPPlannedWorkOrders.php =================================================================== --- trunk/MRPPlannedWorkOrders.php 2017-12-15 01:06:48 UTC (rev 7885) +++ trunk/MRPPlannedWorkOrders.php 2017-12-15 22:54:45 UTC (rev 7886) @@ -68,7 +68,7 @@ stockmaster.overheadcost, computedcost ORDER BY mrpplannedorders.part,weekindex"; - } else { + } else { // This else consolidates by month $sql = "SELECT mrpplannedorders.part, SUM(mrpplannedorders.supplyquantity) as supplyquantity, EXTRACT(YEAR_MONTH from duedate) AS yearmonth, @@ -111,7 +111,7 @@ include('includes/footer.php'); exit; } - if (DB_num_rows($result)==0){ //then there's nothing to print + if (DB_num_rows($result)==0){ //then there is nothing to print $Title = _('MRP Planned Work Orders'); include('includes/header.php'); prnMsg(_('There were no items with demand greater than supply'),'info'); @@ -135,7 +135,7 @@ PrintHeader($pdf,$YPos,$PageNumber,$Page_Height,$Top_Margin,$Left_Margin, $Page_Width,$Right_Margin,$_POST['Consolidation'],$ReportDate); - $PartCounter = 0; + $Partctr = 0; $fill = false; $pdf->SetFillColor(224,235,255); // Defines color to make alternating lines highlighted $FontSize=8; @@ -151,18 +151,12 @@ while ($myrow = DB_fetch_array($result,$db)){ $YPos -=$line_height; - // Use to alternate between lines with transparent and painted background - if ($_POST['Fill'] == 'yes'){ - $fill=!$fill; - } - // Print information on part break - if ($PartCounter > 0 AND $HoldPart != $myrow['part']) { + if ($Partctr > 0 AND $HoldPart != $myrow['part']) { $pdf->addTextWrap(50,$YPos,130,$FontSize,$HoldDescription,'',0,$fill); - $pdf->addTextWrap(180,$YPos,40,$FontSize,_('Unit Cost: '),'center',0,$fill); + $pdf->addTextWrap(180,$YPos,50,$FontSize,_('Unit Cost: '),'center',0,$fill); $pdf->addTextWrap(220,$YPos,40,$FontSize,locale_number_format($HoldCost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); - $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($TotalPartQty, - $HoldDecimalPlaces),'right',0,$fill); + $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($TotalPartQty, $HoldDecimalPlaces),'right',0,$fill); $pdf->addTextWrap(310,$YPos,60,$FontSize,locale_number_format($TotalPartCost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); $pdf->addTextWrap(370,$YPos,30,$FontSize,_('M/B: '),'right',0,$fill); $pdf->addTextWrap(400,$YPos,15,$FontSize,$HoldMBFlag,'right',0,$fill); @@ -169,6 +163,11 @@ $TotalPartCost = 0; $TotalPartQty = 0; $YPos -= (2*$line_height); + + // Use to alternate between lines with transparent and painted background + if ($_POST['Fill'] == 'yes'){ + $fill=!$fill; + } } // Parameters for addTextWrap are defined in /includes/class.pdf.php @@ -181,15 +180,16 @@ $pdf->addTextWrap($Left_Margin,$YPos,110,$FontSize,$myrow['part'],'',0,$fill); $pdf->addTextWrap(150,$YPos,50,$FontSize,$FormatedSupDueDate,'right',0,$fill); $pdf->addTextWrap(200,$YPos,60,$FontSize,$FormatedSupMRPDate,'right',0,$fill); - $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($myrow['supplyquantity'], - $myrow['decimalplaces']),'right',0,$fill); + $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($myrow['supplyquantity'], $myrow['decimalplaces']),'right',0,$fill); $pdf->addTextWrap(310,$YPos,60,$FontSize,locale_number_format($ExtCost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); + if ($_POST['Consolidation'] == 'None'){ $pdf->addTextWrap(370,$YPos,80,$FontSize,$myrow['ordertype'],'right',0,$fill); $pdf->addTextWrap(450,$YPos,80,$FontSize,$myrow['orderno'],'right',0,$fill); } else { $pdf->addTextWrap(370,$YPos,100,$FontSize,$myrow['consolidatedcount'],'right',0,$fill); - }; + } + $HoldDescription = $myrow['description']; $HoldPart = $myrow['part']; $HoldMBFlag = $myrow['mbflag']; @@ -199,7 +199,7 @@ $TotalPartQty += $myrow['supplyquantity']; $Total_ExtCost += $ExtCost; - $PartCounter++; + $Partctr++; if ($YPos < $Bottom_Margin + $line_height){ PrintHeader($pdf,$YPos,$PageNumber,$Page_Height,$Top_Margin,$Left_Margin,$Page_Width, @@ -206,12 +206,12 @@ $Right_Margin,$_POST['Consolidation'],$ReportDate); // include('includes/MRPPlannedWorkOrdersPageHeader.inc'); } + } /*end while loop */ - } /*end while loop */ // Print summary information for last part $YPos -=$line_height; - $pdf->addTextWrap(40,$YPos,130,$FontSize,$HoldDescription,'',0,$fill); - $pdf->addTextWrap(170,$YPos,50,$FontSize,_('Unit Cost: '),'center',0,$fill); + $pdf->addTextWrap(50,$YPos,130,$FontSize,$HoldDescription,'',0,$fill); + $pdf->addTextWrap(180,$YPos,50,$FontSize,_('Unit Cost: '),'center',0,$fill); $pdf->addTextWrap(220,$YPos,40,$FontSize,locale_number_format($HoldCost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); $pdf->addTextWrap(260,$YPos,50,$FontSize,locale_number_format($TotalPartQty,$HoldDecimalPlaces),'right',0,$fill); $pdf->addTextWrap(310,$YPos,60,$FontSize,locale_number_format($TotalPartCost,$_SESSION['CompanyRecord']['decimalplaces']),'right',0,$fill); @@ -225,18 +225,16 @@ $Right_Margin,$_POST['Consolidation'],$ReportDate); // include('includes/MRPPlannedWorkOrdersPageHeader.inc'); } + /*Print out the grand totals */ $pdf->addTextWrap($Left_Margin,$YPos,120,$FontSize,_('Number of Work Orders: '), 'left'); - $pdf->addTextWrap(150,$YPos,30,$FontSize,$PartCounter, 'left'); + $pdf->addTextWrap(150,$YPos,30,$FontSize,$Partctr, 'left'); $pdf->addTextWrap(200,$YPos,100,$FontSize,_('Total Extended Cost:'), 'right'); - $DisplayTotalVal = locale_number_format($Total_ExtCost,2); + $DisplayTotalVal = locale_number_format($Total_ExtCost,$_SESSION['CompanyRecord']['decimalplaces']); $pdf->addTextWrap(310,$YPos,60,$FontSize,$DisplayTotalVal, 'right'); $pdf->OutputD($_SESSION['DatabaseName'] . '_MRP_Planned_Work_Orders_' . Date('Y-m-d') . '.pdf'); $pdf->__destruct(); - - - } else { // Review planned work orders $Title = _('Review/Convert MRP Planned Work Orders'); @@ -324,7 +322,7 @@ echo '<table class="selection">'; echo '<tr> <td>' . _('Consolidation') . ':</td> - <td><select name="Consolidation"> + <td><select required="required" name="Consolidation"> <option selected="selected" value="None">' . _('None') . '</option> <option value="Weekly">' . _('Weekly') . '</option> <option value="Monthly">' . _('Monthly') . '</option> @@ -331,8 +329,8 @@ </select></td> </tr> <tr> - <td>' . _('Print Option') . ':</td><td> - <select name="Fill"> + <td>' . _('Print Option') . ':</td> + <td><select name="Fill"> <option selected="selected" value="yes">' . _('Print With Alternating Highlighted Lines') . '</option> <option value="no">' . _('Plain Print') . '</option> </select></td> @@ -402,5 +400,5 @@ $FontSize=8; $YPos =$YPos - (2*$line_height); $PageNumber++; -} // End of PrintHeader() function +} // End of PrintHeader function ?> \ No newline at end of file Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-15 01:06:48 UTC (rev 7885) +++ trunk/doc/Change.log 2017-12-15 22:54:45 UTC (rev 7886) @@ -1,6 +1,7 @@ webERP Change Log -11/13/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) +11/14/17 PaulT: MRPPlannedPurchaseOrders.php, MRPPlannedWorkOrders.php: Fix PDF highlighting, PDF position value adjustments, and other minor tweaks. (Reported in forums by Paul Becker) +11/14/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) 11/13/17 PaulT: PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) 11/13/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) 11/13/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) |
From: <tu...@us...> - 2017-12-15 01:06:50
|
Revision: 7885 http://sourceforge.net/p/web-erp/reponame/7885 Author: turbopt Date: 2017-12-15 01:06:48 +0000 (Fri, 15 Dec 2017) Log Message: ----------- CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) Modified Paths: -------------- trunk/CustomerReceipt.php trunk/doc/Change.log Modified: trunk/CustomerReceipt.php =================================================================== --- trunk/CustomerReceipt.php 2017-12-14 03:57:51 UTC (rev 7884) +++ trunk/CustomerReceipt.php 2017-12-15 01:06:48 UTC (rev 7885) @@ -1018,7 +1018,10 @@ <td>' . $ReceiptItem->GLCode.' - '.$myrow['accountname'] . '</td> <td>' . stripslashes($ReceiptItem->Narrative) . '</td> <td>' . $ReceiptItem->TagName . '</td> - <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Delete=' . $ReceiptItem->ID . '&Type=' . $_GET['Type'] . '&identifier=' . $identifier . '">' . _('Delete') . '</a></td> + <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Delete=' . urlencode($ReceiptItem->ID) + . '&Type=' . urlencode($_GET['Type']) + . '&identifier=' . urlencode($identifier) . '">' + . _('Delete') . '</a></td> </tr>'; $BatchTotal= $BatchTotal + $ReceiptItem->Amount; } Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-14 03:57:51 UTC (rev 7884) +++ trunk/doc/Change.log 2017-12-15 01:06:48 UTC (rev 7885) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: CustomerReceipt.php: Wrap delete link parameter values with urlencode(). (Suggested by Tim in forums) 11/13/17 PaulT: PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) 11/13/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) 11/13/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) |
From: <tu...@us...> - 2017-12-14 03:57:53
|
Revision: 7884 http://sourceforge.net/p/web-erp/reponame/7884 Author: turbopt Date: 2017-12-14 03:57:51 +0000 (Thu, 14 Dec 2017) Log Message: ----------- PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/PDFCOA.php trunk/doc/Change.log Modified: trunk/PDFCOA.php =================================================================== --- trunk/PDFCOA.php 2017-12-14 00:10:50 UTC (rev 7883) +++ trunk/PDFCOA.php 2017-12-14 03:57:51 UTC (rev 7884) @@ -88,6 +88,7 @@ type, testvalue, sampledate, + prodspeckey, groupby FROM qasamples INNER JOIN sampleresults ON sampleresults.sampleid=qasamples.sampleid @@ -108,6 +109,7 @@ type, testvalue, sampledate, + prodspeckey, groupby FROM qasamples INNER JOIN sampleresults ON sampleresults.sampleid=qasamples.sampleid Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-14 00:10:50 UTC (rev 7883) +++ trunk/doc/Change.log 2017-12-14 03:57:51 UTC (rev 7884) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: PDFCOA.php: Add column prodspeckey to queries which is used as a description alternative. (Reported in forums by Paul Becker) 11/13/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) 11/13/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) 11/13/17 PaulT: PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) |
From: <tu...@us...> - 2017-12-14 00:10:52
|
Revision: 7883 http://sourceforge.net/p/web-erp/reponame/7883 Author: turbopt Date: 2017-12-14 00:10:50 +0000 (Thu, 14 Dec 2017) Log Message: ----------- PDFCOA.php, PDFProdSpec: Minor value adjustment to correct inconsistent footer wrap. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/PDFCOA.php trunk/PDFProdSpec.php trunk/doc/Change.log Modified: trunk/PDFCOA.php =================================================================== --- trunk/PDFCOA.php 2017-12-13 22:49:21 UTC (rev 7882) +++ trunk/PDFCOA.php 2017-12-14 00:10:50 UTC (rev 7883) @@ -312,7 +312,7 @@ $LeftOvers = $pdf->addTextWrap($XPos+5,$YPos,500,$FontSize,$Disclaimer); while (mb_strlen($LeftOvers) > 1) { $YPos -= $line_height; - $LeftOvers = $pdf->addTextWrap($XPos+5,$YPos,445,$FontSize, $LeftOvers, 'left'); + $LeftOvers = $pdf->addTextWrap($XPos+5,$YPos,500,$FontSize, $LeftOvers, 'left'); } $pdf->OutputI($_SESSION['DatabaseName'] . 'COA' . date('Y-m-d') . '.pdf'); Modified: trunk/PDFProdSpec.php =================================================================== --- trunk/PDFProdSpec.php 2017-12-13 22:49:21 UTC (rev 7882) +++ trunk/PDFProdSpec.php 2017-12-14 00:10:50 UTC (rev 7883) @@ -280,7 +280,7 @@ $LeftOvers = $pdf->addTextWrap($XPos+5,$YPos,500,$FontSize,$Disclaimer); while (mb_strlen($LeftOvers) > 1) { $YPos -= $line_height; - $LeftOvers = $pdf->addTextWrap($XPos+5,$YPos,445,$FontSize, $LeftOvers, 'left'); + $LeftOvers = $pdf->addTextWrap($XPos+5,$YPos,500,$FontSize, $LeftOvers, 'left'); } $pdf->OutputI($_SESSION['DatabaseName'] . '_ProductSpecification_' . date('Y-m-d') . '.pdf'); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-13 22:49:21 UTC (rev 7882) +++ trunk/doc/Change.log 2017-12-14 00:10:50 UTC (rev 7883) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: PDFCOA.php, PDFProdSpec: Minor value adjust to correct inconsistent footer wrap. (Reported in forums by Paul Becker) 11/13/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) 11/13/17 PaulT: PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) 11/13/17 PaulT: CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) |
From: <tu...@us...> - 2017-12-13 22:49:23
|
Revision: 7882 http://sourceforge.net/p/web-erp/reponame/7882 Author: turbopt Date: 2017-12-13 22:49:21 +0000 (Wed, 13 Dec 2017) Log Message: ----------- HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) Modified Paths: -------------- trunk/HistoricalTestResults.php trunk/SelectQASamples.php trunk/TestPlanResults.php trunk/doc/Change.log Modified: trunk/HistoricalTestResults.php =================================================================== --- trunk/HistoricalTestResults.php 2017-12-13 20:17:22 UTC (rev 7881) +++ trunk/HistoricalTestResults.php 2017-12-13 22:49:21 UTC (rev 7882) @@ -70,11 +70,11 @@ echo '</tr> <tr> <td>' . _('From Sample Date') . ': </td> - <td><input name="FromDate" size="10" class="date" value="' . $_POST['FromDate'] . '"/></td> + <td><input name="FromDate" size="10" class="date" value="' . $_POST['FromDate'] . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /></td> </tr> <tr> <td> ' . _('To Sample Date') . ':</td> - <td> <input name="ToDate" size="10" class="date" value="' . $_POST['ToDate'] . '"/></td> + <td> <input name="ToDate" size="10" class="date" value="' . $_POST['ToDate'] . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /></td> </tr> </table> </div> Modified: trunk/SelectQASamples.php =================================================================== --- trunk/SelectQASamples.php 2017-12-13 20:17:22 UTC (rev 7881) +++ trunk/SelectQASamples.php 2017-12-13 22:49:21 UTC (rev 7882) @@ -248,7 +248,7 @@ echo _('For the part') . ':<b>' . $SelectedStockItem . '</b> ' . _('and') . ' <input type="hidden" name="SelectedStockItem" value="' . $SelectedStockItem . '" />'; } echo _('Lot Number') . ': <input name="LotNumber" autofocus="autofocus" maxlength="20" size="12" value="' . $LotNumber . '"/> ' . _('Sample ID') . ': <input name="SampleID" maxlength="10" size="10" value="' . $SampleID . '"/> '; - echo _('From Sample Date') . ': <input name="FromDate" size="10" class="date" value="' . $_POST['FromDate'] . '"/> ' . _('To Sample Date') . ': <input name="ToDate" size="10" class="date" value="' . $_POST['ToDate'] . '"/> '; + echo _('From Sample Date') . ': <input name="FromDate" size="10" class="date" value="' . $_POST['FromDate'] . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /> ' . _('To Sample Date') . ': <input name="ToDate" size="10" class="date" value="' . $_POST['ToDate'] . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /> '; echo '<input type="submit" name="SearchSamples" value="' . _('Search Samples') . '" /></td> </tr> </table>'; @@ -509,7 +509,7 @@ </tr> <tr> <td>' . _('Sample Date') . ':</td> - <td><input class="date" type="text" name="SampleDate" size="10" maxlength="10" value="' . $_POST['SampleDate']. '" /></td> + <td><input class="date" type="text" name="SampleDate" size="10" maxlength="10" value="' . $_POST['SampleDate']. '" alt="' . $_SESSION['DefaultDateFormat'] . '" /></td> </tr> <tr> <td>' . _('Use for Cert?') . ':</td> Modified: trunk/TestPlanResults.php =================================================================== --- trunk/TestPlanResults.php 2017-12-13 20:17:22 UTC (rev 7881) +++ trunk/TestPlanResults.php 2017-12-13 22:49:21 UTC (rev 7882) @@ -125,7 +125,7 @@ echo _('For the part') . ':<b>' . $SelectedStockItem . '</b> ' . _('and') . ' <input type="hidden" name="SelectedStockItem" value="' . $SelectedStockItem . '" />'; } echo _('Lot Number') . ': <input name="LotNumber" autofocus="autofocus" maxlength="20" size="12" value="' . $LotNumber . '"/> ' . _('Sample ID') . ': <input name="SampleID" maxlength="10" size="10" value="' . $SampleID . '"/> '; - echo _('From Sample Date') . ': <input name="FromDate" size="10" class="date" value="' . $_POST['FromDate'] . '"/> ' . _('To Sample Date') . ': <input name="ToDate" size="10" class="date" value="' . $_POST['ToDate'] . '"/> '; + echo _('From Sample Date') . ': <input name="FromDate" size="10" class="date" value="' . $_POST['FromDate'] . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /> ' . _('To Sample Date') . ': <input name="ToDate" size="10" class="date" value="' . $_POST['ToDate'] . '" alt="' . $_SESSION['DefaultDateFormat'] . '" /> '; echo '<input type="submit" name="SearchSamples" value="' . _('Search Samples') . '" /></td> </tr> </table>'; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-13 20:17:22 UTC (rev 7881) +++ trunk/doc/Change.log 2017-12-13 22:49:21 UTC (rev 7882) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: HistoricalTestResults.php, SelectQASamples.php, TestPlanResults.php: Fix date inputs to work with the date picker. (Reported in forums by briantmg) 11/13/17 PaulT: PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) 11/13/17 PaulT: CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) 11/13/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) |
From: <tu...@us...> - 2017-12-13 20:17:25
|
Revision: 7881 http://sourceforge.net/p/web-erp/reponame/7881 Author: turbopt Date: 2017-12-13 20:17:22 +0000 (Wed, 13 Dec 2017) Log Message: ----------- PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/PDFQALabel.php trunk/doc/Change.log Modified: trunk/PDFQALabel.php =================================================================== --- trunk/PDFQALabel.php 2017-12-13 19:58:15 UTC (rev 7880) +++ trunk/PDFQALabel.php 2017-12-13 20:17:22 UTC (rev 7881) @@ -91,6 +91,9 @@ } //controlled item*/ else { + if ($PageNumber>1){ + $pdf->newPage(); + } $pdf->addJpegFromFile($_SESSION['LogoFile'] ,$FormDesign->logo->x,$Page_Height-$FormDesign->logo->y,$FormDesign->logo->width,$FormDesign->logo->height); $LeftOvers = $pdf->addText($FormDesign->ItemNbr->x,$Page_Height-$FormDesign->ItemNbr->y,$FormDesign->ItemNbr->FontSize,'Item: ' . $myrow['itemcode']); $LeftOvers = $pdf->addText($FormDesign->ItemDesc->x,$Page_Height-$FormDesign->ItemDesc->y,$FormDesign->ItemDesc->FontSize,'Description: ' . $myrow['itemdescription']); @@ -99,9 +102,6 @@ //$LeftOvers = $pdf->addText($FormDesign->Lot->x,$Page_Height-$FormDesign->Lot->y,$FormDesign->Lot->FontSize,'Lot: ' . $myrow['serialno']); $LeftOvers = $pdf->addText($FormDesign->ReceiptDate->x,$Page_Height-$FormDesign->ReceiptDate->y,$FormDesign->ReceiptDate->FontSize,'Receipt Date: ' . $myrow['deliverydate']); $LeftOvers = $pdf->addText($FormDesign->OrderNumber->x,$Page_Height-$FormDesign->OrderNumber->y,$FormDesign->OrderNumber->FontSize,'P/O: ' . $myrow['orderno']); - if ($PageNumber>1){ - $pdf->newPage(); - } $PageNumber++; } //else not controlled } //end of loop around GRNs to print Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-13 19:58:15 UTC (rev 7880) +++ trunk/doc/Change.log 2017-12-13 20:17:22 UTC (rev 7881) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: PDFQALabel.php: Overlapping in the PDF when printing non-controlled items. (Reported in forums by Paul Becker) 11/13/17 PaulT: CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) 11/13/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) 11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) |
From: <tu...@us...> - 2017-12-13 19:58:17
|
Revision: 7880 http://sourceforge.net/p/web-erp/reponame/7880 Author: turbopt Date: 2017-12-13 19:58:15 +0000 (Wed, 13 Dec 2017) Log Message: ----------- CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/CustomerReceipt.php trunk/doc/Change.log Modified: trunk/CustomerReceipt.php =================================================================== --- trunk/CustomerReceipt.php 2017-12-13 19:23:22 UTC (rev 7879) +++ trunk/CustomerReceipt.php 2017-12-13 19:58:15 UTC (rev 7880) @@ -270,7 +270,7 @@ $BankAccounts[$i]= $Act[0]; $i++; } - + /*Start a transaction to do the whole lot inside */ $result = DB_Txn_Begin(); $_SESSION['ReceiptBatch' . $identifier]->BatchNo = GetNextTransNo(12,$db); @@ -1018,7 +1018,7 @@ <td>' . $ReceiptItem->GLCode.' - '.$myrow['accountname'] . '</td> <td>' . stripslashes($ReceiptItem->Narrative) . '</td> <td>' . $ReceiptItem->TagName . '</td> - <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Delete=' . $ReceiptItem->ID . '&Type=' . $_GET['Type']. '">' . _('Delete') . '</a></td> + <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Delete=' . $ReceiptItem->ID . '&Type=' . $_GET['Type'] . '&identifier=' . $identifier . '">' . _('Delete') . '</a></td> </tr>'; $BatchTotal= $BatchTotal + $ReceiptItem->Amount; } Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-13 19:23:22 UTC (rev 7879) +++ trunk/doc/Change.log 2017-12-13 19:58:15 UTC (rev 7880) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: CustomerReceipt.php: Add identifier to URL for delete link. (Reported in forums by Paul Becker) 11/13/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) 11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) 11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. |
From: <tu...@us...> - 2017-12-13 19:23:24
|
Revision: 7879 http://sourceforge.net/p/web-erp/reponame/7879 Author: turbopt Date: 2017-12-13 19:23:22 +0000 (Wed, 13 Dec 2017) Log Message: ----------- QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) Modified Paths: -------------- trunk/QATests.php trunk/doc/Change.log Modified: trunk/QATests.php =================================================================== --- trunk/QATests.php 2017-12-12 23:23:56 UTC (rev 7878) +++ trunk/QATests.php 2017-12-13 19:23:22 UTC (rev 7879) @@ -259,7 +259,7 @@ if ($_POST['Type']==0){ echo '<option selected="selected" value="0">' . _('Text Box') . '</option>'; } else { - echo '<option Type="0">' . _('Text Box') . '</option>'; + echo '<option value="0">' . _('Text Box') . '</option>'; } if ($_POST['Type']==1){ echo '<option selected="selected" value="1">' . _('Select Box') . '</option>'; @@ -269,7 +269,7 @@ if ($_POST['Type']==2){ echo '<option selected="selected" value="2">' . _('Check Box') . '</option>'; } else { - echo '<option Type="2">' . _('Check Box') . '</option>'; + echo '<option value="2">' . _('Check Box') . '</option>'; } if ($_POST['Type']==3){ echo '<option selected="selected" value="3">' . _('Date Box') . '</option>'; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-12 23:23:56 UTC (rev 7878) +++ trunk/doc/Change.log 2017-12-13 19:23:22 UTC (rev 7879) @@ -1,5 +1,6 @@ webERP Change Log +11/13/17 PaulT: QATests.php: Correct wrong attribute name in two option tags. (Reported in forums by Paul Becker) 11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) 11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. 11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php |
From: <rc...@us...> - 2017-12-12 23:24:02
|
Revision: 7878 http://sourceforge.net/p/web-erp/reponame/7878 Author: rchacon Date: 2017-12-12 23:23:56 +0000 (Tue, 12 Dec 2017) Log Message: ----------- Rebuild languages files. 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-12-12 04:30:30 UTC (rev 7877) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-12-12 23:23:56 UTC (rev 7878) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-07 22:00-0600\n" +"POT-Creation-Date: 2017-12-12 17:19-0600\n" "PO-Revision-Date: 2017-10-02 10:22-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -257,7 +257,7 @@ #: SelectContract.php:69 SelectCreditItems.php:221 SelectCreditItems.php:292 #: SelectCustomer.php:258 SelectGLAccount.php:86 SelectOrderItems.php:594 #: SelectOrderItems.php:1522 SelectOrderItems.php:1622 SelectProduct.php:539 -#: SelectQASamples.php:45 SelectSalesOrder.php:545 SelectSupplier.php:233 +#: SelectQASamples.php:45 SelectSalesOrder.php:547 SelectSupplier.php:233 #: 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 @@ -268,7 +268,7 @@ #: 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 +#: Z_BottomUpCosts.php:57 ../webSHOP/includes/header.php:218 msgid "Search" msgstr "إبحث" @@ -788,8 +788,8 @@ #: WWW_Users.php:333 includes/PDFPickingListHeader.inc:25 #: includes/PDFStatementPageHeader.inc:76 includes/PDFTransPageHeader.inc:85 #: includes/PDFTransPageHeaderPortrait.inc:113 includes/PDFWOPageHeader.inc:19 -#: includes/PO_PDFOrderPageHeader.inc:29 ../webSHOP/Checkout.php:298 -#: ../webSHOP/Register.php:595 +#: includes/PO_PDFOrderPageHeader.inc:29 ../webSHOP/Checkout.php:443 +#: ../webSHOP/Register.php:607 msgid "Email" msgstr "" @@ -834,7 +834,7 @@ msgstr "" #: AddCustomerContacts.php:236 Factors.php:234 SupplierContacts.php:239 -#: ../webSHOP/Checkout.php:379 ../webSHOP/Register.php:610 +#: ../webSHOP/Checkout.php:527 ../webSHOP/Register.php:622 msgid "Contact Name" msgstr "" @@ -842,8 +842,8 @@ #: PO_Header.php:1028 PO_Header.php:1113 SelectCreditItems.php:246 #: SelectCustomer.php:406 SelectOrderItems.php:632 SupplierTenderCreate.php:395 #: includes/PDFStatementPageHeader.inc:72 includes/PDFTransPageHeader.inc:84 -#: includes/PDFTransPageHeaderPortrait.inc:109 ../webSHOP/Checkout.php:389 -#: ../webSHOP/Register.php:255 ../webSHOP/Register.php:723 +#: includes/PDFTransPageHeaderPortrait.inc:109 ../webSHOP/Checkout.php:537 +#: ../webSHOP/Register.php:260 ../webSHOP/Register.php:735 msgid "Phone" msgstr "" @@ -1069,7 +1069,7 @@ #: SelectCompletedOrder.php:506 SelectContract.php:147 #: SelectCreditItems.php:1019 SelectOrderItems.php:1532 #: SelectOrderItems.php:1703 SelectProduct.php:559 SelectProduct.php:848 -#: SelectQASamples.php:299 SelectQASamples.php:397 SelectSalesOrder.php:603 +#: SelectQASamples.php:299 SelectQASamples.php:397 SelectSalesOrder.php:605 #: SelectWorkOrder.php:219 Shipt_Select.php:191 StockClone.php:695 #: StockCounts.php:142 StockDispatch.php:506 StockLocStatus.php:176 #: StockQuantityByDate.php:109 Stocks.php:1018 SuppCreditGRNs.php:92 @@ -1090,7 +1090,7 @@ #: includes/PDFStockTransferHeader.inc:36 includes/PDFTopItemsHeader.inc:50 #: includes/PDFTransPageHeader.inc:211 #: includes/PDFTransPageHeaderPortrait.inc:256 includes/DefineLabelClass.php:12 -#: includes/DefineLabelClass.php:45 ../webSHOP/includes/PlaceOrder.php:236 +#: includes/DefineLabelClass.php:45 ../webSHOP/includes/PlaceOrder.php:250 msgid "Description" msgstr "" @@ -1139,8 +1139,8 @@ #: includes/PDFQuotationPortraitPageHeader.inc:100 #: includes/PO_PDFOrderPageHeader.inc:81 #: reportwriter/languages/en_US/reports.php:107 -#: ../webSHOP/includes/DisplayShoppingCart.php:7 -#: ../webSHOP/includes/PlaceOrder.php:285 +#: ../webSHOP/includes/DisplayShoppingCart.php:8 +#: ../webSHOP/includes/PlaceOrder.php:299 #, php-format msgid "Total" msgstr "" @@ -1280,7 +1280,7 @@ #: Payments.php:451 PDFRemittanceAdvice.php:85 PurchData.php:114 #: PurchData.php:132 PurchData.php:360 RecurringSalesOrders.php:267 #: ReverseGRN.php:197 ReverseGRN.php:211 ReverseGRN.php:391 -#: SelectCreditItems.php:1454 SelectSalesOrder.php:213 SelectSalesOrder.php:379 +#: SelectCreditItems.php:1454 SelectSalesOrder.php:213 SelectSalesOrder.php:381 #: 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 @@ -1303,7 +1303,7 @@ #: includes/PDFPaymentRun_PymtFooter.php:158 #: includes/PDFPaymentRun_PymtFooter.php:189 #: ../webSHOP/includes/DatabaseFunctions.php:60 -#: ../webSHOP/includes/Functions.php:438 ../webSHOP/includes/PlaceOrder.php:70 +#: ../webSHOP/includes/Functions.php:448 ../webSHOP/includes/PlaceOrder.php:68 msgid "The SQL that failed was" msgstr "" @@ -1460,7 +1460,7 @@ #: StockCategorySalesInquiry.php:154 StockCategorySalesInquiry.php:188 #: StockCategorySalesInquiry.php:189 StockCategorySalesInquiry.php:194 #: StockCategorySalesInquiry.php:217 StockCategorySalesInquiry.php:230 -#: TopItems.php:193 TopItems.php:194 ../webSHOP/includes/Functions.php:41 +#: TopItems.php:193 TopItems.php:194 ../webSHOP/includes/Functions.php:40 msgid "N/A" msgstr "" @@ -1710,7 +1710,7 @@ #: PO_SelectOSPurchOrder.php:655 PrintCustStatements.php:84 #: PrintCustStatements.php:533 PrintCustStatements.php:553 #: PrintCustTrans.php:546 PrintCustTransPortrait.php:565 -#: PurchasesReport.php:227 SelectSalesOrder.php:918 SuppWhereAlloc.php:196 +#: PurchasesReport.php:227 SelectSalesOrder.php:920 SuppWhereAlloc.php:196 #: UserGLAccounts.php:254 msgid "Print" msgstr "" @@ -1909,7 +1909,7 @@ #: SalesGraph.php:186 SalesInquiry.php:1096 SalesInquiry.php:1159 #: SelectCreditItems.php:983 SelectOrderItems.php:1630 #: SelectOrderItems.php:1633 SelectProduct.php:547 SelectProduct.php:549 -#: SelectSalesOrder.php:575 StockCategorySalesInquiry.php:35 +#: SelectSalesOrder.php:577 StockCategorySalesInquiry.php:35 #: StockCategorySalesInquiry.php:37 StockDispatch.php:82 StockDispatch.php:396 #: StockDispatch.php:398 StockLocStatus.php:74 StockLocStatus.php:76 #: StockLocStatus.php:94 StockLocStatus.php:99 StockLocStatus.php:104 @@ -2018,7 +2018,7 @@ #: SelectCompletedOrder.php:505 SelectCreditItems.php:1018 #: SelectCustomer.php:401 SelectGLAccount.php:134 SelectOrderItems.php:1531 #: SelectOrderItems.php:1702 SelectProduct.php:345 SelectProduct.php:846 -#: SelectQASamples.php:298 SelectSalesOrder.php:602 SelectSupplier.php:293 +#: SelectQASamples.php:298 SelectSalesOrder.php:604 SelectSupplier.php:293 #: SelectWorkOrder.php:218 SellThroughSupport.php:159 Shipt_Select.php:190 #: SpecialOrder.php:148 StockCategories.php:263 SupplierPriceList.php:275 #: SupplierPriceList.php:466 SupplierTenderCreate.php:617 @@ -2105,7 +2105,7 @@ msgstr "" #: BankAccounts.php:12 GLCashFlowsSetup.php:67 TaxAuthorities.php:149 -#: ../webSHOP/includes/Functions.php:755 +#: ../webSHOP/includes/Functions.php:768 msgid "Bank" msgstr "" @@ -2228,7 +2228,7 @@ #: SupplierTransInquiry.php:117 SuppPriceList.php:340 Z_ImportPriceList.php:98 #: includes/PDFBankingSummaryPageHeader.inc:42 #: includes/PDFDebtorBalsPageHeader.inc:33 -#: includes/PDFSupplierBalsPageHeader.inc:36 +#: includes/PDFSupplierBalsPageHeader.inc:36 ../webSHOP/Checkout.php:401 msgid "Currency" msgstr "" @@ -2770,7 +2770,7 @@ #: includes/PDFPeriodStockTransListingPageHeader.inc:52 #: includes/PDFStockComparisonPageHeader.inc:36 #: includes/PDFSuppTransListingPageHeader.inc:49 -#: ../webSHOP/includes/Functions.php:764 +#: ../webSHOP/includes/Functions.php:777 msgid "Reference" msgstr "" @@ -2934,8 +2934,8 @@ #: includes/InputSerialItems.php:131 includes/InputSerialItems.php:137 #: includes/OutputSerialItems.php:38 includes/OutputSerialItems.php:43 #: includes/OutputSerialItems.php:49 -#: ../webSHOP/includes/DisplayShoppingCart.php:8 -#: ../webSHOP/includes/PlaceOrder.php:237 +#: ../webSHOP/includes/DisplayShoppingCart.php:9 +#: ../webSHOP/includes/PlaceOrder.php:251 msgid "Quantity" msgstr "" @@ -3081,7 +3081,7 @@ #: PurchaseByPrefSupplier.php:415 ReorderLevelLocation.php:75 #: ReorderLevelLocation.php:76 SelectCompletedOrder.php:507 #: SelectOrderItems.php:1534 SelectOrderItems.php:1706 SelectQASamples.php:300 -#: SelectSalesOrder.php:604 SelectWorkOrder.php:220 Shipt_Select.php:192 +#: SelectSalesOrder.php:606 SelectWorkOrder.php:220 Shipt_Select.php:192 #: TestPlanResults.php:178 TopItems.php:174 includes/PDFTopItemsHeader.inc:54 msgid "On Hand" msgstr "" @@ -3247,7 +3247,7 @@ #: SelectCustomer.php:277 SelectCustomer.php:283 SelectCustomer.php:329 #: SelectGLAccount.php:100 SelectOrderItems.php:604 SelectOrderItems.php:607 #: SelectOrderItems.php:1658 SelectProduct.php:569 SelectProduct.php:578 -#: SelectQASamples.php:280 SelectSalesOrder.php:587 SelectSupplier.php:244 +#: SelectQASamples.php:280 SelectSalesOrder.php:589 SelectSupplier.php:244 #: SelectWorkOrder.php:206 SellThroughSupport.php:202 Shipt_Select.php:174 #: SuppFixedAssetChgs.php:122 SupplierPriceList.php:54 #: SupplierPriceList.php:414 SupplierTenderCreate.php:566 @@ -3278,7 +3278,7 @@ #: StockTransfers.php:552 StockUsage.php:64 SupplierPriceList.php:54 #: SupplierTenderCreate.php:706 SupplierTenders.php:433 TestPlanResults.php:158 #: WorkOrderEntry.php:938 WorkOrderIssue.php:985 Z_ChangeStockCode.php:200 -#: ../webSHOP/includes/PlaceOrder.php:235 +#: ../webSHOP/includes/PlaceOrder.php:249 msgid "Stock Code" msgstr "" @@ -3301,7 +3301,7 @@ #: MRPReport.php:605 PO_Items.php:852 PO_SelectOSPurchOrder.php:65 #: PO_SelectPurchOrder.php:48 SelectCompletedOrder.php:98 #: SelectCreditItems.php:302 SelectProduct.php:599 SelectQASamples.php:176 -#: SelectSalesOrder.php:1035 SelectWorkOrder.php:51 Shipt_Select.php:61 +#: SelectSalesOrder.php:1037 SelectWorkOrder.php:51 Shipt_Select.php:61 #: SupplierPriceList.php:81 SupplierTenderCreate.php:731 #: SupplierTenders.php:576 TestPlanResults.php:59 WorkOrderEntry.php:112 #: WorkOrderIssue.php:630 @@ -3334,7 +3334,7 @@ #: ProductSpecs.php:166 ProductSpecs.php:387 QATests.php:253 QATests.php:394 #: SelectCompletedOrder.php:510 SelectCreditItems.php:1020 #: SelectOrderItems.php:1533 SelectOrderItems.php:1705 SelectProduct.php:159 -#: SelectProduct.php:850 SelectQASamples.php:301 SelectSalesOrder.php:605 +#: SelectProduct.php:850 SelectQASamples.php:301 SelectSalesOrder.php:607 #: SelectWorkOrder.php:221 Shipments.php:400 Shipments.php:487 #: Shipt_Select.php:194 StockLocTransferReceive.php:546 #: SupplierPriceList.php:277 SupplierTenderCreate.php:854 @@ -3953,7 +3953,7 @@ #: CollectiveWorkOrderCost.php:192 InternalStockRequestInquiry.php:550 #: PO_SelectOSPurchOrder.php:132 PO_SelectPurchOrder.php:106 #: SelectCompletedOrder.php:229 SelectQASamples.php:235 -#: SelectSalesOrder.php:1075 SelectWorkOrder.php:111 TestPlanResults.php:118 +#: SelectSalesOrder.php:1077 SelectWorkOrder.php:111 TestPlanResults.php:118 msgid "The SQL used to retrieve the searched parts was" msgstr "" @@ -3967,8 +3967,8 @@ #: PO_SelectPurchOrder.php:42 PO_SelectPurchOrder.php:116 PrintCheque.php:50 #: PrintCheque.php:175 SelectCompletedOrder.php:78 SelectCompletedOrder.php:83 #: SelectCompletedOrder.php:89 SelectCompletedOrder.php:237 -#: SelectContract.php:34 SelectQASamples.php:248 SelectSalesOrder.php:449 -#: SelectSalesOrder.php:453 SelectWorkOrder.php:131 Shipt_Select.php:48 +#: SelectContract.php:34 SelectQASamples.php:248 SelectSalesOrder.php:451 +#: SelectSalesOrder.php:455 SelectWorkOrder.php:131 Shipt_Select.php:48 #: StockClone.php:1080 StockMovements.php:67 Stocks.php:397 Stocks.php:1408 #: TestPlanResults.php:125 includes/PDFBOMListingPageHeader.inc:21 #: includes/PDFCustomerListPageHeader.inc:31 @@ -4024,13 +4024,13 @@ #: CollectiveWorkOrderCost.php:299 PO_SelectOSPurchOrder.php:267 #: PO_SelectPurchOrder.php:181 SelectCompletedOrder.php:468 -#: SelectCreditItems.php:981 SelectQASamples.php:266 SelectSalesOrder.php:573 +#: SelectCreditItems.php:981 SelectQASamples.php:266 SelectSalesOrder.php:575 #: SelectWorkOrder.php:193 Shipt_Select.php:158 TestPlanResults.php:144 #: WorkOrderEntry.php:900 WorkOrderIssue.php:961 msgid "Select a stock category" msgstr "" -#: CollectiveWorkOrderCost.php:307 SelectSalesOrder.php:582 +#: CollectiveWorkOrderCost.php:307 SelectSalesOrder.php:584 #: SelectWorkOrder.php:201 msgid "Enter text extract(s) in the description" msgstr "" @@ -4038,7 +4038,7 @@ #: CollectiveWorkOrderCost.php:312 ContractBOM.php:331 CounterReturns.php:1658 #: CounterSales.php:2235 PO_Items.php:1160 SelectCompletedOrder.php:485 #: SelectCreditItems.php:1002 SelectOrderItems.php:1658 -#: SelectSalesOrder.php:587 SelectWorkOrder.php:206 +#: SelectSalesOrder.php:589 SelectWorkOrder.php:206 msgid "Enter extract of the Stock Code" msgstr "" @@ -4049,7 +4049,7 @@ #: CollectiveWorkOrderCost.php:317 InternalStockRequestInquiry.php:242 #: PO_SelectOSPurchOrder.php:292 PO_SelectPurchOrder.php:202 #: SelectCompletedOrder.php:491 SelectQASamples.php:287 -#: SelectSalesOrder.php:593 SelectWorkOrder.php:211 Shipt_Select.php:182 +#: SelectSalesOrder.php:595 SelectWorkOrder.php:211 Shipt_Select.php:182 #: TestPlanResults.php:165 msgid "Show All" msgstr "" @@ -4067,8 +4067,8 @@ #: CollectiveWorkOrderCost.php:446 FTP_RadioBeacon.php:49 #: SelectContract.php:142 SelectContract.php:172 -#: SelectRecurringSalesOrder.php:90 SelectSalesOrder.php:850 -#: SelectSalesOrder.php:868 SelectWorkOrder.php:333 Shipt_Select.php:331 +#: SelectRecurringSalesOrder.php:90 SelectSalesOrder.php:852 +#: SelectSalesOrder.php:870 SelectWorkOrder.php:333 Shipt_Select.php:331 #: UserSettings.php:251 Z_poEditLangHeader.php:108 Z_poEditLangModule.php:175 #: Z_poEditLangRemaining.php:139 #, php-format @@ -4275,7 +4275,7 @@ #: CompanyPreferences.php:226 CustLoginSetup.php:162 Suppliers.php:737 #: Suppliers.php:981 SupplierTenderCreate.php:415 SuppLoginSetup.php:145 -#: WWW_Users.php:523 ../webSHOP/Checkout.php:430 +#: WWW_Users.php:523 ../webSHOP/Checkout.php:578 msgid "Email Address" msgstr "" @@ -4467,7 +4467,7 @@ #: CustWhereAlloc.php:33 CustWhereAlloc.php:38 CustWhereAlloc.php:42 #: CustWhereAlloc.php:172 Dashboard.php:338 DeliveryDetails.php:614 #: DeliveryDetails.php:839 EmailCustTrans.php:10 PaymentAllocations.php:32 -#: SelectSalesOrder.php:851 SelectSalesOrder.php:928 SelectSalesOrder.php:953 +#: SelectSalesOrder.php:853 SelectSalesOrder.php:930 SelectSalesOrder.php:955 #: Z_SalesIntegrityCheck.php:46 #: includes/PDFDeliveryDifferencesPageHeader.inc:40 #, php-format @@ -4555,7 +4555,7 @@ #: SelectCompletedOrder.php:565 SelectContract.php:148 #: SelectCreditItems.php:243 SelectCustomer.php:194 SelectCustomer.php:195 #: SelectOrderItems.php:629 SelectRecurringSalesOrder.php:91 -#: SelectSalesOrder.php:853 SelectSalesOrder.php:870 SellThroughSupport.php:262 +#: SelectSalesOrder.php:855 SelectSalesOrder.php:872 SellThroughSupport.php:262 #: StockLocMovements.php:93 StockMovements.php:107 #: includes/PDFAgedDebtorsPageHeader.inc:48 #: includes/PDFBankingSummaryPageHeader.inc:56 @@ -4590,6 +4590,7 @@ #: SalesInquiry.php:950 SalesInquiry.php:961 SalesInquiry.php:967 #: SalesInquiry.php:973 SalesInquiry.php:1138 SalesInquiry.php:1213 #: SalesInquiry.php:1232 SelectCustomer.php:402 SelectOrderItems.php:729 +#: ../webSHOP/Checkout.php:389 msgid "Customer Name" msgstr "" @@ -4646,7 +4647,7 @@ #: includes/PDFSalesOrder_generic.inc:94 #: includes/PDFStockNegativesHeader.inc:32 includes/PDFWOPageHeader.inc:43 #: includes/PDFWOPageHeader.inc:70 includes/PO_PDFOrderPageHeader.inc:76 -#: ../webSHOP/includes/DisplayShoppingCart.php:6 +#: ../webSHOP/includes/DisplayShoppingCart.php:7 msgid "Item Description" msgstr "" @@ -4693,8 +4694,8 @@ #: includes/PDFQuotationPortraitPageHeader.inc:96 #: includes/PDFTransPageHeaderPortrait.inc:261 #: includes/PO_PDFOrderPageHeader.inc:80 includes/DefineLabelClass.php:49 -#: ../webSHOP/includes/DisplayShoppingCart.php:9 -#: ../webSHOP/includes/Functions.php:59 +#: ../webSHOP/includes/DisplayShoppingCart.php:10 +#: ../webSHOP/includes/Functions.php:58 msgid "Price" msgstr "" @@ -5054,8 +5055,8 @@ #: WorkOrderReceive.php:742 includes/SQL_CommonFunctions.inc:21 #: includes/SQL_CommonFunctions.inc:25 includes/SQL_CommonFunctions.inc:179 #: includes/SQL_CommonFunctions.inc:198 includes/SQL_CommonFunctions.inc:481 -#: includes/SQL_CommonFunctions.inc:503 ../webSHOP/includes/Functions.php:180 -#: ../webSHOP/includes/Functions.php:187 +#: includes/SQL_CommonFunctions.inc:503 ../webSHOP/includes/Functions.php:190 +#: ../webSHOP/includes/Functions.php:197 msgid "CRITICAL ERROR" msgstr "" @@ -5179,7 +5180,7 @@ #: includes/SQL_CommonFunctions.inc:21 includes/SQL_CommonFunctions.inc:25 #: includes/SQL_CommonFunctions.inc:179 includes/SQL_CommonFunctions.inc:198 #: includes/SQL_CommonFunctions.inc:481 includes/SQL_CommonFunctions.inc:503 -#: ../webSHOP/includes/Functions.php:180 ../webSHOP/includes/Functions.php:187 +#: ../webSHOP/includes/Functions.php:190 ../webSHOP/includes/Functions.php:197 msgid "NOTE DOWN THIS ERROR AND SEEK ASSISTANCE" msgstr "" @@ -5572,7 +5573,7 @@ msgstr "" #: ConfirmDispatch_Invoice.php:1655 CounterReturns.php:1603 -#: SelectSalesOrder.php:978 SystemParameters.php:577 +#: SelectSalesOrder.php:980 SystemParameters.php:577 #: reportwriter/languages/en_US/reports.php:300 #, php-format msgid "Landscape" @@ -5579,7 +5580,7 @@ msgstr "" #: ConfirmDispatch_Invoice.php:1657 CounterReturns.php:1605 -#: SelectSalesOrder.php:978 SystemParameters.php:578 +#: SelectSalesOrder.php:980 SystemParameters.php:578 #: reportwriter/languages/en_US/reports.php:299 #, php-format msgid "Portrait" @@ -6459,7 +6460,7 @@ msgstr "" #: Contracts.php:777 Customers.php:677 Customers.php:1188 PO_Header.php:555 -#: SelectGLAccount.php:126 SelectOrderItems.php:616 SelectSalesOrder.php:546 +#: SelectGLAccount.php:126 SelectOrderItems.php:616 SelectSalesOrder.php:548 msgid "Reset" msgstr "" @@ -6469,8 +6470,8 @@ #: PricesByCost.php:155 Prices_Customer.php:263 Prices_Customer.php:337 #: PrintCustTransPortrait.php:886 SelectCompletedOrder.php:566 #: SelectCreditItems.php:244 SelectCustomer.php:403 SelectOrderItems.php:630 -#: SelectRecurringSalesOrder.php:92 SelectSalesOrder.php:854 -#: SelectSalesOrder.php:871 StockMovements.php:108 +#: SelectRecurringSalesOrder.php:92 SelectSalesOrder.php:856 +#: SelectSalesOrder.php:873 StockMovements.php:108 #: StockSerialItemResearch.php:84 #: includes/PDFDeliveryDifferencesPageHeader.inc:45 #: includes/PDFDIFOTPageHeader.inc:44 includes/PDFOrderPageHeader.inc:50 @@ -6971,12 +6972,13 @@ msgstr "" #: CounterReturns.php:1464 CounterSales.php:1913 CustomerReceipt.php:545 -#: ../webSHOP/includes/Functions.php:504 +#: ../webSHOP/includes/Functions.php:514 +#: ../webSHOP/includes/ProcessPayPalPayment.php:138 msgid "Cannot insert a GL transaction for the bank account debit" msgstr "" #: CounterReturns.php:1482 CounterSales.php:1931 CustomerReceipt.php:568 -#: ../webSHOP/includes/Functions.php:522 +#: ../webSHOP/includes/Functions.php:532 msgid "" "The SQL that failed to insert the GL transaction for the debtors account " "credit was" @@ -6983,7 +6985,8 @@ msgstr "" #: CounterReturns.php:1483 CounterSales.php:1932 CustomerReceipt.php:569 -#: ../webSHOP/includes/Functions.php:523 +#: ../webSHOP/includes/Functions.php:533 +#: ../webSHOP/includes/ProcessPayPalPayment.php:157 msgid "Cannot insert a GL transaction for the debtors account credit" msgstr "" @@ -6994,12 +6997,14 @@ msgstr "" #: CounterReturns.php:1539 CounterSales.php:1987 CustomerReceipt.php:519 -#: ../webSHOP/includes/Functions.php:478 +#: ../webSHOP/includes/Functions.php:488 +#: ../webSHOP/includes/ProcessPayPalPayment.php:112 msgid "The SQL that failed to insert the bank account transaction was" msgstr "" #: CounterReturns.php:1540 CounterSales.php:1988 CustomerReceipt.php:520 -#: ../webSHOP/includes/Functions.php:479 +#: ../webSHOP/includes/Functions.php:489 +#: ../webSHOP/includes/ProcessPayPalPayment.php:113 msgid "Cannot insert a bank transaction" msgstr "" @@ -7238,7 +7243,7 @@ #: TestPlanResults.php:760 WorkOrderEntry.php:818 #: Z_ImportGLAccountGroups.php:26 Z_ImportGLAccountSections.php:29 #: Z_ImportPartCodes.php:31 includes/PDFOrderPageHeader_generic.inc:58 -#: includes/PO_PDFOrderPageHeader.inc:65 ../webSHOP/Checkout.php:435 +#: includes/PO_PDFOrderPageHeader.inc:65 ../webSHOP/Checkout.php:583 msgid "Comments" msgstr "" @@ -7288,7 +7293,7 @@ msgstr "" #: CounterSales.php:1120 DeliveryDetails.php:397 -#: RecurringSalesOrdersProcess.php:146 ../webSHOP/includes/PlaceOrder.php:71 +#: RecurringSalesOrdersProcess.php:146 ../webSHOP/includes/PlaceOrder.php:69 msgid "The order cannot be added because" msgstr "" @@ -7376,7 +7381,7 @@ #: SalesInquiry.php:779 SalesInquiry.php:962 SalesInquiry.php:971 #: SalesInquiry.php:1150 SalesInquiry.php:1210 SalesInquiry.php:1227 #: SelectCompletedOrder.php:70 SelectCompletedOrder.php:444 -#: SelectSalesOrder.php:445 +#: SelectSalesOrder.php:447 msgid "Order Number" msgstr "" @@ -7386,12 +7391,12 @@ msgstr "" #: CounterSales.php:2030 CustomerReceipt.php:484 -#: ../webSHOP/includes/Functions.php:447 +#: ../webSHOP/includes/Functions.php:457 msgid "The SQL that failed to update the date of the last payment received was" msgstr "" #: CounterSales.php:2031 CustomerReceipt.php:485 -#: ../webSHOP/includes/Functions.php:448 +#: ../webSHOP/includes/Functions.php:458 msgid "" "Cannot update the customer record for the date of the last payment received " "because" @@ -7975,9 +7980,10 @@ #: Currencies.php:307 Currencies.php:472 CustomerBranches.php:686 #: Customers.php:492 Customers.php:796 Customers.php:825 #: DeliveryDetails.php:1081 FreightCosts.php:215 Locations.php:616 -#: Suppliers.php:715 Suppliers.php:957 ../webSHOP/Checkout.php:415 -#: ../webSHOP/Checkout.php:474 ../webSHOP/CreditCardPayPalPro.php:294 -#: ../webSHOP/Register.php:651 ../webSHOP/Register.php:693 +#: Suppliers.php:715 Suppliers.php:957 ../webSHOP/Checkout.php:397 +#: ../webSHOP/Checkout.php:563 ../webSHOP/Checkout.php:657 +#: ../webSHOP/CreditCardPayPalPro.php:294 ../webSHOP/Register.php:663 +#: ../webSHOP/Register.php:705 msgid "Country" msgstr "" @@ -8455,11 +8461,11 @@ msgid "The entered Branch Code is not valid for the entered Customer Code" msgstr "" -#: CustLoginSetup.php:115 SuppLoginSetup.php:99 ../webSHOP/Register.php:220 +#: CustLoginSetup.php:115 SuppLoginSetup.php:99 ../webSHOP/Register.php:225 msgid "The user could not be added because" msgstr "" -#: CustLoginSetup.php:116 SuppLoginSetup.php:100 ../webSHOP/Register.php:221 +#: CustLoginSetup.php:116 SuppLoginSetup.php:100 ../webSHOP/Register.php:226 msgid "The SQL that was used to insert the new user and failed was" msgstr "" @@ -8478,8 +8484,8 @@ #: CustLoginSetup.php:150 SMTPServer.php:118 SuppLoginSetup.php:133 #: WWW_Users.php:511 includes/Login.php:100 includes/Login.php:101 -#: install/index.php:932 ../webSHOP/Checkout.php:302 -#: ../webSHOP/Register.php:600 ../webSHOP/includes/header.php:239 +#: install/index.php:932 ../webSHOP/Checkout.php:447 +#: ../webSHOP/Register.php:612 ../webSHOP/includes/header.php:206 msgid "Password" msgstr "" @@ -8707,7 +8713,7 @@ #: CustomerAccount.php:309 CustomerAccount.php:333 CustomerInquiry.php:318 #: CustomerInquiry.php:364 CustomerInquiry.php:403 CustomerInquiry.php:439 -#: CustomerInquiry.php:485 SelectSalesOrder.php:929 SelectSalesOrder.php:954 +#: CustomerInquiry.php:485 SelectSalesOrder.php:931 SelectSalesOrder.php:956 #, php-format msgid "Click for PDF" msgstr "" @@ -9094,7 +9100,7 @@ #: SupplierTenderCreate.php:371 SupplierTenderCreate.php:375 #: SupplierTenderCreate.php:379 SupplierTenderCreate.php:383 #: SupplierTenderCreate.php:387 SupplierTenderCreate.php:391 -#: ../webSHOP/includes/Functions.php:758 +#: ../webSHOP/includes/Functions.php:771 msgid "Address" msgstr "" @@ -9567,7 +9573,7 @@ msgstr "" #: CustomerPurchases.php:84 SelectOrderItems.php:731 -#: StockLocTransferReceive.php:422 +#: StockLocTransferReceive.php:422 ../webSHOP/Checkout.php:400 msgid "From Location" msgstr "" @@ -9701,7 +9707,7 @@ msgid "Cannot insert a bank transaction using the SQL" msgstr "" -#: CustomerReceipt.php:544 ../webSHOP/includes/Functions.php:503 +#: CustomerReceipt.php:544 ../webSHOP/includes/Functions.php:513 msgid "" "The SQL that failed to insert the GL transaction fro the bank account debit " "was" @@ -9836,7 +9842,7 @@ msgstr "" #: CustomerReceipt.php:993 Payments.php:930 PO_Items.php:237 -#: SelectSalesOrder.php:237 SelectSalesOrder.php:400 SpecialOrder.php:479 +#: SelectSalesOrder.php:237 SelectSalesOrder.php:402 SpecialOrder.php:479 msgid "on" msgstr "" @@ -10029,7 +10035,7 @@ msgid "Customer updated" msgstr "" -#: Customers.php:264 Z_ImportDebtors.php:425 ../webSHOP/Register.php:139 +#: Customers.php:264 Z_ImportDebtors.php:425 ../webSHOP/Register.php:144 msgid "This customer could not be added because" msgstr "" @@ -10374,7 +10380,7 @@ #: CustomerTypes.php:92 PcAssignCashTabToTab.php:138 PcAssignCashToTab.php:104 #: PcClaimExpensesFromTab.php:166 PcExpenses.php:90 PcExpensesTypeTab.php:66 #: PcTabs.php:116 PcTypeTabs.php:58 PO_Items.php:237 SalesTypes.php:90 -#: SelectSalesOrder.php:237 SelectSalesOrder.php:400 SpecialOrder.php:479 +#: SelectSalesOrder.php:237 SelectSalesOrder.php:402 SpecialOrder.php:479 #: SupplierTypes.php:77 msgid "has been created" msgstr "" @@ -10791,13 +10797,13 @@ msgid "Outstanding Orders" msgstr "" -#: Dashboard.php:610 ../webSHOP/includes/Functions.php:64 -#: ../webSHOP/includes/header.php:226 +#: Dashboard.php:610 ../webSHOP/includes/Functions.php:63 +#: ../webSHOP/includes/header.php:193 msgid "View Order" msgstr "" #: Dashboard.php:613 FTP_RadioBeacon.php:53 SelectCompletedOrder.php:567 -#: SelectRecurringSalesOrder.php:93 SelectSalesOrder.php:855 +#: SelectRecurringSalesOrder.php:93 SelectSalesOrder.php:857 msgid "Cust Order" msgstr "" @@ -10807,7 +10813,7 @@ #: PO_SelectOSPurchOrder.php:603 PO_SelectPurchOrder.php:436 #: PrintCustTrans.php:809 PrintCustTransPortrait.php:850 SalesInquiry.php:827 #: SalesInquiry.php:846 SalesInquiry.php:1087 SelectCompletedOrder.php:568 -#: SelectSalesOrder.php:856 includes/PDFOrderPageHeader_generic.inc:77 +#: SelectSalesOrder.php:858 includes/PDFOrderPageHeader_generic.inc:77 #: includes/PDFSalesOrder_generic.inc:79 includes/PDFTransPageHeader.inc:59 #: includes/PDFTransPageHeaderPortrait.inc:70 #: includes/PO_PDFOrderPageHeader.inc:51 @@ -10815,13 +10821,13 @@ msgstr "" #: Dashboard.php:615 FTP_RadioBeacon.php:55 SelectCompletedOrder.php:569 -#: SelectSalesOrder.php:857 SelectSalesOrder.php:874 +#: SelectSalesOrder.php:859 SelectSalesOrder.php:876 msgid "Req Del Date" msgstr "" #: Dashboard.php:616 FTP_RadioBeacon.php:56 PO_Header.php:887 -#: PO_Header.php:1140 SelectCompletedOrder.php:570 SelectSalesOrder.php:858 -#: SelectSalesOrder.php:875 includes/PDFQuotationPageHeader.inc:57 +#: PO_Header.php:1140 SelectCompletedOrder.php:570 SelectSalesOrder.php:860 +#: SelectSalesOrder.php:877 includes/PDFQuotationPageHeader.inc:57 #: includes/PDFQuotationPortraitPageHeader.inc:42 msgid "Delivery To" msgstr "" @@ -10828,7 +10834,7 @@ #: Dashboard.php:617 FTP_RadioBeacon.php:57 PO_SelectOSPurchOrder.php:611 #: PO_SelectPurchOrder.php:439 SelectCompletedOrder.php:571 -#: SelectRecurringSalesOrder.php:97 SelectSalesOrder.php:859 +#: SelectRecurringSalesOrder.php:97 SelectSalesOrder.php:861 msgid "Order Total" msgstr "" @@ -10841,11 +10847,11 @@ msgid "in" msgstr "" -#: Dashboard.php:651 SelectSalesOrder.php:830 +#: Dashboard.php:651 SelectSalesOrder.php:832 msgid "No orders or quotations were returned by the SQL because" msgstr "" -#: Dashboard.php:687 SelectSalesOrder.php:1015 +#: Dashboard.php:687 SelectSalesOrder.php:1017 msgid "Total Order(s) Value in" msgstr "" @@ -11114,12 +11120,12 @@ msgstr "" #: DeliveryDetails.php:935 DeliveryDetails.php:993 OrderDetails.php:246 -#: SelectOrderItems.php:1481 +#: SelectOrderItems.php:1481 ../webSHOP/Checkout.php:399 msgid "Total Weight" msgstr "" #: DeliveryDetails.php:937 DeliveryDetails.php:995 OrderDetails.php:248 -#: SelectOrderItems.php:1483 +#: SelectOrderItems.php:1483 ../webSHOP/Checkout.php:398 msgid "Total Volume" msgstr "" @@ -11153,7 +11159,7 @@ msgid "Enter the estimated delivery date requested by the customer" msgstr "" -#: DeliveryDetails.php:1052 SelectSalesOrder.php:873 +#: DeliveryDetails.php:1052 SelectSalesOrder.php:875 msgid "Quote Date" msgstr "" @@ -11888,7 +11894,7 @@ #: EDIProcessOrders.php:370 PDFOrdersInvoiced.php:294 #: SelectCompletedOrder.php:76 SelectCompletedOrder.php:452 -#: SelectSalesOrder.php:550 SpecialOrder.php:610 +#: SelectSalesOrder.php:552 SpecialOrder.php:610 msgid "Customer Ref" msgstr "" @@ -12056,7 +12062,7 @@ #: EmailConfirmation.php:24 EmailConfirmation.php:97 EmailConfirmation.php:131 #: PrintCustOrder_generic.php:23 PrintCustOrder_generic.php:91 #: PrintCustOrder_generic.php:125 PrintCustOrder.php:24 PrintCustOrder.php:89 -#: PrintCustOrder.php:115 SelectSalesOrder.php:411 +#: PrintCustOrder.php:115 SelectSalesOrder.php:413 msgid "Outstanding Sales Orders" msgstr "" @@ -12313,7 +12319,7 @@ msgstr "" #: Factors.php:287 install/index.php:1024 -#: reportwriter/languages/en_US/reports.php:216 ../webSHOP/Register.php:615 +#: reportwriter/languages/en_US/reports.php:216 ../webSHOP/Register.php:627 msgid "Company Name" msgstr "" @@ -13323,7 +13329,7 @@ msgstr "" #: FreightCosts.php:28 FreightCosts.php:83 -#: ../webSHOP/includes/PlaceOrder.php:274 +#: ../webSHOP/includes/PlaceOrder.php:287 msgid "Freight Costs" msgstr "" @@ -15023,7 +15029,7 @@ "Purchase orders must have a status of Printed before they can be received" msgstr "" -#: GoodsReceived.php:65 SelectSalesOrder.php:480 +#: GoodsReceived.php:65 SelectSalesOrder.php:482 msgid "Order number" msgstr "" @@ -15274,7 +15280,7 @@ "the asset was purchased" msgstr "" -#: GoodsReceived.php:740 GoodsReceived.php:762 SelectSalesOrder.php:1009 +#: GoodsReceived.php:740 GoodsReceived.php:762 SelectSalesOrder.php:1011 #: SupplierInvoice.php:418 msgid "PO" msgstr "" @@ -15986,7 +15992,7 @@ msgstr "" #: InternalStockRequestInquiry.php:35 ReorderLevel.php:195 -#: SelectSalesOrder.php:482 StockDispatch.php:349 StockLocMovements.php:19 +#: SelectSalesOrder.php:484 StockDispatch.php:349 StockLocMovements.php:19 #: StockLocStatus.php:35 StockLocTransfer.php:260 StockMovements.php:38 #: StockTransfers.php:578 StockUsage.php:66 msgid "From Stock Location" @@ -16076,7 +16082,7 @@ #: InternalStockRequestInquiry.php:549 MRPReport.php:721 #: PO_SelectOSPurchOrder.php:131 PO_SelectPurchOrder.php:105 #: SelectCompletedOrder.php:228 SelectProduct.php:790 SelectQASamples.php:234 -#: SelectSalesOrder.php:1074 SupplierPriceList.php:218 TestPlanResults.php:117 +#: SelectSalesOrder.php:1076 SupplierPriceList.php:218 TestPlanResults.php:117 msgid "No stock items were returned by the SQL because" msgstr "" @@ -18671,7 +18677,7 @@ #: OutstandingGRNs.php:184 SpecialOrder.php:735 #: includes/PDFTransPageHeader.inc:212 #: includes/PDFTransPageHeaderPortrait.inc:257 -#: ../webSHOP/includes/PlaceOrder.php:238 +#: ../webSHOP/includes/PlaceOrder.php:252 msgid "Unit Price" msgstr "" @@ -21314,7 +21320,7 @@ #: PDFSalesBySalesperson.php:88 PDFWeeklyOrders.php:84 ReverseGRN.php:31 #: SalesByTypePeriodInquiry.php:356 SalesTopCustomersInquiry.php:218 -#: SalesTopItemsInquiry.php:225 SelectSalesOrder.php:411 WWW_Users.php:24 +#: SalesTopItemsInquiry.php:225 SelectSalesOrder.php:413 WWW_Users.php:24 #: includes/MainMenuLinksArray.php:20 msgid "Sales" msgstr "" @@ -21843,24 +21849,24 @@ msgstr "" #: PO_Header.php:95 PO_Items.php:110 PurchaseByPrefSupplier.php:178 -#: SelectSalesOrder.php:228 SelectSalesOrder.php:394 SpecialOrder.php:324 +#: SelectSalesOrder.php:228 SelectSalesOrder.php:396 SpecialOrder.php:324 msgid "You do not have permission to authorise this purchase order" msgstr "" #: PO_Header.php:95 PO_Header.php:117 PO_Header.php:134 PO_Items.php:110 #: PurchaseByPrefSupplier.php:178 SelectSalesOrder.php:228 -#: SelectSalesOrder.php:394 SpecialOrder.php:324 +#: SelectSalesOrder.php:396 SpecialOrder.php:324 msgid "This order is for" msgstr "" #: PO_Header.php:95 PO_Items.php:107 PurchaseByPrefSupplier.php:175 -#: SelectSalesOrder.php:225 SelectSalesOrder.php:391 SpecialOrder.php:321 +#: SelectSalesOrder.php:225 SelectSalesOrder.php:393 SpecialOrder.php:321 msgid "You can only authorise up to" msgstr "" #: PO_Header.php:95 PO_Header.php:117 PO_Header.php:134 PO_Items.php:113 #: PurchaseByPrefSupplier.php:180 SelectSalesOrder.php:230 -#: SelectSalesOrder.php:394 SpecialOrder.php:324 +#: SelectSalesOrder.php:396 SpecialOrder.php:324 msgid "If you think this is a mistake please contact the systems administrator" msgstr "" @@ -21988,7 +21994,7 @@ #: PO_Items.php:707 PO_Items.php:710 PO_OrderDetails.php:89 #: PO_PDFPurchOrder.php:202 PO_PDFPurchOrder.php:352 #: PurchaseByPrefSupplier.php:295 SelectSalesOrder.php:237 -#: SelectSalesOrder.php:400 SpecialOrder.php:479 +#: SelectSalesOrder.php:402 SpecialOrder.php:479 #: includes/DatabaseTranslations.php:32 msgid "Purchase Order" msgstr "" @@ -22172,17 +22178,17 @@ msgstr "" #: PO_Items.php:100 PurchaseByPrefSupplier.php:168 SelectSalesOrder.php:211 -#: SelectSalesOrder.php:377 SpecialOrder.php:314 +#: SelectSalesOrder.php:379 SpecialOrder.php:314 msgid "Order Created and Authorised by" msgstr "" #: PO_Items.php:105 PurchaseByPrefSupplier.php:173 SelectSalesOrder.php:223 -#: SelectSalesOrder.php:389 SpecialOrder.php:319 +#: SelectSalesOrder.php:391 SpecialOrder.php:319 msgid "Your authority to approve purchase orders in" msgstr "" #: PO_Items.php:105 PurchaseByPrefSupplier.php:173 SelectSalesOrder.php:223 -#: SelectSalesOrder.php:389 SpecialOrder.php:319 +#: SelectSalesOrder.php:391 SpecialOrder.php:319 msgid "has not yet been set up" msgstr "" @@ -22198,7 +22204,7 @@ msgid "Order Created by" msgstr "" -#: PO_Items.php:197 PurchaseByPrefSupplier.php:254 SelectSalesOrder.php:326 +#: PO_Items.php:197 PurchaseByPrefSupplier.php:254 SelectSalesOrder.php:328 #: SpecialOrder.php:390 msgid "" "The purchase order header record could not be inserted into the database " @@ -22205,7 +22211,7 @@ "because" msgstr "" -#: PO_Items.php:198 PurchaseByPrefSupplier.php:255 SelectSalesOrder.php:327 +#: PO_Items.php:198 PurchaseByPrefSupplier.php:255 SelectSalesOrder.php:329 #: SpecialOrder.php:391 msgid "" "The SQL statement used to insert the purchase order header record and failed " @@ -22212,7 +22218,7 @@ "was" msgstr "" -#: PO_Items.php:230 PurchaseByPrefSupplier.php:289 SelectSalesOrder.php:353 +#: PO_Items.php:230 PurchaseByPrefSupplier.php:289 SelectSalesOrder.php:355 #: SpecialOrder.php:473 msgid "" "One of the purchase order detail records could not be inserted into the " @@ -22219,7 +22225,7 @@ "database because" msgstr "" -#: PO_Items.php:231 PurchaseByPrefSupplier.php:290 SelectSalesOrder.php:354 +#: PO_Items.php:231 PurchaseByPrefSupplier.php:290 SelectSalesOrder.php:356 #: SpecialOrder.php:474 msgid "" "The SQL statement used to insert the purchase order detail record and failed " @@ -22968,7 +22974,7 @@ #: PO_SelectOSPurchOrder.php:291 PO_SelectPurchOrder.php:201 #: SelectCompletedOrder.php:488 SelectQASamples.php:286 -#: SelectSalesOrder.php:592 Shipt_Select.php:181 TestPlanResults.php:164 +#: SelectSalesOrder.php:594 Shipt_Select.php:181 TestPlanResults.php:164 msgid "Search Parts Now" msgstr "" @@ -23837,7 +23843,7 @@ msgstr "" #: PrintCustStatements.php:142 SelectCompletedOrder.php:72 -#: SelectCompletedOrder.php:83 SelectContract.php:34 SelectSalesOrder.php:449 +#: SelectCompletedOrder.php:83 SelectContract.php:34 SelectSalesOrder.php:451 msgid "For customer" msgstr "" @@ -25003,17 +25009,19 @@ msgid "Recurring Order for Customer" msgstr "" -#: RecurringSalesOrders.php:393 ../webSHOP/Checkout.php:454 -#: ../webSHOP/Checkout.php:458 ../webSHOP/CreditCardPayPalPro.php:281 +#: RecurringSalesOrders.php:393 ../webSHOP/Checkout.php:393 +#: ../webSHOP/Checkout.php:637 ../webSHOP/Checkout.php:641 +#: ../webSHOP/CreditCardPayPalPro.php:281 msgid "Street" msgstr "" -#: RecurringSalesOrders.php:397 ../webSHOP/Checkout.php:462 +#: RecurringSalesOrders.php:397 ../webSHOP/Checkout.php:394 +#: ../webSHOP/Checkout.php:645 msgid "Suburb" msgstr "" -#: RecurringSalesOrders.php:401 ../webSHOP/Checkout.php:466 -#: ../webSHOP/CreditCardPayPalPro.php:283 +#: RecurringSalesOrders.php:401 ../webSHOP/Checkout.php:395 +#: ../webSHOP/Checkout.php:649 ../webSHOP/CreditCardPayPalPro.php:283 msgid "City" msgstr "" @@ -26989,7 +26997,7 @@ msgid "and for customer" msgstr "" -#: SelectCompletedOrder.php:89 SelectSalesOrder.php:453 Shipt_Select.php:52 +#: SelectCompletedOrder.php:89 SelectSalesOrder.php:455 Shipt_Select.php:52 msgid "for the part" msgstr "" @@ -27015,7 +27023,7 @@ msgid "Show Completed orders only" msgstr "" -#: SelectCompletedOrder.php:465 SelectSalesOrder.php:570 +#: SelectCompletedOrder.php:465 SelectSalesOrder.php:572 msgid "" "To search for sales orders for a specific part use the part selection " "facilities below" @@ -28297,15 +28305,15 @@ "default stock location" msgstr "" -#: SelectSalesOrder.php:211 SelectSalesOrder.php:267 SelectSalesOrder.php:377 +#: SelectSalesOrder.php:211 SelectSalesOrder.php:267 SelectSalesOrder.php:379 msgid "Auto created from sales orders" msgstr "" -#: SelectSalesOrder.php:212 SelectSalesOrder.php:378 +#: SelectSalesOrder.php:212 SelectSalesOrder.php:380 msgid "Could not update purchase order status to Authorised" msgstr "" -#: SelectSalesOrder.php:231 SelectSalesOrder.php:394 +#: SelectSalesOrder.php:231 SelectSalesOrder.php:396 msgid "" "The order has been created with a status of pending and will require " "authorisation" @@ -28315,71 +28323,71 @@ msgid "Could not get the supplier information for the order" msgstr "" -#: SelectSalesOrder.php:439 +#: SelectSalesOrder.php:441 msgid "The Order Number entered MUST be numeric" msgstr "" -#: SelectSalesOrder.php:511 SelectSalesOrder.php:516 SelectSalesOrder.php:520 +#: SelectSalesOrder.php:513 SelectSalesOrder.php:518 SelectSalesOrder.php:522 msgid "Quotations Only" msgstr "" -#: SelectSalesOrder.php:512 SelectSalesOrder.php:517 SelectSalesOrder.php:519 +#: SelectSalesOrder.php:514 SelectSalesOrder.php:519 SelectSalesOrder.php:521 msgid "Orders Only" msgstr "" -#: SelectSalesOrder.php:513 SelectSalesOrder.php:515 SelectSalesOrder.php:521 +#: SelectSalesOrder.php:515 SelectSalesOrder.php:517 SelectSalesOrder.php:523 msgid "Overdue Only" msgstr "" -#: SelectSalesOrder.php:541 +#: SelectSalesOrder.php:543 msgid "Due Date From" msgstr "" -#: SelectSalesOrder.php:543 +#: SelectSalesOrder.php:545 msgid "Due Date To" msgstr "" -#: SelectSalesOrder.php:547 +#: SelectSalesOrder.php:549 msgid "Add Sales Order" msgstr "" -#: SelectSalesOrder.php:552 +#: SelectSalesOrder.php:554 msgid "Order Date From" msgstr "" -#: SelectSalesOrder.php:554 +#: SelectSalesOrder.php:556 msgid "Order Date To" msgstr "" -#: SelectSalesOrder.php:852 +#: SelectSalesOrder.php:854 msgid "Dispatch Note" msgstr "" -#: SelectSalesOrder.php:862 +#: SelectSalesOrder.php:864 msgid "Place PO" msgstr "" -#: SelectSalesOrder.php:869 +#: SelectSalesOrder.php:871 msgid "Print Quote" msgstr "" -#: SelectSalesOrder.php:872 +#: SelectSalesOrder.php:874 msgid "Cust Ref" msgstr "" -#: SelectSalesOrder.php:876 +#: SelectSalesOrder.php:878 msgid "Quote Total" msgstr "" -#: SelectSalesOrder.php:920 +#: SelectSalesOrder.php:922 msgid "Reprint" msgstr "" -#: SelectSalesOrder.php:1009 +#: SelectSalesOrder.php:1011 msgid "Place" msgstr "" -#: SelectSalesOrder.php:1009 +#: SelectSalesOrder.php:1011 msgid "" "This will create purchase orders for all the items on the checked sales " "orders above, based on the preferred supplier purchasing data held in the " @@ -28386,7 +28394,7 @@ "system. Are You Absolutely Sure?" msgstr "" -#: SelectSalesOrder.php:1017 +#: SelectSalesOrder.php:1019 msgid "Total Quotation(s) Value in" msgstr "" @@ -29233,10 +29241,10 @@ msgid "Enter the raw html without any line breaks" msgstr "" -#: ShopParameters.php:259 ../webSHOP/Checkout.php:198 +#: ShopParameters.php:259 ../webSHOP/Checkout.php:289 #: ../webSHOP/CreditCardPayFlowPro.php:199 #: ../webSHOP/CreditCardPayPalPro.php:206 ../webSHOP/index.php:14 -#: ../webSHOP/ItemDetails.php:22 ../webSHOP/Register.php:482 +#: ../webSHOP/ItemDetails.php:22 ../webSHOP/Register.php:494 #: ../webSHOP/includes/footer.php:6 ../webSHOP/includes/InfoLinks.php:6 msgid "Terms and Conditions" msgstr "" @@ -29247,10 +29255,10 @@ "conditions associated with sales from the web-shop" msgstr "" -#: ShopParameters.php:265 ../webSHOP/Checkout.php:202 +#: ShopParameters.php:265 ../webSHOP/Checkout.php:293 #: ../webSHOP/CreditCardPayFlowPro.php:203 #: ../webSHOP/CreditCardPayPalPro.php:210 ../webSHOP/index.php:18 -#: ../webSHOP/ItemDetails.php:26 ../webSHOP/Register.php:486 +#: ../webSHOP/ItemDetails.php:26 ../webSHOP/Register.php:498 #: ../webSHOP/includes/footer.php:9 ../webSHOP/includes/InfoLinks.php:18 msgid "About Us" msgstr "" @@ -29271,8 +29279,8 @@ "information to users of the web-store." msgstr "" -#: ShopParameters.php:276 ../webSHOP/Checkout.php:214 ../webSHOP/index.php:26 -#: ../webSHOP/ItemDetails.php:34 ../webSHOP/Register.php:498 +#: ShopParameters.php:276 ../webSHOP/Checkout.php:305 ../webSHOP/index.php:26 +#: ../webSHOP/ItemDetails.php:34 ../webSHOP/Register.php:510 #: ../webSHOP/includes/footer.php:8 ../webSHOP/includes/InfoLinks.php:14 msgid "Freight Policy" msgstr "" @@ -30725,7 +30733,7 @@ msgstr "" #: StockClone.php:1117 Stocks.php:1446 Stocks.php:1453 -#: ../webSHOP/includes/Functions.php:127 +#: ../webSHOP/includes/Functions.php:133 #: ../webSHOP/includes/ShowSalesCategoriesMenu.php:15 msgid "Categories" msgstr "" @@ -37186,7 +37194,7 @@ msgstr "" #: UserSettings.php:74 UserSettings.php:89 WWW_Users.php:262 -#: ../webSHOP/Register.php:370 +#: ../webSHOP/Register.php:375 msgid "The SQL that was used to update the user and failed was" msgstr "" @@ -37210,7 +37218,7 @@ msgid "Must be more than 5 characters and cannot be as same as userid" msgstr "" -#: UserSettings.php:177 ../webSHOP/Register.php:605 +#: UserSettings.php:177 ../webSHOP/Register.php:617 msgid "Confirm Password" msgstr "" @@ -38427,7 +38435,7 @@ #: ../webSHOP/CreditCardPayPalPro.php:90 #: ../webSHOP/includes/ProcessPayPalPayment.php:8 #: ../webSHOP/includes/ProcessPayPalPayment.php:10 -#: ../webSHOP/includes/ProcessPayPalPayment.php:45 +#: ../webSHOP/includes/ProcessPayPalPayment.php:46 msgid "Purchases" msgstr "" @@ -44407,15 +44415,15 @@ "The freight calculation for the destination city cannot be performed because" msgstr "" -#: includes/GetPrice.inc:20 ../webSHOP/includes/Functions.php:546 +#: includes/GetPrice.inc:20 ../webSHOP/includes/Functions.php:556 msgid "There is a problem in retrieving the pricing information for part" msgstr "" -#: includes/GetPrice.inc:20 ../webSHOP/includes/Functions.php:546 +#: includes/GetPrice.inc:20 ../webSHOP/includes/Functions.php:556 msgid "and for Customer" msgstr "" -#: includes/GetPrice.inc:20 ../webSHOP/includes/Functions.php:546 +#: includes/GetPrice.inc:20 ../webSHOP/includes/Functions.php:556 msgid "the error message returned by the SQL server was" msgstr "" @@ -44518,7 +44526,7 @@ msgstr "" #: includes/PDFBankingSummaryPageHeader.inc:38 -#: ../webSHOP/includes/Functions.php:761 +#: ../webSHOP/includes/Functions.php:774 msgid "Account Number" msgstr "" @@ -45104,20 +45112,20 @@ "items with no cost data entered" msgstr "" -#: includes/SQL_CommonFunctions.inc:21 ../webSHOP/includes/Functions.php:187 +#: includes/SQL_CommonFunctions.inc:21 ../webSHOP/includes/Functions.php:197 msgid "The transaction number could not be incremented" msgstr "" -#: includes/SQL_CommonFunctions.inc:22 ../webSHOP/includes/Functions.php:188 +#: includes/SQL_CommonFunctions.inc:22 ../webSHOP/includes/Functions.php:198 msgid "The following SQL to increment the transaction number was used" msgstr "" -#: includes/SQL_CommonFunctions.inc:25 ../webSHOP/includes/Functions.php:180 +#: includes/SQL_CommonFunctions.inc:25 ../webSHOP/includes/Functions.php:190 msgid "" "The next transaction number could not be retrieved from the database because" msgstr "" -#: includes/SQL_CommonFunctions.inc:26 ../webSHOP/includes/Functions.php:181 +#: includes/SQL_CommonFunctions.inc:26 ../webSHOP/includes/Functions.php:191 msgid "The following SQL to retrieve the transaction number was used" msgstr "" @@ -45144,7 +45152,7 @@ "because" msgstr "" -#: includes/SQL_CommonFunctions.inc:348 ../webSHOP/includes/Functions.php:209 +#: includes/SQL_CommonFunctions.inc:348 ../webSHOP/includes/Functions.php:219 msgid "" "The general ledger entries created do not balance. See your system " "administrator" @@ -47179,27 +47187,27 @@ msgid "Remove From Menu" msgstr "" -#: includes/GetConfig.php:9 ../webSHOP/includes/session.php:66 +#: includes/GetConfig.php:9 ../webSHOP/includes/session.php:69 msgid "Could not get the configuration parameters from the database because" msgstr "" -#: includes/GetConfig.php:81 ../webSHOP/includes/session.php:108 +#: includes/GetConfig.php:81 ../webSHOP/includes/session.php:111 msgid "" "An error occurred accessing the database to retrieve the company information" msgstr "" -#: includes/GetConfig.php:86 ../webSHOP/includes/session.php:113 +#: includes/GetConfig.php:86 ../webSHOP/includes/session.php:116 msgid "The company record has not yet been set up" msgstr "" -#: includes/GetConfig.php:86 ../webSHOP/includes/session.php:113 +#: includes/GetConfig.php:86 ../webSHOP/includes/session.php:116 msgid "" "From the system setup tab select company maintenance to enter the company " "information and system preferences" msgstr "" -#: includes/GetConfig.php:86 ../webSHOP/includes/GetCustomerDetails.php:51 -#: ../webSHOP/includes/session.php:113 +#: includes/GetConfig.php:86 ../webSHOP/includes/GetCustomerDetails.php:53 +#: ../webSHOP/includes/session.php:116 msgid "CRITICAL PROBLEM" msgstr "" @@ -47216,11 +47224,11 @@ msgid "Manual" msgstr "" -#: includes/header.php:112 ../webSHOP/includes/header.php:232 +#: includes/header.php:112 ../webSHOP/includes/header.php:199 msgid "Are you sure you wish to logout?" msgstr "" -#: includes/header.php:112 ../webSHOP/includes/header.php:232 +#: includes/header.php:112 ../webSHOP/includes/header.php:199 msgid "Logout" msgstr "" @@ -47370,8 +47378,8 @@ "contact your webmaster to disable Magic Quotes" msgstr "" -#: includes/Login.php:111 ../webSHOP/Checkout.php:306 -#: ../webSHOP/includes/header.php:240 +#: includes/Login.php:111 ../webSHOP/Checkout.php:451 +#: ../webSHOP/includes/header.php:207 msgid "Login" msgstr "" @@ -48176,11 +48184,11 @@ msgid "Security Permissions Problem" msgstr "" -#: includes/session.php:302 ../webSHOP/includes/session.php:147 +#: includes/session.php:302 ../webSHOP/includes/session.php:172 msgid "Error in form verification" msgstr "" -#: includes/session.php:304 ../webSHOP/includes/session.php:151 +#: includes/session.php:304 ../webSHOP/includes/session.php:176 msgid "This form was not submitted with a correct ID" msgstr "" @@ -49579,343 +49587,434 @@ msgid "This Year To Date" msgstr "" -#: ../webSHOP/Checkout.php:9 ../webSHOP/Checkout.php:283 -#: ../webSHOP/Checkout.php:371 ../webSHOP/Checkout.php:451 -#: ../webSHOP/Checkout.php:523 ../webSHOP/includes/header.php:227 +#: ../webSHOP/Checkout.php:8 ../webSHOP/Checkout.php:380 +#: ../webSHOP/Checkout.php:519 ../webSHOP/Checkout.php:607 +#: ../webSHOP/Checkout.php:634 ../webSHOP/Checkout.php:707 +#: ../webSHOP/includes/header.php:194 msgid "Checkout" msgstr "" -#: ../webSHOP/Checkout.php:30 +#: ../webSHOP/Checkout.php:33 msgid "purchases" msgstr "" -#: ../webSHOP/Checkout.php:44 ../webSHOP/Checkout.php:96 +#: ../webSHOP/Checkout.php:48 ../webSHOP/Checkout.php:105 +#: ../webSHOP/Checkout.php:106 msgid "The swipeHQ payment request failed with a curl error" msgstr "" -#: ../webSHOP/Checkout.php:44 ../webSHOP/Checkout.php:96 +#: ../webSHOP/Checkout.php:48 ../webSHOP/Checkout.php:105 +#: ../webSHOP/Checkout.php:106 msgid "We are not able to process payments with your credit card at this time" msgstr "" -#: ../webSHOP/Checkout.php:50 +#: ../webSHOP/Checkout.php:53 msgid "The SwipeHQ payment request returned an access denied error" msgstr "" -#: ../webSHOP/Checkout.php:53 +#: ../webSHOP/Checkout.php:56 msgid "The SwipeHQ payment request returned a system error" msgstr "" -#: ../webSHOP/Checkout.php:56 +#: ../webSHOP/Checkout.php:59 msgid "The SwipeHQ payment request requires more parameters" msgstr "" -#: ../webSHOP/Checkout.php:59 +#: ../webSHOP/Checkout.php:62 msgid "The SwipeHQ payment request returned an inactive account error" msgstr "" -#: ../webSHOP/Checkout.php:62 +#: ../webSHOP/Checkout.php:65 msgid "The SwipeHQ payment request returned a permission denied error" msgstr "" -#: ../webSHOP/Checkout.php:65 +#: ../webSHOP/Checkout.php:68 msgid "The SwipeHQ payment request returned an invalid format error" msgstr "" -#: ../webSHOP/Checkout.php:71 +#: ../webSHOP/Checkout.php:74 msgid "The SwipeHQ payment request returned an error with the message" msgstr "" -#: ../webSHOP/Checkout.php:104 +#: ../webSHOP/Checkout.php:115 msgid "" "Your credit card payment was processed sucessfully and your order number" msgstr "" -#: ../webSHOP/Checkout.php:104 +#: ../webSHOP/Checkout.php:115 msgid "" "is now being processed. Please quote this order number in all " "correspondence. Thanks for your business" msgstr "" -#: ../webSHOP/Checkout.php:106 +#: ../webSHOP/Checkout.php:117 msgid "The credit card transaction was declined." msgstr "" -#: ../webSHOP/Checkout.php:108 +#: ../webSHOP/Checkout.php:119 msgid "The error code" msgstr "" -#: ../webSHOP/Checkout.php:108 +#: ../webSHOP/Checkout.php:119 msgid "and the message" msgstr "" -#: ../webSHOP/Checkout.php:108 +#: ../webSHOP/Checkout.php:119 msgid "was returned from" msgstr "" -#: ../webSHOP/Checkout.php:113 +#: ../webSHOP/Checkout.php:124 msgid "The SwipeHQ verification API call failed with the message" msgstr "" -#: ../webSHOP/Checkout.php:133 +#: ../webSHOP/Checkout.php:128 +msgid "The SwipeHQ transaction was declined with the message" +msgstr "" + +#: ../webSHOP/Checkout.php:148 msgid "" "The phone number for the billing address is too short to be valid. 5 or more " "numbers are expected." msgstr "" -#: ../webSHOP/Checkout.php:138 ../webSHOP/Checkout.php:256 -#: ../webSHOP/Register.php:81 -msgid "The delivery street address is too short to be valid" +#: ../webSHOP/Checkout.php:153 +msgid "The delivery building address is too short to be valid" msgstr "" -#: ../webSHOP/Checkout.php:143 +#: ../webSHOP/Checkout.php:158 +msgid "" +"The delivery street address is too short to be valid. At least 4 characters " +"are expected" +msgstr "" + +#: ../webSHOP/Checkout.php:163 msgid "The delivery city name is too short to be valid" msgstr "" -#: ../webSHOP/Checkout.php:148 +#: ../webSHOP/Checkout.php:168 msgid "" "The delivery contact email address does not appear to be a valid email " "address" msgstr "" -#: ../webSHOP/Checkout.php:206 ../webSHOP/CreditCardPayFlowPro.php:207 +#: ../webSHOP/Checkout.php:234 +msgid "" +"The webSHOP is configured to get freight costs using the Australia post API, " +"but the dispatch location is not based in Australia or there is no postal " +"code defined for the dispatch location" +msgstr "" + +#: ../webSHOP/Checkout.php:263 +msgid "Sending the Aus Post request" +msgstr "" + +#: ../webSHOP/Checkout.php:297 ../webSHOP/CreditCardPayFlowPro.php:207 #: ../webSHOP/CreditCardPayPalPro.php:214 ../webSHOP/index.php:22 -#: ../webSHOP/ItemDetails.php:30 ../webSHOP/Register.php:490 +#: ../webSHOP/ItemDetails.php:30 ../webSHOP/Register.php:502 #: ../webSHOP/includes/footer.php:7 ../webSHOP/includes/InfoLinks.php:10 msgid "Privacy Policy" msgstr "" -#: ../webSHOP/Checkout.php:210 ../webSHOP/CreditCardPayFlowPro.php:211 +#: ../webSHOP/Checkout.php:301 ../webSHOP/CreditCardPayFlowPro.php:211 #: ../webSHOP/CreditCardPayPalPro.php:218 ../webSHOP/index.php:30 -#: ../webSHOP/ItemDetails.php:38 ../webSHOP/Register.php:494 +#: ../webSHOP/ItemDetails.php:38 ../webSHOP/Register.php:506 #: ../webSHOP/includes/InfoLinks.php:22 msgid "Contact Details" msgstr "" -#: ../webSHOP/Checkout.php:251 ../webSHOP/Register.php:428 +#: ../webSHOP/Checkout.php:345 ../webSHOP/Register.php:436 msgid "An email address is required" msgstr "" -#: ../webSHOP/Checkout.php:252 ../webSHOP/Register.php:429 +#: ../webSHOP/Checkout.php:346 ../webSHOP/Register.php:437 msgid "The email address must be a valid email address" msgstr "" -#: ../webSHOP/Checkout.php:253 ../webSHOP/Register.php:430 +#: ../webSHOP/Checkout.php:347 ../webSHOP/Register.php:438 msgid "The email address is expected to 5 characters or more long" msgstr "" -#: ../webSHOP/Checkout.php:259 +#: ../webSHOP/Checkout.php:350 +msgid "The delivery building number/street address is too short to be valid" +msgstr "" + +#: ../webSHOP/Checkout.php:353 ../webSHOP/Register.php:86 +msgid "The delivery street address is too short to be valid" +msgstr "" + +#: ../webSHOP/Checkout.php:356 msgid "The delivery suburb address is too short to be valid" msgstr "" -#: ../webSHOP/Checkout.php:262 +#: ../webSHOP/Checkout.php:359 msgid "A phone number for the delivery address contact must be entered" msgstr "" -#: ../webSHOP/Checkout.php:263 +#: ../webSHOP/Checkout.php:360 msgid "" "The phone number for the contact the the delivery address is too short to be " "valid" msgstr "" -#: ../webSHOP/Checkout.php:284 ../webSHOP/index.php:100 +#: ../webSHOP/Checkout.php:381 ../webSHOP/index.php:100 msgid "The shopping cart is empty" msgstr "" -#: ../webSHOP/Checkout.php:291 +#: ../webSHOP/Checkout.php:387 +msgid "Error calculating freight costs." +msgstr "" + +#: ../webSHOP/Checkout.php:388 +msgid "webSHOP could not calculate freight costs for" +msgstr "" + +#: ../webSHOP/Checkout.php:390 +msgid "Customer Phone" +msgstr "" + +#: ../webSHOP/Checkout.php:391 +msgid "Customer Email" +msgstr "" + +#: ../webSHOP/Checkout.php:392 ../webSHOP/includes/DisplayShoppingCart.php:88 +msgid "Total Due" +msgstr "" + +#: ../webSHOP/Checkout.php:396 ../webSHOP/Checkout.php:653 +msgid "ZIP" +msgstr "" + +#: ../webSHOP/Checkout.php:416 +msgid "Thanks for your report." +msgstr "" + +#: ../webSHOP/Checkout.php:419 +msgid "We will contact you shortly." +msgstr "" + +#: ../webSHOP/Checkout.php:423 +msgid "Return to Shop Home" +msgstr "" + +#: ../webSHOP/Checkout.php:436 msgid "Login Or Register" msgstr "" -#: ../webSHOP/Checkout.php:318 +#: ../webSHOP/Checkout.php:463 msgid "" "To enable us to process your order, we need some details. Please click on " "the register button below to setup your account." msgstr "" -#: ../webSHOP/Checkout.php:321 ../webSHOP/Register.php:537 -#: ../webSHOP/Register.php:728 ../webSHOP/includes/header.php:234 +#: ../webSHOP/Checkout.php:466 ../webSHOP/Register.php:549 +#: ../webSHOP/Register.php:740 ../webSHOP/includes/header.php:201 msgid "Register" msgstr "" -#: ../webSHOP/Checkout.php:371 +#: ../webSHOP/Checkout.php:519 msgid "Confirm Delivery Address" msgstr "" -#: ../webSHOP/Checkout.php:375 +#: ../webSHOP/Checkout.php:523 msgid "Delivery Address - Building/Number" msgstr "" -#: ../webSHOP/Checkout.php:376 +#: ../webSHOP/Checkout.php:524 msgid "Enter the street address for the delivery" msgstr "" -#: ../webSHOP/Checko... [truncated message content] |
From: <tu...@us...> - 2017-12-12 04:30:32
|
Revision: 7877 http://sourceforge.net/p/web-erp/reponame/7877 Author: turbopt Date: 2017-12-12 04:30:30 +0000 (Tue, 12 Dec 2017) Log Message: ----------- PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) Modified Paths: -------------- trunk/doc/Change.log trunk/includes/phplot/phplot.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-11 20:57:10 UTC (rev 7876) +++ trunk/doc/Change.log 2017-12-12 04:30:30 UTC (rev 7877) @@ -1,5 +1,6 @@ webERP Change Log +11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) 11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. 11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php 6/12/17 RChacon: Order by transaction date and add link to debtors in Dashboard.php script. Modified: trunk/includes/phplot/phplot.php =================================================================== --- trunk/includes/phplot/phplot.php 2017-12-11 20:57:10 UTC (rev 7876) +++ trunk/includes/phplot/phplot.php 2017-12-12 04:30:30 UTC (rev 7877) @@ -274,7 +274,7 @@ * $which_output_file : Filename for output. * $which_input_file : Path to a file to be used as background. */ - function PHPlot($which_width=600, $which_height=400, $which_output_file=NULL, $which_input_file=NULL) + function __construct($which_width=600, $which_height=400, $which_output_file=NULL, $which_input_file=NULL) { $this->SetRGBArray($this->color_array); |
From: <tu...@us...> - 2017-12-11 20:57:13
|
Revision: 7876 http://sourceforge.net/p/web-erp/reponame/7876 Author: turbopt Date: 2017-12-11 20:57:10 +0000 (Mon, 11 Dec 2017) Log Message: ----------- (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. Modified Paths: -------------- trunk/SelectSalesOrder.php trunk/doc/Change.log Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2017-12-11 17:47:30 UTC (rev 7875) +++ trunk/SelectSalesOrder.php 2017-12-11 20:57:10 UTC (rev 7876) @@ -286,6 +286,7 @@ suppdeladdress5, suppdeladdress6, supptel, + contact, version, revised, deliveryby, @@ -300,12 +301,12 @@ '" . $SuppRow['rate'] . "', '" . $_SESSION['UserID'] . "', '" . $_SESSION['UserStockLocation'] . "', - '" . $DelAddRow['locationname'] . "', '" . $DelAddRow['deladd1'] . "', '" . $DelAddRow['deladd2'] . "', '" . $DelAddRow['deladd3'] . "', '" . $DelAddRow['deladd4'] . "', - '" . $DelAddRow['deladd5'] . ' ' . $DelAddRow['deladd6'] . "', + '" . $DelAddRow['deladd5'] . "', + '" . $DelAddRow['deladd6'] . "', '" . $DelAddRow['tel'] . "', '" . $SuppRow['address1'] . "', '" . $SuppRow['address2'] . "', @@ -314,6 +315,7 @@ '" . $SuppRow['address5'] . "', '" . $SuppRow['address6'] . "', '" . $SuppRow['telephone'] . "', + '" . $DelAddRow['contact'] . "', '1.0', '" . Date('Y-m-d') . "', '" . $_SESSION['Default_Shipper'] . "', @@ -345,7 +347,7 @@ '" . FormatDateForSQL($DeliveryDate) . "', '" . $ItemRow['suppliers_partno'] . ' ' . $ItemRow['supplierdescription'] . "', '" . $ItemRow['stockact'] . "', - '" . $ItemRow['price'] . "', + '" . $ItemRow['price']/$ItemRow['conversionfactor'] . "', '" . $ItemRow['orderqty'] . "', '" . $ItemRow['suppliersuom'] . "', '" . $ItemRow['suppliers_partno'] . "', @@ -354,7 +356,7 @@ $DbgMsg =_('The SQL statement used to insert the purchase order detail record and failed was'); $result =DB_query($sql,$ErrMsg,$DbgMsg,true); - $Order_Value += ($ItemRow['price']*$ItemRow['orderqty']); + $Order_Value += ($ItemRow['price']*$ItemRow['orderqty']/$ItemRow['conversionfactor']); } /* end of the loop round the items on the sales order that we wish to place purchase orders for */ Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-11 17:47:30 UTC (rev 7875) +++ trunk/doc/Change.log 2017-12-11 20:57:10 UTC (rev 7876) @@ -1,5 +1,6 @@ webERP Change Log +11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. 11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php 6/12/17 RChacon: Order by transaction date and add link to debtors in Dashboard.php script. 3/12/17 Phil commited Tim's BankAccountBalances.php script |
From: <tu...@us...> - 2017-12-11 17:47:32
|
Revision: 7875 http://sourceforge.net/p/web-erp/reponame/7875 Author: turbopt Date: 2017-12-11 17:47:30 +0000 (Mon, 11 Dec 2017) Log Message: ----------- PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php Modified Paths: -------------- trunk/doc/Change.log trunk/includes/htmlMimeMail.php trunk/includes/mimePart.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-08 04:09:11 UTC (rev 7874) +++ trunk/doc/Change.log 2017-12-11 17:47:30 UTC (rev 7875) @@ -1,5 +1,6 @@ webERP Change Log +11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php 6/12/17 RChacon: Order by transaction date and add link to debtors in Dashboard.php script. 3/12/17 Phil commited Tim's BankAccountBalances.php script 2/12/17 Exson: Fixed the outstanding quantity is not right in PO_SelectOSPurchOrder.php. Modified: trunk/includes/htmlMimeMail.php =================================================================== --- trunk/includes/htmlMimeMail.php 2017-12-08 04:09:11 UTC (rev 7874) +++ trunk/includes/htmlMimeMail.php 2017-12-11 17:47:30 UTC (rev 7875) @@ -90,7 +90,7 @@ * if supplied. */ - function htmlMimeMail() + function __construct() { /** * Initialise some variables. Modified: trunk/includes/mimePart.php =================================================================== --- trunk/includes/mimePart.php 2017-12-08 04:09:11 UTC (rev 7874) +++ trunk/includes/mimePart.php 2017-12-11 17:47:30 UTC (rev 7875) @@ -124,7 +124,7 @@ * charset - Character set to use * @access public */ - function Mail_mimePart($body = '', $params = array()) + function __construct($body = '', $params = array()) { if (!defined('MAIL_MIMEPART_CRLF')) { define('MAIL_MIMEPART_CRLF', defined('MAIL_MIME_CRLF') ? MAIL_MIME_CRLF : "\r\n", TRUE); |