Skip to content
Permalink
bb65e8189a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (14 sloc) 1.08 KB

<div ng-controller='userController'>
<center> <h4>Invoice ID {{catcats.invoiceId}}</h4> </center>
<table>
<tr ng-show="currOrderCustomer"><td><h4>Customer Name </h4> </td><td>{{currOrderCustomer.FName}} {{currOrderCustomer.LName}}</td> </tr>
<tr><td><h4>Invoice Address :</h4> </td><td>{{catcats.address}} {{catcats.city}} {{catcats.state}}</td> </tr>
<tr ng-show="currOrderCustomer"><td><h4>Customer Phone Number </h4> </td><td>{{currOrderCustomer.Phone}}</td> </tr>
<tr ng-show="catcats.payment.token"><td><h4>Apple token </h4> </td><td>{{catcats.paymment.token}}</td> </tr>
<tr ng-show="catcats.payment.email"><td><h4>Email Address </h4> </td><td>{{catcats.payment.email}}</td> </tr>
<tr ng-show="catcats.payment.cardnum"><td><h4>Card number </h4> </td><td>{{catcats.payment.cardnum}}</td> </tr>
<tr ng-show="catcats.payment.expr_date"><td><h4>Expiration Date </h4> </td><td>{{catcats.payment.expr_date}}</td> </tr>
<tr><td><h4>Invoice Total</h4> </td><td>{{catcats.total}}</td> </tr>
</table>
</div>