diff --git a/api-wiaas/client/js/components/orders/orders.directive.js b/api-wiaas/client/js/components/orders/orders.directive.js
index a111803..60b56c5 100644
--- a/api-wiaas/client/js/components/orders/orders.directive.js
+++ b/api-wiaas/client/js/components/orders/orders.directive.js
@@ -147,6 +147,10 @@
'idCommercialLeadUser',
'idCustomerInstance',
'deliveryAddress',
+ 'billingFirstName',
+ 'billingLastName',
+ 'billingMail',
+ 'billingAddress',
'customerPhone',
'customerMail',
'commercialLeadPhone',
diff --git a/api-wiaas/server/components/v1/orders/templates/OrderDetailsCustomer.html b/api-wiaas/server/components/v1/orders/templates/OrderDetailsCustomer.html
index 68c8c80..3385fd8 100644
--- a/api-wiaas/server/components/v1/orders/templates/OrderDetailsCustomer.html
+++ b/api-wiaas/server/components/v1/orders/templates/OrderDetailsCustomer.html
@@ -9,4 +9,16 @@
{{'orders.tables.headers.mail' | translate}}:
{{data.customerMail}}
+
+ {{'orders.tables.headers.billingFirstName' | translate}}:
+ {{data.billingFirstName}}
+
+ {{'orders.tables.headers.billingLastName' | translate}}:
+ {{data.billingLastName}}
+
+ {{'orders.tables.headers.billingMail' | translate}}:
+ {{data.billingMail}}
+
+ {{'orders.tables.headers.billingAddress' | translate}}:
+ {{data.billingAddress}}
diff --git a/api-wiaas/server/components/v1/translate/languages/en.json b/api-wiaas/server/components/v1/translate/languages/en.json
index 4d6009d..c481000 100644
--- a/api-wiaas/server/components/v1/translate/languages/en.json
+++ b/api-wiaas/server/components/v1/translate/languages/en.json
@@ -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",