This commit is contained in:
2021-08-03 21:26:07 +00:00
parent f25d60b78d
commit b2d3357a2d
5 changed files with 5 additions and 5 deletions

View File

@@ -4862,7 +4862,7 @@ namespace AyaNova.Biz
var part = await ct.Part.AsNoTracking().Where(x => x.Id == i.PartId).Select(x => x.PartNumber).FirstOrDefaultAsync();
var whs = await ct.PartWarehouse.AsNoTracking().Where(x => x.Id == i.WarehouseId).Select(x => x.Name).FirstOrDefaultAsync();
var qty = (i.QuantityRequired - dBalance).ToString("G29", System.Globalization.CultureInfo.InvariantCulture);
sb.Append($"{Trans["Part"]} {part} {Trans["PartWarehouse"]} {whs} {Trans["QuantityRequired"]} {qty}\n");
sb.Append($"{Trans["Part"]}: {part}, {Trans["PartWarehouse"]}: {whs}, {Trans["QuantityRequired"]}: {qty}\n");
}
}
if (sb.Length > 0)

View File

@@ -2301,5 +2301,5 @@
"ExcludeDaysOfWeek":"Wochentage ausschließen",
"ErrorGenBeforeTooSmall":"Muss kleiner sein als Wiederholungsintervall",
"ErrorRepeatIntervalTooSmall":"Mindestens eine Stunde",
"QuantityRequired":"Quantity required"
"QuantityRequired":"Erforderliche Menge"
}

View File

@@ -2301,5 +2301,5 @@
"ExcludeDaysOfWeek":"Excluir días de la semana",
"ErrorGenBeforeTooSmall":"Debe ser menor que el intervalo de repetición",
"ErrorRepeatIntervalTooSmall":"Mínimo una hora",
"QuantityRequired":"Quantity required"
"QuantityRequired":"Cantidad requerida"
}

View File

@@ -2301,5 +2301,5 @@
"ExcludeDaysOfWeek":"Exclure les jours de la semaine",
"ErrorGenBeforeTooSmall":"Doit être inférieur à l'intervalle de répétition",
"ErrorRepeatIntervalTooSmall":"Au moins une heure",
"QuantityRequired":"Quantity required"
"QuantityRequired":"Quantité Nécessaire"
}