Global::time2StrHHMM_DNT

时间:2023-03-09 19:24:39
Global::time2StrHHMM_DNT
/***************************************************
Created Date: 13 Jul 2013
Created By: Jimmy Xie(Tectura)
Helpdesk Ticket#: TB001613 - Accounts Payable Positive Pay
Description of Behavior: Format time to temp str.
Expected Input:
Expected Output:
***************************************************/
public static TempStr time2StrHHMM_DNT(int _tIME)
{
str hourStr; hourStr = num2str( _tIME div ,,,,);
hourStr = strReplace(hourStr,' ','');
return hourStr+
num2Str0(_tIME mod div ,,,,);
}