master
lion 6 months ago
parent aaaabc3f8c
commit 7214018221

@ -84,6 +84,12 @@
{{scope.row.shipping_address}} {{scope.row.shipping_address}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align='left' label="Address Line 2" width="180" header-align="center">
<template slot-scope="scope">
{{scope.row.shipping_address_line_2}}
</template>
</el-table-column>
<el-table-column align='left' label="City" width="180" header-align="center"> <el-table-column align='left' label="City" width="180" header-align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.shipping_city}} {{scope.row.shipping_city}}
@ -150,6 +156,11 @@
{{scope.row.billing_address}} {{scope.row.billing_address}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align='left' label="Address Line 2" width="180" header-align="center">
<template slot-scope="scope">
{{scope.row.billing_address_line_2}}
</template>
</el-table-column>
<el-table-column align='left' label="City" width="180" header-align="center"> <el-table-column align='left' label="City" width="180" header-align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.billing_city}} {{scope.row.billing_city}}
@ -370,6 +381,7 @@
"shipping_attention": "Shipping Attention", "shipping_attention": "Shipping Attention",
"shipping_address": "Shipping Address", "shipping_address": "Shipping Address",
"shipping_address_line_2": "Shipping Address Line 2",
"shipping_city": "Shipping City", "shipping_city": "Shipping City",
"shipping_region": "Shipping States/Province", "shipping_region": "Shipping States/Province",
"shipping_zip_code": "Shipping Zip/Postal Code", "shipping_zip_code": "Shipping Zip/Postal Code",
@ -390,6 +402,7 @@
"billing_attention": "Billing Attention", "billing_attention": "Billing Attention",
"billing_address": "Billing Address", "billing_address": "Billing Address",
"billing_address_line_2": "Billing Address Line 2",
"billing_city": "Billing City", "billing_city": "Billing City",
"billing_region": "Billing States/Province", "billing_region": "Billing States/Province",
"billing_zip_code": "Billing Zip/Postal Code", "billing_zip_code": "Billing Zip/Postal Code",

Loading…
Cancel
Save