#8388 fix invoice-in #1587

Merged
jorgep merged 19 commits from 8388-fixInvoiceIn into dev 2025-03-26 09:41:45 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 028477ecbe - Show all commits

View File

@ -35,6 +35,10 @@ const $props = defineProps({
type: String,
default: null,
},
hasFile: {
type: Boolean,
default: false,
},
});
const warehouses = ref();
@ -49,7 +53,7 @@ onMounted(() => {
if (!$props.formInitialData) {
dms.value.description =
$props.description ?? t($props.model + 'Description', dms.value);
dms.value.hasFile = false;
dms.value.hasFile = $props.hasFile;
}
});
function onFileChange(files) {