This commit is contained in:
2021-02-25 19:52:32 +00:00
parent 03b7226ae5
commit 0fe7c6c327

View File

@@ -1094,7 +1094,13 @@ export default {
}
return null;
},
updatePartCost(item) {
async updatePartCost(item) {
let dialogResult = await window.$gz.dialog.confirmGeneric(
"Update part cost from received cost?"
);
if (dialogResult == false) {
return;
}
console.log("STUB: UPDATE PART COST", item);
},
canSave: function() {