mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
fix the change
This commit is contained in:
@ -122,7 +122,7 @@ export default {
|
|||||||
{ name: 'km', value: 'km' },
|
{ name: 'km', value: 'km' },
|
||||||
{ name: 'lb', value: 'lb' },
|
{ name: 'lb', value: 'lb' },
|
||||||
{ name: 'mg', value: 'mg' },
|
{ name: 'mg', value: 'mg' },
|
||||||
{ name: 'pc', value: 'pc ' }
|
{ name: 'pc', value: 'pc' }
|
||||||
],
|
],
|
||||||
formData: {
|
formData: {
|
||||||
name: null,
|
name: null,
|
||||||
|
|||||||
@ -168,7 +168,7 @@
|
|||||||
>
|
>
|
||||||
<table-column :label="$t('dashboard.recent_invoices_card.due_on')" show="formattedDueDate" />
|
<table-column :label="$t('dashboard.recent_invoices_card.due_on')" show="formattedDueDate" />
|
||||||
<table-column :label="$t('dashboard.recent_invoices_card.customer')" show="user.name" />
|
<table-column :label="$t('dashboard.recent_invoices_card.customer')" show="user.name" />
|
||||||
<table-column :label="$t('dashboard.recent_invoices_card.amount_due')" sort-as="due_amount">
|
<table-column :label="$t('dashboard.recent_invoices_card.amount_due')" show="due_amount" sort-as="due_amount">
|
||||||
<template slot-scope="row">
|
<template slot-scope="row">
|
||||||
<span>{{ $t('dashboard.recent_invoices_card.amount_due') }}</span>
|
<span>{{ $t('dashboard.recent_invoices_card.amount_due') }}</span>
|
||||||
<div v-html="$utils.formatMoney(row.due_amount, row.user.currency)"/>
|
<div v-html="$utils.formatMoney(row.due_amount, row.user.currency)"/>
|
||||||
@ -242,7 +242,7 @@
|
|||||||
>
|
>
|
||||||
<table-column :label="$t('dashboard.recent_estimate_card.date')" show="formattedExpiryDate" />
|
<table-column :label="$t('dashboard.recent_estimate_card.date')" show="formattedExpiryDate" />
|
||||||
<table-column :label="$t('dashboard.recent_estimate_card.customer')" show="user.name" />
|
<table-column :label="$t('dashboard.recent_estimate_card.customer')" show="user.name" />
|
||||||
<table-column :label="$t('dashboard.recent_estimate_card.amount_due')" sort-as="total">
|
<table-column :label="$t('dashboard.recent_estimate_card.amount_due')" show="total" sort-as="total">
|
||||||
<template slot-scope="row">
|
<template slot-scope="row">
|
||||||
<span>{{ $t('dashboard.recent_estimate_card.amount_due') }}</span>
|
<span>{{ $t('dashboard.recent_estimate_card.amount_due') }}</span>
|
||||||
<div v-html="$utils.formatMoney(row.total, row.user.currency)"/>
|
<div v-html="$utils.formatMoney(row.total, row.user.currency)"/>
|
||||||
|
|||||||
@ -113,7 +113,7 @@ export default {
|
|||||||
{ name: 'km', value: 'km' },
|
{ name: 'km', value: 'km' },
|
||||||
{ name: 'lb', value: 'lb' },
|
{ name: 'lb', value: 'lb' },
|
||||||
{ name: 'mg', value: 'mg' },
|
{ name: 'mg', value: 'mg' },
|
||||||
{ name: 'pc', value: 'pc ' }
|
{ name: 'pc', value: 'pc' }
|
||||||
],
|
],
|
||||||
formData: {
|
formData: {
|
||||||
name: '',
|
name: '',
|
||||||
|
|||||||
@ -246,7 +246,7 @@ export default {
|
|||||||
{ name: 'km', value: 'km' },
|
{ name: 'km', value: 'km' },
|
||||||
{ name: 'lb', value: 'lb' },
|
{ name: 'lb', value: 'lb' },
|
||||||
{ name: 'mg', value: 'mg' },
|
{ name: 'mg', value: 'mg' },
|
||||||
{ name: 'pc', value: 'pc ' }
|
{ name: 'pc', value: 'pc' }
|
||||||
],
|
],
|
||||||
isRequestOngoing: true,
|
isRequestOngoing: true,
|
||||||
filtersApplied: false,
|
filtersApplied: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user