Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/05/13 14:09:51 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Billing Component may now be deactivated by setting the BillingEnabled flag within the OaaS service configuration.
  • Added views for invoices and usage data.
  • Changed appearance of the SaveOrder view.
Location:
branches/OaaS/HeuristicLab.Services.Optimization.Web
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3Bin
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Order/SaveOrder.cshtml

    r9582 r9586  
    2828}
    2929else {
     30    <h2>Choose one of your payment options:</h2>
    3031    foreach (var pi in Model.User.PaymentInformation) {
     32        <p>
    3133         @Html.Label("PaymentInformationId", string.Format("{0} ({1})", pi.PaymentMethod, pi.CardNumber))
    32          @Html.RadioButton("PaymentInformationId", pi.PaymentInformationId);
     34         @Html.RadioButton("PaymentInformationId", pi.PaymentInformationId)
     35        </p>
    3336    }
    34     <h2>Or add payment information by clicking @Html.ActionLink("here", "Payment").</h2>
     37    <h3>Or add payment information by clicking @Html.ActionLink("here", "Payment").</h3>
    3538   
    3639    using (Html.BeginForm("SaveOrder", "Order")) {
    3740    <h2>How often would you like to be billed?</h2>
    38 
     41    <p>
    3942    @Html.RadioButtonForEnum(m => m.BillingPeriod)
    40 
     43    </p>
    4144    <h2>Would you like to pay upfront or at the end of the period?</h2>
    42 
     45    <p>
    4346    @Html.RadioButtonForEnum(m => m.BillingType)
    44      
    45      <div>
     47    </p>
    4648     <p>
    4749        <input type="submit" value="Save order" />
    4850    </p>
    49     </div>
    5051}
    5152}
Note: See TracChangeset for help on using the changeset viewer.