feat: quotation payment method
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
This commit is contained in:
parent
c749e91ffa
commit
a7392e44b4
5 changed files with 594 additions and 467 deletions
|
|
@ -54,10 +54,11 @@ onMounted(() => {
|
||||||
@click="$emit('click')"
|
@click="$emit('click')"
|
||||||
>
|
>
|
||||||
<q-icon :name="icon" size="lg" :style="`color: ${color}`" />
|
<q-icon :name="icon" size="lg" :style="`color: ${color}`" />
|
||||||
<article class="col column q-pl-md">
|
<div class="col column q-pl-md">
|
||||||
<span class="ellipsis full-width">
|
<div class="ellipsis full-width" style="max-width: 65vw !important">
|
||||||
{{ name }}
|
{{ name }}
|
||||||
</span>
|
</div>
|
||||||
|
|
||||||
<span class="text-caption app-text-muted-2">
|
<span class="text-caption app-text-muted-2">
|
||||||
{{
|
{{
|
||||||
uploading.loaded
|
uploading.loaded
|
||||||
|
|
@ -79,7 +80,7 @@ onMounted(() => {
|
||||||
/>
|
/>
|
||||||
{{ idle ? `Pending` : progress !== 1 ? `Uploading...` : 'Completed' }}
|
{{ idle ? `Pending` : progress !== 1 ? `Uploading...` : 'Completed' }}
|
||||||
</span>
|
</span>
|
||||||
</article>
|
</div>
|
||||||
<q-btn
|
<q-btn
|
||||||
v-if="closeable"
|
v-if="closeable"
|
||||||
icon="mdi-close"
|
icon="mdi-close"
|
||||||
|
|
|
||||||
|
|
@ -777,6 +777,8 @@ export default {
|
||||||
seller: 'Seller',
|
seller: 'Seller',
|
||||||
paymentChannels: 'Payment Channels',
|
paymentChannels: 'Payment Channels',
|
||||||
channelsThat: 'Channels That',
|
channelsThat: 'Channels That',
|
||||||
|
refNo: 'Reference Number',
|
||||||
|
bankAccount: 'Bank Account',
|
||||||
bankAccountNumber: 'Bank Account Number',
|
bankAccountNumber: 'Bank Account Number',
|
||||||
bankAccountName: 'Bank Account Name',
|
bankAccountName: 'Bank Account Name',
|
||||||
inTheNameOf: 'In The Name Of',
|
inTheNameOf: 'In The Name Of',
|
||||||
|
|
|
||||||
|
|
@ -775,6 +775,8 @@ export default {
|
||||||
seller: 'ผู้ขาย',
|
seller: 'ผู้ขาย',
|
||||||
paymentChannels: 'ช่องทางชำระเงิน',
|
paymentChannels: 'ช่องทางชำระเงิน',
|
||||||
channelsThat: 'ช่องทางที่',
|
channelsThat: 'ช่องทางที่',
|
||||||
|
refNo: 'เลขที่อ้างอิง',
|
||||||
|
bankAccount: 'บัญชีธนาคาร',
|
||||||
bankAccountNumber: 'เลขบัญชีธนาคาร',
|
bankAccountNumber: 'เลขบัญชีธนาคาร',
|
||||||
bankAccountName: 'ชื่อบัญชี',
|
bankAccountName: 'ชื่อบัญชี',
|
||||||
inTheNameOf: 'ในนาม',
|
inTheNameOf: 'ในนาม',
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -417,6 +417,9 @@ export type QuotationPaymentData = {
|
||||||
date: string;
|
date: string;
|
||||||
id: string;
|
id: string;
|
||||||
code: string;
|
code: string;
|
||||||
|
account?: string;
|
||||||
|
channel?: string;
|
||||||
|
reference?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Details = {
|
export type Details = {
|
||||||
|
|
@ -435,6 +438,9 @@ export type PaymentPayload = {
|
||||||
paymentStatus: string;
|
paymentStatus: string;
|
||||||
date: Date;
|
date: Date;
|
||||||
amount: number;
|
amount: number;
|
||||||
|
account?: string;
|
||||||
|
channel?: string;
|
||||||
|
reference?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ProductServiceList = {
|
export type ProductServiceList = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue