12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* ---------------------------------------------------------------------
-
- 누적물품 의뢰 조회(SMMNP04700.xfm - JScript )
- - Version :
- 1) : Ver.1.00.01
- : Create By 김진명
- : 2007.10.04
- ---------------------------------------------------------------------- */
-
-
- /* --------------------------------------------------------*/
- /* --------------------------------------------------*/
- /* type : function */
- /* access : public */
- /* desc : 누적물품 의뢰 조회 초기화 */
- /* param : */
- /* return : */
- /* --------------------------------------------------*/
- function fInit() {
- submit("TRMNP04702", false);
- btn_saveexcel.disabled = true;
- addComboItem("cmb_oproomlist", "전 체", "", "above" );
-
- var curtDate = getCurrentDate();
- curtDate = curtDate.substr(0, 8);
-
- model.setValue("/root/main/cond/reqfromdd", curtDate);
- model.setValue("/root/main/cond/reqtodd", curtDate);
-
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- submit("TRMNP04701");
- }
- /* --------------------------------------------------*/
- /* type : function */
- /* access : public */
- /* desc : 누적물품 의뢰 조회 */
- /* param : */
- /* return : */
- /* --------------------------------------------------*/
- function fSearch() {
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- submit("TRMNP04701");
- }
|