Fix Bug #439: 领用出库选择领用药品后"总库存数量"列数据未显示
根因:handleLocationClick 中 pickBestOrgQuantityRow 返回的 d 有数据但 orgQuantity <= 0 时, applyFromDto 不被调用,导致 totalQuantity 保持空字符串 '',界面显示为空白。 修复:将条件从 "d && Number(d.orgQuantity ?? 0) > 0" 改为 "d", 确保只要后端返回库存记录就调用 applyFromDto 填充 totalQuantity(无论数量是否为 0)。 同时在批号回退分支(lotTrimmed 路径)中做同样处理。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -1131,8 +1131,7 @@ function handleLocationClick(item, row, index) {
|
|||||||
.then((res) => {
|
.then((res) => {
|
||||||
const list = res.data || [];
|
const list = res.data || [];
|
||||||
const d = pickBestOrgQuantityRow(list);
|
const d = pickBestOrgQuantityRow(list);
|
||||||
const strictOk = d && Number(d.orgQuantity ?? 0) > 0;
|
if (d) {
|
||||||
if (strictOk) {
|
|
||||||
applyFromDto(d, false);
|
applyFromDto(d, false);
|
||||||
if (Number(r.totalQuantity) <= 0) {
|
if (Number(r.totalQuantity) <= 0) {
|
||||||
proxy.$message.warning('仓库数量为0,无法调用!');
|
proxy.$message.warning('仓库数量为0,无法调用!');
|
||||||
@@ -1144,11 +1143,15 @@ function handleLocationClick(item, row, index) {
|
|||||||
return runGet(false).then((res2) => {
|
return runGet(false).then((res2) => {
|
||||||
const list2 = res2.data || [];
|
const list2 = res2.data || [];
|
||||||
const d2 = pickBestOrgQuantityRow(list2);
|
const d2 = pickBestOrgQuantityRow(list2);
|
||||||
if (d2 && Number(d2.orgQuantity ?? 0) > 0) {
|
if (d2) {
|
||||||
applyFromDto(d2, true);
|
applyFromDto(d2, true);
|
||||||
proxy.$message.info(
|
if (Number(r.totalQuantity) <= 0) {
|
||||||
'所选批号在本仓库无对应库存或批号不一致,已按仓库实物回显批号与可领数量,请核对。'
|
proxy.$message.warning('仓库数量为0,无法调用!');
|
||||||
);
|
} else {
|
||||||
|
proxy.$message.info(
|
||||||
|
'所选批号在本仓库无对应库存或批号不一致,已按仓库实物回显批号与可领数量,请核对。'
|
||||||
|
);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
r.totalQuantity = 0;
|
r.totalQuantity = 0;
|
||||||
r.price = 0;
|
r.price = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user