From: <dai...@us...> - 2013-09-06 10:24:22
|
Revision: 6329 http://sourceforge.net/p/web-erp/reponame/6329 Author: daintree Date: 2013-09-06 10:24:12 +0000 (Fri, 06 Sep 2013) Log Message: ----------- salesanalysis update Modified Paths: -------------- trunk/doc/Change.log trunk/includes/MainMenuLinksArray.php trunk/install/index.php 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.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/lv_LV.utf8/LC_MESSAGES/messages.mo trunk/locale/lv_LV.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 Added Paths: ----------- trunk/Z_UpdateSalesAnalysisWithLatestCustomerData.php trunk/sql/mysql/upgrade4.11-4.12.sql Added: trunk/Z_UpdateSalesAnalysisWithLatestCustomerData.php =================================================================== --- trunk/Z_UpdateSalesAnalysisWithLatestCustomerData.php (rev 0) +++ trunk/Z_UpdateSalesAnalysisWithLatestCustomerData.php 2013-09-06 10:24:12 UTC (rev 6329) @@ -0,0 +1,50 @@ +<?php + +/* $Id: Z_UpdateSalesAnalysisWithLatestCustomerData.php 5784 2012-12-29 04:00:43Z daintree $*/ + +include('includes/session.inc'); +$Title=_('Apply Current Customer and Branch Data to Sales Analysis'); +include('includes/header.inc'); + +echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '"> + <div> + <input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" /> + <br /> + <input type="submit" name="UpdateSalesAnalysis" value="' . _('Update Sales Analysis Customer Data') .'" /> + </div> + </form>'; + +if (isset($_POST['UpdateSalesAnalysis'])){ + + /* Loop around each customer/branch combo */ + + $sql = "SELECT debtorsmaster.debtorno, + branchcode, + salestype, + area, + salesman + FROM debtorsmaster INNER JOIN custbranch + ON debtorsmaster.debtorno=custbranch.debtorno"; + + $ErrMsg = _('Could not retrieve the customer records to be updated because'); + $result = DB_query($sql,$db,$ErrMsg); + + while ($CustomerRow = DB_fetch_array($result)){ + + $SQL = "UPDATE salesanalysis SET area = '" . $CustomerRow['area'] . "', + typeabbrev= '" . $CustomerRow['salestype'] . "', + salesperson= '" . $CustomerRow['salesman'] . "' + WHERE cust='" . $CustomerRow['debtorno'] . "' + AND custbranch ='" . $CustomerRow['branchcode'] . "'"; + + $ErrMsg = _('Could not update the sales analysis records for') . ' ' . $CustomerRow['debtorno'] . ' ' . _('because'); + $UpdResult = DB_query($SQL,$db,$ErrMsg); + + prnMsg(_('Updated sales analysis for customer code') . ': ' . $CustomerRow['debtorno'] . ' ' . _('and branch code') . ': ' . $CustomerRow['branchcode'],'success'); + } + + + prnMsg(_('Updated the sales analysis with all the latest sales areas, salesman and sales types as set up now'),'success'); +} +include('includes/footer.inc'); +?> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/doc/Change.log 2013-09-06 10:24:12 UTC (rev 6329) @@ -1,57 +1,62 @@ webERP Change Log -5/9/2013 icedlava: Stocks.php Set error message for upload image failure when no upload tmp directory set in php. -5/9/2013 icedlava: Stocks.php Clear item image for new item creation. -5/9/2013 icedlava: Suppliers.php regex pattern for email, also not all suppliers have email. -4/9/2013 Exson: Fixed the undefined StockID error and make it html5 compatible and table sorting in StockReorderLevel.php -2/9/2013 icedlava: SelectOrderItems.php fix frequently ordered items to accept entry as was not working. -2/9/2013 icedlava: inc tax corrected to ex tax on ConfirmDespatch.php and DeliveryDetails.php + +6/9/13 Version 4.11.1 + +6/9/13 Phil: Typo in ConfirmDispatch_Invoice preventing invoicing - changed patterns to remove {1,20} statements which make the pattern fail to validate. SelectProduct removed pattern from keyword search on description to allow entry of any characte as reported by Brian May +5/9/13 icedlava: Stocks.php Set error message for upload image failure when no upload tmp directory set in php. +5/9/13 icedlava: Stocks.php Clear item image for new item creation. +5/9/13 icedlava: Suppliers.php regex pattern for email, also not all suppliers have email. +4/9/13 Exson: Fixed the undefined StockID error and make it html5 compatible and table sorting in StockReorderLevel.php +2/9/13 icedlava: SelectOrderItems.php fix frequently ordered items to accept entry as was not working. +2/9/13 icedlava: inc tax corrected to ex tax on ConfirmDespatch.php and DeliveryDetails.php + 1/9/13 Version 4.11.0 -29/8/2013 Exson: Fixed the pattern typo error in StockCategories.php. -28/8/2013 Exson: Fixed html tag mark error and make it html5 compatible and table sortable in StockStatus.php -28/8/2013 Exson: Fixed MiscFunctions.js bug which make onclick event failed for tag whose class is date, number or integer. Solution from Tim. And update the sql file in coa directory. -27/8/2013 Exson: Remove the option of weberp-demo.sql to avoid installation error. Reported by icedlava. -27/8/2013 icedlava: Allow display of BOM component entry screen after deletion of component in BOM.php -27/8/2013 icedlava: Fix rounding error in supplier unit price when less than 1 -26/8/2013 Exson Add A default company name to make the installation as dummy as possible. -26/8/2013 icedlava: Fix COGS and Sales GL interface to include AN area and specific Sales Type and Stock Category. -21/8/2013 Thumb: Fixed the object no definition error in StockTransfers.php. -21/8/2013 Exson: Fixed the notice error of undefined index Status and and space for some string. -21/8/2013 Exson: Fixed the sortable not workable bug in Prices.php. -21/8/2013 Exson: Change sortable block from table to tbody. Reported by Tim. -20/8/2013 Exson: make StockUsage.php html5 compatible and table sortable. -20/8/2013 Exson: html5 compatible and table sortable for SuppContractChgs.php,SuppCreditGRNs.php,SuppFixedAssetChgs.php,SuppInvGRNs.php, SupplierAllocations.php -20/8/2013 Exson: Make SupplierInquiry.php table sortable -20/8/2013 Exson: SupplierContacts.php html5 compatible and table sortable. -20/8/2013 Exson: Make SupplierCredit.php html5 compatible. -20/8/2013 Exson: Use manually instead of manual to make distinguish translation possible and make it html5 compatible in SupplierInvoice.php. -19/9/2013 Exson: Fixed the typo that should be class integer instead of type integer. Reported by Tim. -19/8/2013 Exson: Fixed the account code pattern to make it compatible with the definition in GLAccounts.php -19/8/2013 Exson: Fixed the type error to class is integer. Reported by Tim. -19/8/2013 Exson: Fixed blank validation error in Suppliers.php and make it html5 compatible. -19/8/2013 Exson: Add warning messages for no suppliers returned in SupplierTenderCreate.php and make it html5 compatible and table sortable. -19/8/2013 Exson: Make SupplierTenders.php html5 compatible and sortable. -19/8/2013 Exson: Fixed the validation error which allow blank supplier type and make it html5 compatible and sortable. -19/8/2013 Exson: Make SuppLoginSetup.php html5 compatible. -16/8/2013 Exson: Remove redundant Ref no and make SuppPaymentRun.php html5 compatible. -16/08/2013 Exson: Make the SuppShiptChgs.php html5 compatible. -16/08/2013 Exson: Fixed the account code max length in SuppTransGLAnalysis.php and make it html5 compatible. -15/8/2013 Exson: Modify 'manual' to 'manually' in SystemParameters.php to remove the translation frustration and make it html5 compatible. -15/8/2013 Exson: Make TaxAuthorities.php html5 compatible and table columns sortable. -15/8/2013 Exson: Make TaxAuthorityRates.php html5 compatible. -15/8/2013 Exson: Make the tax category 'Freight' undeleted in TaxCategories.php and make it html5 compatible and table sortable. -15/8/2013 Exson: Make TaxGroups.php html5 compatible. -15/8/2013 Exson: Make TaxProvinces.php html5 compatible. -15/8/2013 Exson: Fixed the no-number warning in TopItems.php and make it html5 compatible. +29/8/13 Exson: Fixed the pattern typo error in StockCategories.php. +28/8/13 Exson: Fixed html tag mark error and make it html5 compatible and table sortable in StockStatus.php +28/8/13 Exson: Fixed MiscFunctions.js bug which make onclick event failed for tag whose class is date, number or integer. Solution from Tim. And update the sql file in coa directory. +27/8/13 Exson: Remove the option of weberp-demo.sql to avoid installation error. Reported by icedlava. +27/8/13 icedlava: Allow display of BOM component entry screen after deletion of component in BOM.php +27/8/13 icedlava: Fix rounding error in supplier unit price when less than 1 +26/8/13 Exson Add A default company name to make the installation as dummy as possible. +26/8/13 icedlava: Fix COGS and Sales GL interface to include AN area and specific Sales Type and Stock Category. +21/8/13 Thumb: Fixed the object no definition error in StockTransfers.php. +21/8/13 Exson: Fixed the notice error of undefined index Status and and space for some string. +21/8/13 Exson: Fixed the sortable not workable bug in Prices.php. +21/8/13 Exson: Change sortable block from table to tbody. Reported by Tim. +20/8/13 Exson: make StockUsage.php html5 compatible and table sortable. +20/8/13 Exson: html5 compatible and table sortable for SuppContractChgs.php,SuppCreditGRNs.php,SuppFixedAssetChgs.php,SuppInvGRNs.php, SupplierAllocations.php +20/8/13 Exson: Make SupplierInquiry.php table sortable +20/8/13 Exson: SupplierContacts.php html5 compatible and table sortable. +20/8/13 Exson: Make SupplierCredit.php html5 compatible. +20/8/13 Exson: Use manually instead of manual to make distinguish translation possible and make it html5 compatible in SupplierInvoice.php. +19/9/13 Exson: Fixed the typo that should be class integer instead of type integer. Reported by Tim. +19/8/13 Exson: Fixed the account code pattern to make it compatible with the definition in GLAccounts.php +19/8/13 Exson: Fixed the type error to class is integer. Reported by Tim. +19/8/13 Exson: Fixed blank validation error in Suppliers.php and make it html5 compatible. +19/8/13 Exson: Add warning messages for no suppliers returned in SupplierTenderCreate.php and make it html5 compatible and table sortable. +19/8/13 Exson: Make SupplierTenders.php html5 compatible and sortable. +19/8/13 Exson: Fixed the validation error which allow blank supplier type and make it html5 compatible and sortable. +19/8/13 Exson: Make SuppLoginSetup.php html5 compatible. +16/8/13 Exson: Remove redundant Ref no and make SuppPaymentRun.php html5 compatible. +16/08/13 Exson: Make the SuppShiptChgs.php html5 compatible. +16/08/13 Exson: Fixed the account code max length in SuppTransGLAnalysis.php and make it html5 compatible. +15/8/13 Exson: Modify 'manual' to 'manually' in SystemParameters.php to remove the translation frustration and make it html5 compatible. +15/8/13 Exson: Make TaxAuthorities.php html5 compatible and table columns sortable. +15/8/13 Exson: Make TaxAuthorityRates.php html5 compatible. +15/8/13 Exson: Make the tax category 'Freight' undeleted in TaxCategories.php and make it html5 compatible and table sortable. +15/8/13 Exson: Make TaxGroups.php html5 compatible. +15/8/13 Exson: Make TaxProvinces.php html5 compatible. +15/8/13 Exson: Fixed the no-number warning in TopItems.php and make it html5 compatible. 14/8/2012 Exson: make UnitsOfMeasure.php html5 compatible. -14/08/2013 Exson: html5 compatible for UserSettings.php -14/8/2013 Exson: Make table in WorkCentres.php sortable. -14/8/2013 Exson: make WhereUsedInquiry.php Html5 compatible. -14/08/2013 Exson: Make WorkCentres.php html5 compatible. -14/8/2013 Exson: HTML5 compatible for WorkOrderEntry.php. -14/8/2013 Exson: fixed the in_array() warning in WorkOrderIssue.php and make it html5 compatible. -14/8/2013 Exson: html5 compatible for WorkOrderReceive.php -14/08/2013 Exson: Html5 compatible +14/08/13 Exson: html5 compatible for UserSettings.php +14/8/13 Exson: Make table in WorkCentres.php sortable. +14/8/13 Exson: make WhereUsedInquiry.php Html5 compatible. +14/08/13 Exson: Make WorkCentres.php html5 compatible. +14/8/13 Exson: HTML5 compatible for WorkOrderEntry.php. +14/8/13 Exson: fixed the in_array() warning in WorkOrderIssue.php and make it html5 compatible. +14/8/13 Exson: html5 compatible for WorkOrderReceive.php +14/08/13 Exson: Html5 compatible 2013/08/14 Exson: Fixed INSERT sql errors and href link error and make it html5 compatible in WOSerialNos.php. 04/8/13 icedlava: Update Manual - Using the webERP Installer - rework of some text due to new installer, and updated screen shots 03/8/13 icedlava: Obfuscate database name in login, do not show company in login if directory/company not wanted. Modified: trunk/includes/MainMenuLinksArray.php =================================================================== --- trunk/includes/MainMenuLinksArray.php 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/includes/MainMenuLinksArray.php 2013-09-06 10:24:12 UTC (rev 6329) @@ -524,7 +524,8 @@ _('Update costs for all BOM items, from the bottom up'), _('Re-apply costs to Sales Analysis'), _('Delete sales transactions'), - _('Reverse all supplier payments on a specified date')); + _('Reverse all supplier payments on a specified date'), + _('Update sales analysis with latest customer data')); $MenuItems['Utilities']['Transactions']['URL'] = array( '/Z_ImportGLTransactions.php', '/Z_ChangeCustomerCode.php', @@ -536,7 +537,8 @@ '/Z_BottomUpCosts.php', '/Z_ReApplyCostToSA.php', '/Z_DeleteSalesTransActions.php', - '/Z_ReverseSuppPaymentRun.php'); + '/Z_ReverseSuppPaymentRun.php', + '/Z_UpdateSalesAnalysisWithLatestCustomerData.php'); $MenuItems['Utilities']['Reports']['Caption'] = array( _('Show Local Currency Total Debtor Balances'), _('Show Local Currency Total Suppliers Balances'), Modified: trunk/install/index.php =================================================================== --- trunk/install/index.php 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/install/index.php 2013-09-06 10:24:12 UTC (rev 6329) @@ -1023,13 +1023,13 @@ <label for="CountrySQL"><?php echo _("Chart of Accounts"); ?>: </label> <select name="CountrySQL"> <?php - $CountrySQLs = scandir('../sql/mysql/coa'); + $CountrySQLs = scandir('../sql/mysql/country_sql'); $CountrySQLs = array_diff($CountrySQLs,array('.','..')); if(!empty($CountrySQLs)){ foreach($CountrySQLs as $Value){ - if($Value == 'weberp-new.sql'){ + if($Value == 'default.sql'){ echo '<option value="'.$Value.'" selected="true">' . $Value . '</option>'; - }elseif($Value != 'weberp-demo.sql'){// the demo sql selection is not necessary so not allowed + }elseif($Value != 'demo.sql'){// the demo sql selection is not necessary so not allowed echo '<option value="'.$Value.'">' . $Value . '</option>'; } } @@ -1038,7 +1038,7 @@ } ?> </select> - <span><?php echo _('A starter Chart of Accounts (use weberp-new.sql if having empty db problems)'); ?> </span> + <span><?php echo _('A starter Chart of Accounts (use default.sql if having empty db problems)'); ?> </span> </li> <li> <label for="TimeZone"><?php echo _("Time Zone"); ?>: </label> 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 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: web-erp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:19-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -4201,7 +4201,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "" @@ -36882,7 +36882,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "" @@ -37104,6 +37104,33 @@ msgid "Please re-select the reporting period" msgstr "" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +msgid "Update Sales Analysis Customer Data" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "لم أستطيع استرجاع القطاع المطلوب حاول مجددا" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "Updated sales analysis for customer code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "and branch code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "" Modified: trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 3.08\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:20-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Czech <cs...@li...>\n" @@ -4322,7 +4322,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "protože" @@ -39394,7 +39394,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "Nemohli přepočítat současné náklady na montážní položky" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Nepodařilo se aktualizovat analýzu prodeje záznamy" @@ -39620,6 +39620,38 @@ msgid "Please re-select the reporting period" msgstr "Prosím re-vyberte účetního období" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Použít aktuální náklady na analýzu prodeje" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Update Analýza prodeje Náklady" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "" +"Nepodařilo se načíst prodeje analýza záznamů, které se aktualizovat, protože" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Aktualizováno analýzu prodeje za období" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Kód oboru" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Upgrade webERP 3,01 až 3,02" Modified: trunk/locale/de_DE.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: WebERP 4.09.1/trunk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-08-11 18:37-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Deutsch <web...@li...>\n" @@ -4354,7 +4354,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "weil" @@ -39576,7 +39576,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "Konnte die aktuellen Kosten nicht ermitteln für den Sammelartikel" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Konnte die Umsatzpositionen nicht ändern für" @@ -39802,6 +39802,37 @@ msgid "Please re-select the reporting period" msgstr "Bitte geben Sie die Buchungsperiode nochmals ein" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Umsatzpositionen neu bewerten" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Umsätze neu mit Kosten bewerten" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "Konnte die neu zu bewertenden Umsatzpositionen nicht abrufen, weil" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Umsatzpositionen wurden geändert für Periode" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Niederlassung" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Upgrade von webERP Version 3.01 auf 3.02" Modified: trunk/locale/el_GR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:22-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -4422,7 +4422,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "επειδή" @@ -40917,7 +40917,7 @@ "Θα μπορούσε να μην υπολογίσει εκ νέου το τρέχον κόστος του στοιχείου " "συναρμολόγησης" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Δεν μπορέσαμε να ενημερώσουμε τα αρχεία ανάλυση των πωλήσεων για" @@ -41147,6 +41147,39 @@ msgid "Please re-select the reporting period" msgstr "Παρακαλώ επιλέξτε ξανά την περίοδο αναφοράς" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Εφαρμόστε τρέχον κόστος για Ανάλυση Πωλήσεων" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Ενημέρωση των δικαστικών εξόδων Ανάλυση Πωλήσεων" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "" +"Δεν μπόρεσα να ανακτήσετε τα αρχεία ανάλυση των πωλήσεων να ενημερωθεί, " +"επειδή" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Ενημερώθηκε ανάλυση πωλήσεων για την περίοδο" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Κωδικός Δικτύου" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Αναβάθμιση webERP 3,01 - 3,02" Modified: trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot =================================================================== --- trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot 2013-09-06 10:24:12 UTC (rev 6329) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -3992,7 +3992,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "" @@ -34406,7 +34406,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "" @@ -34624,6 +34624,30 @@ msgid "Please re-select the reporting period" msgstr "" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +msgid "Update Sales Analysis Customer Data" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +msgid "Could not retrieve the customer records to be updated because" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "Updated sales analysis for customer code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "and branch code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "Updated the sales analysis with all the latest sales areas, salesman and sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "" Modified: trunk/locale/en_US.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/en_US.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/en_US.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/en_US.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: WebERP 4.10.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-11 10:48-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: WebERP Translation Team <web-erp-translation@lists." @@ -4244,7 +4244,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "" @@ -37893,7 +37893,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "" @@ -38118,6 +38118,34 @@ msgid "Please re-select the reporting period" msgstr "" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +msgid "Update Sales Analysis Customer Data" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "The Shipping cost record could not be updated because" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "Updated sales analysis for customer code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Territory code" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "" Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: WebERP 4.081\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-08-12 18:32-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: TecnoSoluciones.com <web...@te...>\n" @@ -4367,7 +4367,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "porque" @@ -40040,7 +40040,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "No se pudo recalcular el costo actual del artículo ensamblado" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "No se pudo actualizar los registros de análisis de ventas para" @@ -40271,6 +40271,37 @@ msgid "Please re-select the reporting period" msgstr "Vuelva a seleccionar el período" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Aplicar Costo Corriente al Análisis de Ventas" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Actualizar el Analisis de Costo de Venta" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "No se pudieron obtener los registros de análisis de ventas porque" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Se actualizó el análisis de ventas para el período" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Código de sucursal" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Actualizar WebERP 3.01 - 3.02" Modified: trunk/locale/et_EE.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 4.0.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:24-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Estonian <kal...@ee...>\n" @@ -4264,7 +4264,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "" @@ -37345,7 +37345,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "" @@ -37567,6 +37567,33 @@ msgid "Please re-select the reporting period" msgstr "" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +msgid "Update Sales Analysis Customer Data" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "Ei leidnud emadetaili kirjeldust, kuna" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "Updated sales analysis for customer code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "and branch code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "" Modified: trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Persian & rtl support\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:25-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Persian <hos...@io...>\n" @@ -4324,7 +4324,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "زیرا" @@ -40447,7 +40447,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "ممکن است مکان فعلی سهام از جزء مونتاژ می کنید" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 #, fuzzy msgid "Could not update the sales analysis records for" msgstr "بروز رسانی می تواند دسته ای / پرونده سهام سریال نیست" @@ -40706,6 +40706,36 @@ msgid "Please re-select the reporting period" msgstr "لطفا reselect دوره گزارش" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "فروش تجزیه و تحلیل گزارش" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "آیا قیمت های ویژه می توان بازیابی نیست ، زیرا" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "بههنگام شده در دارایی ثابت برای رکورد رده" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "کد شاخه" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "" Modified: trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: WebERP 4.10.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-08-11 18:55-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: french <none>\n" @@ -4347,7 +4347,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "car" @@ -40222,7 +40222,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "Impossible de recalculer le coût actuel de l'élément de montage" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Impossible de mettre à jour les dossiers d'analyse des ventes pour" @@ -40452,6 +40452,39 @@ msgid "Please re-select the reporting period" msgstr "S'il vous plaît re-sélectionner la période de déclaration" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Appliquer le coût actuel d'analyse des ventes" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Les coûts de mise à jour d'analyse des ventes" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "" +"Impossible de récupérer les dossiers d'analyse des ventes à être mis à jour " +"en raison" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Mise à jour l'analyse des ventes pour la période" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Code Magasin" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Mise à jour webERP 3,01 à 3,02" Modified: trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: weberp 3.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-08-11 18:54-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: French <none>\n" @@ -4425,7 +4425,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "car" @@ -40768,7 +40768,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "Impossible de recalculer le coût actuel de l'élément de montage" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Impossible de mettre à jour les dossiers d'analyse des ventes pour" @@ -40998,6 +40998,39 @@ msgid "Please re-select the reporting period" msgstr "S'il vous plaît re-sélectionner la période de déclaration" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Appliquer le coût actuel aux analyses des ventes" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Les coûts de mise à jour d'analyse des ventes" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "" +"Impossible de récupérer les dossiers d'analyse des ventes à être mis à jour " +"en raison" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Mise à jour l'analyse des ventes pour la période" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Code succursale" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Mise à jour webERP 3,01 à 3,02" Modified: trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.mo =================================================================== --- trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.mo 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.mo 2013-09-06 10:24:12 UTC (rev 6329) @@ -2535,7 +2535,7 @@ -+ Modified: trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: web-erp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:29-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Swahili <sw...@li...>\n" @@ -4310,7 +4310,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "क्योंकि" @@ -39031,7 +39031,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "पुनर्गणना विधानसभा आइटम की मौजूदा कीमत नहीं किया जा सका" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "अद्यतन करने के लिए नहीं किया जा सका बिक्री विश्लेषण रिकॉर्ड" @@ -39253,6 +39253,38 @@ msgid "Please re-select the reporting period" msgstr "फिर समीक्षाधीन अवधि का चयन करें" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "लागू बिक्री विश्लेषण का वर्तमान मूल्य" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "अद्यतन बिक्री लागत विश्लेषण" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "" +"बिक्री विश्लेषण के लिए है क्योंकि अद्यतन किया जा रिकॉर्ड को पुनः प्राप्त नहीं किया जा सका" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "अवधि के लिए बिक्री के विश्लेषण करें" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "शाखा कोड" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "3.01 webERP अपग्रेड - 3.02" Modified: trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 3.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:29-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Miroslav Mazurek <mma...@sf...>\n" @@ -4228,7 +4228,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "" @@ -37433,7 +37433,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "" @@ -37655,6 +37655,35 @@ msgid "Please re-select the reporting period" msgstr "" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Izvješće o analizi prodaje" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "Podaci o prodaji nisu dohvaćeni zbog" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +msgid "Updated sales analysis for customer code" +msgstr "" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Šifra podružnice" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "" Modified: trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: web-erp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:31-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: HUNGARIAN <LL...@li...>\n" @@ -4298,7 +4298,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "mert" @@ -39323,7 +39323,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "Nem lehet újraszámolni a jelenlegi érték az egység elem" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Nem sikerült frissíteni az értékesítési elemzés nyilvántartást" @@ -39550,6 +39550,38 @@ msgid "Please re-select the reporting period" msgstr "Kérjük, válasszon újra a jelentési időszak" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Alkalmazni Jelenlegi költség az értékesítési elemzés" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Update Értékesítés elemzés költségei" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "" +"Nem lehet letölteni az értékesítési elemzés rekordokat frissíteni kell, mert" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Frissítve értékesítési elemzés időszakra" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Telephely kód" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Upgrade webERP 3,01-3,02" Modified: trunk/locale/id_ID.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/id_ID.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/id_ID.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/id_ID.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: weberp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:32-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: www.baliboss.com <op...@ba...>\n" @@ -4298,7 +4298,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "karena" @@ -38745,7 +38745,7 @@ msgid "Could not recalculate the current cost of the assembly item" msgstr "Tdk dapat menghitung-ulg HPP saat ini utk item rakitan" -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "Could not update the sales analysis records for" msgstr "Tdk dapat memperbarui data analisa penjualan utk" @@ -38969,6 +38969,37 @@ msgid "Please re-select the reporting period" msgstr "Silahkan pilih-ulg periode laporan" +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:6 +#, fuzzy +msgid "Apply Current Customer and Branch data to Sales Analysis" +msgstr "Gunakan HPP Saat-Ini ke Analisa Penjualan" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:14 +#, fuzzy +msgid "Update Sales Analysis Customer Data" +msgstr "Perbarui HPP Analisa Penjualan" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:29 +#, fuzzy +msgid "Could not retrieve the customer records to be updated because" +msgstr "Tdk dapat mengambil data analisa penjualan utk diperbarui karena" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "Updated sales analysis for customer code" +msgstr "Telah memperbarui analisa penjualan utk periode" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:43 +#, fuzzy +msgid "and branch code" +msgstr "Kode Cabang" + +#: Z_UpdateSalesAnalysisWithLatestCustomerData.php:47 +msgid "" +"Updated the sales analysis with all the latest sales areas, salesman and " +"sales types as set up now" +msgstr "" + #: Z_Upgrade_3.01-3.02.php:6 msgid "Upgrade webERP 3.01 - 3.02" msgstr "Upgrade webERP 3.01 - 3.02" Modified: trunk/locale/it_IT.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/it_IT.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/it_IT.utf8/LC_MESSAGES/messages.po 2013-09-06 08:45:56 UTC (rev 6328) +++ trunk/locale/it_IT.utf8/LC_MESSAGES/messages.po 2013-09-06 10:24:12 UTC (rev 6329) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Weberp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-06 20:40+1200\n" +"POT-Creation-Date: 2013-09-06 21:34+1200\n" "PO-Revision-Date: 2013-06-01 11:33-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: italian <none>\n" @@ -4411,7 +4411,7 @@ #: PricesBasedOnMarkUp.php:336 PricesBasedOnMarkUp.php:352 #: SelectCreditItems.php:1441 SpecialOrder.php:502 StockCategories.php:21 #: StockCategories.php:84 StockCategories.php:164 Z_ReApplyCostToSA.php:63 -#: Z_ReApplyCostToSA.php:75 +#: Z_ReApplyCostToSA.php:75 Z_UpdateSalesAnalysisWithLatestCustomerData.php:40 msgid "because" msgstr "perchè" @@ -405... [truncated message content] |