12345678910111213141516171819202122 |
- BemsWebApplication.WorkConfirm = function( params, viewInfo ) {
- "use strict";
- params.selectedData = ko.observable();
- params.isEditableWorkContents = ko.observable( false );
- params.isConfirmFunction = ko.observable( true );
- params.filter = [
- [ 'FmsWorkRequest/FmsWorkCodeProgress/ProgressId', '=', $Code.WorkProgress.WorkConfirm ]
- ];
- var viewModel = BemsWebApplication.WorkResult( params, viewInfo );
- viewModel.toolbarItems = [
- { location: 'before', text: '작업확인' },
- { location: 'after', widget: 'button', options: { text: $G('close'), icon: 'close', clickAction: viewModel.handlePopupButtonClose } }
- ];
- return viewModel;
- };
|