|
@@ -246,7 +246,7 @@ const getList = async (req) => {
|
|
|
.then((res) => {
|
|
|
sourceList.value.data = res.rows.map((x) => ({
|
|
|
...x,
|
|
|
- quantity: x.quantity - x.receiptQuantity,
|
|
|
+ quantity: (x.quantity - x.receiptQuantity).toFixed(4),
|
|
|
}));
|
|
|
sourceList.value.pagination.total = res.total;
|
|
|
setTimeout(() => {
|