This is an automated email from the ASF dual-hosted git repository.
pawan pushed a commit to branch release18.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release18.12 by this push:
new 8eb193d Fixed: Creating custom Time Period does not show in party time period (OFBIZ-10904)
8eb193d is described below
commit 8eb193d250a79d68792925391125f408a7da972c
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>