mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-21 13:24:27 +00:00
fix beneficiary name and acc number display on booking confirmation
This commit is contained in:
@@ -627,6 +627,8 @@ class BookingController extends Controller
|
||||
'taxAmount' => $taxAmount,
|
||||
'billingChargeAmount' => $billingChargeAmount,
|
||||
'bankin_amount' => $bankin_amount,
|
||||
'acc_name' => $request->input('acc_name'),
|
||||
'acc_no' => $request->input('acc_no')
|
||||
], 200);
|
||||
}
|
||||
|
||||
|
||||
@@ -242,10 +242,8 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div v-for="(item,index) in bookingForm" align="center">
|
||||
{{index+1}}) {{ item.account_name }} {{ item.account_num }}
|
||||
<br/>
|
||||
</div>
|
||||
Name : {{ bookingConfirmTable.acc_name }} <br>
|
||||
Account No. : {{ bookingConfirmTable.acc_no }}
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
@@ -523,7 +521,9 @@ export default {
|
||||
if (valid) {
|
||||
let newConfirmation = {
|
||||
amount: this.booking.amount,
|
||||
term: this.term
|
||||
term: this.term,
|
||||
acc_name: this.bookingForm.account_name,
|
||||
acc_no: this.bookingForm.account_num
|
||||
}
|
||||
axios.post('api/booking/calculation', newConfirmation)
|
||||
.then((response) => {
|
||||
|
||||
Reference in New Issue
Block a user