refactor: delete docment receive point
This commit is contained in:
parent
3679de69f1
commit
d6c0d8da92
4 changed files with 0 additions and 19 deletions
|
|
@ -1235,9 +1235,6 @@ async function getWorkerFromCriteria(
|
||||||
v-model:work-name="quotationFormData.workName"
|
v-model:work-name="quotationFormData.workName"
|
||||||
v-model:contactor="quotationFormData.contactName"
|
v-model:contactor="quotationFormData.contactName"
|
||||||
v-model:telephone="quotationFormData.contactTel"
|
v-model:telephone="quotationFormData.contactTel"
|
||||||
v-model:document-receive-point="
|
|
||||||
quotationFormData.documentReceivePoint
|
|
||||||
"
|
|
||||||
v-model:due-date="quotationFormData.dueDate"
|
v-model:due-date="quotationFormData.dueDate"
|
||||||
>
|
>
|
||||||
<template #issue-info>
|
<template #issue-info>
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,6 @@ const actor = defineModel<string>('actor', { required: false });
|
||||||
const workName = defineModel<string>('workName', { required: true });
|
const workName = defineModel<string>('workName', { required: true });
|
||||||
const contactor = defineModel<string>('contactor', { required: true });
|
const contactor = defineModel<string>('contactor', { required: true });
|
||||||
const telephone = defineModel<string>('telephone', { required: true });
|
const telephone = defineModel<string>('telephone', { required: true });
|
||||||
const documentReceivePoint = defineModel<string>('documentReceivePoint', {
|
|
||||||
required: true,
|
|
||||||
});
|
|
||||||
const dueDate = defineModel<Date | string>('dueDate', { required: true });
|
const dueDate = defineModel<Date | string>('dueDate', { required: true });
|
||||||
const createdAt = defineModel<Date | string>('createdAt');
|
const createdAt = defineModel<Date | string>('createdAt');
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -85,14 +82,5 @@ const createdAt = defineModel<Date | string>('createdAt');
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
/>
|
/>
|
||||||
<q-input
|
|
||||||
for="input-docs-receive-point"
|
|
||||||
:label="$t('quotation.documentReceivePoint')"
|
|
||||||
:readonly
|
|
||||||
v-model="documentReceivePoint"
|
|
||||||
class="col-12 col-md-2"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@ const DEFAULT_DATA: QuotationPayload = {
|
||||||
payCondition: 'Full',
|
payCondition: 'Full',
|
||||||
dueDate: new Date(),
|
dueDate: new Date(),
|
||||||
discount: 0,
|
discount: 0,
|
||||||
documentReceivePoint: '',
|
|
||||||
contactTel: '',
|
contactTel: '',
|
||||||
contactName: '',
|
contactName: '',
|
||||||
workName: '',
|
workName: '',
|
||||||
|
|
|
||||||
|
|
@ -221,7 +221,6 @@ export type Quotation = {
|
||||||
| 'BillSplitCustom';
|
| 'BillSplitCustom';
|
||||||
date: string | Date;
|
date: string | Date;
|
||||||
dueDate: string | Date;
|
dueDate: string | Date;
|
||||||
documentReceivePoint: string;
|
|
||||||
contactTel: string;
|
contactTel: string;
|
||||||
contactName: string;
|
contactName: string;
|
||||||
workName: string;
|
workName: string;
|
||||||
|
|
@ -307,7 +306,6 @@ export type QuotationFull = {
|
||||||
| 'BillSplitCustom';
|
| 'BillSplitCustom';
|
||||||
date: string | Date;
|
date: string | Date;
|
||||||
dueDate: string | Date;
|
dueDate: string | Date;
|
||||||
documentReceivePoint: string;
|
|
||||||
contactTel: string;
|
contactTel: string;
|
||||||
contactName: string;
|
contactName: string;
|
||||||
workName: string;
|
workName: string;
|
||||||
|
|
@ -374,7 +372,6 @@ export type QuotationPayload = {
|
||||||
| 'BillSplit'
|
| 'BillSplit'
|
||||||
| 'BillSplitCustom';
|
| 'BillSplitCustom';
|
||||||
dueDate: Date;
|
dueDate: Date;
|
||||||
documentReceivePoint: string;
|
|
||||||
contactTel: string;
|
contactTel: string;
|
||||||
contactName: string;
|
contactName: string;
|
||||||
workName: string;
|
workName: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue