From: <dai...@us...> - 2017-06-24 00:07:22
|
Revision: 7796 http://sourceforge.net/p/web-erp/reponame/7796 Author: daintree Date: 2017-06-24 00:07:15 +0000 (Sat, 24 Jun 2017) Log Message: ----------- check favourites table exists before using it Modified Paths: -------------- trunk/includes/GetConfig.php trunk/includes/Z_POSDataCreation.php trunk/includes/session.php 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.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.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.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 trunk/sql/mysql/upgrade4.13.1-4.14.sql Modified: trunk/includes/GetConfig.php =================================================================== --- trunk/includes/GetConfig.php 2017-06-23 02:10:22 UTC (rev 7795) +++ trunk/includes/GetConfig.php 2017-06-24 00:07:15 UTC (rev 7796) @@ -115,9 +115,19 @@ $_SESSION['SMTPSettings']['timeout']=$myrow['timeout']; $_SESSION['SMTPSettings']['auth']=$myrow['auth']; } - //Add favorite scripts + //Add favorite scripts + //Check that the favourites table exists (upgrades will choke otherwise) + $sql = "SELECT href, caption FROM favourites WHERE userid='" . $_SESSION['UserID'] . "'"; - $result = DB_query($sql); + $result = DB_query($sql,'','',false,false); + if (DB_error_no()!=0) { + $result = DB_query("CREATE table favourites (userid varchar(20) NOT NULL DEFAULT '', + caption varchar(50) NOT NULL DEFAULT '', + href varchar(200) NOT NULL DEFAULT '#', + PRIMARY KEY (userid,caption)) + Engine=InnoDB DEFAULT CHARSET=utf8"); + $result = DB_query($sql); + } if (DB_num_rows($result)>0) { while ($myrow = DB_fetch_array($result)) { $_SESSION['Favourites'][$myrow['href']] = $myrow['caption']; Modified: trunk/includes/Z_POSDataCreation.php =================================================================== --- trunk/includes/Z_POSDataCreation.php 2017-06-23 02:10:22 UTC (rev 7795) +++ trunk/includes/Z_POSDataCreation.php 2017-06-24 00:07:15 UTC (rev 7796) @@ -122,11 +122,13 @@ fwrite($FileHandle,"DELETE FROM stockmaster;\n"); - $result = DB_query("SELECT stockid, categoryid, description, longdescription, units, barcode, taxcatid, decimalplaces, discountcategory FROM stockmaster WHERE (mbflag='B' OR mbflag='M' OR mbflag='D' OR mbflag='A') AND discontinued=0 AND controlled=0"); + //$result = DB_query("SELECT stockid, categoryid, description, longdescription, units, barcode, taxcatid, decimalplaces, discountcategory FROM stockmaster WHERE (mbflag='B' OR mbflag='M' OR mbflag='D' OR mbflag='A') AND discontinued=0 AND controlled=0"); + $result = DB_query("SELECT stockid, categoryid, description, longdescription, units, barcode, taxcatid, decimalplaces, discountcategory, controlled FROM stockmaster WHERE (mbflag='B' OR mbflag='M' OR mbflag='D' OR mbflag='A') AND discontinued=0"); + while ($myrow = DB_fetch_array($result)) { - fwrite($FileHandle,"INSERT INTO stockmaster VALUES ('" . SQLite_Escape($myrow['stockid']) . "', '" . SQLite_Escape($myrow['categoryid']) . "', '" . SQLite_Escape ($myrow['description']) . "', '" . SQLite_Escape(str_replace("\n", '', $myrow['longdescription'])) . "', '" . SQLite_Escape($myrow['units']) . "', '" . SQLite_Escape ($myrow['barcode']) . "', '" . $myrow['taxcatid'] . "', '" . $myrow['decimalplaces'] . "', '" . SQLite_Escape($myrow['discountcategory']) . "');\n"); + fwrite($FileHandle,"INSERT INTO stockmaster VALUES ('" . SQLite_Escape($myrow['stockid']) . "', '" . SQLite_Escape($myrow['categoryid']) . "', '" . SQLite_Escape ($myrow['description']) . "', '" . SQLite_Escape(str_replace("\n", '', $myrow['longdescription'])) . "', '" . SQLite_Escape($myrow['units']) . "', '" . SQLite_Escape ($myrow['barcode']) . "', '" . $myrow['taxcatid'] . "', '" . $myrow['decimalplaces'] . "', '" . SQLite_Escape($myrow['discountcategory']) . "', '" . $myrow['controlled'] . "' );\n"); } fwrite($FileHandle,"DELETE FROM prices;\n"); Modified: trunk/includes/session.php =================================================================== --- trunk/includes/session.php 2017-06-23 02:10:22 UTC (rev 7795) +++ trunk/includes/session.php 2017-06-24 00:07:15 UTC (rev 7796) @@ -115,7 +115,7 @@ $result = DB_query($sqli); } } else { - + $sqli = "INSERT INTO favourites(href,caption,userid) VALUES "; $k = 0; foreach ($_SESSION['Favourites'] as $url=>$ttl) { @@ -129,7 +129,7 @@ $result = DB_query($sqli); } } -} + } header('Location: index.php'); } elseif (isset($AllowAnyone)){ /* only do security checks if AllowAnyone is not true */ Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-06-23 02:10:22 UTC (rev 7795) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-06-24 00:07:15 UTC (rev 7796) @@ -295,6 +295,7 @@ #: AccountGroups.php:476 AddCustomerContacts.php:165 #: AddCustomerContacts.php:275 AddCustomerContacts.php:279 #: AddCustomerContacts.php:282 BOMs.php:140 BOMs.php:896 BOMs.php:898 +#: 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 @@ -344,20 +345,20 @@ #: 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 "موافق" @@ -415,21 +416,20 @@ #: 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 "ﻻ" @@ -507,7 +507,6 @@ #: 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 "حذف" @@ -781,16 +780,17 @@ #: EmailCustTrans.php:65 Factors.php:246 Factors.php:297 Locations.php:639 #: OrderDetails.php:127 PDFRemittanceAdvice.php:251 PDFWOPrint.php:593 #: PDFWOPrint.php:596 PDFWOPrint.php:676 PDFWOPrint.php:679 -#: PO_PDFPurchOrder.php:400 PO_PDFPurchOrder.php:403 PrintCustStatements.php:99 -#: PrintCustTrans.php:740 PrintCustTransPortrait.php:788 -#: PrintCustTransPortrait.php:1034 PrintCustTransPortrait.php:1090 -#: SelectCustomer.php:408 SelectCustomer.php:730 SelectSupplier.php:290 -#: 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:788 PrintCustTransPortrait.php:1034 +#: PrintCustTransPortrait.php:1090 SelectCustomer.php:408 +#: SelectCustomer.php:730 SelectSupplier.php:290 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:298 -#: ../webSHOP/Register.php:595 +#: includes/PO_PDFOrderPageHeader.inc:29 ../webSHOP/Checkout.php:443 +#: ../webSHOP/Register.php:608 msgid "Email" msgstr "" @@ -835,16 +835,17 @@ 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:623 msgid "Contact Name" msgstr "" #: AddCustomerContacts.php:254 Contracts.php:788 PDFRemittanceAdvice.php:247 #: PO_Header.php:1026 PO_Header.php:1111 SelectCreditItems.php:246 -#: 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 +#: SelectCustomer.php:406 SelectOrderItems.php:626 +#: 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:737 msgid "Phone" msgstr "" @@ -916,7 +917,6 @@ #: 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 "" @@ -1028,7 +1028,6 @@ #: 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 "" @@ -1037,13 +1036,14 @@ 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:656 BOMs.php:1014 CollectiveWorkOrderCost.php:53 +#: BOMInquiry.php:198 BOMs.php:656 BOMs.php:1014 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:2102 #: CounterSales.php:2256 CreditStatus.php:152 CreditStatus.php:243 @@ -1092,8 +1092,8 @@ #: 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:236 +#: includes/PDFTransPageHeaderPortrait.inc:256 api/api_xml-rpc.php:3489 +#: ../webSHOP/includes/PlaceOrder.php:250 msgid "Description" msgstr "" @@ -1140,10 +1140,10 @@ #: 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 -#: reportwriter/languages/en_US/reports.php:107 -#: ../webSHOP/includes/DisplayShoppingCart.php:7 -#: ../webSHOP/includes/PlaceOrder.php:285 +#: 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 msgid "Total" msgstr "" @@ -1244,9 +1244,6 @@ #: Tax.php:310 Z_DataExport.php:72 Z_DataExport.php:168 Z_DataExport.php:259 #: Z_DataExport.php:308 Z_DataExport.php:347 Z_DataExport.php:383 #: Z_DataExport.php:419 Z_DataExport.php:471 Z_poRebuildDefault.php:41 -#: includes/ConstructSQLForUserDefinedSalesReport.inc:180 -#: includes/ConstructSQLForUserDefinedSalesReport.inc:188 -#: includes/ConstructSQLForUserDefinedSalesReport.inc:343 #: includes/PDFPaymentRun_PymtFooter.php:59 #: includes/PDFPaymentRun_PymtFooter.php:89 #: includes/PDFPaymentRun_PymtFooter.php:119 @@ -1253,6 +1250,9 @@ #: includes/PDFPaymentRun_PymtFooter.php:156 #: includes/PDFPaymentRun_PymtFooter.php:187 #: includes/PDFPaymentRun_PymtFooter.php:218 +#: includes/ConstructSQLForUserDefinedSalesReport.inc:180 +#: includes/ConstructSQLForUserDefinedSalesReport.inc:188 +#: includes/ConstructSQLForUserDefinedSalesReport.inc:343 msgid "Back to the menu" msgstr "" @@ -1303,9 +1303,10 @@ #: includes/PDFPaymentRun_PymtFooter.php:91 #: includes/PDFPaymentRun_PymtFooter.php:121 #: includes/PDFPaymentRun_PymtFooter.php:158 -#: includes/PDFPaymentRun_PymtFooter.php:189 +#: includes/PDFPaymentRun_PymtFooter.php:189 includes/ConnectDB_mysqli.inc:70 +#: includes/ConnectDB_mysql.inc:62 #: ../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 "" @@ -1462,7 +1463,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 "" @@ -1472,12 +1473,13 @@ msgid "Horizontal Analysis of Statement of Comprehensive Income" msgstr "" -#: AnalysisHorizontalIncome.php:26 GLProfit_Loss.php:14 GLTagProfit_Loss.php:14 -#: Z_UpdateChartDetailsBFwd.php:14 +#: AnalysisHorizontalIncome.php:26 GLProfit_Loss.php:14 +#: GLTagProfit_Loss.php:14 Z_UpdateChartDetailsBFwd.php:14 msgid "The selected period from is actually after the period to" msgstr "" -#: AnalysisHorizontalIncome.php:26 GLProfit_Loss.php:14 GLTagProfit_Loss.php:14 +#: AnalysisHorizontalIncome.php:26 GLProfit_Loss.php:14 +#: GLTagProfit_Loss.php:14 msgid "Please reselect the reporting period" msgstr "" @@ -1558,25 +1560,25 @@ msgid "Show on Screen (HTML)" msgstr "" -#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 GLProfit_Loss.php:577 -#: GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 +#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 +#: GLProfit_Loss.php:577 GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 msgid "A period up to 12 months in duration can be specified" msgstr "" -#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 GLProfit_Loss.php:577 -#: GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 +#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 +#: GLProfit_Loss.php:577 GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 msgid "" "the system automatically shows a comparative for the same period from the " "previous year" msgstr "" -#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 GLProfit_Loss.php:577 -#: GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 +#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 +#: GLProfit_Loss.php:577 GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 msgid "it cannot do this if a period of more than 12 months is specified" msgstr "" -#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 GLProfit_Loss.php:577 -#: GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 +#: AnalysisHorizontalIncome.php:135 GLProfit_Loss.php:147 +#: GLProfit_Loss.php:577 GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:480 msgid "Please select an alternative period range" msgstr "" @@ -1917,13 +1919,13 @@ #: StockLocStatus.php:94 StockLocStatus.php:99 StockLocStatus.php:104 #: StockLocStatus.php:109 StockQuantityByDate.php:25 SupplierPriceList.php:27 #: SupplierPriceList.php:29 SupplierTenderCreate.php:683 -#: SupplierTenderCreate.php:685 SupplierTenders.php:409 SupplierTenders.php:411 -#: SupplierTransInquiry.php:31 SystemParameters.php:1119 -#: SystemParameters.php:1125 SystemParameters.php:1131 -#: SystemParameters.php:1137 SystemParameters.php:1143 TopItems.php:32 -#: TopItems.php:49 TopItems.php:71 TopItems.php:73 WorkOrderEntry.php:903 -#: WorkOrderEntry.php:906 WorkOrderIssue.php:964 WorkOrderIssue.php:967 -#: reportwriter/languages/en_US/reports.php:54 +#: SupplierTenderCreate.php:685 SupplierTenders.php:409 +#: SupplierTenders.php:411 SupplierTransInquiry.php:31 +#: SystemParameters.php:1119 SystemParameters.php:1125 +#: SystemParameters.php:1131 SystemParameters.php:1137 +#: SystemParameters.php:1143 TopItems.php:32 TopItems.php:49 TopItems.php:71 +#: TopItems.php:73 WorkOrderEntry.php:903 WorkOrderEntry.php:906 +#: WorkOrderIssue.php:964 WorkOrderIssue.php:967 msgid "All" msgstr "" @@ -1971,7 +1973,6 @@ #: Z_CheckAllocationsFrom.php:32 Z_CheckAllocationsFrom.php:57 #: Z_CheckAllocs.php:62 Z_CheckGLTransBalance.php:12 #: includes/InputSerialItemsFile.php:94 includes/InputSerialItemsFile.php:152 -#: reportwriter/languages/en_US/reports.php:111 msgid "Type" msgstr "" @@ -1980,7 +1981,7 @@ msgstr "" #: AuditTrail.php:179 api/api_xml-rpc.php:311 api/api_xml-rpc.php:777 -#: api/api_xml-rpc.php:2187 reportwriter/languages/en_US/reports.php:72 +#: api/api_xml-rpc.php:2187 msgid "Field Name" msgstr "" @@ -2040,7 +2041,6 @@ #: SalesInquiry.php:798 SalesInquiry.php:1107 StockDispatch.php:515 #: StockLocTransferReceive.php:106 SupplierTransInquiry.php:56 #: includes/PO_PDFOrderPageHeader.inc:40 -#: reportwriter/languages/en_US/reports.php:105 msgid "To" msgstr "" @@ -2925,7 +2925,8 @@ #: includes/PDFInventoryValnPageHeader.inc:39 #: includes/PDFOrderPageHeader_generic.inc:93 #: includes/PDFPeriodStockTransListingPageHeader.inc:50 -#: includes/PDFPickingListHeader.inc:74 includes/PDFQuotationPageHeader.inc:108 +#: includes/PDFPickingListHeader.inc:74 +#: includes/PDFQuotationPageHeader.inc:108 #: includes/PDFQuotationPortraitPageHeader.inc:95 #: includes/PDFSalesOrder_generic.inc:95 #: includes/PDFSellThroughSupportClaimPageHeader.inc:27 @@ -2995,9 +2996,11 @@ #: includes/PDFLowGPPageHeader.inc:16 #: includes/PDFOrderPageHeader_generic.inc:79 #: includes/PDFOstdgGRNsPageHeader.inc:16 -#: includes/PDFPaymentRunPageHeader.inc:11 includes/PDFPickingListHeader.inc:48 +#: includes/PDFPaymentRunPageHeader.inc:11 +#: includes/PDFPickingListHeader.inc:48 #: includes/PDFProfitAndLossPageHeader.inc:27 -#: includes/PDFSalesAnalPageHeader.inc:15 includes/PDFSalesOrder_generic.inc:81 +#: includes/PDFSalesAnalPageHeader.inc:15 +#: includes/PDFSalesOrder_generic.inc:81 #: includes/PDFSellThroughSupportClaimPageHeader.inc:16 #: includes/PDFStockCheckPageHeader.inc:12 #: includes/PDFStockComparisonPageHeader.inc:12 @@ -3004,11 +3007,11 @@ #: includes/PDFStockLocTransferHeader.inc:25 #: includes/PDFStockNegativesHeader.inc:12 #: includes/PDFStockTransferHeader.inc:16 -#: includes/PDFSupplierBalsPageHeader.inc:20 includes/PDFTabReportHeader.inc:15 +#: includes/PDFSupplierBalsPageHeader.inc:20 +#: includes/PDFTabReportHeader.inc:15 #: includes/PDFTagProfitAndLossPageHeader.inc:29 #: includes/PDFTaxPageHeader.inc:27 includes/PDFTopItemsHeader.inc:34 #: includes/PDFTrialBalancePageHeader.inc:18 -#: reportwriter/languages/en_US/reports.php:88 msgid "Printed" msgstr "" @@ -3046,7 +3049,8 @@ #: includes/PDFProfitAndLossPageHeader.inc:28 #: includes/PDFQuotationPageHeader.inc:32 #: includes/PDFQuotationPortraitPageHeader.inc:81 -#: includes/PDFSalesAnalPageHeader.inc:15 includes/PDFSalesOrder_generic.inc:85 +#: includes/PDFSalesAnalPageHeader.inc:15 +#: includes/PDFSalesOrder_generic.inc:85 #: includes/PDFSellThroughSupportClaimPageHeader.inc:16 #: includes/PDFStatementPageHeader.inc:40 #: includes/PDFStatementPageHeader.inc:43 @@ -3064,7 +3068,6 @@ #: includes/PDFTransPageHeaderPortrait.inc:37 #: includes/PDFTrialBalancePageHeader.inc:18 includes/PDFWOPageHeader.inc:12 #: includes/PO_PDFOrderPageHeader.inc:17 -#: reportwriter/languages/en_US/reports.php:86 msgid "Page" msgstr "" @@ -3077,14 +3080,15 @@ msgstr "" #: BOMExtendedQty.php:327 BOMInquiry.php:110 BOMs.php:1015 -#: CollectiveWorkOrderCost.php:326 CounterReturns.php:1690 -#: CounterSales.php:2104 CounterSales.php:2258 InternalStockRequest.php:636 -#: PO_SelectOSPurchOrder.php:311 PO_SelectPurchOrder.php:215 -#: PurchaseByPrefSupplier.php:415 ReorderLevelLocation.php:75 -#: ReorderLevelLocation.php:76 SelectCompletedOrder.php:507 -#: SelectOrderItems.php:1513 SelectOrderItems.php:1685 SelectQASamples.php:300 -#: SelectSalesOrder.php:604 SelectWorkOrder.php:220 Shipt_Select.php:192 -#: TestPlanResults.php:178 TopItems.php:174 includes/PDFTopItemsHeader.inc:54 +#: BOMs_SingleLevel.php:906 CollectiveWorkOrderCost.php:326 +#: CounterReturns.php:1690 CounterSales.php:2104 CounterSales.php:2258 +#: InternalStockRequest.php:636 PO_SelectOSPurchOrder.php:311 +#: PO_SelectPurchOrder.php:215 PurchaseByPrefSupplier.php:415 +#: ReorderLevelLocation.php:75 ReorderLevelLocation.php:76 +#: SelectCompletedOrder.php:507 SelectOrderItems.php:1513 +#: SelectOrderItems.php:1685 SelectQASamples.php:300 SelectSalesOrder.php:604 +#: SelectWorkOrder.php:220 Shipt_Select.php:192 TestPlanResults.php:178 +#: TopItems.php:174 includes/PDFTopItemsHeader.inc:54 msgid "On Hand" msgstr "" @@ -3158,12 +3162,12 @@ msgid "WC" msgstr "" -#: BOMIndented.php:326 BOMs.php:499 ConfirmDispatch_Invoice.php:1052 -#: CounterReturns.php:1070 CounterSales.php:1474 Credit_Invoice.php:822 -#: Credit_Invoice.php:852 SelectCreditItems.php:1501 StockClone.php:863 -#: StockClone.php:865 Stocks.php:1191 Stocks.php:1193 -#: api/api_debtortransactions.php:753 api/api_salesorders.php:920 -#: reportwriter/languages/en_US/reports.php:56 +#: BOMIndented.php:326 BOMs.php:499 BOMs_SingleLevel.php:428 +#: ConfirmDispatch_Invoice.php:1052 CounterReturns.php:1070 +#: CounterSales.php:1474 Credit_Invoice.php:822 Credit_Invoice.php:852 +#: SelectCreditItems.php:1501 StockClone.php:863 StockClone.php:865 +#: Stocks.php:1191 Stocks.php:1193 api/api_debtortransactions.php:753 +#: api/api_salesorders.php:920 msgid "Assembly" msgstr "" @@ -3195,11 +3199,11 @@ msgid "Costed Bill Of Material" msgstr "" -#: BOMInquiry.php:20 BOMs.php:992 +#: BOMInquiry.php:20 BOMs.php:992 BOMs_SingleLevel.php:883 msgid "Select a manufactured part" msgstr "" -#: BOMInquiry.php:20 BOMs.php:992 +#: BOMInquiry.php:20 BOMs.php:992 BOMs_SingleLevel.php:883 msgid "or Assembly or Kit part" msgstr "" @@ -3207,20 +3211,20 @@ msgid "to view the costed bill of materials" msgstr "" -#: BOMInquiry.php:21 BOMs.php:992 +#: BOMInquiry.php:21 BOMs.php:992 BOMs_SingleLevel.php:883 msgid "Parts must be defined in the stock item entry" msgstr "" -#: BOMInquiry.php:21 BOMs.php:992 +#: BOMInquiry.php:21 BOMs.php:992 BOMs_SingleLevel.php:883 msgid "modification screen as manufactured" msgstr "" -#: BOMInquiry.php:21 BOMs.php:992 +#: BOMInquiry.php:21 BOMs.php:992 BOMs_SingleLevel.php:883 msgid "" "kits or assemblies to be available for construction of a bill of material" msgstr "" -#: BOMInquiry.php:26 BOMs.php:996 MRPDemands.php:336 +#: BOMInquiry.php:26 BOMs.php:996 BOMs_SingleLevel.php:887 MRPDemands.php:336 #: PO_SelectOSPurchOrder.php:288 PO_SelectPurchOrder.php:190 #: SelectQASamples.php:275 Shipt_Select.php:169 TestPlanResults.php:153 #: WorkOrderEntry.php:933 WorkOrderIssue.php:980 @@ -3227,7 +3231,7 @@ msgid "Enter text extracts in the" msgstr "" -#: BOMInquiry.php:26 BOMs.php:996 MRPDemands.php:336 +#: BOMInquiry.php:26 BOMs.php:996 BOMs_SingleLevel.php:887 MRPDemands.php:336 #: PO_SelectOSPurchOrder.php:288 PO_SelectPurchOrder.php:190 #: SelectQASamples.php:275 Shipt_Select.php:169 TestPlanResults.php:153 #: WorkOrderEntry.php:933 WorkOrderIssue.php:980 @@ -3234,10 +3238,11 @@ msgid "description" msgstr "" -#: BOMInquiry.php:28 BOMs.php:998 CollectiveWorkOrderCost.php:312 -#: ContractBOM.php:331 ContractBOM.php:336 Contracts.php:766 Contracts.php:769 -#: CounterReturns.php:1658 CounterSales.php:2225 CustItem.php:220 -#: CustomerReceipt.php:1211 CustomerReceipt.php:1214 DiscountCategories.php:121 +#: BOMInquiry.php:28 BOMs.php:998 BOMs_SingleLevel.php:889 +#: CollectiveWorkOrderCost.php:312 ContractBOM.php:331 ContractBOM.php:336 +#: Contracts.php:766 Contracts.php:769 CounterReturns.php:1658 +#: CounterSales.php:2225 CustItem.php:220 CustomerReceipt.php:1211 +#: CustomerReceipt.php:1214 DiscountCategories.php:121 #: DiscountCategories.php:123 DiscountCategories.php:127 #: DiscountCategories.php:129 FixedAssetTransfer.php:94 #: InternalStockRequestInquiry.php:230 InternalStockRequest.php:359 @@ -3253,13 +3258,13 @@ #: SelectWorkOrder.php:206 SellThroughSupport.php:202 Shipt_Select.php:174 #: SuppFixedAssetChgs.php:122 SupplierPriceList.php:54 #: SupplierPriceList.php:414 SupplierTenderCreate.php:566 -#: SupplierTenderCreate.php:706 SupplierTenders.php:433 TestPlanResults.php:158 -#: WorkOrderEntry.php:938 WorkOrderEntry.php:942 WorkOrderEntry.php:944 -#: WorkOrderIssue.php:985 +#: SupplierTenderCreate.php:706 SupplierTenders.php:433 +#: TestPlanResults.php:158 WorkOrderEntry.php:938 WorkOrderEntry.php:942 +#: WorkOrderEntry.php:944 WorkOrderIssue.php:985 msgid "OR" msgstr "" -#: BOMInquiry.php:29 BOMs.php:999 MRPDemands.php:339 +#: BOMInquiry.php:29 BOMs.php:999 BOMs_SingleLevel.php:890 MRPDemands.php:339 #: PO_SelectOSPurchOrder.php:292 PO_SelectPurchOrder.php:195 #: SelectQASamples.php:280 Shipt_Select.php:174 TestPlanResults.php:158 #: WorkOrderEntry.php:938 WorkOrderIssue.php:985 @@ -3298,13 +3303,13 @@ msgid "Search Now" msgstr "" -#: BOMInquiry.php:47 BOMs.php:933 CollectiveWorkOrderCost.php:132 -#: ContractBOM.php:51 InternalStockRequestInquiry.php:510 MRPDemands.php:56 -#: MRPReport.php:605 PO_Items.php:852 PO_SelectOSPurchOrder.php:65 -#: PO_SelectPurchOrder.php:48 SelectCompletedOrder.php:98 -#: SelectCreditItems.php:302 SelectProduct.php:583 SelectQASamples.php:176 -#: SelectSalesOrder.php:1035 SelectWorkOrder.php:51 Shipt_Select.php:61 -#: SupplierPriceList.php:81 SupplierTenderCreate.php:731 +#: BOMInquiry.php:47 BOMs.php:933 BOMs_SingleLevel.php:824 +#: CollectiveWorkOrderCost.php:132 ContractBOM.php:51 +#: InternalStockRequestInquiry.php:510 MRPDemands.php:56 MRPReport.php:605 +#: PO_Items.php:852 PO_SelectOSPurchOrder.php:65 PO_SelectPurchOrder.php:48 +#: SelectCompletedOrder.php:98 SelectCreditItems.php:302 SelectProduct.php:583 +#: SelectQASamples.php:176 SelectSalesOrder.php:1035 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 msgid "" @@ -3312,14 +3317,15 @@ "extract entered" msgstr "" -#: BOMInquiry.php:50 BOMs.php:936 MRPDemands.php:59 +#: BOMInquiry.php:50 BOMs.php:936 BOMs_SingleLevel.php:827 MRPDemands.php:59 msgid "" "At least one stock description keyword or an extract of a stock code must be " "entered for the search" msgstr "" -#: BOMInquiry.php:95 BOMs.php:982 MRPCalendar.php:213 MRPDemands.php:80 -#: MRPDemands.php:289 POReport.php:483 POReport.php:1266 SalesInquiry.php:758 +#: BOMInquiry.php:95 BOMs.php:982 BOMs_SingleLevel.php:873 MRPCalendar.php:213 +#: MRPDemands.php:80 MRPDemands.php:289 POReport.php:483 POReport.php:1266 +#: SalesInquiry.php:758 msgid "The SQL to find the parts selected failed with the message" msgstr "" @@ -3343,7 +3349,7 @@ #: SupplierTenders.php:688 TestPlanResults.php:179 TestPlanResults.php:510 #: TopItems.php:172 WorkOrderCosting.php:100 WorkOrderEntry.php:974 #: WorkOrderIssue.php:1010 WorkOrderIssue.php:1090 -#: includes/PDFInventoryValnPageHeader.inc:34 includes/DefineLabelClass.php:21 +#: includes/DefineLabelClass.php:21 includes/PDFInventoryValnPageHeader.inc:34 msgid "Units" msgstr "" @@ -3367,8 +3373,9 @@ msgid "per" msgstr "" -#: BOMInquiry.php:197 BOMs.php:738 WOCanBeProducedNow.php:48 -#: WorkOrderReceive.php:191 WorkOrderReceive.php:409 Z_BottomUpCosts.php:33 +#: BOMInquiry.php:197 BOMs.php:738 BOMs_SingleLevel.php:635 +#: WOCanBeProducedNow.php:48 WorkOrderReceive.php:191 WorkOrderReceive.php:409 +#: Z_BottomUpCosts.php:33 msgid "Component" msgstr "" @@ -3444,7 +3451,7 @@ msgid "Multi-Level Bill Of Materials Maintenance" msgstr "" -#: BOMs.php:33 +#: BOMs.php:33 BOMs_SingleLevel.php:31 msgid "A maximum of 15 levels of bill of materials only can be displayed" msgstr "" @@ -3452,31 +3459,31 @@ msgid "The component and the parent is the same" msgstr "" -#: BOMs.php:59 +#: BOMs.php:59 BOMs_SingleLevel.php:49 msgid "" "An error occurred in retrieving the components of the BOM during the check " "for recursion" msgstr "" -#: BOMs.php:60 +#: BOMs.php:60 BOMs_SingleLevel.php:50 msgid "" "The SQL that was used to retrieve the components of the BOM and that failed " "in the process was" msgstr "" -#: BOMs.php:115 +#: BOMs.php:115 BOMs_SingleLevel.php:100 msgid "Could not retrieve the BOM components because" msgstr "" -#: BOMs.php:116 +#: BOMs.php:116 BOMs_SingleLevel.php:101 msgid "The SQL used to retrieve the components was" msgstr "" -#: BOMs.php:130 +#: BOMs.php:130 BOMs_SingleLevel.php:115 msgid "No lower levels" msgstr "" -#: BOMs.php:133 +#: BOMs.php:133 BOMs_SingleLevel.php:118 msgid "Drill Down" msgstr "" @@ -3487,57 +3494,57 @@ #: SelectCreditItems.php:1057 SelectOrderItems.php:1525 #: SelectOrderItems.php:1691 SelectProduct.php:442 StockClone.php:116 #: StockClone.php:741 StockClone.php:746 StockClone.php:751 StockClone.php:755 -#: Stocks.php:1065 Stocks.php:1068 Stocks.php:1081 SupplierTenderCreate.php:884 -#: SupplierTenders.php:720 WorkOrderEntry.php:998 WorkOrderIssue.php:1032 -#: reportwriter/languages/en_US/reports.php:270 +#: Stocks.php:1065 Stocks.php:1068 Stocks.php:1081 +#: SupplierTenderCreate.php:884 SupplierTenders.php:720 WorkOrderEntry.php:998 +#: WorkOrderIssue.php:1032 #, php-format msgid "No Image" msgstr "" -#: BOMs.php:200 +#: BOMs.php:200 BOMs_SingleLevel.php:154 #, php-format msgid "" "Are you sure you wish to delete this component from the bill of material?" msgstr "" -#: BOMs.php:296 +#: BOMs.php:296 BOMs_SingleLevel.php:242 msgid "The effective after date field must be a date in the format" msgstr "" -#: BOMs.php:302 +#: BOMs.php:302 BOMs_SingleLevel.php:248 msgid "The effective to date field must be a date in the format" msgstr "" -#: BOMs.php:308 StockAdjustments.php:165 StockTransfers.php:173 -#: WorkOrderEntry.php:494 +#: BOMs.php:308 BOMs_SingleLevel.php:254 StockAdjustments.php:165 +#: StockTransfers.php:173 WorkOrderEntry.php:494 msgid "The quantity entered must be numeric" msgstr "" -#: BOMs.php:322 +#: BOMs.php:322 BOMs_SingleLevel.php:266 msgid "The effective to date must be a date after the effective after date" msgstr "" -#: BOMs.php:322 +#: BOMs.php:322 BOMs_SingleLevel.php:266 msgid "The effective to date is" msgstr "" -#: BOMs.php:322 +#: BOMs.php:322 BOMs_SingleLevel.php:266 msgid "days before the effective after date" msgstr "" -#: BOMs.php:322 +#: BOMs.php:322 BOMs_SingleLevel.php:266 msgid "No updates have been performed" msgstr "" -#: BOMs.php:322 +#: BOMs.php:322 BOMs_SingleLevel.php:266 msgid "Effective after was" msgstr "" -#: BOMs.php:322 +#: BOMs.php:322 BOMs_SingleLevel.php:266 msgid "and effective to was" msgstr "" -#: BOMs.php:333 +#: BOMs.php:333 BOMs_SingleLevel.php:277 msgid "" "Only non-serialised or non-lot controlled items can be set to auto issue. " "These items require the lot/serial numbers of items issued to the works " @@ -3549,118 +3556,122 @@ msgid "The component selected is the same with the parent, it is not allowed" msgstr "" -#: BOMs.php:366 +#: BOMs.php:366 BOMs_SingleLevel.php:302 msgid "Could not update this BOM component because" msgstr "" -#: BOMs.php:367 +#: BOMs.php:367 BOMs_SingleLevel.php:303 msgid "The SQL used to update the component was" msgstr "" -#: BOMs.php:370 +#: BOMs.php:370 BOMs_SingleLevel.php:306 msgid "Details for" msgstr "" -#: BOMs.php:370 RevisionTranslations.php:30 +#: BOMs.php:370 BOMs_SingleLevel.php:306 RevisionTranslations.php:30 msgid "have been updated" msgstr "" -#: BOMs.php:389 +#: BOMs.php:389 BOMs_SingleLevel.php:325 msgid "An error occurred in checking the component is not already on the BOM" msgstr "" -#: BOMs.php:390 +#: BOMs.php:390 BOMs_SingleLevel.php:326 msgid "" "The SQL that was used to check the component was not already on the BOM and " "that failed in the process was" msgstr "" -#: BOMs.php:422 +#: BOMs.php:422 BOMs_SingleLevel.php:351 msgid "Could not insert the BOM component because" msgstr "" -#: BOMs.php:423 +#: BOMs.php:423 BOMs_SingleLevel.php:352 msgid "The SQL used to insert the component was" msgstr "" -#: BOMs.php:428 +#: BOMs.php:428 BOMs_SingleLevel.php:357 msgid "A new component part" msgstr "" -#: BOMs.php:428 +#: BOMs.php:428 BOMs_SingleLevel.php:357 msgid "has been added to the bill of material for part" msgstr "" -#: BOMs.php:434 +#: BOMs.php:434 BOMs_SingleLevel.php:363 msgid "The component" msgstr "" -#: BOMs.php:434 +#: BOMs.php:434 BOMs_SingleLevel.php:363 msgid "is already recorded as a component of" msgstr "" -#: BOMs.php:434 +#: BOMs.php:434 BOMs_SingleLevel.php:363 msgid "" "Whilst the quantity of the component required can be modified it is " "inappropriate for a component to appear more than once in a bill of material" msgstr "" -#: BOMs.php:455 +#: BOMs.php:455 BOMs_SingleLevel.php:384 msgid "Could not delete this BOM components because" msgstr "" -#: BOMs.php:456 +#: BOMs.php:456 BOMs_SingleLevel.php:385 msgid "The SQL used to delete the BOM was" msgstr "" -#: BOMs.php:466 +#: BOMs.php:466 BOMs_SingleLevel.php:395 msgid "The component part" msgstr "" -#: BOMs.php:466 +#: BOMs.php:466 BOMs_SingleLevel.php:395 msgid "has been deleted from this BOM" msgstr "" #: BOMs.php:489 BOMs.php:525 BOMs.php:549 BOMs.php:574 BOMs.php:598 +#: BOMs_SingleLevel.php:418 BOMs_SingleLevel.php:454 BOMs_SingleLevel.php:478 +#: BOMs_SingleLevel.php:503 BOMs_SingleLevel.php:527 msgid "Could not retrieve the description of the parent part because" msgstr "" #: BOMs.php:490 BOMs.php:526 BOMs.php:550 BOMs.php:575 BOMs.php:599 +#: BOMs_SingleLevel.php:419 BOMs_SingleLevel.php:455 BOMs_SingleLevel.php:479 +#: BOMs_SingleLevel.php:504 BOMs_SingleLevel.php:528 msgid "The SQL used to retrieve description of the parent part was" msgstr "" -#: BOMs.php:502 FixedAssetRegister.php:390 StockClone.php:883 -#: StockClone.php:885 Stocks.php:1211 Stocks.php:1213 +#: BOMs.php:502 BOMs_SingleLevel.php:431 FixedAssetRegister.php:390 +#: StockClone.php:883 StockClone.php:885 Stocks.php:1211 Stocks.php:1213 msgid "Purchased" msgstr "" -#: BOMs.php:505 StockClone.php:873 StockClone.php:875 Stocks.php:1201 -#: Stocks.php:1203 +#: BOMs.php:505 BOMs_SingleLevel.php:434 StockClone.php:873 StockClone.php:875 +#: Stocks.php:1201 Stocks.php:1203 msgid "Manufactured" msgstr "" -#: BOMs.php:508 +#: BOMs.php:508 BOMs_SingleLevel.php:437 msgid "Kit Set" msgstr "" -#: BOMs.php:511 BOMs.php:604 StockClone.php:878 StockClone.php:880 -#: Stocks.php:1206 Stocks.php:1208 +#: BOMs.php:511 BOMs.php:604 BOMs_SingleLevel.php:440 BOMs_SingleLevel.php:533 +#: StockClone.php:878 StockClone.php:880 Stocks.php:1206 Stocks.php:1208 msgid "Phantom" msgstr "" -#: BOMs.php:515 +#: BOMs.php:515 BOMs_SingleLevel.php:444 msgid "Select a Different BOM" msgstr "" -#: BOMs.php:531 +#: BOMs.php:531 BOMs_SingleLevel.php:460 msgid "Manufactured parent items" msgstr "" -#: BOMs.php:554 +#: BOMs.php:554 BOMs_SingleLevel.php:483 msgid "Assembly parent items" msgstr "" -#: BOMs.php:579 +#: BOMs.php:579 BOMs_SingleLevel.php:508 msgid "Kit sets" msgstr "" @@ -3668,8 +3679,8 @@ msgid "Level" msgstr "" -#: BOMs.php:653 EDIMessageFormat.php:130 SuppInvGRNs.php:117 -#: SuppInvGRNs.php:258 reportwriter/languages/en_US/reports.php:98 +#: BOMs.php:653 BOMs_SingleLevel.php:556 EDIMessageFormat.php:130 +#: SuppInvGRNs.php:117 SuppInvGRNs.php:258 msgid "Sequence" msgstr "" @@ -3688,42 +3699,43 @@ #: StockStatus.php:93 SupplierTenderCreate.php:137 WhereUsedInquiry.php:74 #: WorkCentres.php:131 WorkCentres.php:232 api/api_xml-rpc.php:2531 #: api/api_xml-rpc.php:2577 api/api_xml-rpc.php:2773 -#: includes/PDFPeriodStockTransListingPageHeader.inc:51 -#: includes/PDFStockNegativesHeader.inc:31 msgid "Location" msgstr "" -#: BOMs.php:658 WhereUsedInquiry.php:73 includes/MainMenuLinksArray.php:338 +#: BOMs.php:658 BOMs_SingleLevel.php:560 WhereUsedInquiry.php:73 +#: includes/MainMenuLinksArray.php:338 msgid "Work Centre" msgstr "" -#: BOMs.php:660 ContractBOM.php:243 InternalStockRequest.php:279 -#: SupplierTenderCreate.php:436 SupplierTenders.php:328 -#: WOCanBeProducedNow.php:47 WOCanBeProducedNow.php:52 +#: BOMs.php:660 BOMs_SingleLevel.php:562 ContractBOM.php:243 +#: InternalStockRequest.php:279 SupplierTenderCreate.php:436 +#: SupplierTenders.php:328 WOCanBeProducedNow.php:47 WOCanBeProducedNow.php:52 #: includes/PDFTransPageHeader.inc:214 #: includes/PDFTransPageHeaderPortrait.inc:259 msgid "UOM" msgstr "" -#: BOMs.php:661 BOMs.php:877 WhereUsedInquiry.php:76 -#: includes/PDFBOMListingPageHeader.inc:40 +#: BOMs.php:661 BOMs.php:877 BOMs_SingleLevel.php:563 BOMs_SingleLevel.php:774 +#: WhereUsedInquiry.php:76 includes/PDFBOMListingPageHeader.inc:40 msgid "Effective After" msgstr "" -#: BOMs.php:662 BOMs.php:881 PurchData.php:703 SellThroughSupport.php:267 -#: WhereUsedInquiry.php:77 includes/PDFBOMListingPageHeader.inc:41 +#: BOMs.php:662 BOMs.php:881 BOMs_SingleLevel.php:564 BOMs_SingleLevel.php:778 +#: PurchData.php:703 SellThroughSupport.php:267 WhereUsedInquiry.php:77 +#: includes/PDFBOMListingPageHeader.inc:41 msgid "Effective To" msgstr "" -#: BOMs.php:663 WorkOrderIssue.php:895 WorkOrderStatus.php:128 +#: BOMs.php:663 BOMs_SingleLevel.php:565 WorkOrderIssue.php:895 +#: WorkOrderStatus.php:128 msgid "Auto Issue" msgstr "" -#: BOMs.php:664 InventoryValuation.php:197 +#: BOMs.php:664 BOMs_SingleLevel.php:566 InventoryValuation.php:197 msgid "Qty On Hand" msgstr "" -#: BOMs.php:669 +#: BOMs.php:669 BOMs_SingleLevel.php:571 msgid "No materials found." msgstr "" @@ -3731,31 +3743,31 @@ msgid "Print Date" msgstr "" -#: BOMs.php:729 +#: BOMs.php:729 BOMs_SingleLevel.php:626 msgid "Edit the details of the selected component in the fields below" msgstr "" -#: BOMs.php:729 +#: BOMs.php:729 BOMs_SingleLevel.php:626 msgid "Click on the Enter Information button to update the component details" msgstr "" -#: BOMs.php:751 +#: BOMs.php:751 BOMs_SingleLevel.php:647 msgid "New Component Details" msgstr "" -#: BOMs.php:754 +#: BOMs.php:754 BOMs_SingleLevel.php:650 msgid "Component code" msgstr "" -#: BOMs.php:784 +#: BOMs.php:784 BOMs_SingleLevel.php:680 msgid "Could not retrieve the list of potential components because" msgstr "" -#: BOMs.php:785 +#: BOMs.php:785 BOMs_SingleLevel.php:681 msgid "The SQL used to retrieve the list of potential components part was" msgstr "" -#: BOMs.php:797 +#: BOMs.php:797 BOMs_SingleLevel.php:693 msgid "Sequence in BOM" msgstr "" @@ -3763,27 +3775,27 @@ msgid "Number with decimal places is acceptable" msgstr "" -#: BOMs.php:830 +#: BOMs.php:830 BOMs_SingleLevel.php:727 msgid "Work Centre Added" msgstr "" -#: BOMs.php:836 Contracts.php:898 +#: BOMs.php:836 BOMs_SingleLevel.php:733 Contracts.php:898 msgid "There are no work centres set up yet" msgstr "" -#: BOMs.php:836 Contracts.php:898 +#: BOMs.php:836 BOMs_SingleLevel.php:733 Contracts.php:898 msgid "Please use the link below to set up work centres" msgstr "" -#: BOMs.php:837 Contracts.php:899 +#: BOMs.php:837 BOMs_SingleLevel.php:734 Contracts.php:899 msgid "Work Centre Maintenance" msgstr "" -#: BOMs.php:859 +#: BOMs.php:859 BOMs_SingleLevel.php:756 msgid "Enter the quantity of this item required for the parent item" msgstr "" -#: BOMs.php:887 +#: BOMs.php:887 BOMs_SingleLevel.php:784 msgid "Auto Issue this Component to Work Orders" msgstr "" @@ -3791,7 +3803,7 @@ msgid "Remark" msgstr "" -#: BOMs.php:992 +#: BOMs.php:992 BOMs_SingleLevel.php:883 msgid "to maintain the bill of material for using the options below" msgstr "" @@ -3828,8 +3840,8 @@ #: POReport.php:748 POReport.php:1282 POReport.php:1309 POReport.php:1448 #: POReport.php:1642 SalesGLPostings.php:116 SalesGLPostings.php:233 #: SalesGLPostings.php:339 SalesInquiry.php:774 SalesInquiry.php:809 -#: SalesInquiry.php:977 SalesInquiry.php:1234 StockCategorySalesInquiry.php:165 -#: Z_ChangeStockCategory.php:108 +#: SalesInquiry.php:977 SalesInquiry.php:1234 +#: StockCategorySalesInquiry.php:165 Z_ChangeStockCategory.php:108 msgid "Stock Category" msgstr "" @@ -3898,17 +3910,18 @@ #: DiscountCategories.php:222 GoodsReceived.php:121 #: InventoryPlanningPrefSupplier.php:72 PDFCOA.php:64 #: PDFSalesBySalesperson.php:85 PDFWeeklyOrders.php:81 SalesCategories.php:185 -#: SalesCategories.php:548 SalesTopItemsInquiry.php:220 SelectWorkOrder.php:340 -#: ShipmentCosting.php:148 ShipmentCosting.php:539 Shipments.php:398 -#: Shipments.php:485 StockUsage.php:60 SuppCreditGRNs.php:290 -#: WorkOrderCosting.php:97 WorkOrderCosting.php:129 WorkOrderIssue.php:858 -#: WorkOrderReceive.php:829 WorkOrderStatus.php:65 WorkOrderStatus.php:97 -#: includes/PDFInventoryPlanPageHeader.inc:50 +#: SalesCategories.php:548 SalesTopItemsInquiry.php:220 +#: SelectWorkOrder.php:340 ShipmentCosting.php:148 ShipmentCosting.php:539 +#: Shipments.php:398 Shipments.php:485 StockUsage.php:60 +#: SuppCreditGRNs.php:290 WorkOrderCosting.php:97 WorkOrderCosting.php:129 +#: WorkOrderIssue.php:858 WorkOrderReceive.php:829 WorkOrderStatus.php:65 +#: WorkOrderStatus.php:97 includes/PDFInventoryPlanPageHeader.inc:50 #: includes/PDFInventoryValnPageHeader.inc:32 #: includes/PDFLowGPPageHeader.inc:45 includes/PDFOstdgGRNsPageHeader.inc:38 #: includes/PDFSellThroughSupportClaimPageHeader.inc:24 #: includes/PDFStockCheckPageHeader.inc:31 -#: includes/PDFStockComparisonPageHeader.inc:33 includes/PDFWOPageHeader.inc:69 +#: includes/PDFStockComparisonPageHeader.inc:33 +#: includes/PDFWOPageHeader.inc:69 msgid "Item" msgstr "" @@ -3942,8 +3955,8 @@ msgstr "" #: CollectiveWorkOrderCost.php:125 PDFFGLabel.php:183 PDFWOPrint.php:259 -#: PDFWOPrint.php:480 SelectWorkOrder.php:44 api/api_xml-rpc.php:2573 -#: api/api_xml-rpc.php:2769 includes/PDFWOPageHeader.inc:10 +#: PDFWOPrint.php:480 SelectWorkOrder.php:44 includes/PDFWOPageHeader.inc:10 +#: api/api_xml-rpc.php:2573 api/api_xml-rpc.php:2769 msgid "Work Order Number" msgstr "" @@ -4558,8 +4571,9 @@ #: SelectCreditItems.php:243 SelectCustomer.php:13 SelectCustomer.php:181 #: SelectCustomer.php:182 SelectOrderItems.php:623 #: SelectRecurringSalesOrder.php:91 SelectSalesOrder.php:853 -#: SelectSalesOrder.php:870 SellThroughSupport.php:262 StockLocMovements.php:93 -#: StockMovements.php:107 includes/PDFAgedDebtorsPageHeader.inc:48 +#: SelectSalesOrder.php:870 SellThroughSupport.php:262 +#: StockLocMovements.php:93 StockMovements.php:107 +#: includes/PDFAgedDebtorsPageHeader.inc:48 #: includes/PDFBankingSummaryPageHeader.inc:56 #: includes/PDFCustTransListingPageHeader.inc:48 #: includes/PDFDebtorBalsPageHeader.inc:30 @@ -4592,6 +4606,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:723 +#: ../webSHOP/Checkout.php:389 msgid "Customer Name" msgstr "" @@ -4617,9 +4632,10 @@ #: Stocks.php:922 Stocks.php:989 Stocks.php:995 SuppCreditGRNs.php:91 #: SuppCreditGRNs.php:191 SuppInvGRNs.php:119 SuppInvGRNs.php:262 #: SupplierCredit.php:316 SupplierInvoice.php:667 SupplierTenders.php:122 -#: SupplierTenders.php:528 SupplierTenders.php:530 Z_ItemsWithoutPicture.php:34 -#: includes/PDFOrderPageHeader_generic.inc:91 -#: includes/PDFPickingListHeader.inc:72 includes/PDFQuotationPageHeader.inc:103 +#: SupplierTenders.php:528 SupplierTenders.php:530 +#: Z_ItemsWithoutPicture.php:34 includes/PDFOrderPageHeader_generic.inc:91 +#: includes/PDFPickingListHeader.inc:72 +#: includes/PDFQuotationPageHeader.inc:103 #: includes/PDFQuotationPortraitPageHeader.inc:93 #: includes/PDFSalesOrder_generic.inc:93 #: includes/PDFStockLocTransferHeader.inc:64 @@ -4643,12 +4659,13 @@ #: StockCategorySalesInquiry.php:121 StockLocTransferReceive.php:542 #: SupplierTenders.php:123 SupplierTenders.php:529 #: includes/PDFOrderPageHeader_generic.inc:92 -#: includes/PDFPickingListHeader.inc:73 includes/PDFQuotationPageHeader.inc:107 +#: includes/PDFPickingListHeader.inc:73 +#: includes/PDFQuotationPageHeader.inc:107 #: includes/PDFQuotationPortraitPageHeader.inc:94 #: 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 "" @@ -4659,8 +4676,8 @@ msgid "Ordered" msgstr "" -#: ConfirmDispatch_Invoice.php:306 FTP_RadioBeacon.php:83 GoodsReceived.php:125 -#: GoodsReceived.php:129 +#: ConfirmDispatch_Invoice.php:306 FTP_RadioBeacon.php:83 +#: GoodsReceived.php:125 GoodsReceived.php:129 #, php-format msgid "Already" msgstr "" @@ -4693,9 +4710,9 @@ #: api/api_xml-rpc.php:981 includes/PDFQuotationPageHeader.inc:109 #: 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 +#: includes/PO_PDFOrderPageHeader.inc:80 api/api_xml-rpc.php:981 +#: ../webSHOP/includes/DisplayShoppingCart.php:10 +#: ../webSHOP/includes/Functions.php:58 msgid "Price" msgstr "" @@ -4854,11 +4871,13 @@ msgid "Please remedy this" msgstr "" -#: ConfirmDispatch_Invoice.php:683 Credit_Invoice.php:544 GoodsReceived.php:323 +#: ConfirmDispatch_Invoice.php:683 Credit_Invoice.php:544 +#: GoodsReceived.php:323 msgid "The company information and preferences could not be retrieved" msgstr "" -#: ConfirmDispatch_Invoice.php:683 Credit_Invoice.php:544 GoodsReceived.php:323 +#: ConfirmDispatch_Invoice.php:683 Credit_Invoice.php:544 +#: GoodsReceived.php:323 msgid "see your system administrator" msgstr "" @@ -5055,8 +5074,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:480 -#: includes/SQL_CommonFunctions.inc:502 ../webSHOP/includes/Functions.php:180 -#: ../webSHOP/includes/Functions.php:187 +#: includes/SQL_CommonFunctions.inc:502 ../webSHOP/includes/Functions.php:190 +#: ../webSHOP/includes/Functions.php:197 msgid "CRITICAL ERROR" msgstr "" @@ -5180,7 +5199,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:480 includes/SQL_CommonFunctions.inc:502 -#: ../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 "" @@ -5194,25 +5213,25 @@ msgid "The following SQL to update the sales order was used" msgstr "" -#: ConfirmDispatch_Invoice.php:820 CounterReturns.php:947 CounterSales.php:1352 -#: RecurringSalesOrdersProcess.php:682 +#: ConfirmDispatch_Invoice.php:820 CounterReturns.php:947 +#: CounterSales.php:1352 RecurringSalesOrdersProcess.php:682 msgid "The debtor transaction record could not be inserted because" msgstr "" -#: ConfirmDispatch_Invoice.php:821 CounterReturns.php:948 CounterSales.php:1353 -#: RecurringSalesOrdersProcess.php:683 +#: ConfirmDispatch_Invoice.php:821 CounterReturns.php:948 +#: CounterSales.php:1353 RecurringSalesOrdersProcess.php:683 msgid "The following SQL to insert the debtor transaction record was used" msgstr "" -#: ConfirmDispatch_Invoice.php:836 CounterReturns.php:963 CounterSales.php:1368 -#: Credit_Invoice.php:664 RecurringSalesOrdersProcess.php:696 -#: SelectCreditItems.php:1186 +#: ConfirmDispatch_Invoice.php:836 CounterReturns.php:963 +#: CounterSales.php:1368 Credit_Invoice.php:664 +#: RecurringSalesOrdersProcess.php:696 SelectCreditItems.php:1186 msgid "The debtor transaction taxes records could not be inserted because" msgstr "" -#: ConfirmDispatch_Invoice.php:837 CounterReturns.php:964 CounterSales.php:1369 -#: Credit_Invoice.php:665 RecurringSalesOrdersProcess.php:697 -#: SelectCreditItems.php:1187 +#: ConfirmDispatch_Invoice.php:837 CounterReturns.php:964 +#: CounterSales.php:1369 Credit_Invoice.php:665 +#: RecurringSalesOrdersProcess.php:697 SelectCreditItems.php:1187 msgid "" "The following SQL to insert the debtor transaction taxes record was used" msgstr "" @@ -5244,13 +5263,14 @@ msgid "Cannot retrieve the mbflag" msgstr "" -#: ConfirmDispatch_Invoice.php:968 CounterReturns.php:984 CounterSales.php:1389 -#: FixedAssetItems.php:685 SalesAnalReptCols.php:327 Stocks.php:1455 -#: Suppliers.php:1126 includes/MiscFunctions.php:35 +#: ConfirmDispatch_Invoice.php:968 CounterReturns.php:984 +#: CounterSales.php:1389 FixedAssetItems.php:685 SalesAnalReptCols.php:327 +#: Stocks.php:1455 Suppliers.php:1126 includes/MiscFunctions.php:35 msgid "WARNING" msgstr "" -#: ConfirmDispatch_Invoice.php:968 CounterReturns.php:984 CounterSales.php:1389 +#: ConfirmDispatch_Invoice.php:968 CounterReturns.php:984 +#: CounterSales.php:1389 msgid "Could not retrieve current location stock" msgstr "" @@ -5380,11 +5400,12 @@ msgstr "" #: ConfirmDispatch_Invoice.php:1195 Credit_Invoice.php:980 -#: Credit_Invoice.php:990 SelectCreditItems.php:1397 SelectCreditItems.php:1627 -#: StockAdjustments.php:268 StockAdjustments.php:286 -#: StockLocTransferReceive.php:146 StockLocTransferReceive.php:160 -#: StockLocTransferReceive.php:299 StockLocTransferReceive.php:313 -#: StockTransfers.php:317 StockTransfers.php:470 +#: Credit_Invoice.php:990 SelectCreditItems.php:1397 +#: SelectCreditItems.php:1627 StockAdjustments.php:268 +#: StockAdjustments.php:286 StockLocTransferReceive.php:146 +#: StockLocTransferReceive.php:160 StockLocTransferReceive.php:299 +#: StockLocTransferReceive.php:313 StockTransfers.php:317 +#: StockTransfers.php:470 msgid "The following SQL to update the serial stock item record was used" msgstr "" @@ -5575,7 +5596,6 @@ #: ConfirmDispatch_Invoice.php:1655 CounterReturns.php:1603 #: CounterSales.php:2056 SelectSalesOrder.php:978 SystemParameters.php:577 -#: reportwriter/languages/en_US/reports.php:300 #, php-format msgid "Landscape" msgstr "" @@ -5582,7 +5602,6 @@ #: ConfirmDispatch_Invoice.php:1657 CounterReturns.php:1605 #: CounterSales.php:2058 SelectSalesOrder.php:978 SystemParameters.php:578 -#: reportwriter/languages/en_US/reports.php:299 #, php-format msgid "Portrait" msgstr "" @@ -5658,11 +5677,11 @@ #: ContractBOM.php:43 ContractOtherReqts.php:46 Contracts.php:96 #: Contracts.php:105 DeliveryDetails.php:276 DeliveryDetails.php:285 -#: PO_Header.php:243 SalesAnalysis_UserDefined.php:46 SelectOrderItems.php:1181 -#: StockUsage.php:21 SupplierCredit.php:210 SupplierCredit.php:221 -#: SupplierCredit.php:233 SupplierCredit.php:243 SupplierCredit.php:253 -#: SupplierInvoice.php:563 SupplierInvoice.php:572 SupplierInvoice.php:580 -#: SupplierInvoice.php:588 SupplierInvoice.php:598 +#: PO_Header.php:243 SalesAnalysis_UserDefined.php:46 +#: SelectOrderItems.php:1181 StockUsage.php:21 SupplierCredit.php:210 +#: SupplierCredit.php:221 SupplierCredit.php:233 SupplierCredit.php:243 +#: SupplierCredit.php:253 SupplierInvoice.php:563 SupplierInvoice.php:572 +#: SupplierInvoice.php:580 SupplierInvoice.php:588 SupplierInvoice.php:598 #: includes/PDFSalesAnalysis.inc:547 msgid "to continue" msgstr "" @@ -5834,9 +5853,9 @@ msgstr "" #: ContractCosting.php:58 ContractCosting.php:66 Contracts.php:205 -#: Contracts.php:758 Contracts.php:833 CopyBOM.php:164 EDIProcessOrders.php:373 -#: InternalStockRequestFulfill.php:14 SuppContractChgs.php:78 -#: SupplierCredit.php:420 SupplierInvoice.php:789 +#: Contracts.php:758 Contracts.php:833 CopyBOM.php:164 +#: EDIProcessOrders.php:373 InternalStockRequestFulfill.php:14 +#: SuppContractChgs.php:78 SupplierCredit.php:420 SupplierInvoice.php:789 msgid "Contract" msgstr "" @@ -6105,22 +6124,23 @@ "items page" msgstr "" -#: Contracts.php:96 Contracts.php:104 Customers.php:272 DeliveryDetails.php:276 -#: DeliveryDetails.php:285 EmailCustTrans.php:23 PO_Header.php:243 -#: SalesAnalysis_UserDefined.php:46 StockUsage.php:20 SupplierCredit.php:210 -#: SupplierCredit.php:221 SupplierCredit.php:233 SupplierCredit.php:243 -#: SupplierCredit.php:253 SupplierInvoice.php:562 SupplierInvoice.php:571 -#: SupplierInvoice.php:579 SupplierInvoice.php:587 SupplierInvoice.php:597 -#: includes/PDFSalesAnalysis.inc:547 +#: Contracts.php:96 Contracts.php:104 Customers.php:272 +#: DeliveryDetails.php:276 DeliveryDetails.php:285 EmailCustTrans.php:23 +#: PO_Header.php:243 SalesAnalysis_UserDefined.php:46 StockUsage.php:20 +#: SupplierCredit.php:210 SupplierCredit.php:221 SupplierCredit.php:233 +#: SupplierCredit.php:243 SupplierCredit.php:253 SupplierInvoice.php:562 +#: SupplierInvoice.php:571 SupplierInvoice.php:579 SupplierInvoice.php:587 +#: SupplierInvoice.php:597 includes/PDFSalesAnalysis.inc:547 msgid "If this does not happen" msgstr "" -#: Contracts.php:96 Contracts.php:104 Customers.php:272 DeliveryDetails.php:276 -#: DeliveryDetails.php:285 EmailCustTrans.php:23 PO_Header.php... [truncated message content] |