You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pa...@apache.org on 2020/05/04 09:52:12 UTC

[ofbiz-framework] branch release17.12 updated: Fixed: Creating custom Time Period does not show in party time period (OFBIZ-10904)

This is an automated email from the ASF dual-hosted git repository.

pawan pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release17.12 by this push:
     new 95a65c3  Fixed: Creating custom Time Period does not show in party time period (OFBIZ-10904)
95a65c3 is described below

commit 95a65c3dd22b848ca7e0ec40e86a5788c3019f09
Author: Pawan Verma <pa...@hotwaxsystems.com>
AuthorDate: Mon May 4 15:20:05 2020 +0530

    Fixed: Creating custom Time Period does not show in party time period
    (OFBIZ-10904)
    
    Thanks, Pierre and Jacques for your contribution.
---
 applications/accounting/template/period/EditCustomTimePeriod.ftl | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/applications/accounting/template/period/EditCustomTimePeriod.ftl b/applications/accounting/template/period/EditCustomTimePeriod.ftl
index c78b7b4..44a1522 100644
--- a/applications/accounting/template/period/EditCustomTimePeriod.ftl
+++ b/applications/accounting/template/period/EditCustomTimePeriod.ftl
@@ -298,6 +298,11 @@ under the License.
           <input type="text" size='14' name='fromDate' />
           <span class="label">${uiLabelMap.CommonThruDate}</span>
           <input type="text" size='14' name='thruDate' />
+          <span class="label">${uiLabelMap.FormFieldTitle_isClosed}:</span>
+          <select name="isClosed">
+            <option value="N">${uiLabelMap.CommonN}</option>
+            <option value="Y">${uiLabelMap.CommonY}</option>
+          </select>
           <input type="submit" value="${uiLabelMap.CommonAdd}" />
         </div>
       </form>