| <#-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <!-- begin editcreditcard.ftl --> |
| <div class="screenlet"> |
| <div class="screenlet-title-bar"> |
| <#if !creditCard??> |
| <h3>${uiLabelMap.AccountingAddNewCreditCard}</h3> |
| <#else> |
| <h3>${uiLabelMap.AccountingEditCreditCard}</h3> |
| </#if> |
| </div> |
| <div class="screenlet-body"> |
| <div class="button-bar"> |
| <a href="<@ofbizUrl>backHome</@ofbizUrl>" class="smallSubmit">${uiLabelMap.CommonCancelDone}</a> |
| <a href="javascript:document.editcreditcardform.submit()" class="smallSubmit">${uiLabelMap.CommonSave}</a> |
| </div> |
| <#if !creditCard??> |
| <form method="post" action="<@ofbizUrl>createCreditCard?DONE_PAGE=${donePage}</@ofbizUrl>" name="editcreditcardform" style="margin: 0;"> |
| <#else> |
| <form method="post" action="<@ofbizUrl>updateCreditCard?DONE_PAGE=${donePage}</@ofbizUrl>" name="editcreditcardform" style="margin: 0;"> |
| <input type="hidden" name="paymentMethodId" value="${paymentMethodId}" /> |
| </#if> |
| <input type="hidden" name="partyId" value="${partyId!}"/> |
| <table class="basic-table" cellspacing="0"> |
| |
| ${screens.render("component://accounting/widget/CommonScreens.xml#creditCardFields")} |
| <tr> |
| <td class="label">${uiLabelMap.AccountingBillingAddress}</td> |
| <td width="5"> </td> |
| <td> |
| <table cellspacing="0"> |
| <#assign hasCurrent = false> |
| <#if curPostalAddress?has_content> |
| <#assign hasCurrent = true> |
| <tr> |
| <td class="button-col"> |
| <input type="radio" name="contactMechId" value="${curContactMechId}" checked="checked" /> |
| </td> |
| <td> |
| <p><b>${uiLabelMap.PartyUseCurrentAddress}:</b></p> |
| <#list curPartyContactMechPurposes as curPartyContactMechPurpose> |
| <#assign curContactMechPurposeType = curPartyContactMechPurpose.getRelatedOne("ContactMechPurposeType", true)> |
| <p> |
| <b>${curContactMechPurposeType.get("description",locale)!}</b> |
| <#if curPartyContactMechPurpose.thruDate??> |
| (${uiLabelMap.CommonExpire}:${curPartyContactMechPurpose.thruDate.toString()}) |
| </#if> |
| </p> |
| </#list> |
| <#if curPostalAddress.toName??><p><b>${uiLabelMap.CommonTo}:</b> ${curPostalAddress.toName}</p></#if> |
| <#if curPostalAddress.attnName??><p><b>${uiLabelMap.PartyAddrAttnName}:</b> ${curPostalAddress.attnName}</p></#if> |
| <#if curPostalAddress.address1??><p>${curPostalAddress.address1}</p></#if> |
| <#if curPostalAddress.address2??><p>${curPostalAddress.address2}</p></#if> |
| <p>${curPostalAddress.city!}<#if curPostalAddress.stateProvinceGeoId?has_content>, ${curPostalAddress.stateProvinceGeoId!}</#if> ${curPostalAddress.postalCode!}</p> |
| <#if curPostalAddress.countryGeoId??><p>${curPostalAddress.countryGeoId}</p></#if> |
| <p>(${uiLabelMap.CommonUpdated}: ${(curPartyContactMech.fromDate.toString())!})</p> |
| <#if curPartyContactMech.thruDate??><p><b>${uiLabelMap.CommonDelete}: ${curPartyContactMech.thruDate.toString()}</b></p></#if> |
| </td> |
| </tr> |
| <#else> |
| </#if> |
| <#list postalAddressInfos as postalAddressInfo> |
| <#assign contactMech = postalAddressInfo.contactMech> |
| <#assign partyContactMechPurposes = postalAddressInfo.partyContactMechPurposes> |
| <#assign postalAddress = postalAddressInfo.postalAddress> |
| <#assign partyContactMech = postalAddressInfo.partyContactMech> |
| <tr> |
| <td class="button-col"> |
| <input type="radio" name="contactMechId" value="${contactMech.contactMechId}" /> |
| </td> |
| <td> |
| <#list partyContactMechPurposes as partyContactMechPurpose> |
| <#assign contactMechPurposeType = partyContactMechPurpose.getRelatedOne("ContactMechPurposeType", true)> |
| <p> |
| <b>${contactMechPurposeType.get("description",locale)!}</b> |
| <#if partyContactMechPurpose.thruDate??>(${uiLabelMap.CommonExpire}:${partyContactMechPurpose.thruDate})</#if> |
| </p> |
| </#list> |
| <#if postalAddress.toName??><p><b>${uiLabelMap.CommonTo}:</b> ${postalAddress.toName}</p></#if> |
| <#if postalAddress.attnName??><p><b>${uiLabelMap.PartyAddrAttnName}:</b> ${postalAddress.attnName}</p></#if> |
| <#if postalAddress.address1??><p>${postalAddress.address1}</p></#if> |
| <#if postalAddress.address2??><p>${postalAddress.address2}</p></#if> |
| <p>${postalAddress.city}<#if postalAddress.stateProvinceGeoId?has_content>, ${postalAddress.stateProvinceGeoId}</#if> ${postalAddress.postalCode!}</p> |
| <#if postalAddress.countryGeoId??><p>${postalAddress.countryGeoId}</p></#if> |
| <p>(${uiLabelMap.CommonUpdated}: ${(partyContactMech.fromDate.toString())!})</p> |
| <#if partyContactMech.thruDate??><p><b>${uiLabelMap.CommonDelete}: ${partyContactMech.thruDate.toString()}</b></p></#if> |
| </td> |
| </tr> |
| </#list> |
| <#if !postalAddressInfos?has_content && !curContactMech??> |
| <tr><td colspan="2">${uiLabelMap.PartyNoContactInformation}.</td></tr> |
| </#if> |
| </table> |
| </td> |
| </tr> |
| </table> |
| <div class="button-bar"> |
| <a href="<@ofbizUrl>backHome</@ofbizUrl>" class="smallSubmit">${uiLabelMap.CommonCancelDone}</a> |
| <input type="submit" value="${uiLabelMap.CommonSave}"/> |
| </div> |
| </form> |
| </div> |
| </div> |
| <!-- end editcreditcard.ftl --> |