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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

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

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


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

commit 1b6c6329927a125d5fe5067541801405564db7bb
Author: Pawan Verma <[hidden email]>
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>