|
From: <rc...@us...> - 2015-09-21 17:30:12
|
Revision: 7356
http://sourceforge.net/p/web-erp/reponame/7356
Author: rchacon
Date: 2015-09-21 17:30:10 +0000 (Mon, 21 Sep 2015)
Log Message:
-----------
In StockLocStatus.php, add current date and time, and format to use print.css.
Modified Paths:
--------------
trunk/StockLocStatus.php
trunk/doc/Change.log
trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo
trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po
Modified: trunk/StockLocStatus.php
===================================================================
--- trunk/StockLocStatus.php 2015-09-21 02:01:53 UTC (rev 7355)
+++ trunk/StockLocStatus.php 2015-09-21 17:30:10 UTC (rev 7356)
@@ -1,17 +1,23 @@
<?php
-
/* $Id$*/
+/* Shows the stock on hand together with outstanding sales orders and outstanding purchase orders by stock location for all items in the selected stock category */
include('includes/session.inc');
-
$Title = _('All Stock Status By Location/Category');
+$ViewTopic = 'Inventory';
+$BookMark = 'StockLocStatus';
+include('includes/header.inc');
-include('includes/header.inc');
+echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
+ '/images/magnifier.png" title="',// Icon image.
+ $Title, '" /> ',// Icon title.
+ $Title, '</p>';// Page title.
+
include ('includes/SQL_CommonFunctions.inc');
-if (isset($_GET['StockID'])){
+if(isset($_GET['StockID'])) {
$StockID = trim(mb_strtoupper($_GET['StockID']));
-} elseif (isset($_POST['StockID'])){
+} elseif(isset($_POST['StockID'])) {
$StockID = trim(mb_strtoupper($_POST['StockID']));
}
@@ -19,28 +25,24 @@
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
-$sql = "SELECT locations.loccode,
- locationname
- FROM locations
- INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1";
+$sql = "SELECT locations.loccode, locationname
+ FROM locations
+ INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1";
$resultStkLocs = DB_query($sql);
-echo '<p class="page_title_text">
- <img src="' . $RootPath . '/css/' . $Theme . '/images/magnifier.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title.'
- </p>';
-
echo '<table class="selection">
<tr>
<td>' . _('From Stock Location') . ':</td>
<td><select name="StockLocation"> ';
-while ($myrow=DB_fetch_array($resultStkLocs)){
- if (isset($_POST['StockLocation']) AND $_POST['StockLocation']!='All'){
- if ($myrow['loccode'] == $_POST['StockLocation']){
- echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
+
+while($myrow=DB_fetch_array($resultStkLocs)) {
+ if(isset($_POST['StockLocation']) AND $_POST['StockLocation']!='All') {
+ if($myrow['loccode'] == $_POST['StockLocation']) {
+ echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} else {
- echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
+ echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
- } elseif ($myrow['loccode']==$_SESSION['UserStockLocation']){
+ } elseif($myrow['loccode']==$_SESSION['UserStockLocation']) {
echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
$_POST['StockLocation']=$myrow['loccode'];
} else {
@@ -55,7 +57,7 @@
FROM stockcategory
ORDER BY categorydescription";
$result1 = DB_query($SQL);
-if (DB_num_rows($result1)==0){
+if(DB_num_rows($result1)==0) {
echo '</table><p>';
prnMsg(_('There are no stock categories currently defined please use the link below to set them up'),'warn');
echo '<br /><a href="' . $RootPath . '/StockCategories.php">' . _('Define Stock Categories') . '</a>';
@@ -65,16 +67,16 @@
echo '<tr><td>' . _('In Stock Category') . ':</td>
<td><select name="StockCat">';
-if (!isset($_POST['StockCat'])){
+if(!isset($_POST['StockCat'])) {
$_POST['StockCat']='All';
}
-if ($_POST['StockCat']=='All'){
+if($_POST['StockCat']=='All') {
echo '<option selected="selected" value="All">' . _('All') . '</option>';
} else {
echo '<option value="All">' . _('All') . '</option>';
}
-while ($myrow1 = DB_fetch_array($result1)) {
- if ($myrow1['categoryid']==$_POST['StockCat']){
+while($myrow1 = DB_fetch_array($result1)) {
+ if($myrow1['categoryid']==$_POST['StockCat']) {
echo '<option selected="selected" value="' . $myrow1['categoryid'] . '">' . $myrow1['categorydescription'] . '</option>';
} else {
echo '<option value="' . $myrow1['categoryid'] . '">' . $myrow1['categorydescription'] . '</option>';
@@ -85,42 +87,42 @@
echo '<tr><td>' . _('Shown Only Items Where') . ':</td>
<td><select name="BelowReorderQuantity">';
-if (!isset($_POST['BelowReorderQuantity'])){
+if(!isset($_POST['BelowReorderQuantity'])) {
$_POST['BelowReorderQuantity']='All';
}
-if ($_POST['BelowReorderQuantity']=='All'){
+if($_POST['BelowReorderQuantity']=='All') {
echo '<option selected="selected" value="All">' . _('All') . '</option>
- <option value="Below">' . _('Only items below re-order quantity') . '</option>
- <option value="NotZero">' . _('Only items where stock is available') . '</option>
- <option value="OnOrder">' . _('Only items currently on order') . '</option>';
-} else if ($_POST['BelowReorderQuantity']=='Below') {
+ <option value="Below">' . _('Only items below re-order quantity') . '</option>
+ <option value="NotZero">' . _('Only items where stock is available') . '</option>
+ <option value="OnOrder">' . _('Only items currently on order') . '</option>';
+} else if($_POST['BelowReorderQuantity']=='Below') {
echo '<option value="All">' . _('All') . '</option>
- <option selected="selected" value="Below">' . _('Only items below re-order quantity') . '</option>
- <option value="NotZero">' . _('Only items where stock is available') . '</option>
- <option value="OnOrder">' . _('Only items currently on order') . '</option>';
-} else if ($_POST['BelowReorderQuantity']=='OnOrder') {
- echo '<option value="All">' . _('All') . '</option>
- <option value="Below">' . _('Only items below re-order quantity') . '</option>
- <option value="NotZero">' . _('Only items where stock is available') . '</option>
- <option selected="selected" value="OnOrder">' . _('Only items currently on order') . '</option>';
-} else {
+ <option selected="selected" value="Below">' . _('Only items below re-order quantity') . '</option>
+ <option value="NotZero">' . _('Only items where stock is available') . '</option>
+ <option value="OnOrder">' . _('Only items currently on order') . '</option>';
+} else if($_POST['BelowReorderQuantity']=='OnOrder') {
echo '<option value="All">' . _('All') . '</option>
- <option value="Below">' . _('Only items below re-order quantity') . '</option>
- <option selected="selected" value="NotZero">' . _('Only items where stock is available') . '</option>
- <option value="OnOrder">' . _('Only items currently on order') . '</option>';
+ <option value="Below">' . _('Only items below re-order quantity') . '</option>
+ <option value="NotZero">' . _('Only items where stock is available') . '</option>
+ <option selected="selected" value="OnOrder">' . _('Only items currently on order') . '</option>';
+} else {
+ echo '<option value="All">' . _('All') . '</option>
+ <option value="Below">' . _('Only items below re-order quantity') . '</option>
+ <option selected="selected" value="NotZero">' . _('Only items where stock is available') . '</option>
+ <option value="OnOrder">' . _('Only items currently on order') . '</option>';
}
echo '</select></td></tr>
- </table>';
+ </table>';
echo '<br />
- <div class="centre">
- <input type="submit" name="ShowStatus" value="' . _('Show Stock Status') . '" />
- </div>';
+ <div class="centre noprint">
+ <input name="ShowStatus" type="submit" value="', _('Show Stock Status'), '" />
+ </div>';
-if (isset($_POST['ShowStatus'])){
+if(isset($_POST['ShowStatus'])) {
- if ($_POST['StockCat']=='All') {
+ if($_POST['StockCat']=='All') {
$sql = "SELECT locstock.stockid,
stockmaster.description,
locstock.loccode,
@@ -161,44 +163,44 @@
ORDER BY locstock.stockid";
}
- $ErrMsg = _('The stock held at each location cannot be retrieved because');
+ $ErrMsg = _('The stock held at each location cannot be retrieved because');
$DbgMsg = _('The SQL that failed was');
$LocStockResult = DB_query($sql, $ErrMsg, $DbgMsg);
- echo '<br />
- <table cellpadding="5" cellspacing="4" class="selection">';
- $TableHeader = '<tr>
- <th>' . _('StockID') . '</th>
- <th>' . _('Description') . '</th>
- <th>' . _('Quantity On Hand') . '</th>
- <th>' . _('Bin Loc') . '</th>
- <th>' . _('Re-Order Level') . '</th>
- <th>' . _('Demand') . '</th>
- <th>' . _('Available') . '</th>
- <th>' . _('On Order') . '</th>
- </tr>';
- echo $TableHeader;
+ echo '<br />', DisplayDateTime(), // Display current date and time.
+ '<br />
+ <table cellpadding="5" cellspacing="4" class="selection">
+ <tr>
+ <th>', _('StockID'), '</th>
+ <th class="text">', _('Description'), '</th>
+ <th class="number">', _('Quantity On Hand'), '</th>
+ <th>', _('Bin Loc'), '</th>
+ <th class="number">', _('Re-Order Level'), '</th>
+ <th class="number">', _('Demand'), '</th>
+ <th class="number">', _('Available'), '</th>
+ <th class="number">', _('On Order'), '</th>
+ </tr>';
$k=0; //row colour counter
- while ($myrow=DB_fetch_array($LocStockResult)) {
+ while($myrow=DB_fetch_array($LocStockResult)) {
$StockID = $myrow['stockid'];
$sql = "SELECT SUM(salesorderdetails.quantity-salesorderdetails.qtyinvoiced) AS dem
- FROM salesorderdetails INNER JOIN salesorders
- ON salesorders.orderno = salesorderdetails.orderno
- WHERE salesorders.fromstkloc='" . $myrow['loccode'] . "'
- AND salesorderdetails.completed=0
- AND salesorderdetails.stkcode='" . $StockID . "'
- AND salesorders.quotation=0";
+ FROM salesorderdetails INNER JOIN salesorders
+ ON salesorders.orderno = salesorderdetails.orderno
+ WHERE salesorders.fromstkloc='" . $myrow['loccode'] . "'
+ AND salesorderdetails.completed=0
+ AND salesorderdetails.stkcode='" . $StockID . "'
+ AND salesorders.quotation=0";
$ErrMsg = _('The demand for this product from') . ' ' . $myrow['loccode'] . ' ' . _('cannot be retrieved because');
$DemandResult = DB_query($sql,$ErrMsg);
- if (DB_num_rows($DemandResult)==1){
+ if(DB_num_rows($DemandResult)==1) {
$DemandRow = DB_fetch_row($DemandResult);
- $DemandQty = $DemandRow[0];
+ $DemandQty = $DemandRow[0];
} else {
$DemandQty =0;
}
@@ -206,11 +208,11 @@
//Also need to add in the demand as a component of an assembly items if this items has any assembly parents.
$sql = "SELECT SUM((salesorderdetails.quantity-salesorderdetails.qtyinvoiced)*bom.quantity) AS dem
FROM salesorderdetails INNER JOIN salesorders
- ON salesorders.orderno = salesorderdetails.orderno
- INNER JOIN bom
- ON salesorderdetails.stkcode=bom.parent
+ ON salesorders.orderno = salesorderdetails.orderno
+ INNER JOIN bom
+ ON salesorderdetails.stkcode=bom.parent
INNER JOIN stockmaster
- ON stockmaster.stockid=bom.parent
+ ON stockmaster.stockid=bom.parent
WHERE salesorders.fromstkloc='" . $myrow['loccode'] . "'
AND salesorderdetails.quantity-salesorderdetails.qtyinvoiced > 0
AND bom.component='" . $StockID . "'
@@ -220,21 +222,21 @@
$ErrMsg = _('The demand for this product from') . ' ' . $myrow['loccode'] . ' ' . _('cannot be retrieved because');
$DemandResult = DB_query($sql, $ErrMsg);
- if (DB_num_rows($DemandResult)==1){
+ if(DB_num_rows($DemandResult)==1) {
$DemandRow = DB_fetch_row($DemandResult);
$DemandQty += $DemandRow[0];
}
$sql = "SELECT SUM((woitems.qtyreqd-woitems.qtyrecd)*bom.quantity) AS dem
FROM workorders INNER JOIN woitems
- ON woitems.wo = workorders.wo
- INNER JOIN bom
- ON woitems.stockid = bom.parent
+ ON woitems.wo = workorders.wo
+ INNER JOIN bom
+ ON woitems.stockid = bom.parent
WHERE workorders.closed=0
- AND bom.component = '". $StockID . "'
- AND workorders.loccode='". $myrow['loccode'] ."'";
+ AND bom.component = '". $StockID . "'
+ AND workorders.loccode='". $myrow['loccode'] ."'";
$DemandResult = DB_query($sql, $ErrMsg);
- if (DB_num_rows($DemandResult)==1){
+ if(DB_num_rows($DemandResult)==1) {
$DemandRow = DB_fetch_row($DemandResult);
$DemandQty += $DemandRow[0];
}
@@ -244,13 +246,13 @@
// Get the QOO dues to Work Orders for all locations. Function defined in SQL_CommonFunctions.inc
$QOO += GetQuantityOnOrderDueToWorkOrders($StockID, $myrow['loccode']);
- if (($_POST['BelowReorderQuantity']=='Below' AND ($myrow['quantity']-$myrow['reorderlevel']-$DemandQty)<0)
+ if(($_POST['BelowReorderQuantity']=='Below' AND ($myrow['quantity']-$myrow['reorderlevel']-$DemandQty)<0)
OR $_POST['BelowReorderQuantity']=='All' OR $_POST['BelowReorderQuantity']=='NotZero'
- OR ($_POST['BelowReorderQuantity']=='OnOrder' AND $QOO != 0)){
+ OR ($_POST['BelowReorderQuantity']=='OnOrder' AND $QOO != 0)) {
- if (($_POST['BelowReorderQuantity']=='NotZero') AND (($myrow['quantity']-$DemandQty)>0)) {
+ if(($_POST['BelowReorderQuantity']=='NotZero') AND (($myrow['quantity']-$DemandQty)>0)) {
- if ($k==1){
+ if($k==1) {
echo '<tr class="OddTableRows">';
$k=0;
} else {
@@ -259,33 +261,33 @@
}
$tr = ($myrow['serialised'] or $myrow['controlled'])?'':'<tr>';
printf('<td><a target="_blank" href="' . $RootPath . '/StockStatus.php?StockID=%s">%s</a></td>
- <td>%s</td>
- <td class="number">%s</td>
- <td>%s</td>
- <td class="number">%s</td>
- <td class="number">%s</td>
- <td class="number"><a target="_blank" href="' . $RootPath . '/SelectProduct.php?StockID=%s">%s</a></td>
- <td class="number">%s</td>
- ' . $tr,
- mb_strtoupper($myrow['stockid']),
- mb_strtoupper($myrow['stockid']),
- $myrow['description'],
- locale_number_format($myrow['quantity'],$myrow['decimalplaces']),
- $myrow['bin'],
- locale_number_format($myrow['reorderlevel'],$myrow['decimalplaces']),
- locale_number_format($DemandQty,$myrow['decimalplaces']),
- mb_strtoupper($myrow['stockid']),
- locale_number_format($myrow['quantity'] - $DemandQty,$myrow['decimalplaces']),
- locale_number_format($QOO,$myrow['decimalplaces']));
+ <td class="text">%s</td>
+ <td class="number">%s</td>
+ <td>%s</td>
+ <td class="number">%s</td>
+ <td class="number">%s</td>
+ <td class="number"><a target="_blank" href="' . $RootPath . '/SelectProduct.php?StockID=%s">%s</a></td>
+ <td class="number">%s</td>
+ ' . $tr,
+ mb_strtoupper($myrow['stockid']),
+ mb_strtoupper($myrow['stockid']),
+ $myrow['description'],
+ locale_number_format($myrow['quantity'],$myrow['decimalplaces']),
+ $myrow['bin'],
+ locale_number_format($myrow['reorderlevel'],$myrow['decimalplaces']),
+ locale_number_format($DemandQty,$myrow['decimalplaces']),
+ mb_strtoupper($myrow['stockid']),
+ locale_number_format($myrow['quantity'] - $DemandQty,$myrow['decimalplaces']),
+ locale_number_format($QOO,$myrow['decimalplaces']));
- if ($myrow['serialised'] ==1){ /*The line is a serialised item*/
+ if($myrow['serialised'] ==1) { /*The line is a serialised item*/
echo '<td><a target="_blank" href="' . $RootPath . '/StockSerialItems.php?Serialised=Yes&Location=' . $myrow['loccode'] . '&StockID=' . $StockID . '">' . _('Serial Numbers') . '</a></td></tr>';
- } elseif ($myrow['controlled']==1){
+ } elseif($myrow['controlled']==1) {
echo '<td><a target="_blank" href="' . $RootPath . '/StockSerialItems.php?Location=' . $myrow['loccode'] . '&StockID=' . $StockID . '">' . _('Batches') . '</a></td></tr>';
}
- } else if ($_POST['BelowReorderQuantity']!='NotZero') {
- if ($k==1){
+ } else if($_POST['BelowReorderQuantity']!='NotZero') {
+ if($k==1) {
echo '<tr class="OddTableRows">';
$k=0;
} else {
@@ -310,10 +312,10 @@
mb_strtoupper($myrow['stockid']),
locale_number_format($myrow['quantity'] - $DemandQty,$myrow['decimalplaces']),
locale_number_format($QOO,$myrow['decimalplaces']));
- if ($myrow['serialised'] ==1){ /*The line is a serialised item*/
+ if($myrow['serialised'] ==1) { /*The line is a serialised item*/
echo '<td><a target="_blank" href="' . $RootPath . '/StockSerialItems.php?Serialised=Yes&Location=' . $myrow['loccode'] . '&StockID=' . $StockID . '">' . _('Serial Numbers') . '</a></td></tr>';
- } elseif ($myrow['controlled']==1){
+ } elseif($myrow['controlled']==1) {
echo '<td><a target="_blank" href="' . $RootPath . '/StockSerialItems.php?Location=' . $myrow['loccode'] . '&StockID=' . $StockID . '">' . _('Batches') . '</a></td></tr>';
}
} //end of page full new headings if
@@ -325,6 +327,6 @@
} /* Show status button hit */
echo '</div>
</form>';
+
include('includes/footer.inc');
-
?>
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2015-09-21 02:01:53 UTC (rev 7355)
+++ trunk/doc/Change.log 2015-09-21 17:30:10 UTC (rev 7356)
@@ -1,5 +1,7 @@
webERP Change Log
-21/09/15 Exson: Fix the wrong material cost updated in SupplierCredit.php. Reported by Akits.
+
+21/09/15 RChacon: In StockLocStatus.php, add current date and time, and format to use print.css.
+21/09/15 Exson: Fix the wrong material cost updated in SupplierCredit.php. Reported by Akits.
19/9/15 Dongbak Cha:Korean translation via Google translate
14/9/15 RChacon: Rebuild languages files *.pot, *.po and *.mo to includes new texts.
14/9/15 RChacon: In AnalysisHorizontalIncome.php, delete duplicated tag. Replaces text "Absolute/Relative variation" with "Absolute/Relative difference" to avoid confusions.
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 2015-09-21 02:01:53 UTC (rev 7355)
+++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2015-09-21 17:30:10 UTC (rev 7356)
@@ -8,7 +8,7 @@
"Project-Id-Version: webERP 4.12.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-09-14 09:07-0600\n"
-"PO-Revision-Date: 2015-09-14 10:03-0600\n"
+"PO-Revision-Date: 2015-09-21 09:50-0600\n"
"Last-Translator: Rafael Chacon <raf...@gm...>\n"
"Language-Team: TecnoSoluciones.com <web...@te...>\n"
"Language: es_ES\n"
@@ -1488,7 +1488,7 @@
#: AnalysisHorizontalIncome.php:105 AnalysisHorizontalPosition.php:72
msgid "Detail or summary"
-msgstr ""
+msgstr "Detalle o resumen"
#: AnalysisHorizontalIncome.php:106 AnalysisHorizontalPosition.php:73
#: GLBalanceSheet.php:60
@@ -1510,7 +1510,7 @@
#: AnalysisHorizontalIncome.php:112 AnalysisHorizontalPosition.php:79
msgid "Show all accounts including zero balances"
-msgstr ""
+msgstr "Mostrar todas las cuentas incluyendo saldos en cero"
#: AnalysisHorizontalIncome.php:113 AnalysisHorizontalPosition.php:80
#: GLBalanceSheet.php:67 GLProfit_Loss.php:116
@@ -1525,14 +1525,14 @@
#: AnalysisHorizontalPosition.php:85 AnalysisHorizontalPosition.php:86
#: GLBalanceSheet.php:73 GLProfit_Loss.php:121
msgid "Show on Screen (HTML)"
-msgstr "Mostrar en Pantalla (HTML)"
+msgstr "Mostrar en pantalla (HTML)"
#: AnalysisHorizontalIncome.php:121 AnalysisHorizontalIncome.php:521
#: AnalysisHorizontalPosition.php:88 AnalysisHorizontalPosition.php:370
#: DailyBankTransactions.php:190 GLBalanceSheet.php:718 GLProfit_Loss.php:1315
#: GLTrialBalance.php:736
msgid "Return"
-msgstr ""
+msgstr "Regresar"
#: AnalysisHorizontalIncome.php:131 GLProfit_Loss.php:147
#: GLProfit_Loss.php:576 GLTagProfit_Loss.php:155 GLTagProfit_Loss.php:479
@@ -1678,7 +1678,7 @@
#: AnalysisHorizontalIncome.php:500
msgid "Net Profit"
-msgstr ""
+msgstr "Utilidad neta"
#: AnalysisHorizontalIncome.php:517 AnalysisHorizontalPosition.php:366
#: DailyBankTransactions.php:184 GLBalanceSheet.php:714 GLProfit_Loss.php:1311
@@ -1693,7 +1693,7 @@
#: GLTrialBalance.php:733 GLTrialBalance.php:734 SalesGraph.php:20
#: SalesGraph.php:29 SalesGraph.php:34
msgid "Select A Different Period"
-msgstr "Seleccione un Período distinto"
+msgstr "Seleccione un período distinto"
#: AnalysisHorizontalPosition.php:15 AnalysisHorizontalPosition.php:28
#: AnalysisHorizontalPosition.php:109 AnalysisHorizontalPosition.php:110
@@ -2836,7 +2836,7 @@
#: BOMs.php:452
msgid "Select a Different BOM"
-msgstr "Seleccione una HCM diferente"
+msgstr "Seleccione una HCM distinta"
#: BOMs.php:468
msgid "Manufactured parent items"
@@ -11355,7 +11355,7 @@
#: DeliveryDetails.php:844
msgid "Select A Different Order"
-msgstr "Seleccione una Pedidos Diferente"
+msgstr "Seleccione una orden distinta"
#: DeliveryDetails.php:856 GoodsReceived.php:109 Shipments.php:489
#: SpecialOrder.php:627
@@ -19130,7 +19130,7 @@
#: PDFCustomerList.php:391
msgid "All sales folk"
-msgstr "Todo el equipo de ventas"
+msgstr "Todos los vendedores"
#: PDFCustomerList.php:401
msgid "Level Of Activity"
@@ -20252,7 +20252,7 @@
#: PDFStockLocTransfer.php:5
msgid "Stock Location Transfer Docket Error"
-msgstr "Error de Expediente de Transferencia de Ubicación de Existencia"
+msgstr "Error de Expediente de Transferencia de ubicación de inventario"
#: PDFStockLocTransfer.php:17
msgid "Reprint transfer docket"
@@ -22952,7 +22952,7 @@
#: PcReportTab.php:409
msgid "Select A Different Date"
-msgstr "Seleccione una Fecha distinta"
+msgstr "Seleccione una fecha distinta"
#: PcTabs.php:5
msgid "Maintenance Of Petty Cash Tabs"
@@ -25458,7 +25458,7 @@
#: StockLocMovements.php:19 StockLocStatus.php:34 StockLocTransfer.php:260
#: StockMovements.php:38 StockTransfers.php:576 StockUsage.php:66
msgid "From Stock Location"
-msgstr "Desde la localización de existencias"
+msgstr "Desde la ubicación de inventario"
#: ReorderLevel.php:303 WOCanBeProducedNow.php:50
msgid "Needed"
@@ -26930,7 +26930,7 @@
#: SalesInquiry.php:1188
msgid "All Salesmen"
-msgstr "Todos los Vendedores"
+msgstr "Todos los vendedores"
#: SalesInquiry.php:1217
msgid "Transaction Number sort only valid for Invoice Date Type"
@@ -29470,7 +29470,7 @@
#: Shipments.php:353
msgid "Stock Location"
-msgstr "Ubicación de existencia"
+msgstr "Ubicación de inventario"
#: Shipments.php:394
msgid "Order Lines On This Shipment"
@@ -29809,7 +29809,7 @@
#: ShopParameters.php:319
msgid "Stock Locations"
-msgstr "Ubicaciones de inventarios"
+msgstr "Ubicaciones de inventario"
#: ShopParameters.php:330
msgid ""
@@ -30174,7 +30174,7 @@
#: SpecialOrder.php:442
msgid "The item stock locations for the special order line"
msgstr ""
-"Las ubicaciones de existencias del artículo para la fila del pedido especial"
+"Las ubicaciones de inventario del artículo para la fila del pedido especial"
#: SpecialOrder.php:443
msgid ""
@@ -31612,7 +31612,7 @@
#: StockLocStatus.php:7
msgid "All Stock Status By Location/Category"
-msgstr "Todos los Estados de Existencias por Ubicación/Categoría"
+msgstr "Todos los estados de inventario por ubicación/categoría"
#: StockLocStatus.php:86
msgid "Shown Only Items Where"
@@ -32001,7 +32001,7 @@
#: StockLocTransferReceive.php:614
msgid "Select A Different Transfer"
-msgstr "Seleccione una transferencia diferente"
+msgstr "Seleccione una transferencia distinta"
#: StockLocTransferReceive.php:628
msgid "Select Location Receiving Into"
@@ -37607,7 +37607,7 @@
#: TaxProvinces.php:129
msgid "stock locations that refer to this tax province"
-msgstr "Ubicaciones de Almacenes en esta jurisdicción fiscal"
+msgstr "Ubicaciones de inventario en esta jurisdicción fiscal"
#: TaxProvinces.php:135
msgid "tax province and any tax rates set for it have been deleted"
@@ -39603,7 +39603,7 @@
#: WorkOrderReceive.php:757
msgid "Select a different work order for receiving finished stock against"
msgstr ""
-"Seleccione una orden de trabajo diferente para la recepción de existencias "
+"Seleccione una orden de trabajo distinta para la recepción de existencias "
"terminadas en contra de"
#: WorkOrderReceive.php:816
@@ -39877,7 +39877,7 @@
#: Z_ChangeBranchCode.php:217
msgid "New Branch Code"
-msgstr "Nuevo Código de sucursal"
+msgstr "Nuevo código de sucursal"
#: Z_ChangeCustomerCode.php:6
msgid "UTILITY PAGE To Changes A Customer Code In All Tables"
@@ -45109,7 +45109,7 @@
#: api/api_xml-rpc.php:1507
msgid "Stock Location Code"
-msgstr "Código de Ubicación de Existencia"
+msgstr "Código de ubicación de inventario"
#: api/api_xml-rpc.php:1508
msgid "A stock location code as returned by the GetLocationList function."
@@ -46269,7 +46269,7 @@
#: includes/PDFCustomerListPageHeader.inc:43
msgid "All Salespeople"
-msgstr "Todos los Vendedores"
+msgstr "Todos los vendedores"
#: includes/PDFCustomerListPageHeader.inc:48
msgid "Salespeople"
@@ -49409,7 +49409,7 @@
#: includes/MainMenuLinksArray.php:225
msgid "Reprint GRN"
-msgstr "Reimprimir"
+msgstr "Reimprimir "
#: includes/MainMenuLinksArray.php:226
msgid "Inventory Item Movements"
@@ -50559,7 +50559,7 @@
#: reportwriter/languages/en_US/reports.php:91
msgid "Reports"
-msgstr ""
+msgstr "Informes"
#: reportwriter/languages/en_US/reports.php:94
msgid "Second"
@@ -50575,7 +50575,7 @@
#: reportwriter/languages/en_US/reports.php:97
msgid "Select a field..."
-msgstr ""
+msgstr "Seleccione un campo..."
#: reportwriter/languages/en_US/reports.php:99
msgid "Sixth"
@@ -50607,7 +50607,7 @@
#: reportwriter/languages/en_US/reports.php:117
msgid "Report/Form: "
-msgstr ""
+msgstr "Informe/Formulario:"
#: reportwriter/languages/en_US/reports.php:118
msgid "Report and Form Builder - "
@@ -50639,7 +50639,7 @@
#: reportwriter/languages/en_US/reports.php:125
msgid "Reports Menu"
-msgstr ""
+msgstr "Menú de informes"
#: reportwriter/languages/en_US/reports.php:126
#: reportwriter/languages/en_US/reports.php:139
@@ -50967,11 +50967,11 @@
#: reportwriter/languages/en_US/reports.php:222
msgid "Report Title 1"
-msgstr ""
+msgstr "Título 1 del informe"
#: reportwriter/languages/en_US/reports.php:223
msgid "Report Title 2"
-msgstr ""
+msgstr "Título 2 del informe"
#: reportwriter/languages/en_US/reports.php:224
msgid "Report Data"
@@ -50979,7 +50979,7 @@
#: reportwriter/languages/en_US/reports.php:225
msgid "Report/Form Identification"
-msgstr ""
+msgstr "Identificación de informe/Formulario"
#: reportwriter/languages/en_US/reports.php:226
msgid "Report Import"
@@ -51015,7 +51015,7 @@
#: reportwriter/languages/en_US/reports.php:234
msgid "Report Totals"
-msgstr ""
+msgstr "Totales del informe"
#: reportwriter/languages/en_US/reports.php:235
msgid "Enter fields to total (Table.Fieldname)"
|