|
@@ -76,7 +76,7 @@ const sourceList = ref({
|
|
|
keyword: "",
|
|
|
warehouseId: "",
|
|
|
toWarehouseId: "",
|
|
|
- type: "3",
|
|
|
+ type: "3,11",
|
|
|
},
|
|
|
});
|
|
|
const loading = ref(false);
|
|
@@ -189,7 +189,7 @@ const getDict = () => {
|
|
|
const getList = async (req) => {
|
|
|
sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
|
loading.value = true;
|
|
|
- proxy.post("/stockJournal/page", sourceList.value.pagination).then((res) => {
|
|
|
+ proxy.post("/stockJournalDetails/page", sourceList.value.pagination).then((res) => {
|
|
|
sourceList.value.data = res.rows;
|
|
|
sourceList.value.pagination.total = res.total;
|
|
|
setTimeout(() => {
|