payment info
parent
9b734f2b9a
commit
6bc6bd23a3
@ -1,8 +1,8 @@
|
|||||||
|
@{
|
||||||
|
ViewData["Title"] = "Le paiment "+ViewData["id"]+" a échoué";
|
||||||
|
}
|
||||||
|
|
||||||
|
<h2>@ViewData["Title"].</h2>
|
||||||
<dl>
|
<p>
|
||||||
<dt> Le paiment @ViewData["id"] a échoué
|
@ViewData["error"]
|
||||||
</dt>
|
</p>
|
||||||
<dd> @ViewData["error"]
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
@ -0,0 +1,31 @@
|
|||||||
|
@model Yavsc.ViewModels.PayPal.PaymentInfo
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Informations sur le paiment "+ViewData["id"];
|
||||||
|
}
|
||||||
|
|
||||||
|
<h2>@ViewData["Title"].</h2>
|
||||||
|
<p>
|
||||||
|
@if (Model.DbContent.Executor.Id == User.GetUserId()) {
|
||||||
|
<text>
|
||||||
|
Votre paiment
|
||||||
|
</text>
|
||||||
|
} else {
|
||||||
|
<text>
|
||||||
|
Le paiment de @Html.DisplayFor(m=>m.DbContent.Executor.UserName)
|
||||||
|
</text>
|
||||||
|
}
|
||||||
|
<text> :
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
|
||||||
|
[@Model.DbContent.CreationToken]<br/>
|
||||||
|
|
||||||
|
@Html.DisplayFor(m=>m.DetailsFromPayPal)
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
</text>
|
||||||
|
</p>
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
@model GetExpressCheckoutDetailsResponseDetailsType
|
||||||
|
|
||||||
|
@Html.DisplayFor(m=>m.PayerInfo)
|
||||||
|
@Html.DisplayFor(m=>m.InvoiceID)
|
||||||
|
@Html.DisplayFor(m=>m.BillingAgreementAcceptedStatus)
|
||||||
|
@Html.DisplayFor(m=>m.BillingAddress)
|
||||||
|
|
||||||
|
@Html.DisplayFor(m=>m.ContactPhone)
|
||||||
|
@Html.DisplayFor(m=>m.Note)
|
||||||
|
@Html.DisplayFor(m=>m.CheckoutStatus)
|
||||||
|
@Html.DisplayFor(m=>m.PayPalAdjustment)
|
||||||
|
@Html.DisplayFor(m=>m.PaymentDetails)
|
||||||
|
@Html.DisplayFor(m=>m.UserSelectedOptions)
|
||||||
|
@Html.DisplayFor(m=>m.IncentiveDetails)
|
||||||
|
@if (Model.GiftReceiptEnable)
|
||||||
|
@Html.DispayFor(m=>m.GiftMessage)
|
||||||
|
|
||||||
|
@Html.DispayFor(m=>m.GiftWrapName)
|
||||||
|
@Html.DispayFor(m=>m.GiftWrapAmount)
|
||||||
|
@Html.DispayFor(m=>m.BuyerMarketingEmail)
|
||||||
|
@Html.DispayFor(m=>m.SurveyQuestion)
|
||||||
|
@Html.DispayFor(m=>m.SurveyChoiceSelected)
|
||||||
|
@Html.DispayFor(m=>m.CartChangeTolerance)
|
||||||
|
@Html.DispayFor(m=>m.InstrumentDetails)
|
||||||
Loading…
Reference in New Issue