mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
Merge branch 'build-300' into 'master'
fix payment issue & build version 300 See merge request mohit.panjvani/crater-web!150
This commit is contained in:
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"/assets/js/app.js": "/assets/js/app.js?id=52488ee407fb4224bf0c",
|
"/assets/js/app.js": "/assets/js/app.js?id=e211851ed84790fee286",
|
||||||
"/assets/css/crater.css": "/assets/css/crater.css?id=2123fdc939165f025e3b"
|
"/assets/css/crater.css": "/assets/css/crater.css?id=2123fdc939165f025e3b"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -363,7 +363,7 @@ export default {
|
|||||||
let data = {
|
let data = {
|
||||||
editData: {
|
editData: {
|
||||||
...this.formData,
|
...this.formData,
|
||||||
payment_method_id: this.formData.payment_method.id,
|
payment_method_id: this.formData.payment_method ? this.formData.payment_method.id : null,
|
||||||
payment_date: moment(this.formData.payment_date).format('DD/MM/YYYY')
|
payment_date: moment(this.formData.payment_date).format('DD/MM/YYYY')
|
||||||
},
|
},
|
||||||
id: this.$route.params.id
|
id: this.$route.params.id
|
||||||
|
|||||||
@ -503,7 +503,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="textStyle1" style="text-align: left; color: #55547A">Payment Mode</td>
|
<td class="textStyle1" style="text-align: left; color: #55547A">Payment Mode</td>
|
||||||
<td class="textStyle2"> {{$payment->paymentMethod->name}}</td>
|
<td class="textStyle2"> {{$payment->paymentMethod ? $payment->paymentMethod->name : '-'}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
@if ($payment->invoice && $payment->invoice->invoice_number)
|
@if ($payment->invoice && $payment->invoice->invoice_number)
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user