点击此处---> 群内免费提供SAP练习系统(在群公告中)
加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)
嗨,
我需要在"过滤器"中发送日期格式以后端浏览到第二页。
在"初始"屏幕中,我有"起始日期"和"截止日期"。 在过滤器中传递它们时,能够获得"起始日期"值,而不是"截止日期"值。 以下是我为获取"从日期"和"到日期"而编写的代码,
var fromDate = sap.ui.core.format.DateFormat.getDateInstance({pattern:" yyyyMMdd",strictParsing:true})。format(new Date(inputData.deliveryDate_from));
var toDate = sap.ui.core.format.DateFormat.getDateInstance({pattern:" yyyy.MM.dd",strictParsing:true})。format(new Date(inputData.deliveryDate_to));
以下是在inputData中获取的值,
- deliveryDate_from:"星期三10.04.2019"
- deliveryDate_to:"星期二30.04.2019"
- fullPallets_fromStoragType:" 0010"
- fullPallets_toStoragType:" 0010"
- mixPallets_fromStoragType:" 0010"
- mixPallets_toStoragType:" 0010"
- openTOs:是
- postedGI:是
- 打印机:" LP01"
- wareHouseNumber:" 0001"
尽管调试能够以" yyyyMMdd"格式获取fromDate值。 对于toDate,我得到的是空值
请帮助。
感谢与问候,
Ayesha
新的Date()对象以" yyyyMMdd"方式解释您的输入,其中" 10.04.2019"有效," 30.04.2019"无效,bcz 30无效月份。
最终日期对象将 返回值,
var toDate = sap.ui.core.format.DateFormat.getDateInstance( {pattern:" yyyyMMdd",strictParsing:true})。format(new Date(inputData.deliveryDate_to));
抱歉,toDate的模式与fromDate相同。
一周热门 更多>