来自单据明细的台账

This commit is contained in:
砂糖
2025-08-11 11:03:06 +08:00
parent 358b604895
commit 9cb9723603
5 changed files with 424 additions and 14 deletions

View File

@@ -147,6 +147,12 @@
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-document"
@click="goLedger(scope.row)"
>台账</el-button>
<el-button
size="mini"
type="text"
@@ -391,6 +397,15 @@ export default {
this.resetForm("queryForm");
this.handleQuery();
},
goLedger(row) {
this.$router.push({
path: '/wms/ledger',
query: {
itemId: row.productId,
itemType: 'product'
}
})
},
handleBom(row) {
this.bomDialogVisible = true;
this.bomId = row.bomId;