show billing info on order details - backend panel

This commit is contained in:
GotPPay
2018-07-09 20:15:13 +02:00
parent 31dc7639af
commit d2426d1270
3 changed files with 21 additions and 1 deletions

View File

@@ -147,6 +147,10 @@
'idCommercialLeadUser',
'idCustomerInstance',
'deliveryAddress',
'billingFirstName',
'billingLastName',
'billingMail',
'billingAddress',
'customerPhone',
'customerMail',
'commercialLeadPhone',

View File

@@ -9,4 +9,16 @@
<div class="order-details-label">{{'orders.tables.headers.mail' | translate}}:</div>
<div class="order-details-info">{{data.customerMail}}</div>
<div class="order-details-label">{{'orders.tables.headers.billingFirstName' | translate}}:</div>
<div class="order-details-info">{{data.billingFirstName}}</div>
<div class="order-details-label">{{'orders.tables.headers.billingLastName' | translate}}:</div>
<div class="order-details-info">{{data.billingLastName}}</div>
<div class="order-details-label">{{'orders.tables.headers.billingMail' | translate}}:</div>
<div class="order-details-info">{{data.billingMail}}</div>
<div class="order-details-label">{{'orders.tables.headers.billingAddress' | translate}}:</div>
<div class="order-details-info">{{data.billingAddress}}</div>
</div>

View File

@@ -864,7 +864,11 @@
"uploadFile" : "Upload files for order package",
"idProject" : "Id project",
"projectName" : "Project name",
"isAvailable" : "Is available"
"isAvailable" : "Is available",
"billingFirstName" : "Billing first name",
"billingLastName" : "Billing last name",
"billingMail" : "Invoice mail",
"billingAddress" : "Billing address"
},
"extra" : {
"NOT_ASSIGNED" : "Unassigned",