From 94cab21871c0da3b4457d63bf172c64d0f2f3d1f Mon Sep 17 00:00:00 2001 From: Lien Chiang Date: Sun, 7 Sep 2014 18:02:57 +0800 Subject: [PATCH 1/3] Added bills-search page. --- app/app.ls | 6 + app/app/controllers.ls | 2 +- app/bills-search.ls | 357 +++++++++++++++++++++++++++++++++ app/index.jade | 3 + app/partials/bills-search.jade | 44 ++++ app/styles/bill-search.styl | 13 ++ bower.json | 1 - bower.json.ls | 1 - 8 files changed, 424 insertions(+), 3 deletions(-) create mode 100644 app/bills-search.ls create mode 100644 app/partials/bills-search.jade create mode 100644 app/styles/bill-search.styl diff --git a/app/app.ls b/app/app.ls index 51574cb..08b7e37 100644 --- a/app/app.ls +++ b/app/app.ls @@ -29,6 +29,12 @@ angular.module \ly.g0v.tw <[ngGrid app.controllers ly.g0v.tw.controllers app.dir resolve: _init: <[LYService]> ++ (.init!) controller: \LYBills + .state 'bills-search' do + url: '/bills-search' + templateUrl: 'app/partials/bills-search.html' + resolve: _init: <[LYService]> ++ (.init!) + controller: \LYBillsSearch + .state 'bills-detail.compare' do url: '/compare/{otherBills}' diff --git a/app/app/controllers.ls b/app/app/controllers.ls index 0c541a8..d3d768a 100644 --- a/app/app/controllers.ls +++ b/app/app/controllers.ls @@ -18,7 +18,7 @@ renderCommittee = (committee) -> res.join '' -angular.module 'app.controllers' <[app.controllers.calendar app.controllers.sittings app.controllers.sittings-new app.controllers.bills app.controllers.search ng]> +angular.module 'app.controllers' <[app.controllers.calendar app.controllers.sittings app.controllers.sittings-new app.controllers.bills app.controllers.bills-search app.controllers.search ng]> .run <[$rootScope]> ++ ($rootScope) -> $rootScope.committees = committees .controller AppCtrl: <[$scope $location $rootScope $sce]> ++ (s, $location, $rootScope, $sce) -> diff --git a/app/bills-search.ls b/app/bills-search.ls new file mode 100644 index 0000000..0212f21 --- /dev/null +++ b/app/bills-search.ls @@ -0,0 +1,357 @@ +angular.module 'app.controllers.bills-search' <[]> +.controller LYBillsSearch: <[$rootScope $scope LYModel]> ++ ($root-scope, $scope, LYModel) -> + $scope.today = moment!.start-of 'day' .format 'YYYY MM/DD' + get_latest_sitting = (cb) -> + {entries} <- LYModel.get 'sittings' do + params: l: 1 + .success + cb entries[0] + get_session_sittings = (ad, session, cb) -> + {entries} <- LYModel.get 'sittings' do + params: + q: ad: ad, session: session + l: 500 + .success + cb entries + get_session_periods_before_by = (ad, session, cb) -> + periods = [] + funcs = [session to 1 by -1].map (session) -> + (done) -> + period <- get_session_period ad, session + periods.push period + done! + err, res <- async.series funcs + cb periods + get_session_period = (ad, session, cb) -> + {entries} <- LYModel.get 'calendar' do + params: + s: JSON.stringify date: 1 + q: ad: ad, session: session + l: 1 + .success + oldest_date = entries[0] + {entries} <- LYModel.get 'calendar' do + params: + s: JSON.stringify date: -1 + q: ad: ad, session: session + l: 1 + .success + latest_date = entries[0] + period = [oldest_date, latest_date].map (entry) -> + dates_of_calendar_entry entry + period = {period, ad, session} + cb period + dates_of_calendar_entry = (entry) -> + moment entry.date, 'YYYY-MM-DD' + + select_sittings_by_session = (sittings, session) -> + sittings.filter (sitting) -> + sitting.session == session + + dates_of_sittings = (sittings) -> + dates = sittings.map (sitting) -> + dates_of_sitting sitting + dates.reduce (a, b) -> a.concat b + select_oldest_and_latest_dates = (dates) -> + dates = dates.map (date) -> date.unix! + oldest_date = _.min dates + latest_date = _.max dates + [oldest_date, latest_date].map -> moment.unix it + dates_of_sitting = (sitting) -> + sitting.dates.map (date) -> + moment date.date, 'YYYY-MM-DD' + + group_sittings_by_session = (sittings) -> + group_by = (sitting) -> + "#{sitting.ad}_#{sitting.session}" + groups = _.uniq sittings, true, group_by + groups.map (group) -> + sittings.filter (sitting) -> + group_by(sitting) == group_by(group) + build_session_from_period = (period) -> + ad = period.ad + session = period.session + name = "#{period.ad} 屆 #{period.session} 會期" + period = format_period period.period + {name, period, ad, session} + format_period = (period) -> + [oldest_date, latest_date] = period + if oldest_date.year! == latest_date.year! + year = oldest_date.year! + oldest_date = oldest_date.format 'MM/DD' + latest_date = latest_date.format 'MM/DD' + "#year #{oldest_date} - #{latest_date}" + else + oldest_date = oldest_date.format 'YYYY/MM/DD' + latest_date = latest_date.format 'YYYY/MM/DD' + "#{oldest_date} - #{latest_date}" + + sort_sittings_by_date_ascending = (sittings) -> + sittings.sort (sitting1, sitting2) -> + [oldest_date, latest_date1] = period_of_sitting sitting1 + [oldest_date, latest_date2] = period_of_sitting sitting2 + latest_date1.diff latest_date2, 'days' + latest_years_of_sittings = (sittings, committee) -> + latest_dates_attr_of_sittings sittings, committee, (date) -> + return true + , (date) -> + date.year! + latest_months_of_sittings = (sittings, committee, year) -> + latest_dates_attr_of_sittings sittings, committee, (date) -> + date.year! == year + , (date) -> + date.month! + latest_days_of_sittings = (sittings, committee, year, month) -> + latest_dates_attr_of_sittings sittings, committee, (date) -> + ( date.year! == year && + date.month! == month) + , (date) -> + date.date! + latest_dates_attr_of_sittings = (sittings, committee, filter, select_attr) -> + sittings = select_sittings_by_committee sittings, committee + dates = latest_dates_of_sittings sittings + dates = dates.filter (date) -> + filter date + attrs = dates.map (date) -> + select_attr date + uniq_attrs attrs + latest_sittings_of_sittings = (sittings, committee, year, month, day) -> + sittings = select_sittings_by_committee sittings, committee + dates = latest_dates_of_sittings sittings + _.zip(sittings, dates).filter (sitting_with_date) -> + [sitting, date] = sitting_with_date + ( date.year! == year && + date.month! == month && + date.date! == day) + .map (sitting_with_date) -> + [sitting, date] = sitting_with_date + {sitting.extra, sitting.sitting, sitting.committee, sitting.id} + select_sittings_by_committee = (sittings, committee) -> + sittings.filter (sitting) -> + if committee + committee == committee_of_sitting sitting + else # no limit to committee + true + latest_dates_of_sittings = (sittings) -> + sittings.map (sitting) -> + [oldest_date, latest_date] = period_of_sitting sitting + latest_date + period_of_sitting = (sitting) -> + dates = dates_of_sitting sitting + select_oldest_and_latest_dates dates + uniq_attrs = (attrs) -> + _.uniq attrs + + format_sittings_summary = (sittings, committees_map) -> + sittings.map (sitting) -> + sitting.summary = format_sitting_summary sitting, committees_map + sitting + format_sitting_summary = (sitting, committees_map) -> + {extra, sitting, committee} = sitting + union = format_sitting_union committee, committees_map + if extra + "第 #extra 次臨時會 - 第 #sitting 次#{union}會議" + else + "第 #sitting 次#{union}會議" + format_sitting_union = (committee, committees_map) -> + if committee && committee.length > 1 + committee = committee.map (type) -> + committees_map[type] + "#{committee.join ','}委員會聯席" + else + '' + find_suitable_committee = (sittings, committees) -> + selectable_committees = selectable_committees_of_sittings sittings + types = committees.map (committee) -> committee.type + _.find types, (type) -> + selectable_committees[type] + selectable_committees_of_sittings = (sittings) -> + selectable_committees = {} + sittings.map (sitting) -> + committee = committee_of_sitting sitting + selectable_committees[committee] = true + selectable_committees + committee_of_sitting = (sitting) -> + if sitting.committee + sitting.committee[0] + else + 'YS' + select_possible_option = (options, danger_option) -> + safe_option = options[*-1] + if _.contains options, danger_option + danger_option + else + safe_option + + find_sitting_by_id = (sittings, sitting_id) -> + _.find sittings, (sitting) -> + sitting.id == sitting_id + add_type_to_motions = (motions) -> + motions.map (motion) -> + motion.type = parse_motion_type motion + add_is_new_bill_to_motions = (motions, sitting) -> + motions.map (motion) -> + motion.is_new_bill = motion.sitting_introduced == sitting.id + add_status_to_motions = (motions) -> + funcs = motions.map (motion) -> + (done) -> + bill <- LYModel.get("bills/#{motion.bill_id}").success + steps <- new Steps(bill, LYModel, motions).build + motion.status = status_of_bill steps + done! + err, res <- async.series funcs + parse_motion_type = (motion) -> + switch + case motion.bill_ref == /^\d+[LG]\d+$/ + switch + case motion.summary == /預算/ + \預算 + case motion.summary == /請審議/ + \修法 + else + \其他 + case motion.bill_ref == /^\d+[LG]\d+-\d+$/ + switch + case motion.summary == /預算書案/ + \預算 + case motion.summary == /^報告審查/ + \修法 + else + \查照 + case motion.bill_ref == /;/ + \修法 + else + \未知 + status_of_bill = (steps) -> + step = find_last_passed_step steps + moment.locale 'zh-tw' + desc = step.desc + if step.date == \?.?.? + "已#{desc}" + else + time = moment(step.date, 'YYYY.MM.DD').from-now! + "已#{desc},#time" + find_last_passed_step = (steps) -> + _.find-last steps, (step) -> + step.status == \passed + select_motions_by_type = (motions, motion_type) -> + motions.filter (motion) -> + motion_type == \全部 || motion.type == motion_type + + latest_sitting <- get_latest_sitting! + latest_session_period <- get_session_period( + latest_sitting.ad, latest_sitting.session) + other_sessions_period <- get_session_periods_before_by( + latest_sitting.ad, latest_sitting.session - 1) + $scope.latest_session = build_session_from_period latest_session_period + $scope.other_sessions = other_sessions_period.map (period) -> + build_session_from_period period + + sittings <- get_session_sittings latest_sitting.ad, latest_sitting.session + sort_sittings_by_date_ascending sittings + + $scope.recursive_run_funcs = {} + $scope.select_sitting_year = (selected_sitting_year) -> + if ($scope.recursive_run_funcs[\$scope.select_sitting_year] || + $scope.recursive_run_funcs[\$scope.select_sitting_month] || + $scope.recursive_run_funcs[\$scope.select_sitting_day]) + $scope.recursive_run_funcs = {} + return + $scope.recursive_run_funcs[\$scope.select_sitting_year] = true + $scope.sitting_year = selected_sitting_year + months = latest_months_of_sittings( + sittings, $scope.committee, $scope.sitting_year) + month = select_possible_option months, $scope.sitting_month + $scope.sittings_month = months + $scope.select_sitting_month month + $scope.select_sitting_month = ($scope.sitting_month) -> + $scope.recursive_run_funcs[\$scope.select_sitting_month] = true + days = latest_days_of_sittings( + sittings, $scope.committee, $scope.sitting_year, $scope.sitting_month) + day = select_possible_option days, $scope.sitting_day + $scope.sittings_day = days + $scope.select_sitting_day day + $scope.select_sitting_day = ($scope.sitting_day) -> + $scope.recursive_run_funcs[\$scope.select_sitting_day] = true + sittings_sittings = latest_sittings_of_sittings( + sittings, $scope.committee, $scope.sitting_year, $scope.sitting_month, + $scope.sitting_day) + sittings_sitting = format_sittings_summary sittings_sittings, $scope.committees_map + sitting = select_possible_option sittings_sittings, $scope.sitting_sitting + committee = committee_of_sitting sitting + $scope.sittings_sitting = sittings_sitting + $scope.select_sitting_sitting sitting + $scope.select_committee committee + $scope.select_sitting_sitting = ($scope.sitting_sitting) -> + summary = format_sitting_summary $scope.sitting_sitting, $scope.committees_map + sitting = find_sitting_by_id sittings, $scope.sitting_sitting.id + motions = sitting.motions + $scope.sitting_sitting_summary = summary + $scope.motions = motions + $scope.select_motion_type $scope.motion_type || \全部 + add_type_to_motions motions + add_is_new_bill_to_motions motions, sitting + add_status_to_motions motions + $scope.select_committee = (selected_committee) -> + committees = selectable_committees_of_sittings sittings + if !committees[selected_committee] + return + $scope.committee = selected_committee + if $scope.recursive_run_funcs[\$scope.select_committee] + $scope.recursive_run_funcs = {} + return + $scope.recursive_run_funcs[\$scope.select_committee] = true + years = latest_years_of_sittings sittings, $scope.committee + year = select_possible_option years, $scope.sittings_year + $scope.sittings_year = years + $scope.sitting_year = year + $scope.select_sitting_year year + $scope.select_motion_type = ($scope.motion_type) -> + motions = select_motions_by_type $scope.motions, $scope.motion_type + $scope.selected_motions = motions + $scope.select_session = ($scope.session) -> + entries <- get_session_sittings $scope.session.ad, $scope.session.session + sittings := entries + sort_sittings_by_date_ascending sittings + committee = find_suitable_committee sittings, $scope.committees + $scope.select_committee committee + $scope.select_session $scope.latest_session + + $scope.session_class = (session) -> + if $scope.session == session then \active else '' + $scope.sittings_year_class = (year) -> + if $scope.sitting_year == year then \active else '' + $scope.sittings_month_class = (month) -> + if $scope.sitting_month == month then \active else '' + $scope.sittings_day_class = (day) -> + if $scope.sitting_day == day then \active else '' + $scope.sittings_sitting_class = (sitting) -> + if $scope.sitting_sitting == sitting then \active else '' + $scope.committees_class = (committee) -> + if $scope.committee == committee then \active else '' + $scope.motion_type_class = (motion_type) -> + if $scope.motion_type == motion_type then \active else '' + + $scope.committees = + * type: \YS name: \院會 + * type: \PRO name: \程序 + * type: \ECO name: \經濟 + * type: \FIN name: \財政 + * type: \IAD name: \內政 + * type: \FND name: \外交國防 + * type: \SWE name: \社服衛環 + * type: \EDU name: \教育文化 + * type: \JUD name: \司法法制 + * type: \TRA name: \交通 + $scope.committees_map = do -> + map = {} + $scope.committees.map (committee) -> + map[committee.type] = committee.name + map + + $scope.motion_types = + \全部 + \修法 + \預算 + \查照 + \其他 diff --git a/app/index.jade b/app/index.jade index 8b73ee0..dc6b548 100644 --- a/app/index.jade +++ b/app/index.jade @@ -31,6 +31,9 @@ html(lang='zh-Hant', ng-app='ly.g0v.tw', ng-class='{"is-mobile": isMobile}') script(src='/js/app.templates.js') script(src='/js/app.js') script(src='//cdnjs.cloudflare.com/ajax/libs/Han/2.3.0/han.js') + script(src='//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js') + script(src='//cdnjs.cloudflare.com/ajax/libs/async/0.9.0/async.js') + script(src='//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.2/moment-with-locales.js') body(ng-controller='AppCtrl',ng-cloak,data-spy="scroll") - if (env === 'production') #fb-root diff --git a/app/partials/bills-search.jade b/app/partials/bills-search.jade new file mode 100644 index 0000000..674b6b3 --- /dev/null +++ b/app/partials/bills-search.jade @@ -0,0 +1,44 @@ +.ly-bill-search(ng-app="app.controllers.bills-search") + .ui.menu + .item 本日 + .ui.label.light.gray {{today}} + a.item(ng-click="select_session(latest_session)", ng-class="session_class(latest_session)") 本會期 + .ui.label.light.gray {{latest_session.period}} + .ui.simple.dropdown.item 其他會期 + i.dropdown.icon + .menu + .item(ng-repeat="session in other_sessions", ng-click="select_session(session)", ng-class="session_class(session)") {{session.name}} + .ui.label.light.gray {{session.period}} + .ui.menu + .menu + .ui.simple.dropdown.item {{sitting_year}} 年 + i.dropdown.icon + .menu + a.item(ng-repeat="year in sittings_year", ng-click="select_sitting_year(year)", ng-class="sittings_year_class(year)") {{year}} 年 + .ui.simple.dropdown.item {{sitting_month + 1}} 月 + i.dropdown.icon + .menu + a.item(ng-repeat="month in sittings_month", ng-click="select_sitting_month(month)", ng-class="sittings_month_class(month)") {{month + 1}} 月 + .ui.simple.dropdown.item {{sitting_day}} 日 + i.dropdown.icon + .menu + a.item(ng-repeat="day in sittings_day", ng-click="select_sitting_day(day)", ng-class="sittings_day_class(day)") {{day}} 日 + .ui.menu + .right.menu + .ui.simple.dropdown.item {{sitting_sitting_summary}} + .menu + a.item(ng-repeat="sitting in sittings_sitting", ng-click="select_sitting_sitting(sitting)", ng-class="sittings_sitting_class(sitting)") {{sitting.summary}} + a.purple.item(ng-repeat="committee in committees", ng-class="committees_class(committee.type)", ng-click="select_committee(committee.type)") {{committee.name}} + .ui.menu.teal + a.item(ng-repeat="motion_type in motion_types", ng-click="select_motion_type(motion_type)", ng-class="motion_type_class(motion_type)") {{motion_type}} + .ui.message(ng-if="selected_motions.length == 0") + .header 沒有提案喔! + p 或許你可以考慮更改過慮條件或者更改會期? + .two.column.ui.stackable.grid + .column(ng-repeat="motion in selected_motions") + .ui.segment.bill-search + .ui.left.corner.label {{motion.type}} + .ui.top.right.attached.label.green {{motion.status}} + .ui.bottom.attached.label {{motion.proposed_by}} + div {{motion.summary}} + .ui.red.label(ng-if="motion.is_new_bill") new diff --git a/app/styles/bill-search.styl b/app/styles/bill-search.styl new file mode 100644 index 0000000..dbeb41f --- /dev/null +++ b/app/styles/bill-search.styl @@ -0,0 +1,13 @@ +.ly-bill-search + > .ui.menu:first-child + margin-top: -1rem + > .item.active + box-shadow 0 -0.2em 0 inset + .ui.segment.bill-search + .ui.left.corner.label + text-align: left + padding-top: 0.3rem + padding-left: 0.3rem + > :last-child + margin-top: 2rem + margin-bottom: 2rem diff --git a/bower.json b/bower.json index cf6c164..2ed79f4 100644 --- a/bower.json +++ b/bower.json @@ -11,7 +11,6 @@ "dependencies": { "commonjs-require-definition": "~0.1.2", "jquery": "~2.0.3", - "moment": "~2.4.0", "angular": "1.2.12", "angular-mocks": "1.2.12", "angular-scenario": "1.2.12", diff --git a/bower.json.ls b/bower.json.ls index aaca2f0..82e8ac8 100755 --- a/bower.json.ls +++ b/bower.json.ls @@ -7,7 +7,6 @@ ignore: ["**/.*", "node_modules", "components"] dependencies: "commonjs-require-definition": "~0.1.2" jquery: "~2.0.3" - moment: "~2.4.0" angular: "1.2.12" "angular-mocks": "1.2.12" "angular-scenario": "1.2.12" From ffb46f3b75fbb995932ce8e34374d04680514118 Mon Sep 17 00:00:00 2001 From: Lien Chiang Date: Tue, 9 Sep 2014 21:52:06 +0800 Subject: [PATCH 2/3] Added test for bills-search. --- app/bills-search.ls | 14 +- bower.json | 1 + bower.json.ls | 1 + doc/images/unit_test_save_fixtures.png | Bin 0 -> 12934 bytes doc/images/unit_test_save_fixtures.xcf | Bin 0 -> 41807 bytes gulpfile.ls | 7 + package.json | 6 + package.ls | 6 + test/karma.conf.ls | 2 + test/unit/bill-search.spec.ls | 147 + ...&s={\340\274\213date\340\274\213:-1}.json" | 24 + ...}&s={\340\274\213date\340\274\213:1}.json" | 24 + ...&s={\340\274\213date\340\274\213:-1}.json" | 24 + ...}&s={\340\274\213date\340\274\213:1}.json" | 24 + ...&s={\340\274\213date\340\274\213:-1}.json" | 24 + ...}&s={\340\274\213date\340\274\213:1}.json" | 24 + ...&s={\340\274\213date\340\274\213:-1}.json" | 24 + ...}&s={\340\274\213date\340\274\213:1}.json" | 24 + ...&s={\340\274\213date\340\274\213:-1}.json" | 24 + ...}&s={\340\274\213date\340\274\213:1}.json" | 24 + ...&s={\340\274\213date\340\274\213:-1}.json" | 24 + ...}&s={\340\274\213date\340\274\213:1}.json" | 24 + .../bills_search/2014-09-09/sittings l=1.json | 26 + ...70\340\274\213session\340\274\213:5}.json" | 59005 ++++++++++++++++ ...70\340\274\213session\340\274\213:6}.json" | 27 + .../bills_search/2014-09-09/scope.json | 110 + test/unit/recorder/README.md | 32 + test/unit/recorder/app.ls | 37 + test/unit/recorder/bill-search.ls | 50 + test/unit/recorder/doc/images/recorded.png | Bin 0 -> 12656 bytes test/unit/recorder/lymodel.ls | 89 + 31 files changed, 59835 insertions(+), 13 deletions(-) create mode 100644 doc/images/unit_test_save_fixtures.png create mode 100644 doc/images/unit_test_save_fixtures.xcf create mode 100644 test/unit/bill-search.spec.ls create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:-1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:-1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:-1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:-1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:-1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:-1}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:1}.json" create mode 100644 test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=1.json create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}.json" create mode 100644 "test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}.json" create mode 100644 test/unit/fixtures/snapshots/bills_search/2014-09-09/scope.json create mode 100644 test/unit/recorder/README.md create mode 100644 test/unit/recorder/app.ls create mode 100644 test/unit/recorder/bill-search.ls create mode 100644 test/unit/recorder/doc/images/recorded.png create mode 100644 test/unit/recorder/lymodel.ls diff --git a/app/bills-search.ls b/app/bills-search.ls index 0212f21..447974a 100644 --- a/app/bills-search.ls +++ b/app/bills-search.ls @@ -48,10 +48,6 @@ angular.module 'app.controllers.bills-search' <[]> sittings.filter (sitting) -> sitting.session == session - dates_of_sittings = (sittings) -> - dates = sittings.map (sitting) -> - dates_of_sitting sitting - dates.reduce (a, b) -> a.concat b select_oldest_and_latest_dates = (dates) -> dates = dates.map (date) -> date.unix! oldest_date = _.min dates @@ -61,13 +57,6 @@ angular.module 'app.controllers.bills-search' <[]> sitting.dates.map (date) -> moment date.date, 'YYYY-MM-DD' - group_sittings_by_session = (sittings) -> - group_by = (sitting) -> - "#{sitting.ad}_#{sitting.session}" - groups = _.uniq sittings, true, group_by - groups.map (group) -> - sittings.filter (sitting) -> - group_by(sitting) == group_by(group) build_session_from_period = (period) -> ad = period.ad session = period.session @@ -247,8 +236,7 @@ angular.module 'app.controllers.bills-search' <[]> $scope.other_sessions = other_sessions_period.map (period) -> build_session_from_period period - sittings <- get_session_sittings latest_sitting.ad, latest_sitting.session - sort_sittings_by_date_ascending sittings + var sittings $scope.recursive_run_funcs = {} $scope.select_sitting_year = (selected_sitting_year) -> diff --git a/bower.json b/bower.json index 2ed79f4..1b758c9 100644 --- a/bower.json +++ b/bower.json @@ -11,6 +11,7 @@ "dependencies": { "commonjs-require-definition": "~0.1.2", "jquery": "~2.0.3", + "moment": "2.8.3", "angular": "1.2.12", "angular-mocks": "1.2.12", "angular-scenario": "1.2.12", diff --git a/bower.json.ls b/bower.json.ls index 82e8ac8..f5cfe85 100755 --- a/bower.json.ls +++ b/bower.json.ls @@ -7,6 +7,7 @@ ignore: ["**/.*", "node_modules", "components"] dependencies: "commonjs-require-definition": "~0.1.2" jquery: "~2.0.3" + moment: "2.8.3" angular: "1.2.12" "angular-mocks": "1.2.12" "angular-scenario": "1.2.12" diff --git a/doc/images/unit_test_save_fixtures.png b/doc/images/unit_test_save_fixtures.png new file mode 100644 index 0000000000000000000000000000000000000000..f51d80bdddf1a568e8ff611ba9a9a925b0cf7f78 GIT binary patch literal 12934 zcmdUVcUV*3mUaN8idX=Vst_qsl-{I?lu)HeFCv0KDAIcX5mAar0FmB7dJVma0@8bL zD!m3Iw9vjCe>2bAJ9FomJNNtk`IMZ%J|`zgkVH+ci;|qBYdW;@Cb5_`=8p769q;{UMlK4Lm*_=aW6bbd?F1PByxeN z$`Q?y5R(azdT&`-gQ1%)a(XVZ4t91H_AU@vCkrzdi|4o8tzE2cDZo@8>jqrD0fF3t zz#hqHdrWT5c=~AXHJtApK;u+cqh5DBWWJKBs0XECR%*z?m*uEf6N`;kwZjR|Tfovs= zj|A!|!4&a;_(gBxu0+bN1V7qmIgy{*JnSlNl3~P3;7uBG0UYtJfWrl8aJT}&`(F>< zg5X0S{t#mDar|50K$zO>Y`Q_X@?4f}F<>r#8^!4_BY<)H$cf*+Sla7{F z#`o`vt>3X0E<#?gzV?zrrG4t~c|@<3=u-Tc&4X%_jg{-0liQO{aKsCTKUsH}IFdh&{jbhHpionn*1&8e!cRhPA$ zb|zg%$I_6{(3q5z;@7V)P*GA^?X8UjSg52(8Y3|S3QRDh+s63qrn%zXJ}FZ~lPS9C z9MM1Dv#UG^FK%FkdHo0=(l#;SiD=KDkUW$oyTKC;U0hy<4`r(=sjH8X-K$SUBCm~% zj94%CCdKnvgzRrjWE`WLq%t@0AwO)HA?XT*hE;0(mfeqyj1qyVM+@{>U|#d#!Ujq1 zThle*(a2P$Dy*ZRt7*ZEgQzi+{4aq-@a-R8YPV|FF+Tz+2zyvy;M=00zK1`9k(s~* zutDF088+Btqp$a4h;6bdl8}Ot3+9DxIH+*jG@zoQT16`J3@G1gfWjtA%mSgSHOt9E zF}fzXz~v@3-F(*#=LW%S@4>u|7Gq^6c_5Hp)=-l9506YtO!}K>niR+x3{6amzJ2?ax;Vb+Rx@KC6CKTd=gys#QecFv?Cehas{EoN zHKfb0ZzN!tLqfv%_y9fDdc(B9y#4*^_Rp`hLbjje!)Vgd)0x8=B@Boz(?6Dz3;H!b ze+PzcJT7u_a?&<3qSsT9mw#j8vm>V(F95q7%uG45+W1|UUgo5|M)(H5dpzE5pn;7IrV!LWbe+H|1GFNODl>j$bMfVw3UBy1rT9;fQ zhuH!KakmxRrroLTS|oklY1zZ#528^NtE#4rO&*kkn_KmUiAS2`DMkx6Xc22njj5M9 z+lj!=Go6n=W9ZSvGxgp?VHcv*D}aqoPnM-#EaOA4T)0i1jKEqO`g-CS$?)&tNjKE}mkL{=7 zOj0ID0g!D|+vCsuzFfRaEL}BL7dcvFoDcS> z&Cah@oOc%J$3U%_|nD zC@Fay6cn_<`+d==W6^1#-M`$Uemfb0^_Zjn^5wD#X4U+MhuM_06pdawR@2;=C-(R6 z-{WusJ$1AnmPW+HLmlGlbL$7aG)VIQO1fXEU{~@FNX<^uKr?WSxywU2c;f9T67wa+ z46-(ZIR!+74EPnG)*e2W(4@{dDYt0yx8*`{k3>MxMLE4P0BD(M$w`O`s! zcIUbr+fIF-b% zk|50_F003%U7E zzE;L&#pzShp3Zx4NOFZbm(Y_0w$x68oetA1_&SiWDU75&l@CW;KV%nK*~#OBnU4>E zc{7}k*jju26v&>jUiKnR+>g4L)7ku^`VzdEX5oOR z(jp$|CJ2^ReHK9p35_|Xm~?%Xs6K}x(`7q3R)7fBuZroEm0Maz{_E@yV(H%of5pYG$o#WORJ&&&Mf{3}74(R1PI zj8hl4%n$%%d!3xcD=FQO{uJqE1>avBqvcddSpIK!f){)!aM-r1uPE zo|;FFj*bAc#dIwW(mB*${gjiICc~*y@Yv0*@|n3g6&+pv#)fU70ZPfFSlG&wI#dq) zxVpO5o?+Jot@>|eWoE8y)uHY8=k(1S37Fme%&{gFjGvS@H4Em9iTvL6No0MwYIg{tPSUS9n82-JwQAZ zC9Iot-`|?a2WV83{&GxA49cUvtV|PUoUpLr8>T)o!5e558g9eNZZ7b`yiPW%=#L)>*T#}xVlo~dkGBMo z8Foh{C);;+c8X0G?PGP^CmDOsXgVEdNA_H`>)!9nn63>qxE3U?+Y!sbkEd-=@exvI z)gwn>ZsJ4ky@?0FF9eX?0FaG6n~mYrrG;6Zog8HsuW+9JF#1OP0|p-}8c8|Bu(h_f zTKB{Yin*+On6|HS+nUZj+6CL_p8%`eA5SCvPGnPj_u~L|b_LK;37PD*mOCWt(T}!E zn$ytM&g@AL&abT%+xF0%8cser@v)n%fUT~sdi@N#p{=Qz4o+=O*Jx>Fs|+Mdc;jd2 zF`y{81tWf|0usq)1T_o0BMIkeP6BT1F-Sht|FZQ@~q8wv2Dj zBvl5NOTBSQba(Y-7~vWA^*^%!d23RV zZxwX)XE2kFtgLMR_rqG(btuez){{;A{nh3GeldRQK`2YdgZ*)HyWXgn7z=0|Te3%b zt2v#J?R}(*o10r`Q$28d{Gs>sqR*f=gTD^^T8Ngj_W?Un>D=px2_|g}kJRBxG+m$-kLJBGofaOW)%b7dd zuc}>14_$aE^1M_pIzIj`Obl`2QOp>a13z2%2`Ud#75G`^+kvKlK*%_mt&ri5gRMkN z(x*@3h8Zmky+f0&cN#_-&ziwwVlk_=%gNqQ7{KoRXvBdyY%q{Qay;Yob1?%!!wgeh zt>h0C_i4xAt?K#9o3jmuAg;+oB%STR9TIrW-(;&L<*7@ZY8zJBKhe;L1Pd!**7911 z=(;pyW2`Nljt%Cui5ioEXu8HfXCNIu%_Wjw}?#~s|B26ls54}aEZxE5jvHx)THXK(k^9lN2l zS?iUU;b0@#x0joftf{XbM@vU%*nr))r4Q`M@TYjNE&UX_y+7r!-06bRyasq|YA!46WNBg|J!}xv5Gcoa`IwI%ao}8C@+i~E**S1&wIDMS z3R4v(-akIQEmh1m>9Sr}rDTI8_Wb&W98~;Gpe$e9@u+Y|n-rQhnP}yxWevFuM003G zgGv?n^2KZhF&D-2eTQ>aSU|+vmYIl$tLC6c835IYHYo5x9XR7QWrxgUI@=DGFo~_4 zyz%dWD@e1hh;ex(A^!ZaqN3slfTIHli12U7pt7pof8i{ueuzWov!2Tg4PfU0$gB4w z;_;=#%bg@xHU|n`_-Mgp2LgT&L4=kaYmD0FcU(Nu?cqa)b*l30Y$tCrR0~xN%bvp$ zx;9jftBEsDryh>mR#Lm3qR-FJA9&uc*h-ORMSw7ns$fqrG*cOz|8MakZMdkxZh`s3 znfq@)c-8fIDL+JAyAu29=el--@)s$-LfeO(F`UN>L6?j!w8-6>u|yf{frWsN!PF-QD%e;0IWpZ7y_b9r}tENC|$)e)aSxIuA)o^ifi5+dS?4jj0 zs89rzLlW&PbgodLah(qExe<^!1Z~If>lf;PQrN=M@~*J3Zk;>aRoYtv+d*Frdp`bP^5U3Ytg-90BZ|G3wXx>O;^r6%v*y#s^_b|3ClXyFj>&qCl1AVV61(#H$Cnlt6A=D-*T0&*mjoK`>) zZ0hUcw*IA`?k9K0#KzvhIEd^mlnuCJsw9_ok0`0ATu1wIZ7;JVPE9n~jA{8|jXWf_ z9MB{$GME4xvHph6zJIf7uINd=&Q9|E=56EV6p9EX(Dx5tN9;F6w9{Aw?T^$hi!}IEzk-NJC!W>vyKfn(e!3r!egzWHc;jUM$*{Gl zMN-~_@ZWSCgUqTb@6h}#{yrNavzHJTiMnuiAM#F;8?<`Cb&*#3*|TSWn5#gXdWGP= zUuXNcAX8o;Zzj)vyW<{9leHHM9V1i5rJN*YSNz)*eq%+2KiFXJcr|K8xMglY+e`V0 z6s3N75aC_%)x>mj?)|#azPMNAbG2Mfo}KlsW(uXQyH`!*&8UT`16|TE$##dZJX-jZ zC5hV+bNSuXk$DanjW_&gYM11kZhhwmy2q$#0+eeoTnnY1~SmiyOU9WfnOdj$p{! zUwMqm+4bY{onNTRqL*+SwYho}uF`=XI{!GlQs&b5=GrYtx+#2ozbyTQ35Q`pM$gq| zjld11N_WJg)RL0z1>zt0q~YbA4q=k{6UBUJk|&<)6}L7G16KQ(rg&gw-_vt@$tbPg zJ@&~o)=|!^Z)2-!lG$q{3;}HMTLd*e*;#77GulRssHCmXrZ3kSLg#}R@$$uPeeazk zTr!qCYt`RIv@*tcsedj=GmxSaQyzV*D5uBeRlHIBo2D3=JG%Ulg-;#~-g(rz_Q*Ub zEbMLrO6mRkSinvwddJhAhC3O|FYrrdiKZ`#|IT6#4nyAITMP5&5G}Y$Yg=`l=n2)Yo`EvXAB_?D+1Q;4A9xr9)H+5zvgE}Bv-{Lf*+?mH57e;vImamBJ#{DCht@`Uu z;o71L(n#C)o@?r4UTn1Muke2)E_5iBwQ(+1c>YS?Fs^;Uh$GHYgTE(lL4%r8_J1?)}@rh1Ua=lsFx$S1xAO0EQe|`v79g zz(;mD1Lhbj*YE2N(SpoMqi@+~?iZ})52~H#@q_yelunmjfDjr%xVX3gchBf;2jS%6 zitbuWkJyvBnvqmyGVBs%k7jHA?WfNnX8=vn2+BOqVW7;7V7OP$<}axR*>K!=DsT{( zyhes8O*VJbqY`Z62+dd><-{7B z{eqb_c4v@taUr|ohsVX^g7bsJ2B%{> z_DeVi!n`2KxhO3q%=FLkp8phA`$CTL4y0epr%nATZV8tB~>2UIYoYEm}u zK)6D5PT`3+2Q>u4ClA4Uoz!=TLfKYH7E3@`GI&d6W3Et5J!>S|Z(=UC9zKpqS)Y^d z&3OswSEj+caK)`%f=X=k@og3s7}k4c48$wa_!rI{3cus!VaRs01@sEe#j#~+ydB)~ zC+~%|2@%44cXtShT6S$=l$ZZHncGWJ_WjynQ#+cR)L$lG;A7@bUJgp~zfOW*K@_=U zJsSs$VyF3IB%-tn;_~M>IXIQ+CSz238bjh#`wG*abNrhZ>%V;#xuZYNe(lcy+gEc< z0ch=>Mso*A#^T$sG)0^s-9M+I+-=Lt&B|dYme{5`iq(33>PSa=Z{9Ys`Su zpRwXZo#4jU2cp~OipsC4Gkrr_!1_MpZKLUgC;}qkE*Dqk6^Wx)^CfqGzk&)Pd=j5w zuEloUiS3fR4Y^=;;mR$@KCRaJos)qayhMU@cD$D%U5lDv;|57LNt+V(Qv-`ba1;H% z(`Em&w}HR$u55jG+JQi>{=)SF{B;4r+tz21t=_#$|11a}T>)~O22lS1^9Obdrj5?w!V=)I`a`HVqmz;f$H(;mZ+2H)+%R9K5IMHK zsXf(*UE}OYkun8DnGy^(z+E*BD4bfMD#77R;w;t|dBw$J5(m>6JM-;bKVMq)r^>`j zcvsH)?DmvYrhy`qmzNjR)q|zx?FJPYm6bYbIa+`^l-b+pup{y>xep2BZNt%R;8mb7 zcDqB7FO-^_^kmkD2K$FQyDo5wNdXF#){`d|VZ1=j{n8!BpVQ+BWZO-*gw>&(D$zbL zq6+97MLSMzZb85_aepj*`LiYUNUV;5p|Fa3%*a`_Zi=y2$jEi%i9FJC`wNj_g*m8v z<&ia~`%~U_Q++5&@>GXs7p{nqfoHAo+_l6hyBtJ{M@L7KKo1=p8ro|iyZ1RW^AR8r zCTpB?vQ^^JCA{}n&W_QsP+U3ZhaF0xym2E3XX5@eS*N-g++|CBDfeIo4PK~9hdG{{ zq1<*RKO;cC-R0rYK_D8hUAv|Yl%SD(-QeL$z}KzeG)YmXOc2SQ7#kP9dWDY@>9~{U z;x<>T8tgm)7XgIDLntH z(y0;eA%F<$;%2P-4`M397f7x0$ea9@!1kYDQLHy%OQr3MaA#wEeSKh`U+>r^>1#TB zdoSnO&9_GgBfCL?$tZ9N7-wr{2=4yBMv%f|@-Xy1QG@sN+0^OF}6#~bCK#bQ9}d{>H-ho@+)iUGtTX(>k>pMzZLNys6m6S6u#I|aKk zwtaqJw!s?(%30MUu_s8(e@h?f-GX&?bVNeAjcc{(gzdGht#ffI0}w?4At7v){JuLu zSRGmMyyF^pR8>JiK@dcT?W$%*3pZEty6!a@0oGl^&aM#X#hA7HVkP7W!Y=~#6B8-} zXig1S4$s+24{o#n(0ZAA(1&N+g}kFI_8_?XQ}$GIcf4T!*QsWe1fjwnPe7>bcs#g` zD&(&USnYOutr@ky=CPy>`Y<9;U(g2$VPRp-M<0MsqDLh+)+(JZ--3V+8EhO1K4t@` z4TE}*Qn22v`6G9M8ViEP;?k1M!PX2Cnm>|PHHW~(G)*0ykGMMjr3fhXG1&EDWhCe} z!RgbBU9m(Bkk(k|-b0feTx>QwW zKw3oa5?dw& znOR?7pX!H)74Sa`xhf5!{l6lcf*kmFeLep}%T^*ME}toxnWce!#C`#*>gQHtM2QbF zj}@6iw8TATZk@=9TqJaE>)BDnm_{_?)({2`DJ-QizhnXFrxS|x$?UV)S4Q%L9lt4} zc@UHiX`VO?OuPnJ;TDv1&u=35pYq~A1%Lhyh5gBkf91lzRl5K4#Q&Lm>|Yd;egWdu zS!dxlQgr>8lI~_9n$>jp*G@#<{@Q70-yK-2D4SJhYAFCRUU)425U=j@(GAeOFmgD3 zm+QQsb^cuI$nW=I1NfQLa{llN4;W6`RQTIR%EN}TQh9QO!;f=N(X5>$H=jpkT>m%h zS-X*MG?!lw{Cgnll>xYLo{@|o~fds9uwjBZI-fDDs4^9uvDxYUfBvM}bb23o0 zBkC(3#UI2Jp;#_TMP~-z-5DpQ%kcXP4Ec14HY!Kp{kixvM_^l}7%2^%+5GHZr%h2p zga3}N%(V!^W8^+IpL3Vp#}fTPvc~coA9VbPAQ+xd-nPetz=Z+=|JOd~zg42gRi?)^ zV*<3k7<<5qlQT&gUA=lWz~T-3Xoc<+hiF7{P8aX_0R%H}w45@x?(mACFb7qcq->Uo z+MjW3XYc}DPp*gCW$|M+ihGrHCz^4fY>(Gsyuy~MD{p}NYvxfo- zQTukY_4-K6sG&n{X(?|>cM(^U)P6A_zkLCbDYNSXjv$tioJd7`)|Q{VJRkrwPVH-y z@mm(3OS3bxnj6SaxC5IzKRckhc@uUnmLc!F)IE?W>WujndQS-n`g~fOD=gExhmsZv zq}lz*@lQXt&-0d+f|^0pZQ~QKsw`9CS>o1ePKppvcJ2oflJgA=3|IoaWa+*5)_uVJ z26zG;v)ci&OUG|NEpnZX4i55sw|mpE@h(V7uPc&AC*82Sy~C53C2JH4wN$%a#7{y( z!YV2{G3`2L+=f1=IzH*GEG|5n@;U=zn>kB|N}>qwXKqB(9Qb8Gkxx`q^foGsQ!qC_ zpTFs_^_~joba@Ao;PIKA0~2DW^@io|g${XS+yl?DBQPt23W-0)s7%x^e_Z8!^n1~A zFca2hUqx3pV-FgUp6e7DS<}+e)=snGB}xE(hz@`p?rae2xvxBYNFoWocVS_nLR1|n z9l3dVd~Gz&J%VEubp`Jqs>1EoZN~NMJsd;#3Jj}?4Dq(R_g#e`A7f(T0Amfh>cF~F zsQ7KwECV#)wD4W}$J#qcwbej6<4n`$=GO-AgZR*UjpK@ZKz}WrsB?D+tqkTqT_{6Nx0L0S$1wnIOBqe%j*!<1PSNpFqQ*TXk|#MPWk;zvu7gyAv-`;yOE( zoPh)irU_6r$OHU_x3GuIY1L1rUql;FVP8g+s@Wc zXzS`8jGx&R%7ct601)vKh2LRdj%=0sM9w^zRSTGhIsesH~HH> z8QRyhD)QkTTU}x=I`aA1ywn-X!m>Mx^vlMN8? zJ!=Q?I$DT$xgQ=z(w-pDdA7vtYptvI`_Zk^F&_fsl)f7R68!vHNDR=q3AbWLC)N1@ z9;$I(Uc0COD+Ju;eNy%nnI-sv?|_#0XqxCczJ9aK!yl6R)E{97eprXK~AZO5wOE?ozg4%N#7HXPv z07#T4DlyR(G`jZmA@=#Tw6um;@Jcv0$y}3q0=A~+&fG#b;f;%(py0bXC`qEA+EU{u zo~NOHF!z$M`7st?WFeq+3WI79w;RE?;5sFA3iPg0o&g{RvVOjO^-n^Uj%mi+7_$nkcT!)9@5Eaqozrg2~Imuiim`6!l73e5DM|98^}KqZv|I(kPX&>y*#(l z6^VqeEoxBPAWd|DC?JH|BB>r4+D+!oZd?w7bzh&S5}7mhN|TyeXW0} zB<;=$xYKEjaPjTm%ryRtAMr_J$x00-eiQfo*5A=Mx1(|HbQ(u$bZO~3R^T5h;j2sT zcQhI9_aeT3s3h&q3b@m09O2^IznS0hfK5Zo>QFC@pu2>!8dkO3(xly4C24m$jo~i7 z{hOJ_?`-@V$nWU0&caPO1l^=@jhBYjhjY97aPD*(+MZf2tEKpdN^X3QG$J@jBj~1$ zmCRqM{-KhzJ1gK$r*W8)wOAk5*!U-s#<0CDO-ax_I3IuYCXKW^E8tG2;gz+e&Md1j zHvV51EH3GF+pD;Z(ZT#fY!INi|O;SIoL(+eC`Q=kfi)YW6S~lsBg8mmzo;YLbj9JC~?QQU^$rHvG z4;wPfUM)Bd^@0u|>Vy`e`r*Z`J2dLN*)zvaESo;L_)tGBJTGs_)AJiVXL?zAaoO~V zQ%YxR{23QtJiD|!l|hZ&+{^i7M%8lguAGIiw+-+|cwM)7B0a{7^gK`Gpiv@&E)f}C zCvxnSB0s7TxnzmRv`Uc~GeydyB3D5_f1AjnpNQP@y2$PC_;2Oj9t;MQx3oK9)~p$G zix0FtH5ZR;U_id-wnUzro9q*C7X;je0k**=Y*wqt>MjLYtx8H&eid1*BCAzowTi4( zk<}`)YBQ%y~ z`WH|#ozGXl90^qx(2w)!&w1Yx z-rVEb9n0YF#(ZRJru_rP)E=(2)&2%!8g?&NwuEy1e1+wMZsW%7>oSRcn|pUWv0|}i zdAr#v9aQNm)ISAiU5a*SUHKL{l8ff0$boBz;oc#%u@0*H6zZP>lpjSq+q<=g69WZE zkpqVd!|6i!bx;+gQ2!L5gDBeBo}j&f80aC29JoOkt`Nd+$B2I-Zl55Nub7aD&y+{G zZARqAki3aeGAc%}{tubtDiye^5W)!pLXsGjFgfar$X#V6@+h3@8#alzid6poH}W@O z1#oh#IyV>56%)mq^=-@PiLtX2rjDtRMDYzy_f}bWu*xv5V}L5pK>=;Yw{0b$=aTqh z(2{_@9)IuZI?{9a8Ad>N{a&VD*9-Mot9Ce5d>F!N7}Y;mD&!N}5Y$IQj)Y>c(pB?R zjc+w{)t0WB%CtTj0v*0u@jOMLi$WK*bheqOkA^^pZ@$D%dj735xiojFD z)`|f2O;9Ih7gJ~6`+4QeqCj%-U)o%(tTX04IYMHiR<0dKid;v7rqyky8rrJ58Hoy` z)E29|0)Ox7eu(GrGfZ`NKQ_~^`)T?-$X0i5<)QR)t!}!0g{-R_h;xW-0ooE&O@om7 z&aH;f)^}2>A*_b58bZ9ZDTJ#nA=R22h0sIitbv=DK z{&(tNm?UP#v{G%2r0TprvF+L-IsEre40Q-Jt}!t*k!|8T&V6^|ppEfO z+hg?U_|qMR9W&sV*lCN`ChU9OzGa{ckXY^y-`D4Oob(1uqUW3XP`7dv?W&>YqxIWy z9SYTmsR!Gl<-yI8YQN4KKeKGe)XTNB+NzqFWT4x%T+NL4MdygRa(5Fy<)!n=2TvV; zdFd>?EGw$*uYSb`xSSurjLF3_rt^Hp`02C#r@^z!t|%=&^eBIl$I)0{H;Xc}Y+mV9 zoq!oXy}WGv)Uxrji!ZkmGE>J-pFD@Trs4xirw^WEUpQg>?9#!L%4U^LEH9fey?AQ* zEaEktY)Z}GGql*-za zGV;dMlFgWYy>}H2@Em?c(gBK&%k(R<{I4SWNJ#-@EM)S*f!=)xcST2OIO*YSwa=F@ zE(@84f?t2KeT8xmN8Km~Cw6orsG)OBq90Q}2$#mgZE*5IT5H2PD$5v}R>;70s?3$p z#^;z7kkl_fEboBdn|m#F&3nhUAHCKvN0p-9ahUm#W|#fGIU2bX?_u6|?>$Z9o^Jk` zBF&PzN6kedXPajTiiOKx+Cd{vHaPOmO5O!Q=D!*8Gya6$(pO$P!7?%3y z%$TFhKloay+iWiE8tzK&^xKooG7*-BQ_UmyoAG>L-4=6t-T^2^mbTfaK^l4`8DF0Z zY4RRQDZavg?e7C+rs;%1w#3deW)9N3uIsYRTkmM^5jPb6W=qW<_P1&12Y9pxnQa}V zBhS4gKG7_cPB?o?tjk}`0PEgc700)kDimXO|Dv zCO7orvU%lmW|ht!I$*%i0YiQ~d&YDnZzF~v_tLM&kzPw;{$c!;A!w6tg&~AGdJJLb zU*xlfZxN&DeFmkbmtXNPirzDr7w!v&xgbBRH*?7QvIbVnXzf5<3zLeRNE&eD`oj$4 zSz6{^v@3e6K6aP-Ip(&YuRh}Ys5v+2tB>8JF?WY45;WB;*)neBwuX1EXP&p+Pv6+_ z>EoxWH(k(DXd(rYY)9v5JkGF?L0DWu_i&57)=`#nPdfUz25T=0Nln+AKCF9X;pq0A z&wX1t&`-@`8xod{lgzray0<&}1#_)zHM6?p9{HfnTR2SwlUQf+OmdyZe9nB&iy5yr zqwv{rfO$*aG7ncAM<*n)>@*GOZYt~E;e?;RTKD1Nu7t)q#NzZvsL;xHpsU9krDP+_ zs^RUSHr1>E3CZ@BLWzIZ{5Q$iD79oGBs1NU zN~*4>*&*V2IfBF{1BZyeVw9=B^NAVDYR-7`(WK&bc?Xw1FOQs5*uG2|rVDXoiRTTI z@Ugv;_4!0fE{9Q(!C&wVwzOmSh^U`WkeHz4@pH@*@U6yP4{S~Mrl|*sMD{_ zi#CeBg7%Yco%+_glg;Z{;WrY;T9Q=eMo@O9CKxTyG(>Ue z7r7=CY>~E!6}%IAC-G8_jTS;s!Fjz1{x`aasb;6%q_+2#_dng(-H+B=E{two3eF z>Eeduv%NMMrkBq%WSMqL2mIu-y9%47TNh}Ze$@DK^DHUu2)$t7hDyL404k{gJqL8!`}^Ijcmy8B;^<&>$N3bwBby1=7x(T?O-X5%xTFhV(osp z5tb+KH{+AySmeR0&FX_8Z*-23G-kda`GA&HCewsrIDXl9(BIA957OAq!6b^UDouIK z`tL9bY>8!Ro0SX5_*ok+NIP5=dwt{kyt757`LVWKxmQbLDDvKSWJK;l`kP~v^~xx|# zLmuaYivx{|StFinf^BPn)C8N9Pi6nxrix^=1gH4_!>AzEjY2W{zLYL(n$cUtYr*kLiA=yYWD9vLy{RJQIN z|F=zHjk%D3`tdGhk49@83tQwv~ zarU}0lIaO6nHfr zNu|F7e^u$}pslI&Vmy_;$tQdZb@+Zo6q8AFuc=+h^jQX<_|%Fc+5ZnUpWIwv+jbpsw3!FQ zOe4B^&R?1_4M)*!9lWFdLE@@R(jF5sPc#)Zv(5JD`{W(HLNb|%CA-eJ`2${Hg_9;8 z5I6OzqrYrQnZ}MghEnG-6if8Foe8KrUDJ0;J(^rf;50T$t?8jr9oMMyxP}tM>y1tu zG<4CZJNO9AxhHmFnbA_rhLJ@uR&6Sll|#7_f5}X88O`87L<{CqWtOt7Y!9YMv?lqSZvq2|B2+T6u-H4Bf+J16ntuLVh zx{VhoCz#d5-SndA?`b|F+Ma9^%a@d-axJGW6%>}w-ZD%_A7-9&%_<~e)6l5#x-jYQ zWL69Dnr_SgQrKU$iG}K}HcGR(21|X{XbQCMM zv}LFeWl8RSGir*tow~D4DN`U22UmCmY2*(ZP+f11T-H7PLPQ< z8GX)`#?agK=5>a6G@~q2>&ABO_4U3u3(59$bK(8idCb-MEatV;-!+U-K6i&RB(7tB zP2e-Fbyh@DHT4@5x5;Z2>u3EgLlDZkPsQ#0rUZb!Li^pZ~>SG zt^$j|?chQ1H?SJK3pRrURzV#=A21jk3r+(UfN9_=un61^9t3{_tHHZqGf0RW+5z;T zGj#?S{T+^iaQHxQ3_!9Sem=MaTnQF}--BntN1%@HrtF3zEr<65XpzImg0sP7Fc(yU zo58){5iO$%Qrd$(W$?9Z16d`K932@M$&y55W#nk?p$H1zHwq&&yJyyD2FQ^}MF;M| zu8aRsk>qH^&4@^1WkfKJ_(m0jR%=e?CkH>j4cxAA`3=psyNXVkwSelUb<@Omgw49E zmTXr`6`fA{^525otJsZ!N--J%Qw{W53MQ$8>vV9Kb&05Hdr#+1Npw4O&(K8<)OFsr zT8#@W*oh{hQw!d8#0uv~<(t|#0uAI?B=xaK-D6R1kDZZ8b7Y;!h&)gP`hgK(EP#H* zWH1+0f}6p;;1RG2ybeABb<8>Efg;ckjKFGTIACsR{~ca)_0TUAcer#DSCa%8HLkcT@hj8|xpc8~uOkAgp-W`H=Q*B4q5W8FOap%lhaau3VsRXEu~6F6UOArJd*I z_V3vGx6>IBR&-@QFFj4$yN)Yy4y%*scaYEHCbRGHS@1G=2W-fsIewwY@wb8H;BoLG zcpGd2F_F=Qpf?x@UI8Do>zrAZ5_FLTSd5IO5$ z)}iN%oc{~(TkuDKamP3;UdQ1#4qa*-?-)nkF31571M++UI?Dy?L5;|T*?{l9urC-6 z#(*=yBv20KgC$@Yco;kjUIXhv4d0y&x`V!8I2Z%Y1d~8Hm=BhKW#C~gqpua;$z%C+ zbYwuJtCjhOaNj*-{(#J4%%fO!l$0N7*+2Y4rZf>^83qx0)N*)m+GLGPjuXWt>@P zZnWeXHkx7C5m-Kf`Uj>ixtA0rx3Q*VUmi5mWR=9O>?T;*#So>3F)!ixPt~*B=gPb%mk7*ah*_I>I5+ z>S94f=);!FrL|7df`3O{3*1}S~+V{k#qI$WAo(-85 z9}Ug|NV4SpR#xc)MviJv_DM5wVpr(m8Ef>PWg7ix&NOZ^AY1A^5>k$5EYg3LX#tdq z8xS<91^K3N0|Cx*O;b%R{|7=_S*h1$dETkkjBbVA6Fvb`q7AJr)VsLWoDtEW$$lD; zMQ$B4(b8hQi|EEe0!s?Y-xF=UTu%Eq}EyJ>ie?;GD>q$k#nL>7UWzZS(V4I z32r1{Lq_EwNuF2Pnf+4Sy7*5T;E)Y*sInrfj%XTX1RE%iWUJK?l8m@$SG#EX#3s1P zqaYY5*_F)C6YY9z1xT@)6sw6|%}c9EaY1!wHePY-;y-DCLpH>rYMY{sLW=Cf%daNI zCtS40Tr_w2S|w0S?&^hoUw`8-*0v z)0ZD5#aCUlms~V`BE={vLYN&TMWT@+QvXX&yI>;Tb6HPpN<)zX_H;d+Sby1Q8OT$i zG)$^Djc+buADDgW`B>aE)bgZUr7+TX{}win@|av{x|o5UZ{q%~NPBBF-Oom=?fI0A z2C3&UsWI8WThkuPY?{7Ddr6QVZIJAs2^w)YZKWG;MHs<-5>1sA^d&E7OLI*n9q1X6 zrqvWS9eDAqiKuT15b*X5C-zQJT9XL1lSq4g+Qbq9#%f=S<*9G-;1h?N7&R!Vn|9OH z7+WE1gNk4nJ^HfsiKlxqs~?JB(=vL|n~kP^5?lX5k=oHq->Pje@yB}dxFb?iWB2lI zxj&L0p~Y>pb<(Kbx`8jT)%n|KZ)&usG@Ad?hGe6ADc1Iy;xZe?cHW-LWH?lQ-dei{ z=EZVWO0rUprQfo>p)whfk!*uZUd^?=eh9nq$2z{eV2Ds>pSRN zS=GrWl%_iQn9{f>4S>SFqdK|3g)ea73)1h1>O1HzS<&RHN)t`Kq%`hH1Jo>5^ASxh zap6l`_!9Sy&@-wCeff3Jk(8=1Hsj@uZ!I0|97$7CqdsAi+@=8u@44|!OVLa1lGXCQ zyB|5_qxN+wR0xgiE%jsm?*_B!_k1Z{!Jr~ZPGNVNvgl0jy7$c;Jx$LaJY%B-MY`RL z!FwV_(zxApV?hv4*rwFLnu@>a zz^B<;>O#j|ZPprdv6Wa2j9mOZ20l%1H9#*jZ&(5+anc1~13O~bs?x> zU!1tNm_E0gwE;3;OuD=KYRqBl$#HT@fX|>-!0P0q z&Y~okMalId20K{X?W+iwA8u94SEfYSRqyR`_2UIQU0BvN7kZ-lw8qr=jJQs&q@o7; zB6A5%tq)N^RhgzZ+|Jgx&a|ZB2Kp$rdqD$4PZ@4Gp5Jwe;|o;uVpY5?eX~3Udb4MP zs3lDlHF4D_^-T-J#n{wrPnzl$VX0NMSxZAFV1niEqWS&Y7uG1xsLHnBy}h!2MLYV` zzO+mO#cZiZSJq_ISR^&uR+04=i4UAGpY5`>BYwK<9Fc3F7%JP2`|Y!s15PvM*UZM^ zb&!0>jH8_J)OxJh&oOLvma)b>i80=N5xB_*`|51*+QgrjSm7Wo?9+_-2TT3ejX#W? zZX1uNF{`k-GjL1U*O+w}CzhSq6KjC2J&oBcQjj$7XGzv62V^m)Q5*W~<5dM1b{AsV zzh5LdKhh^sQTQ1h{s@l=3{7|baHZn}KKBS$!rGc}lyK#~a2>~S(sX^imj(S>@?$Sb zB?mkOUyxPVFVi!`@d_T*QC5uzT`e}tsLhU(kY%5Pgrkm~q*)AE&R{pnuE=sTKeG3Q z{Kzts^ROy?kwaFLEC)S9QL^kj$TAv-pXDmDY}pZ6_SsOl%JHN$pCZeah_|QiWI5&b z{mJqd@*~TvU%>DDh{{aKa?mqWMV6fhS*~(fh97>VrcnFSTY4fDo8CF$&2AfLYSZl< zCZID4s;cLpNo6umWwUYEY>Hs5-2jluCVdv7{Z-ZTf~L$+*;4Aj07nsEc^UJ{UZ~I9 zGS39?Uhdmh2j;tVsIMb{9Ql{EzRw&-q%vr^n*XKV?pez?m7O)}q`c0tID(k9st?KL zpzU;O$G^w9;JXpXP2Zi|RZSTob>Y6Jo^LhSVe)D2m`i@bI-D_|Sf2s1DLirEa#raQ zCWeTpF{Z2Py6~}zsx>U#Z8Pl5miLV5C-TtaxAfG&-ts{n+lGJn!e{%4ylu>2krxab zqUE~V=JgU)YeTlVE0IkIKG$Sh<2i`{w~o|wpaqV4!R4XCG+oK$`1IWTg4 zOpb-UHyO@ z9=Ck4vMivz?#5tpfSD9Q;kDON{=(1gbvl2K@Z9~m_i}D)uyGS^HRk9zk>i|Z&6qls zZ8!%Wt_1sne4r*KdLfkTmCN63fcpQ{nxfd$THc)VtQW@ZqNklZ^)=+}q7ON8dlHxl z{u5lANi(4UaYZRi7yw3s?*L@r1WIhe72tYsE2sjGffvAA;A7AzGO+;k0t3KE@Evd- z_%XNwT#qdNsmPRN0JDxMQ&i~(nYNuV6e2TQ;*@Gy85yav{T z8Y(s$bO(LGa4-g(2_}JZFdr-d%fQ3nS@0TI4{9inY|tI_1;fD@aHf{g9&WIU%OLNn zHkzbjo;mjpsnGP=WSWZ6ou6KtOjI#6^U~Xm=N69C$wHgYoLOJ1xrMwWYY}AmYc#ju zXZdS1x8P+tX2+PrWk+CqIYhQJA6xd9jjaqU_uc8Jvd_*(l>2Ay7A{3|>%5CO^Pco~?>a!Iso0I->F3o>6P2ahCwcDExgX}aRX_JO zr`dZU&#Iqy&fJ`4$%7iY(zKOk{s3ulC{>Hw=5NK{yQYrw9Qr-_9n{WLG;(`+ep4g* zl!wmK4O^DZn5uNbWTm6*Rmq}Sk^bqyNzwV0T?pyM3L6u1ghF2peKqve&{soW&FR5K z`lkmcM(0;U4@Gu0^n^kmg+2;>6#6Lix{Ow&e|m6obbb_iD6*r_6Po7?4Z5a`3_7I^ z3_41{yr6^BZb(@dw2vg1%j;npB7&!HThKm&70~FVzGXpY`zC8u(ABpnz>=`%GW$zB z8C9NZfBQ$vCs@%s3~S4Z#-g6`a6>+BnBF=!LmvN{ev;=3RP^+7GySGBYpB0AlvUZC zita{ra#jab8?5M#_;j)%*-(Y}6%XjEp{FWysnUF^HdxWnQ~er}4OOVx(nq1EDs!pQ ze5y8B(a=-<8j=lFh~LNHR75rL>6S9@;lNF2+M_$RYMosVb_sOB4v`vb)`M}v28mG3 ziT5Nzm0PQx7$yoEc$;U^gPj8BK-N2R9(_}zGvw)J4S2NnJ%Bbxy z&uvxPCy-VJXsNa}A3eyeX1SFUVWrVKJ}Uh+-@=olF8w|wq?cd8FuhA@`{l1VZ{PpY zt3+n+P``?tNE#Aj)!{(EszhTUo)V2|yosR)&@ za=AW*6DY=RP0+-~aECiG2p*s(0;h~H^h}@+GuI8(1eqnnW_upAzF3?K8bx?s{<5H2 z4+QKP++$PYLA56d7!E2?Q=>tvWDKNlsn)@j6(QR<;ZSayG1F-``3J=--L=gaE=k#| zC5FqkA^)1Q%(+ruK_2IzM_zR@VAk%ci@?-On#)*$ye!UgU3;((7z9RvQvrI}+^OI{ z!Oy`~k$L1{9tKHP6p?IDPSJB7Tf~v1CN4g@CMib>P7xDAM6eKgQLL7;2bao z%mdegTflwbQBV!u02@F(<&qEf2K~WNT1H>1ab)3--F}mQ=cf8@nMF`I+Oy^2-Z@Y_ z_ZVJNT{4phCf5e;-Sb2Ow-LqPxSrdj7TS5W)5Kq`(3=+Su6|BiI=cni-0$zw z+RkXqZP2>*q!(ZwUsZV{`MzOuJPQy>{y4C6-znwgGx?d~^3quoOJ|m=xC-hfsuQ%; zVDKH%YHcv6dCyn|#u@a70*vRg}H_s@6tK(auLrnZG_Wtm0;l`9>$5 z{~Pts92q|6Z+qy6##`t=`1==_xH9=I?|9g+`EG~(w`wIyWoTN z!#kE6+1X|Y9ltfRRc>58NOrnC!jAfy8AT^Ypx^I&&xDPrhKU(g+sQnpCR^D^(Q*t9 zXyunaTHRWqLlkSpm|NUezp zH+!4doPl+p=`9I1XLv3)XQ&G;gCE<-Xqh23{#Jj*k|F+_*-yVH~YuLK667r zsudF5-<{L43P4IyvFqtoOozTc2yx zPT2jbjvD%UiDO#JsWHHt1(5x5s|@8zjiq%)phIwNMMHx^SA|_$30*p4tLG8>A3=5& z{8=*@_y{D*f;TbVW$tm&1%Ua+MRPJ~ewM(3mm?=C`v7c;D~|=I0q85IfvdnGa65Pq z{0*!I?}E)BA#!a8&<6|#$AZ(q1z;N1$xI$xH(%uXYrrqT-GH4K*FOVZ1?#|ek%a|d zAApowcmg2L3&(>?!B49|E_(c@QU4TK%AK;Zxdp0WE5KIrd~QkS~xZE zE8S3%nYCS4bS<0zw{?&7ZOA)OAA$P8cD#v?vl;J%&3J%pk9!yJ4;@48#$a$f8qvaJ zw7r({can2{p_7O+mMEH;dgyY&?x2w%N&V}FvCfrJtEihBE@9`;y#OuXmM6iBnKU=v zD01VSUs}sI^G1}SUBf<9oE2zIfrTYcb5x+Qy zT~mjH5^x5X2xfz8M3yWDcY%k%QzHL06I=_Hf=9v2V1vl77=QnYJpbwuunN2mJ_229v>DPzi3t!YB_~S{_ zgjqA@@~fQsqTmc)KF@8XPcI=Y^wt(_EW6>49vjkoYs+eNo{gpVDc{27v|Im3@#y7O zEe+#VER=3Xg}0aIe`^#!CMMyoIdE1V@^q6KW<)}2rAt>)-q`6`&-K9*gSY$V7%^|# z^6}4`njZiBj0BGp{>y867*6UK3-8zWT00Dy^}}XArl|3C38IDLq2FtEJoL#;&m-pN zJM{&+7}3Ik(HreipTPs8J2W}6*seNdob$oTN$clFvmTZDxkdLwhjy7Fb%Y3!TR%;j z6D9O_q;-KqPh0xp2TKQjQ8=~6p5PzCW0B@ zN>B-Y3GM{T!6V=q@Dg|%d<3=w!;vh7pa>iYhJs_jSa1gT5x4}*1=oNZ!ENAP@F(yj ncoDn~)`6`cM)~A{Zdyjje6t68%HSK*2C}KkU4Z|s-ueFkxT -> gulp.start 'test:karma' gulp.start 'test:util' +gulp.task 'test:unit:recorder' -> + gulp.src 'test/unit/recorder/*.ls' + .pipe livescript({+bare}) + .pipe gulp.dest 'test/unit/recorder/' + gulp.task 'test:karma' -> gulp.src [ * "_public/js/vendor.js" @@ -73,6 +78,8 @@ gulp.task 'test:karma' -> * "_public/js/app.js" * "bower_components/angular-mocks/angular-mocks.js" * "node_modules/timecop/timecop.js" + * "node_modules/async/lib/async.js" + * "node_modules/lodash/lodash.js" * "test/unit/fixtures/**/*.json" * "test/unit/**/*.spec.ls" ] diff --git a/package.json b/package.json index 36c4513..7c6653b 100644 --- a/package.json +++ b/package.json @@ -43,9 +43,15 @@ "karma-coverage": "~0.2.6", "karma-coveralls": "~0.1.4", "Timecop.js": "git://github.com/jamesarosen/Timecop.js#master", + "async": "0.9.0", "bower": "1.2.x", "mocha": "~1.14.0", "chai": "~1.8.0", + "body-parser": "~1.0.0", + "mkdirp": "0.5.0", + "colors": "0.6.2", + "js-beautify": "1.5.1", + "lodash": "2.4.1", "protractor": "~0.18.1", "streamqueue": "~0.0.5", "gulp": "~3.5.0", diff --git a/package.ls b/package.ls index 29e9b69..89bef7a 100755 --- a/package.ls +++ b/package.ls @@ -36,9 +36,15 @@ devDependencies: 'karma-coverage': '~0.2.6' 'karma-coveralls': '~0.1.4' 'Timecop.js': 'git://github.com/jamesarosen/Timecop.js#master' + 'async': '0.9.0' 'bower': '1.2.x' 'mocha': '~1.14.0' 'chai': '~1.8.0' + 'body-parser': '~1.0.0' + 'mkdirp': '0.5.0' + 'colors': '0.6.2', + 'js-beautify': '1.5.1', + 'lodash': '2.4.1', 'protractor': '~0.18.1' "streamqueue": '~0.0.5' gulp: '~3.5.0' diff --git a/test/karma.conf.ls b/test/karma.conf.ls index 5143afa..360d8e8 100644 --- a/test/karma.conf.ls +++ b/test/karma.conf.ls @@ -8,6 +8,8 @@ module.exports = (karma) -> * "_public/js/app.js" * "bower_components/angular-mocks/angular-mocks.js" * "node_modules/timecop/timecop.js" + * "node_modules/async/lib/async.js" + * "node_modules/lodash/lodash.js" * "test/unit/**/*.spec.ls" * pattern: 'test/unit/fixtures/**/*.json' watched: true diff --git a/test/unit/bill-search.spec.ls b/test/unit/bill-search.spec.ls new file mode 100644 index 0000000..f1c187e --- /dev/null +++ b/test/unit/bill-search.spec.ls @@ -0,0 +1,147 @@ +chai.should! + +describe 'bills-search' -> + + before-each module 'ly.g0v.tw' + + describe 'LYBillsSearch' (void) -> + + controller_name = @title + + var create-controller + var $scope, $state # in controller LYBillsSearch + var $http-backend, $location # for inject + + before-each inject ( + <[$state $location $rootScope $controller $httpBackend]> + ) ++ (state, location, rootScope, controller, httpBackend) -> + + # in controller LYBillsSearch + $state := state + $scope := root-scope.$new! + create-controller := -> + controller controller_name, {$scope, $state} + + # for inject + $location := location + $http-backend := httpBackend + $http-backend.when 'GET', '/data/mly-8.json' + .respond [name: \丁守中, party: \KMT] + + # helper + ly_api = (path) -> + "http://api.ly.g0v.tw/v0/collections/#{escape_path path}" + base = 'test/unit/fixtures/cassettes/bills_search' + get_latest_sitting_url = 'sittings?l=1' + get_latest_sitting_cassette = (date) -> + url = get_latest_sitting_url + window.__fixtures__["#base/#date/#{unescape_path url}"] + + get_session_period_url = (order, ad, session) -> + "calendar?l=1&q={\"ad\":#ad,\"session\":#session}&s={\"date\":#order}" + get_session_period_cassette = (date, url) -> + window.__fixtures__["#base/#date/#{unescape_path url}"] + + get_session_sittings_url = (ad, session) -> + "sittings?l=500&q={\"ad\":#ad,\"session\":#session}" + get_session_sittings_cassette = (date, url) -> + window.__fixtures__["#base/#date/#{unescape_path url}"] + + snapshots_base = 'test/unit/fixtures/snapshots/bills_search' + get_snapshots = (date) -> + window.__fixtures__["#snapshots_base/#date/scope"] + + escape_path = (path) -> + path = path.replace /{/g, '%7B' + path = path.replace /"/g, '%22' + path = path.replace /}/g, '%7D' + path + + unescape_path = (path) -> + path = path.replace /\?/, ' ' + path = path.replace /"/g, \་ + path.replace /,/g, \¸ + + test_scope_variables = <[ + today + latest_session + other_sessions + session + committees + committees_map + committee + motion_types + sittings_year + sitting_year + sittings_month + sitting_month + sittings_day + sitting_day + sittings_sitting + sitting_sitting + sitting_sitting_summary + motions + motion_type + selected_motions + ]> + + save_scope_variables = (date) -> + scope = {} + for k, v of $scope + pattern = new RegExp "^(#{test_scope_variables.join '|'})$" + if pattern.test k + scope[k] = v + $.ajax do + type: 'POST' + url: 'http://localhost:9877/record' + data: + path: "#snapshots_base/#date/scope.json" + json: JSON.stringify scope + data-type: 'text' + + it 'bills-search' -> + dates = [ + * date: '2014-09-09' + ] + $location.path '/bills-search' + Timecop = window.Timecop + Timecop.install! + dates.map ({date}) -> + Timecop.freeze moment(date, 'YYYY-MM-DD').to-date! + latest_sitting_cassette = get_latest_sitting_cassette date + $http-backend.when 'GET', ly_api(get_latest_sitting_url) + .respond -> [200, latest_sitting_cassette] + latest_sitting = latest_sitting_cassette.entries[0] + [latest_sitting.session to 1 by -1].map (session) -> + url = get_session_period_url 1, latest_sitting.ad, session + cassette = get_session_period_cassette date, url + $http-backend.when 'GET', ly_api(url) + .respond -> [200, cassette] + url = get_session_period_url -1, latest_sitting.ad, session + cassette = get_session_period_cassette date, url + $http-backend.when 'GET', ly_api(url) + .respond -> [200, cassette] + url = get_session_sittings_url( + latest_sitting.ad, latest_sitting.session) + cassette = get_session_sittings_cassette date, url + $http-backend.when 'GET', ly_api(url) + .respond -> [200, cassette] + controller = create-controller! + $http-backend.flush! + + snapshots = get_snapshots date + test_scope_variables.map (variable) -> + $scope[variable].should.deep.eq snapshots[variable] + + # click first of other sessions button + #session = snapshots.other_sessions[0] + #$scope.select_session session + #url = get_session_sittings_url( + # latest_sitting.ad, latest_sitting.session - 1) + #cassette = get_session_sittings_cassette date, url + #$http-backend.when 'GET', ly_api(url) + # .respond -> [200, cassette] + #$http-backend.flush! + + Timecop.return-to-present! + Timecop.uninstall! diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:-1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:-1}.json" new file mode 100644 index 0000000..c3e6521 --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:-1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 393, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": null, + "id": 51460, + "date": "2012-09-04T00:00:00.000Z", + "time_start": "14:30:00", + "time_end": "16:00:00", + "type": "misc", + "name": "內政委員會議事相關系統教育訓練", + "chair": null, + "summary": "", + "committee": ["IAD"], + "ad": 8, + "session": 1, + "extra": null, + "sitting": null + }], + "query": "(\"ad\" = 8) AND (\"session\" = 1)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:1}.json" new file mode 100644 index 0000000..3448daf --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:1}&s={\340\274\213date\340\274\213:1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 393, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": null, + "id": 49580, + "date": "2012-02-01T00:00:00.000Z", + "time_start": "09:00:00", + "time_end": "18:00:00", + "type": "sitting", + "name": "預備會議", + "chair": null, + "summary": "立法院第八屆立法委員就職宣誓暨選舉院長副院長", + "committee": null, + "ad": 8, + "session": 1, + "extra": null, + "sitting": 0 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 1)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:-1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:-1}.json" new file mode 100644 index 0000000..2e7b116 --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:-1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 494, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": "08-02-ECO-15", + "id": 54704, + "date": "2013-05-29T00:00:00.000Z", + "time_start": "09:00:00", + "time_end": "17:30:00", + "type": "sitting", + "name": "立法院第8屆第3會期經濟委員會第15次全體委員會議", + "chair": "黃偉哲", + "summary": "一、審查本院委員李貴敏等46人擬具「專利法第三十二條、第四十一條及第九十七條條文修正草案」案。\n二、審查本院委員丁守中等17人擬具「專利法部分條文修正草案」案。\n三、審查本院委員薛凌等19人擬具「專利法第三十二條條文修正草案」案。\n四、審查本院委員許忠信等18人擬具「專利法第一百十六條條文修正草案」案。\n(5月27日、5月29日二天一次會)", + "committee": ["ECO"], + "ad": 8, + "session": 2, + "extra": null, + "sitting": 15 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 2)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:1}.json" new file mode 100644 index 0000000..530693e --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:2}&s={\340\274\213date\340\274\213:1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 494, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": null, + "id": 53057, + "date": "2012-01-02T00:00:00.000Z", + "time_start": "09:00:00", + "time_end": "11:30:00", + "type": "misc", + "name": "立法院第8屆第2會期財政委員會考察:", + "chair": "薛凌", + "summary": "考察中央銀行文園庫。", + "committee": ["FIN"], + "ad": 8, + "session": 2, + "extra": null, + "sitting": null + }], + "query": "(\"ad\" = 8) AND (\"session\" = 2)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:-1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:-1}.json" new file mode 100644 index 0000000..824c0ab --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:-1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 386, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": null, + "id": 55440, + "date": "2013-08-30T00:00:00.000Z", + "time_start": "08:00:00", + "time_end": "21:30:00", + "type": "misc", + "name": "立法院第8屆第3會期財政委員會考察:", + "chair": "翁重鈞", + "summary": "考察預算執行情形。", + "committee": ["FIN"], + "ad": 8, + "session": 3, + "extra": null, + "sitting": null + }], + "query": "(\"ad\" = 8) AND (\"session\" = 3)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:1}.json" new file mode 100644 index 0000000..d0ab5c3 --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:3}&s={\340\274\213date\340\274\213:1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 386, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": "08-03-PRO-01", + "id": 53320, + "date": "2013-02-22T00:00:00.000Z", + "time_start": "12:00:00", + "time_end": "14:00:00", + "type": "sitting", + "name": "第8屆第3會期第1次會議", + "chair": "段宜康", + "summary": "審定本院第8屆第3會期第1次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "ad": 8, + "session": 3, + "extra": null, + "sitting": 1 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 3)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:-1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:-1}.json" new file mode 100644 index 0000000..6fbf1cc --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:-1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 792, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": "08-04-FND-07", + "id": 59885, + "date": "2014-03-20T00:00:00.000Z", + "time_start": "09:00:00", + "time_end": "17:30:00", + "type": "sitting", + "name": "立法院第8屆第5會期外交及國防委員會第7次全體委員會議", + "chair": "陳鎮湘", + "summary": "一、審查行政院函請審議「兵役法施行法部分條文修正草案」案。二、審查本院台灣團結聯盟黨團擬具「兵役法施行法第三十條條文修正草案」案。", + "committee": ["FND"], + "ad": 8, + "session": 4, + "extra": null, + "sitting": 7 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 4)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:1}.json" new file mode 100644 index 0000000..13c767a --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:4}&s={\340\274\213date\340\274\213:1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 792, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": "08-04-PRO-01", + "id": 55480, + "date": "2013-09-17T00:00:00.000Z", + "time_start": "12:00:00", + "time_end": "14:00:00", + "type": "sitting", + "name": "第8屆第4會期第1次會議", + "chair": "吳育昇", + "summary": "審定本院第8屆第4會期第2次會議議事日程及人民請願案", + "committee": ["PRO"], + "ad": 8, + "session": 4, + "extra": null, + "sitting": 1 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 4)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:-1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:-1}.json" new file mode 100644 index 0000000..3b47a0a --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:-1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 663, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": null, + "id": 63560, + "date": "2014-09-03T00:00:00.000Z", + "time_start": "10:20:00", + "time_end": "22:00:00", + "type": "misc", + "name": "8屆第5會期財政委員會考察", + "chair": "賴士葆、李應元", + "summary": "本會訂於中華民國103年9月3日(星期三)至5日(星期五),赴上海考察自由貿易區暨金融機構運作情形。", + "committee": ["FIN"], + "ad": 8, + "session": 5, + "extra": null, + "sitting": null + }], + "query": "(\"ad\" = 8) AND (\"session\" = 5)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:1}.json" new file mode 100644 index 0000000..515a590 --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}&s={\340\274\213date\340\274\213:1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 663, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": null, + "id": 59200, + "date": "2014-02-10T00:00:00.000Z", + "time_start": "14:30:00", + "time_end": "16:00:00", + "type": "misc", + "name": "委員會議事相關系統教育訓練", + "chair": null, + "summary": "委員會議事相關系統教育訓練", + "committee": ["ECO"], + "ad": 8, + "session": 5, + "extra": null, + "sitting": null + }], + "query": "(\"ad\" = 8) AND (\"session\" = 5)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:-1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:-1}.json" new file mode 100644 index 0000000..836e1eb --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:-1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 1, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": "08-06-PRO-01", + "id": 63662, + "date": "2014-09-09T00:00:00.000Z", + "time_start": "12:00:00", + "time_end": "14:00:00", + "type": "sitting", + "name": "第8屆第6會期第1次會議", + "chair": "吳秉叡", + "summary": "審定本院第8屆第6會期第1次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "ad": 8, + "session": 6, + "extra": null, + "sitting": 1 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 6)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:1}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:1}.json" new file mode 100644 index 0000000..836e1eb --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/calendar l=1&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}&s={\340\274\213date\340\274\213:1}.json" @@ -0,0 +1,24 @@ +{ + "paging": { + "count": 1, + "l": 1, + "sk": 0 + }, + "entries": [{ + "sitting_id": "08-06-PRO-01", + "id": 63662, + "date": "2014-09-09T00:00:00.000Z", + "time_start": "12:00:00", + "time_end": "14:00:00", + "type": "sitting", + "name": "第8屆第6會期第1次會議", + "chair": "吳秉叡", + "summary": "審定本院第8屆第6會期第1次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "ad": 8, + "session": 6, + "extra": null, + "sitting": 1 + }], + "query": "(\"ad\" = 8) AND (\"session\" = 6)" +} \ No newline at end of file diff --git a/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=1.json b/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=1.json new file mode 100644 index 0000000..9db76fe --- /dev/null +++ b/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=1.json @@ -0,0 +1,26 @@ +{ + "paging": { + "count": 3865, + "l": 1, + "sk": 0 + }, + "entries": [{ + "id": "08-06-PRO-01", + "name": "第8屆第6會期第1次會議", + "summary": "審定本院第8屆第6會期第1次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 6, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 63662, + "chair": "吳秉叡", + "date": "2014-09-09", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }] +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}.json" new file mode 100644 index 0000000..ef96034 --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:5}.json" @@ -0,0 +1,59005 @@ +{ + "paging": { + "count": 242, + "l": 500, + "sk": 0 + }, + "entries": [{ + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-07", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第7次聯席會議:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 59978, + "chair": "陳其邁", + "date": "2014-03-27", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-06", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第6次聯席會議議事日程:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 59977, + "chair": "陳其邁", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-05", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第5次聯席會議議事日程:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59976, + "chair": "陳其邁", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-04", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第4次聯席會議:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。(必要時延長開會時間)", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59783, + "chair": "張慶忠", + "date": "2014-03-20", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59975, + "chair": "陳其邁", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-03", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第3次聯席會議:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59663, + "chair": "陳其邁", + "date": "2014-03-13", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59668, + "chair": "陳其邁", + "date": "2014-03-13", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59782, + "chair": "張慶忠", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-02", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境8委員會第2次聯席會議:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59578, + "chair": "陳其邁", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59667, + "chair": "陳其邁", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59780, + "chair": "張慶忠", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-內政委員會-外交及國防委員會-經濟委員會-財政委員會-教育及文化委員會-交通委員會-司法及法制委員-社會福利及衛生環境委員會-01", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境8委員會第1次聯席會議:", + "summary": "審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["內政委員會", "外交及國防委員會", "經濟委員會", "財政委員會", "教育及文化委員會", "交通委員會", "司法及法制委員", "社會福利及衛生環境委員會"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59575, + "chair": "陳其邁", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59664, + "chair": "陳其邁", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59781, + "chair": "張慶忠", + "date": "2014-03-17", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-YS-12", + "name": "第8屆第5會期第12次會議", + "summary": "一、上午9時至10時為國是論壇時間。二、討論事項:本院財政、內政、經濟三委員會報告審查行政院函請審議「中央政府流域綜合治理計畫第1期特別預算案」案等82案。三、本次院會不處理臨時提案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 61901, + "chair": null, + "date": "2014-05-30", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030516070200500", + "bill_ref": "1044L16496", + "proposed_by": "本院委員李應元等17人", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00007.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030516070200600", + "bill_ref": "1044L16497", + "proposed_by": "本院委員蕭美琴等20人", + "summary": "擬具「公職人員選舉罷免法第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00008.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030516070200700", + "bill_ref": "1679L16498", + "proposed_by": "本院委員蕭美琴等19人", + "summary": "擬具「總統副總統選舉罷免法第二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00009.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030516070200800", + "bill_ref": "161L16499", + "proposed_by": "本院委員蕭美琴等20人", + "summary": "擬具「刑事訴訟法第七十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00010.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030516070200900", + "bill_ref": "161L16500", + "proposed_by": "本院委員蕭美琴等20人", + "summary": "擬具「刑事訴訟法刪除第一百零一條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00011.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030516070201400", + "bill_ref": null, + "proposed_by": "本院委員李桐豪等24人", + "summary": "擬具「入出國及移民法第三十一條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030516070201500", + "bill_ref": "801L16506", + "proposed_by": "本院委員李桐豪等19人", + "summary": "擬具「金融控股公司法第五十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00013.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030516070201600", + "bill_ref": "1749L16507", + "proposed_by": "本院委員李桐豪等22人", + "summary": "擬具「動物保護法第十四條及第二十三條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00014.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030516070201700", + "bill_ref": "1570L16508", + "proposed_by": "本院委員李桐豪等21人", + "summary": "擬具「個人資料保護法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00015.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030516070201800", + "bill_ref": "1033L16509", + "proposed_by": "本院委員李桐豪等24人", + "summary": "擬具「特殊境遇家庭扶助條例第二條及第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00016.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030516070202200", + "bill_ref": "225L16513", + "proposed_by": "本院委員盧秀燕等19人", + "summary": "擬具「所得稅法第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00017.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030516070202300", + "bill_ref": "1749L16514", + "proposed_by": "本院委員葉宜津等20人", + "summary": "擬具「野生動物保育法第三十二條及第四十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00018.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030516070202400", + "bill_ref": "775L16515", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「藥事法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00019.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030516070202500", + "bill_ref": "874L16516", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「化粧品衛生管理條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00020.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030516070202600", + "bill_ref": "554L16517", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「口腔健康法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00021.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030516070202700", + "bill_ref": "1155L16518", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「護理人員法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00022.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030516070202800", + "bill_ref": "214L16519", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「呼吸治療師法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00023.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030516070202900", + "bill_ref": "1604L16520", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「全民健康保險法第四條及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00024.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030516070203000", + "bill_ref": "1545L16521", + "proposed_by": "本院委員羅淑蕾等16人", + "summary": "擬具「醫療法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00025.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030519070200100", + "bill_ref": "1722L16522", + "proposed_by": "本院委員廖國棟等16人", + "summary": "擬具「原住民族工作權保障法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00026.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030519070200200", + "bill_ref": "1628L16523", + "proposed_by": "本院委員林岱樺等16人", + "summary": "擬具「公務人員任用法第二十七條及第二十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00027.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030519070200600", + "bill_ref": "756L16528", + "proposed_by": "本院委員蔡正元等21人", + "summary": "擬具「道路交通管理處罰條例第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00028.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030519070200700", + "bill_ref": "1429L16529", + "proposed_by": "本院委員蔡正元等18人", + "summary": "擬具「大眾捷運法第五十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00029.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030520070200100", + "bill_ref": "1774L16530", + "proposed_by": "本院委員陳根德等20人", + "summary": "擬具「性騷擾防治法增訂第二十五條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00030.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030520070200200", + "bill_ref": "1044L16531", + "proposed_by": "本院委員盧秀燕等24人", + "summary": "擬具「公職人員選舉罷免法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00031.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030520070200300", + "bill_ref": "1679L16532", + "proposed_by": "本院委員盧秀燕等22人", + "summary": "擬具「總統副總統選舉罷免法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00032.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030520070200400", + "bill_ref": "246L16533", + "proposed_by": "本院委員賴振昌等18人", + "summary": "擬具「中華民國刑法刪除第一百五十三條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00033.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030521070200100", + "bill_ref": "820L16535", + "proposed_by": "本院委員孫大千等25人", + "summary": "擬具「建築法第八十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00034.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030521070200200", + "bill_ref": "1777L16536", + "proposed_by": "本院委員孫大千等25人", + "summary": "擬具「電子商務支付服務發展及管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00035.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030521070200300", + "bill_ref": "618L16537", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「公司法第二十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00036.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030521070200400", + "bill_ref": "618L16538", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「公司法第一百零九條之一、第二百十四條及第二百十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00037.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030521070200500", + "bill_ref": "285L16539", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「土地稅法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00038.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030521070200600", + "bill_ref": "727L16540", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「證券交易法第二十六條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00039.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030521070200700", + "bill_ref": "23L16541", + "proposed_by": "本院委員李俊俋等18人", + "summary": "擬具「立法院職權行使法第四十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00040.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030521070200800", + "bill_ref": "468L16542", + "proposed_by": "本院委員蔣乃辛等21人", + "summary": "擬具「就業保險法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00041.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030521070200900", + "bill_ref": "468L16543", + "proposed_by": "本院委員江惠貞等22人", + "summary": "擬具「勞工退休金條例第二條及第二十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00042.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030521070201000", + "bill_ref": "1121L16544", + "proposed_by": "本院委員江惠貞等20人", + "summary": "擬具「勞動基準法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00043.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030521070201100", + "bill_ref": "1121L16545", + "proposed_by": "本院委員吳育仁等27人", + "summary": "擬具「勞動基準法第七十四條及第七十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00044.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030521070201200", + "bill_ref": "1607L16546", + "proposed_by": "本院委員盧秀燕等38人", + "summary": "擬具「中華民國憲法第一百三十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00045.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030521070201300", + "bill_ref": "1607L16547", + "proposed_by": "本院委員鄭麗君等33人", + "summary": "擬具「中華民國憲法第一百三十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00046.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030521070201400", + "bill_ref": "1028L16548", + "proposed_by": "本院委員呂玉玲等20人", + "summary": "擬具「師資培育法第十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00047.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030521070201500", + "bill_ref": "1044L16549", + "proposed_by": "本院委員陳歐珀等16人", + "summary": "擬具「政治獻金法第三十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00048.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030521070201600", + "bill_ref": "966L16550", + "proposed_by": "本院委員陳歐珀等19人", + "summary": "擬具「廢棄物清理法第四十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00049.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1030521070201700", + "bill_ref": "970L16551", + "proposed_by": "本院委員陳歐珀等16人", + "summary": "擬具「空氣污染防制法第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00050.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1030522070200100", + "bill_ref": "962L16552", + "proposed_by": "本院委員陳歐珀等17人", + "summary": "擬具「水污染防治法第三十六條及第三十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00051.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1030521070201800", + "bill_ref": "1554L16553", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第十一條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00052.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1030521070201900", + "bill_ref": "1669L16554", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「香港澳門關係條例第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00053.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1030521070202000", + "bill_ref": "225L16555", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「莫拉克颱風災後重建特別條例第十二條、第十三條及第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00054.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1030521070202100", + "bill_ref": "1562L16556", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「無線電視事業公股處理條例第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00055.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1030521070202200", + "bill_ref": "1539L16557", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「國家金融安定基金設置及管理條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00056.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1030521070202300", + "bill_ref": "252L16558", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「律師法第二十條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00057.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1030521070202400", + "bill_ref": "811L16559", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「農藥管理法第二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00058.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1030521070202500", + "bill_ref": "462L16560", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「公路法第六十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00059.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1030521070202600", + "bill_ref": "468L16561", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「勞工保險條例第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00060.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1030521070202700", + "bill_ref": "468L16562", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「勞工退休金條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00061.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1030521070202800", + "bill_ref": "468L16563", + "proposed_by": "本院委員江惠貞等17人", + "summary": "擬具「職業災害勞工保護法第二條及第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00062.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00062.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1030521070202900", + "bill_ref": "468L16564", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「職業訓練法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00063.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00063.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1030521070203000", + "bill_ref": "468L16565", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「就業保險法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00064.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1030521070203100", + "bill_ref": "1352L16566", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「勞資爭議處理法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00065.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1030521070203200", + "bill_ref": "1121L16567", + "proposed_by": "本院委員江惠貞等17人", + "summary": "擬具「勞動基準法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00066.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1030521070203300", + "bill_ref": "1537L16568", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「大量解僱勞工保護法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00067.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1030521070203400", + "bill_ref": "1537L16569", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「就業服務法第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00068.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1030521070203500", + "bill_ref": "1566L16570", + "proposed_by": "本院委員江惠貞等17人", + "summary": "擬具「團體協約法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00069.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1030521070203600", + "bill_ref": "1611L16571", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「勞動檢查法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00070.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1030521070203700", + "bill_ref": "977L16572", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「工會法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00071.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00071.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030522070200300", + "bill_ref": "23L16574", + "proposed_by": "本院委員陳其邁等17人", + "summary": "擬具「立法院組織法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00072.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030522070200400", + "bill_ref": "23L16575", + "proposed_by": "本院委員陳其邁等17人", + "summary": "擬具「立法院各委員會組織法第一條及第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00073.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030522070200500", + "bill_ref": "161L16576", + "proposed_by": "本院委員廖正井等38人", + "summary": "擬具「刑事訴訟法第四百二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00074.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00074.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030522070200200", + "bill_ref": "1032L16573", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「身心障礙者權益保障法增訂第五十六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00075.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00075.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030522070200600", + "bill_ref": "618L16577", + "proposed_by": "本院委員李俊俋等18人", + "summary": "擬具「公司法第一百零九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00076.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030522070200700", + "bill_ref": "618L16578", + "proposed_by": "本院委員羅淑蕾等18人", + "summary": "擬具「公司法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00077.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030522070202500", + "bill_ref": "1433L16579", + "proposed_by": "本院委員林明溱等21人", + "summary": "擬具「人類免疫缺乏病毒傳染防治及感染者權益保障條例第二條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00078.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030522070200800", + "bill_ref": "1684L16580", + "proposed_by": "本院委員林明溱等21人", + "summary": "擬具「全民防衛動員準備法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00079.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030522070200900", + "bill_ref": "1140L16581", + "proposed_by": "本院委員林明溱等21人", + "summary": "擬具「癌症防治法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00080.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030522070201000", + "bill_ref": "1422L16582", + "proposed_by": "本院委員林明溱等21人", + "summary": "擬具「環境教育法第二十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00081.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030522070201100", + "bill_ref": "223L16583", + "proposed_by": "本院委員林明溱等21人", + "summary": "擬具「國家中山科學研究院設置條例第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00082.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030522070201200", + "bill_ref": "963L16854", + "proposed_by": "本院委員陳碧涵等22人", + "summary": "擬具「私立學校法第五十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00083.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030522070201300", + "bill_ref": "1559L16855", + "proposed_by": "本院委員陳碧涵等23人", + "summary": "擬具「教師法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00084.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030522070201400", + "bill_ref": "1407L16856", + "proposed_by": "本院委員王育敏等23人", + "summary": "擬具「通訊保障及監察法第十一條之一及第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00085.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030522070201500", + "bill_ref": "1462L14862", + "proposed_by": "本院委員王育敏等22人", + "summary": "擬具「菸害防制法第三條及第三十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00086.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030522070201600", + "bill_ref": "1737L16857", + "proposed_by": "本院委員廖國棟等20人", + "summary": "擬具「原住民族教育法第三條、第二十一條及第二十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00087.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030522070201700", + "bill_ref": "1722L16858", + "proposed_by": "本院委員呂玉玲等19人", + "summary": "擬具「食品安全衛生管理法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00088.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030522070201800", + "bill_ref": "1121L16859", + "proposed_by": "本院委員呂玉玲等18人", + "summary": "擬具「勞動基準法第二十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00089.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030522070201900", + "bill_ref": "1121L16860", + "proposed_by": "本院委員蔡錦隆等17人", + "summary": "擬具「勞動基準法第三十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00090.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030522070202000", + "bill_ref": "1032L16861", + "proposed_by": "本院委員蔡錦隆等23人", + "summary": "擬具「身心障礙者權益保障法增訂第六十四條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00091.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030522070202100", + "bill_ref": "1684L16864", + "proposed_by": "本院委員簡東明等17人", + "summary": "擬具「入出國及移民法第二十三條及第二十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00092.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030522070202200", + "bill_ref": "1061L16863", + "proposed_by": "本院委員簡東明等17人", + "summary": "擬具「陸海空軍軍官士官服役條例第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00093.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030522070202300", + "bill_ref": "1574L16865", + "proposed_by": "本院委員謝國樑等17人", + "summary": "擬具「妨害兵役治罪條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00094.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030522070202400", + "bill_ref": "1619L16866", + "proposed_by": "本院委員謝國樑等21人", + "summary": "擬具「老人福利法第三十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00095.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030516070201300", + "bill_ref": "1606L16504", + "proposed_by": "本院委員林佳龍等17人", + "summary": "擬具「政府資訊公開法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00096.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00096.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030516070201000", + "bill_ref": "159L16501", + "proposed_by": "本院委員林佳龍等17人", + "summary": "擬具「兵役法第三十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00097.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030516070201200", + "bill_ref": "1570L16503", + "proposed_by": "本院委員林佳龍等19人", + "summary": "擬具「個人資料保護法第十六條及第四十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00098.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030516070201100", + "bill_ref": "225L16502", + "proposed_by": "本院委員林佳龍等16人", + "summary": "擬具「所得稅法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00099.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030519070200400", + "bill_ref": "1044L16525", + "proposed_by": "本院委員趙天麟等20人", + "summary": "擬具「公職人員選舉罷免法第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00100.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030516070200100", + "bill_ref": "915L16492", + "proposed_by": "本院委員陳其邁等18人", + "summary": "擬具「警察職權行使法第四條及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00101.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030516070200200", + "bill_ref": "23L16493", + "proposed_by": "本院委員陳其邁等21人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00102.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030516070200300", + "bill_ref": "23L16494", + "proposed_by": "本院委員陳其邁等18人", + "summary": "擬具「立法院職權行使法增訂第四十九條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00103.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00103.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030516070200400", + "bill_ref": "1156L16495", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「藥害救濟法第二條及第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00104.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030526070201400", + "bill_ref": "1032L16895", + "proposed_by": "本院委員謝國樑等26人", + "summary": "擬具「身心障礙者權益保障法第六十二條、第八十一條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00105.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030526070201300", + "bill_ref": "464L16893", + "proposed_by": "本院委員謝國樑等26人", + "summary": "擬具「保險法第一百二十二條、第一百三十條及第一百三十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00106.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030526070201500", + "bill_ref": "616L16896", + "proposed_by": "本院委員謝國樑等27人", + "summary": "擬具「使用牌照稅法第七條及第三十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00107.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030526070201600", + "bill_ref": "917L16894", + "proposed_by": "本院委員謝國樑等27人", + "summary": "擬具「森林法第五十條、第五十二條及第五十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00108.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030526070201200", + "bill_ref": "468L16892", + "proposed_by": "本院委員蔣乃辛等21人", + "summary": "擬具「勞工保險條例第六十五條之四條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00109.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030526070200500", + "bill_ref": "956L16888", + "proposed_by": "本院委員林淑芬等19人", + "summary": "擬具「農業基本法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00110.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030523070200600", + "bill_ref": "8L16872", + "proposed_by": "本院委員林佳龍等17人", + "summary": "擬具「終身學習法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00111.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030523070200500", + "bill_ref": "462L16871", + "proposed_by": "本院委員林佳龍等17人", + "summary": "擬具「公路法第四十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00112.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030526070202000", + "bill_ref": "1150L16899", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「民法第一千一百四十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00113.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030523070200200", + "bill_ref": "618L16868", + "proposed_by": "本院委員許添財等18人", + "summary": "擬具「公司法第二百十六條及第二百二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00114.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030523070200100", + "bill_ref": "618L16867", + "proposed_by": "本院委員許添財等17人", + "summary": "擬具「公司法第一百九十六條及第二百零二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00115.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030523070200400", + "bill_ref": "767L16870", + "proposed_by": "本院委員許添財等17人", + "summary": "擬具「軍人撫卹條例第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00116.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030523070200300", + "bill_ref": "979L16869", + "proposed_by": "本院委員許添財等17人", + "summary": "擬具「廣播電視法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00117.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030526070201700", + "bill_ref": "917L16880", + "proposed_by": "本院委員許添財等17人", + "summary": "擬具「森林法第五十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00118.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030523070201000", + "bill_ref": "932L16876", + "proposed_by": "本院委員潘孟安等17人", + "summary": "擬具「兒童及少年福利與權益保障法第四十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00119.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030523070200900", + "bill_ref": "1053L16875", + "proposed_by": "本院委員潘孟安等17人", + "summary": "擬具「石油管理法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00120.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030523070200800", + "bill_ref": "1539L16874", + "proposed_by": "本院委員潘孟安等17人", + "summary": "擬具「民營公用事業監督條例第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00121.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030526070202300", + "bill_ref": "1798L16902", + "proposed_by": "本院委員楊曜等19人", + "summary": "擬具「法律扶助法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00122.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030526070202400", + "bill_ref": "1749L16903", + "proposed_by": "本院委員楊曜等19人", + "summary": "擬具「動物保護法增訂第十四條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00123.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030526070202100", + "bill_ref": "468L16900", + "proposed_by": "本院委員楊曜等19人", + "summary": "擬具「就業保險法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00124.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030526070202200", + "bill_ref": "1640L16901", + "proposed_by": "本院委員楊曜等19人", + "summary": "擬具「核子損害賠償法第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00125.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030526070202500", + "bill_ref": "1542L16904", + "proposed_by": "本院委員楊曜等19人", + "summary": "擬具「性別工作平等法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00126.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030526070202700", + "bill_ref": "1534L16906", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「貿易法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00127.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030526070202600", + "bill_ref": "1607L16905", + "proposed_by": "本院委員高志鵬等37人", + "summary": "擬具「中華民國憲法增修條文第十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00128.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030526070202900", + "bill_ref": "492L16908", + "proposed_by": "本院委員陳亭妃等19人", + "summary": "擬具「戒嚴時期人民受損權利回復條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00129.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030526070203000", + "bill_ref": "1409L16909", + "proposed_by": "本院委員陳亭妃等19人", + "summary": "擬具「社會秩序維護法第八十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00130.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030526070202800", + "bill_ref": "161L16907", + "proposed_by": "本院委員陳亭妃等18人", + "summary": "擬具「刑事訴訟法第二百五十八條之一及第三百四十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00131.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030526070203100", + "bill_ref": "1761L16910", + "proposed_by": "本院委員陳亭妃等19人", + "summary": "擬具「家庭暴力防治法第八條及第四十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00132.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030526070203200", + "bill_ref": "956L16911", + "proposed_by": "本院委員陳亭妃等38人", + "summary": "擬具「有機農業促進條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00133.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030526070203300", + "bill_ref": "1044L16912", + "proposed_by": "本院委員尤美女等18人", + "summary": "擬具「公職人員選舉罷免法第四十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00134.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030526070203400", + "bill_ref": "1606L16913", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「政府資訊公開法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00135.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030526070203500", + "bill_ref": "246L16914", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「中華民國刑法刪除第一百五十三條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00136.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030526070203600", + "bill_ref": "1044L16915", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法第六十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00137.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030526070203700", + "bill_ref": "285L16916", + "proposed_by": "本院委員陳其邁等23人", + "summary": "擬具「地政士法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00138.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030526070203800", + "bill_ref": "285L16917", + "proposed_by": "本院委員陳其邁等23人", + "summary": "擬具「平均地權條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00139.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030526070203900", + "bill_ref": "1551L16918", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「不動產經紀業管理條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00140.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030526070201800", + "bill_ref": "1044L16897", + "proposed_by": "本院委員陳其邁等18人", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00141.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030526070201900", + "bill_ref": "1604L16898", + "proposed_by": "本院委員陳其邁等18人", + "summary": "擬具「全民健康保險法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00142.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030523070200700", + "bill_ref": "161L16873", + "proposed_by": "本院委員王惠美等17人", + "summary": "擬具「刑事訴訟法第一百零一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00143.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030523070201100", + "bill_ref": "1037L16877", + "proposed_by": "本院委員黃偉哲等18人", + "summary": "擬具「社會救助法第三條及第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00144.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030523070201200", + "bill_ref": "1429L16878", + "proposed_by": "本院委員黃偉哲等17人", + "summary": "擬具「大眾捷運法第五十條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00145.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030523070201300", + "bill_ref": "1749L16879", + "proposed_by": "本院委員田秋堇等27人", + "summary": "擬具「動物保護法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00146.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030526070200100", + "bill_ref": "1749L16885", + "proposed_by": "本院委員林淑芬等21人", + "summary": "擬具「動物保護法第十六條、第二十四條及第二十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00147.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030526070200200", + "bill_ref": "1749L16886", + "proposed_by": "本院委員林淑芬等21人", + "summary": "擬具「動物保護法第二十二條、第二十五條之二及第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00148.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030526070200300", + "bill_ref": "1749L16890", + "proposed_by": "本院委員林淑芬等21人", + "summary": "擬具「動物保護法第十八條之一及第二十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00149.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030526070200400", + "bill_ref": "1121L16887", + "proposed_by": "本院委員林淑芬等18人", + "summary": "擬具「勞動基準法第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00150.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030526070200600", + "bill_ref": "1545L16889", + "proposed_by": "本院委員林淑芬等21人", + "summary": "擬具「醫療法第六十三條及第六十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00151.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030526070200700", + "bill_ref": "1520L16891", + "proposed_by": "本院委員顏寬恒等21人", + "summary": "擬具「陸海空軍勳賞條例第五條及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00152.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030526070200800", + "bill_ref": "246L16881", + "proposed_by": "本院委員高志鵬等23人", + "summary": "擬具「中華民國刑法第三百十五條及第三百十五條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00153.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030526070200900", + "bill_ref": "1044L16882", + "proposed_by": "本院委員高志鵬等21人", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00154.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030526070201000", + "bill_ref": "1044L16883", + "proposed_by": "本院委員薛凌等29人", + "summary": "擬具「公職人員選舉罷免法第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00155.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030526070201100", + "bill_ref": "165L16884", + "proposed_by": "本院委員薛凌等29人", + "summary": "擬具「娛樂稅法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00156.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030526070204000", + "bill_ref": "1044L16919", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「政治獻金法第二十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00157.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030526070204100", + "bill_ref": "647L16920", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「法院組織法刪除第六十三條之一條文草案」,請審議案", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00158.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030526070204200", + "bill_ref": "977L16921", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「工會法第四條條文修正草案」,請審議案", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00159.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1021121070200400", + "bill_ref": "1618L15677", + "proposed_by": "本院委員楊應雄等19人", + "summary": "擬具「離島建設條例第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00037.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030313070203700", + "bill_ref": "38L16163", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「赦免法增訂第六條之一、第六條之二及第六條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00051.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030403070200300", + "bill_ref": "23L16217", + "proposed_by": "本院委員尤美女等30人", + "summary": "擬具「立法院職權行使法增訂第十三條之一、第十三條之二及第十三條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00099.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030428070200400", + "bill_ref": "759L16371", + "proposed_by": "本院委員尤美女等16人", + "summary": "擬具「廢止核能發電條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00115.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030403070200400", + "bill_ref": "1394L16216", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「條約締結法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00100.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030513070200700", + "bill_ref": "915L16454", + "proposed_by": "本院委員李應元等19人", + "summary": "擬具「警察職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00018.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030514070200300", + "bill_ref": "1574L16464", + "proposed_by": "本院委員邱志偉等18人", + "summary": "擬具「公民投票法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00029.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030512070200900", + "bill_ref": "1000L16441", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警察服制條例第四條、第五條及第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00043.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030512070201000", + "bill_ref": "915L16442", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警察職權行使法第四條、第二十七條及第二十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00044.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030512070201100", + "bill_ref": "562L16443", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警察法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00045.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030512070201200", + "bill_ref": "808L16445", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警械使用條例第一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00047.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030513070200400", + "bill_ref": "1554L16451", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00015.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030423070200500", + "bill_ref": "759L16309", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「核四逃命圈公民投票特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00061.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030317070201100", + "bill_ref": "1679L16187", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「總統職務交接條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00068.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030519070100100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函請審議「建築師法修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030520070100100", + "bill_ref": "647G14998", + "proposed_by": "行政院", + "summary": "函請審議「多氯聯苯中毒者健康照護服務條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00232.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030520070100200", + "bill_ref": "775G14999", + "proposed_by": "行政院", + "summary": "函請審議「藥事法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00233.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030520070100300", + "bill_ref": "870G15000", + "proposed_by": "行政院", + "summary": "函請審議「大學法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00234.doc" + }, + "sitting_introduced": "08-05-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030519071002000", + "bill_ref": "887G14997", + "proposed_by": "僑務委員會", + "summary": "函送財團法人海華文教基金會及財團法人海外信用保證基金102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030522070100100", + "bill_ref": "887G15001", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函送財團法人榮民榮眷基金會102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030522070100200", + "bill_ref": "887G15001-1", + "proposed_by": "行政院環境保護署", + "summary": "函送「財團法人環境資源研究發展基金會」及「財團法人環境與發展基金會」102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030522070100300", + "bill_ref": "887G15001-2", + "proposed_by": "教育部", + "summary": "函送該部主管財團法人大學入學考試中心基金會等10家財團法人102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030522071004400", + "bill_ref": "887G15001-3", + "proposed_by": "文化部", + "summary": "函送財團法人國家文化藝術基金會等12家基金會102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030526071000100", + "bill_ref": "887G15001-4", + "proposed_by": "司法院", + "summary": "函送財團法人法律扶助基金會102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030526071000200", + "bill_ref": "887G15001-5", + "proposed_by": "科技部", + "summary": "函送財團法人國家實驗研究院及國家同步輻射研究中心102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030516071000700", + "bill_ref": "887G14717-1280", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關舊空軍司令部所在地仁愛營區保存維護案辦理情形書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030521071000300", + "bill_ref": "887G14717-1291", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送國家人權博物館籌備處「博物館業務之推展改善成果」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030521071000400", + "bill_ref": "887G14717-1292", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關臺北市市定古蹟歸綏街文萌樓保存維護爭議案辦理情形書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030328071004200", + "bill_ref": "887G11414-891", + "proposed_by": "經濟部", + "summary": "函送台電、中油、台糖、台水及漢翔公司103年1月份公益支出、委託調查、會費、捐助及睦鄰支出明細表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030424071000300", + "bill_ref": "887G11414-893", + "proposed_by": "經濟部", + "summary": "函送台電、中油、台糖、台水及漢翔公司103年2月份公益支出、委託調查、會費、捐助及睦鄰支出明細表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030521071000200", + "bill_ref": "887G14717-1290", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,檢送建置雲端藥歷資料庫、健保卡改善方案規劃及全民健保藥事居家照護計畫實施成效之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030521071000500", + "bill_ref": "887G14717-1293", + "proposed_by": "教育部", + "summary": "檢送「因應高學歷失業之策略作為」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030320071001400", + "bill_ref": "887G14717-921", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一),檢送委辦費預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030320071001500", + "bill_ref": "887G14717-922", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三),檢送「基本行政工作維持」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030320071001600", + "bill_ref": "887G14717-923", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四),檢送「環境影響評估」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030320071001900", + "bill_ref": "887G14717-924", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(五),檢送「環境影響評估」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030320071002000", + "bill_ref": "887G14717-925", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(六),檢送「環境影響評估」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030320071002100", + "bill_ref": "887G14717-926", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(七),檢送「環境影響評估」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030320071002200", + "bill_ref": "887G14717-927", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(八),檢送「水污染防治及流域整體性環境保護」經常門預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00257.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00257.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030320071002300", + "bill_ref": "887G14717-928", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(九),檢送「補助地方政府執行河川流域污染整治工作」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00258.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00258.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030320071002400", + "bill_ref": "887G14717-929", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十),檢送「垃圾全分類零廢棄及廢棄物緊急應變計畫」預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00259.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00259.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030320071002500", + "bill_ref": "887G11717-930", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十一),檢送「補助地方政府推動底渣再利用工作」預算凍結二分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030320071002600", + "bill_ref": "887G14717-931", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十二),檢送「補助地方政府推動底渣再利用工作」預算凍結二分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030320071002700", + "bill_ref": "887G14717-932", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十三),檢送「補助地方政府推動底渣再利用工作」預算凍結二分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030320071002800", + "bill_ref": "887G14717-933", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十四),檢送「垃圾全分類零廢棄及廢棄物緊急應變計畫」之「對直轄市政府之補助、對臺灣省各縣市之補助」預算凍結二十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030320071003200", + "bill_ref": "887G14717-934", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十五),檢送「空氣品質保護及噪音管制」預算凍結100萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00264.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00264.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030320071003300", + "bill_ref": "887G14717-935", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十六),檢送「空氣品質保護及噪音管制」預算凍結100萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030320071003400", + "bill_ref": "887G14717-936", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十七),檢送「湖泊水庫及河川污染防治」業務費內通訊費、物品及一般事務費預算凍結50萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030320071003500", + "bill_ref": "887G14717-937", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十八),檢送「事業廢水行政管制及經濟誘因管理」預算凍結300萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00267.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00267.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030320071003700", + "bill_ref": "887G14717-938", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(十九),檢送「工業區下水道及生活污水管制」預算凍結100萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030320071003800", + "bill_ref": "887G14717-939", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十),檢送「工業區下水道及生活污水管制」預算凍結100萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030320071004200", + "bill_ref": "887G14717-940", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十二),檢送「辦理事業廢棄物輸出、輸入、過境及轉口之政策訂定」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030320071004300", + "bill_ref": "887G14717-941", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十三),檢送「事業廢棄物管理」業務費內一般事務費預算凍結100萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00271.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00271.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030320071004400", + "bill_ref": "887G14717-942", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十四),檢送「事業廢棄物管理」業務費內一般事務費預算凍結100萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00272.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00272.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030320071004500", + "bill_ref": "887G14717-943", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十五),檢送「廢棄物管理」項下「資源循環再利用」預算凍結500萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 269, + "subitem": null, + "item": null, + "bill_id": "1030320071004600", + "bill_ref": "887G14717-944", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十六),檢送「廢棄物管理」項下「資源循環再利用」預算凍結500萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00274.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00274.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 270, + "subitem": null, + "item": null, + "bill_id": "1030320071004800", + "bill_ref": "887G14717-945", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十七),檢送「廢棄物管理」項下「資源循環再利用」預算凍結500萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00275.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00275.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 271, + "subitem": null, + "item": null, + "bill_id": "1030320071006100", + "bill_ref": "887G14717-946", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十八),檢送「廢棄物管理」項下「資源循環再利用」預算凍結500萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00276.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00276.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 272, + "subitem": null, + "item": null, + "bill_id": "1030320071006200", + "bill_ref": "887G14717-947", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(二十九),檢送「推動廢棄資源填海造島(陸)政策相關工作」預算凍結300萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00277.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00277.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 273, + "subitem": null, + "item": null, + "bill_id": "1030320071006300", + "bill_ref": "887G14717-948", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十),檢送「推動廢棄資源填海造島(陸)政策相關工作」預算凍結300萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00278.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00278.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 274, + "subitem": null, + "item": null, + "bill_id": "1030320071006400", + "bill_ref": "887G14717-949", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十一),檢送「推動廢棄資源填海造島(陸)政策相關工作」預算凍結300萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 275, + "subitem": null, + "item": null, + "bill_id": "1030320071004900", + "bill_ref": "887G14717-950", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十二),檢送「推動廢棄資源填海造島(陸)政策相關工作」預算凍結300萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 276, + "subitem": null, + "item": null, + "bill_id": "1030320071004700", + "bill_ref": "887G14717-951", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十三),檢送「辦理焚化底渣再利用推廣至公共工程」預算凍結200萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 277, + "subitem": null, + "item": null, + "bill_id": "1030320071006500", + "bill_ref": "887G14717-952", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十四),檢送「推動低碳垃圾清運及垃圾車更新相關工作」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 278, + "subitem": null, + "item": null, + "bill_id": "1030320071005100", + "bill_ref": "887G14717-953", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十五),檢送「毒性化學物質運作管理」預算凍結500萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 279, + "subitem": null, + "item": null, + "bill_id": "1030320071006700", + "bill_ref": "887G14717-954", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十六),檢送「毒性化學物質運作管理」預算凍結500萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 280, + "subitem": null, + "item": null, + "bill_id": "1030320071005200", + "bill_ref": "887G14717-955", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十七),檢送「毒性化學物質運作管理」之「設備及投資」預算凍結200萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 281, + "subitem": null, + "item": null, + "bill_id": "1030320071006800", + "bill_ref": "887G14717-956", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十八),檢送「規劃建置毒性化學物質跨部會運用介接及管理機制」預算凍結77萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 282, + "subitem": null, + "item": null, + "bill_id": "1030320071005300", + "bill_ref": "887G14717-957", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(三十九),檢送「毒性化學物質災害防救體系」預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 283, + "subitem": null, + "item": null, + "bill_id": "1030320071005400", + "bill_ref": "887G14717-958", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十),檢送「毒性化學物質災害防救體系」預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 284, + "subitem": null, + "item": null, + "bill_id": "1030320071006900", + "bill_ref": "887G14717-959", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十一),檢送「毒性化學物質災害防救體系」預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 285, + "subitem": null, + "item": null, + "bill_id": "1030320071007000", + "bill_ref": "887G14717-960", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十二),檢送「毒性化學物質災害防救體系」預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 286, + "subitem": null, + "item": null, + "bill_id": "1030320071005500", + "bill_ref": "887G14717-961", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十三),檢送「推動環保標章及第二類環境保護產品計畫」預算凍結700萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 287, + "subitem": null, + "item": null, + "bill_id": "1030320071005600", + "bill_ref": "887G14717-962", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十四),檢送「推動環保標章及第二類環境保護產品計畫」預算凍結700萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 288, + "subitem": null, + "item": null, + "bill_id": "1030320071005700", + "bill_ref": "887G14717-963", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十五),檢送「推動環保標章及第二類環境保護產品計畫」預算凍結700萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00293.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00293.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 289, + "subitem": null, + "item": null, + "bill_id": "1030320071005800", + "bill_ref": "887G14717-964", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十六),檢送「區域環境管理」預算凍結二十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 290, + "subitem": null, + "item": null, + "bill_id": "1030320071005900", + "bill_ref": "887G14717-965", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十八),檢送「區域環境管理」項下「人員維持」除外預算凍結1,000萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 291, + "subitem": null, + "item": null, + "bill_id": "1030320071007300", + "bill_ref": "887G14717-966", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(四十九),檢送「推動區域環境保護工作」之「設備及投資 」預算凍結20萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 292, + "subitem": null, + "item": null, + "bill_id": "1030320071002900", + "bill_ref": "887G14717-967", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一一六),檢送「水污染防治及流域整體性環境保護」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 293, + "subitem": null, + "item": null, + "bill_id": "1030320071003000", + "bill_ref": "887G14717-968", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一一七),檢送「補助地方政府推動底渣再利用工作」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 294, + "subitem": null, + "item": null, + "bill_id": "1030320071003100", + "bill_ref": "887G14717-969", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一一八),檢送「鼓勵公民營機構興建營運垃圾焚化廠推動方案」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 295, + "subitem": null, + "item": null, + "bill_id": "1030320071003600", + "bill_ref": "887G14717-970", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一一九),檢送「水質保護」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 296, + "subitem": null, + "item": null, + "bill_id": "1030320071003900", + "bill_ref": "887G14717-971", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二○),檢送「水質保護」預算凍結十分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 297, + "subitem": null, + "item": null, + "bill_id": "1030320071004000", + "bill_ref": "887G14717-972", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二一),檢送「湖泊水庫及河川污染防治」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 298, + "subitem": null, + "item": null, + "bill_id": "1030320071004100", + "bill_ref": "887G14717-973", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二二),檢送「工業區下水道及生活污水管制」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 299, + "subitem": null, + "item": null, + "bill_id": "1030320071006600", + "bill_ref": "887G14717-974", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二四),檢送「事業廢棄物管理」之「廢棄物流向追蹤管理」與「資源循環再利用」之「持續辦理廢棄物減量、資源循環、再生及再利用工作」預算凍結五分之一之書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 300, + "subitem": null, + "item": null, + "bill_id": "1030320071005000", + "bill_ref": "887G14717-975", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二五),檢送「推動廢棄資源填海造島(陸)政策相關工作」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 301, + "subitem": null, + "item": null, + "bill_id": "1030320071007100", + "bill_ref": "887G14717-976", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二六),檢送「毒性化學物質災害防救體系」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 302, + "subitem": null, + "item": null, + "bill_id": "1030320071007200", + "bill_ref": "887G14717-977", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第1項決議(一二七),檢送「推動環保標章及第二類環境保護產品計畫」預算凍結五分之一之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 303, + "subitem": null, + "item": null, + "bill_id": "1030320071007400", + "bill_ref": "887G14717-978", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第2項決議(一),檢送「環境檢測機構推動及管理」之委辦費預算凍結50萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 304, + "subitem": null, + "item": null, + "bill_id": "1030320071006000", + "bill_ref": "887G14717-979", + "proposed_by": "行政院環境保護署", + "summary": "函,為103年度中央政府總預算該署主管第2項決議(二),檢送「環境檢測機構推動及管理」之國內旅費預算凍結10萬元之書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00309.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00309.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 305, + "subitem": null, + "item": null, + "bill_id": "1030324071002100", + "bill_ref": "887G14717-989", + "proposed_by": "國防部", + "summary": "函送「國軍軍紀維護工作精進作法」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 306, + "subitem": null, + "item": null, + "bill_id": "1030324071002300", + "bill_ref": "887G14717-991", + "proposed_by": "國防部", + "summary": "函送「102年志願士兵招募成效」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00311.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00311.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 307, + "subitem": null, + "item": null, + "bill_id": "1030410071000600", + "bill_ref": "887G14717-1151", + "proposed_by": "國防部", + "summary": "函送102年下半年「全民國防教育執行成效暨精進作法」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 308, + "subitem": null, + "item": null, + "bill_id": "1030324071003000", + "bill_ref": "887G14717-998", + "proposed_by": "經濟部", + "summary": "函送標準檢驗局103年度預算中審查費收入數編列合理性檢討報告專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 309, + "subitem": null, + "item": null, + "bill_id": "1030324071003100", + "bill_ref": "887G14717-999", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對中小企業處對國內中小企業面對「自由經濟示範區」計畫與兩岸服貿協議之衝擊因應策略與相關預算配置情形乙案,檢送專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 310, + "subitem": null, + "item": null, + "bill_id": "1030324071003200", + "bill_ref": "887G14717-1000", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送經濟部應檢討服務業輔導計畫間之協調整合,避免資源重複投入之專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 311, + "subitem": null, + "item": null, + "bill_id": "1030324071003300", + "bill_ref": "887G14717-1001", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送應就東部深層海水創新研發中心取水異常之情況,提出具體產業研發因應說明之專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 312, + "subitem": null, + "item": null, + "bill_id": "1030324071003400", + "bill_ref": "887G14717-1002", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十六)、(三十一)及(四十一),檢送備妥之專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 313, + "subitem": null, + "item": null, + "bill_id": "1030324071003500", + "bill_ref": "887G14717-1003", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「投資案件之審核及管理」經費凍結四分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 314, + "subitem": null, + "item": null, + "bill_id": "1030327071001400", + "bill_ref": "887G14717-1153", + "proposed_by": "經濟部", + "summary": "函送該部103年3月18日經授審字第10320711050號函公文勘誤表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 315, + "subitem": null, + "item": null, + "bill_id": "1030410071000700", + "bill_ref": "887G14717-1152", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署於101年年初移交東部發展深層海水取水設施後,即發生取水設施故障,迄今無法正常取水乙案,檢送專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 316, + "subitem": null, + "item": null, + "bill_id": "1030522071000100", + "bill_ref": "887G14717-1294", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「投資案件之審核及管理」經費凍結四分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 317, + "subitem": null, + "item": null, + "bill_id": "1030324071003700", + "bill_ref": "887G14717-1005", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「臺灣展演藝術科技化旗艦計畫」1,000萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 318, + "subitem": null, + "item": null, + "bill_id": "1030324071003800", + "bill_ref": "887G14717-1006", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「推展交響樂團業務」500萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 319, + "subitem": null, + "item": null, + "bill_id": "1030324071003900", + "bill_ref": "887G14717-1007", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「藝術創作、出版與人才培育之鼓勵及推廣」1,000萬元預算解凍書面說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 320, + "subitem": null, + "item": null, + "bill_id": "1030324071004200", + "bill_ref": "887G14717-1010", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「視覺藝術之輔導與推廣」500萬元預算解凍書面說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 321, + "subitem": null, + "item": null, + "bill_id": "1030324071004100", + "bill_ref": "887G14717-1009", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文化資產維護管理及再利用計畫」300萬元之書面說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 322, + "subitem": null, + "item": null, + "bill_id": "1030324071004000", + "bill_ref": "887G14717-1008", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「出版業務推動與輔導」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 323, + "subitem": null, + "item": null, + "bill_id": "1030324071003600", + "bill_ref": "887G14717-1004", + "proposed_by": "文化部", + "summary": "函送「價值產值化計畫─臺中文化創意產業園區」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 324, + "subitem": null, + "item": null, + "bill_id": "1030327071000400", + "bill_ref": "887G14717-1131", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「視覺藝術之輔導與推廣」之藝術銀行計畫凍結3,000萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 325, + "subitem": null, + "item": null, + "bill_id": "1030324071004300", + "bill_ref": "887G14717-1011", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國立海洋科技博物館之經營方針、組織運作、人員運用及預算規劃等相關事宜」之報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 326, + "subitem": null, + "item": null, + "bill_id": "1030417071000200", + "bill_ref": "887G14717-1171", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「十二年國民基本教育相關宣導作業執行成果與檢討」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 327, + "subitem": null, + "item": null, + "bill_id": "1030505071000200", + "bill_ref": "887G14717-1257", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「召開本土教育會、恢復本土語言納入年度訪視項目,並規劃母語師資培育方案」專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00332.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00332.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 328, + "subitem": null, + "item": null, + "bill_id": "1030514071001400", + "bill_ref": "887G14717-1271", + "proposed_by": "教育部", + "summary": "函送「高級中等以下學校特殊教育班班級及專責單位設置與人員進用辦法」修正報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00333.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00333.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 329, + "subitem": null, + "item": null, + "bill_id": "1030515071000300", + "bill_ref": "887G14717-1279", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關該部應於3個月內,確保各級學校校規皆不得違反憲法侵害人權,並於4個月內向本院教育及文化委員會進行專案報告乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 330, + "subitem": null, + "item": null, + "bill_id": "1030324071004600", + "bill_ref": "887G14717-1013", + "proposed_by": "勞動部", + "summary": "函送「就業安定基金102年度新增計畫關廠歇業經濟困難勞工紓困補貼實施計畫」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00335.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00335.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 331, + "subitem": null, + "item": null, + "bill_id": "1030324071004700", + "bill_ref": "887G14717-1015", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「一般行政」項下「基本行政工作維持」5,601萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 332, + "subitem": null, + "item": null, + "bill_id": "1030324071004800", + "bill_ref": "887G14717-1016", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「基本行政工作維持」編列「例行性、簡易性之行政工作或文書處理作業委外經費」343萬元、「委外辦理收發校繕工作、檔案建檔及掃瞄等費用」268萬8,000元,各凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 333, + "subitem": null, + "item": null, + "bill_id": "1030324071004900", + "bill_ref": "887G14717-1017", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「金融監理」2,444萬5,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00338.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00338.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 334, + "subitem": null, + "item": null, + "bill_id": "1030324071005600", + "bill_ref": "887G14717-1024", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結證券期貨局「一般建築及設備」項下「營建工程」350萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00339.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00339.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 335, + "subitem": null, + "item": null, + "bill_id": "1030324071005800", + "bill_ref": "887G14717-1026", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送檢查局「一般行政」項下「業務費」辦理資訊硬體設備保養803萬元、購置清潔用品及資訊設備耗材146萬6,000元,各凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 336, + "subitem": null, + "item": null, + "bill_id": "1030324071005900", + "bill_ref": "887G14717-1027", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結檢查局「業務費」項下「物品」237萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00341.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00341.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 337, + "subitem": null, + "item": null, + "bill_id": "1030324071005700", + "bill_ref": "887G14717-1025", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結保險局「一般行政」項下「行政、文書處理及檔案資料整理作業」委外經費152萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00342.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00342.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 338, + "subitem": null, + "item": null, + "bill_id": "1030324071005500", + "bill_ref": "887G14717-1023", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(一),檢送凍結銀行局「銀行監理」895萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00343.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00343.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 339, + "subitem": null, + "item": null, + "bill_id": "1030324071005000", + "bill_ref": "887G14717-1018", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二),檢送凍結銀行局「銀行監理」895萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00344.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00344.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 340, + "subitem": null, + "item": null, + "bill_id": "1030324071005100", + "bill_ref": "887G14717-1019", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第3項決議(一),檢送凍結證券期貨局「證券期貨市場監理」1,229萬3,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00345.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00345.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 341, + "subitem": null, + "item": null, + "bill_id": "1030324071005200", + "bill_ref": "887G14717-1020", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第3項決議(二),檢送凍結證券期貨局「證券期貨市場監理」1,229萬3,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 342, + "subitem": null, + "item": null, + "bill_id": "1030324071005300", + "bill_ref": "887G14717-1021", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(二),檢送凍結保險局「保險監理」735萬4,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00347.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00347.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 343, + "subitem": null, + "item": null, + "bill_id": "1030324071005400", + "bill_ref": "887G14717-1022", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(三),檢送凍結保險局「保險監理」735萬4,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00348.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00348.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 344, + "subitem": null, + "item": null, + "bill_id": "1030324071006000", + "bill_ref": "887G14717-1028", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第5項決議(三),檢送凍結檢查局「金融機構檢查」1,897萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00349.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00349.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 345, + "subitem": null, + "item": null, + "bill_id": "1030324071006100", + "bill_ref": "887G14717-1029", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算該會主管第5項決議(四),檢送凍結檢查局「金融機構檢查」1,897萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00350.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00350.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 346, + "subitem": null, + "item": null, + "bill_id": "1030324071006500", + "bill_ref": "887G14717-1032", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對原經建會「委辦費」刪減10萬元後,凍結該預算20%乙案,業已備妥解凍專案報告,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 347, + "subitem": null, + "item": null, + "bill_id": "1030324071006600", + "bill_ref": "887G14717-1033", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對原經建會「研擬國家發展計畫」預算凍結五分之一乙案,業已備妥解凍專案報告,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 348, + "subitem": null, + "item": null, + "bill_id": "1030325071000200", + "bill_ref": "887G14717-1055", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對「健全國土規劃及經營管理」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 349, + "subitem": null, + "item": null, + "bill_id": "1030325071000300", + "bill_ref": "887G14717-1056", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對原行政院研究發展考核委員會「綜合計畫」及「管制考核」各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 350, + "subitem": null, + "item": null, + "bill_id": "1030506071000300", + "bill_ref": "887G14717-1264", + "proposed_by": "國家發展委員會", + "summary": "函送「自由經濟示範區農業加值」相關政策與配套措施報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 351, + "subitem": null, + "item": null, + "bill_id": "1030514071001500", + "bill_ref": "887G14717-1272", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對「協調推動自由經濟示範區發展」預算1,748萬元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00356.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 352, + "subitem": null, + "item": null, + "bill_id": "1030514071001900", + "bill_ref": "887G14717-1276", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對「促進新興產業發展及產業創新升級」編列431萬8,000元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00357.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00357.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 353, + "subitem": null, + "item": null, + "bill_id": "1030324071006400", + "bill_ref": "887G14717-1034", + "proposed_by": "客家委員會", + "summary": "函,為103年度中央政府總預算決議,針對「綜合規劃發展」項下「辦理臺灣客家知識網暨線上申辦系統維運計畫」預算凍結二分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00358.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00358.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 354, + "subitem": null, + "item": null, + "bill_id": "1030505071000100", + "bill_ref": "887G14717-1256", + "proposed_by": "客家委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「客家特色產業創新發展計畫」97至102年執行成效,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00359.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00359.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 355, + "subitem": null, + "item": null, + "bill_id": "1030325071000400", + "bill_ref": "887G14717-1044", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結賦稅署「賦稅業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00360.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00360.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 356, + "subitem": null, + "item": null, + "bill_id": "1030325071000500", + "bill_ref": "887G14717-1045", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「國庫業務」項下「國庫資訊作業」之「資訊軟硬體設備費」預算2,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00361.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00361.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 357, + "subitem": null, + "item": null, + "bill_id": "1030325071000600", + "bill_ref": "887G14717-1046", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「公益彩券回饋金分配作業」之對特種基金之補助預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00362.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00362.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 358, + "subitem": null, + "item": null, + "bill_id": "1030325071000700", + "bill_ref": "887G14717-1047", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「公益彩券回饋金分配作業」之「對國內團體之捐助」預算乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00363.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00363.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 359, + "subitem": null, + "item": null, + "bill_id": "1030325071000800", + "bill_ref": "887G14717-1048", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結賦稅署「統一發票給獎及推行」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00364.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00364.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 360, + "subitem": null, + "item": null, + "bill_id": "1030325071000900", + "bill_ref": "887G14717-1049", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結臺北國稅局「一般行政」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00365.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00365.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 361, + "subitem": null, + "item": null, + "bill_id": "1030325071001000", + "bill_ref": "887G14717-1050", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結高雄國稅局「一般行政」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00366.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00366.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 362, + "subitem": null, + "item": null, + "bill_id": "1030325071001100", + "bill_ref": "887G14717-1051", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結北區國稅局及所屬「一般行政」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00367.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00367.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 363, + "subitem": null, + "item": null, + "bill_id": "1030325071001200", + "bill_ref": "887G14717-1052", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結中區國稅局及所屬「一般行政」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00368.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00368.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 364, + "subitem": null, + "item": null, + "bill_id": "1030325071001300", + "bill_ref": "887G14717-1053", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結南區國稅局及所屬「一般行政」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00369.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00369.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 365, + "subitem": null, + "item": null, + "bill_id": "1030327071000100", + "bill_ref": "887G14717-1097", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「一般行政」(人事費除外)預算三分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00370.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00370.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 366, + "subitem": null, + "item": null, + "bill_id": "1030327071000200", + "bill_ref": "887G14717-1098", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「基本行政工作維持」之「教育訓練費」預算100萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00371.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00371.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 367, + "subitem": null, + "item": null, + "bill_id": "1030327071000300", + "bill_ref": "887G14717-1099", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「基本行政工作維持」中「一般事務費」之各關外勤員工制服費預算十分之三乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00372.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00372.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 368, + "subitem": null, + "item": null, + "bill_id": "1030327071000500", + "bill_ref": "887G14717-1100", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「基本行政工作維持」中「業務費」之「特別費」預算四分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00373.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00373.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 369, + "subitem": null, + "item": null, + "bill_id": "1030327071000600", + "bill_ref": "887G14717-1101", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「基本行政工作維持」中「雜項設備費」預算二分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00374.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00374.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 370, + "subitem": null, + "item": null, + "bill_id": "1030327071000700", + "bill_ref": "887G14717-1102", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「關稅業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00375.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00375.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 371, + "subitem": null, + "item": null, + "bill_id": "1030327071000800", + "bill_ref": "887G14717-1103", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「稽徵業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00376.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00376.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 372, + "subitem": null, + "item": null, + "bill_id": "1030327071000900", + "bill_ref": "887G14717-1104", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「稽徵業務」中「其他業務租金」之車輛租金預算二分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00377.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00377.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 373, + "subitem": null, + "item": null, + "bill_id": "1030327071001000", + "bill_ref": "887G14717-1105", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「稽徵業務」中「一般事務費」之辦公室清潔費預算二分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00378.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00378.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 374, + "subitem": null, + "item": null, + "bill_id": "1030327071001100", + "bill_ref": "887G14717-1106", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署高雄關「一般行政」項下「基本行政工作維持」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00379.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00379.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 375, + "subitem": null, + "item": null, + "bill_id": "1030327071001200", + "bill_ref": "887G14717-1107", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產改良利用」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00380.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00380.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 376, + "subitem": null, + "item": null, + "bill_id": "1030327071001300", + "bill_ref": "887G14717-1108", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產業務」項下「國有公用財產」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00381.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00381.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 377, + "subitem": null, + "item": null, + "bill_id": "1030327071001500", + "bill_ref": "887G14717-1109", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結賦稅署及五區國稅局「稅務獎勵金」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00382.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00382.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 378, + "subitem": null, + "item": null, + "bill_id": "1030327071001600", + "bill_ref": "887G14717-1110", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結該部「財政人員訓練」項下「物品」所列購買學員用文具、衛生紙、洗手液、擦手紙等預算136萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00383.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00383.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 379, + "subitem": null, + "item": null, + "bill_id": "1030327071001700", + "bill_ref": "887G14717-1111", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結該部「促參業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00384.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00384.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 380, + "subitem": null, + "item": null, + "bill_id": "1030327071001800", + "bill_ref": "887G14717-1112", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結該部「投資事業股權移轉」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00385.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00385.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 381, + "subitem": null, + "item": null, + "bill_id": "1030327071001900", + "bill_ref": "887G14717-1113", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「基本行政工作維持」之「一般事務費」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00386.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00386.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 382, + "subitem": null, + "item": null, + "bill_id": "1030327071002000", + "bill_ref": "887G14717-1114", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「基本行政工作維持」之「資訊軟硬體設備費」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00387.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00387.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 383, + "subitem": null, + "item": null, + "bill_id": "1030327071002100", + "bill_ref": "887G14717-1115", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「國庫業務」項下「國庫及支付管理」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00388.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00388.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 384, + "subitem": null, + "item": null, + "bill_id": "1030327071002200", + "bill_ref": "887G14717-1116", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「國庫業務」項下「債務管理作業」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00389.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00389.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 385, + "subitem": null, + "item": null, + "bill_id": "1030327071002300", + "bill_ref": "887G14717-1117", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「國庫業務」項下「財務規劃作業」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00390.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00390.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 386, + "subitem": null, + "item": null, + "bill_id": "1030327071002400", + "bill_ref": "887G14717-1118", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國庫署「國庫業務」項下「菸酒管理作業」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00391.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00391.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 387, + "subitem": null, + "item": null, + "bill_id": "1030327071002500", + "bill_ref": "887G14717-1119", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結關務署及所屬「關務獎勵金」預算二分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00392.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00392.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 388, + "subitem": null, + "item": null, + "bill_id": "1030327071002600", + "bill_ref": "887G14717-1120", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算該部主管第9項決議(十四),針對凍結關務署及所屬「關稅業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00393.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00393.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 389, + "subitem": null, + "item": null, + "bill_id": "1030327071002800", + "bill_ref": "887G14717-1121", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算該部主管第9項決議(十五),針對凍結關務署及所屬「關稅業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00394.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00394.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 390, + "subitem": null, + "item": null, + "bill_id": "1030327071003000", + "bill_ref": "887G14717-1122", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「基本行政工作維持」之辦理員工健康檢查、辦公廳舍環境清潔、購置書報雜誌、獎牌製作及落實推動業務委外等一般事務費預算十分之三乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00395.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00395.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 391, + "subitem": null, + "item": null, + "bill_id": "1030327071003100", + "bill_ref": "887G14717-1123", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產業務」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00396.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00396.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 392, + "subitem": null, + "item": null, + "bill_id": "1030327071003200", + "bill_ref": "887G14717-1124", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產接收保管」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00397.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00397.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 393, + "subitem": null, + "item": null, + "bill_id": "1030327071003300", + "bill_ref": "887G14717-1125", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產接收保管」之未登記地清理預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00398.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00398.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 394, + "subitem": null, + "item": null, + "bill_id": "1030327071003400", + "bill_ref": "887G14717-1126", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產業務」(人事、行政經費除外)預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00399.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00399.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 395, + "subitem": null, + "item": null, + "bill_id": "1030327071003500", + "bill_ref": "887G14717-1127", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結國有財產署及所屬「國有財產接收保管」之辦理接管國有非公用財產預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00400.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00400.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 396, + "subitem": null, + "item": null, + "bill_id": "1030327071003700", + "bill_ref": "887G14717-1128", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算該部主管第10項決議(五),針對凍結國有財產署及所屬「被占用國有非公用不動產加強清理計畫」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00401.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00401.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 397, + "subitem": null, + "item": null, + "bill_id": "1030327071003600", + "bill_ref": "887G14717-1129", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算該部主管第10項決議(九),針對凍結國有財產署及所屬「被占用國有非公用不動產加強清理計畫」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00402.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00402.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 398, + "subitem": null, + "item": null, + "bill_id": "1030327071003800", + "bill_ref": "887G14717-1130", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對凍結財政資訊中心「推動電子發票,創造智慧好生活計畫」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00403.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00403.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 399, + "subitem": null, + "item": null, + "bill_id": "1030502071002700", + "bill_ref": "887G14717-1215", + "proposed_by": "財政部", + "summary": "函送「政府如何積極改善財政,避免財政過度依賴中央銀行繳庫」改善計畫,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00404.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00404.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 400, + "subitem": null, + "item": null, + "bill_id": "1030327071003900", + "bill_ref": "887G14717-1132", + "proposed_by": "行政院大陸委員會", + "summary": "函,為103年度中央政府總預算決議,檢送該會103年度委辦經費細目,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00405.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00405.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 401, + "subitem": null, + "item": null, + "bill_id": "1030327071004000", + "bill_ref": "887G14717-1133", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業試驗所「農業數位化發展-國土資訊系統整體建置」分10年辦理,然未依實際情形滾動檢討核修預算數,要求提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00406.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00406.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 402, + "subitem": null, + "item": null, + "bill_id": "1030403071001100", + "bill_ref": "887G14717-1141", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應確實檢討現行認證制度實際執行效益與預算分配規劃,及早落實推動農產品產銷履歷制度,並向本院經濟委員會提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00407.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00407.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 403, + "subitem": null, + "item": null, + "bill_id": "1030417071000500", + "bill_ref": "887G14717-1174", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應提出中國大陸對我國農業及農產品國際競爭力之影響與因應報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00408.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00408.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 404, + "subitem": null, + "item": null, + "bill_id": "1030417071000600", + "bill_ref": "887G14717-1175", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應重新檢討農業西進及推動自由經濟示範區對本土農業影響與因應乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00409.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00409.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 405, + "subitem": null, + "item": null, + "bill_id": "1030417071000700", + "bill_ref": "887G14717-1176", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,應針對臺商在中國大陸農業投資進行檢討乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00410.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00410.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 406, + "subitem": null, + "item": null, + "bill_id": "1030417071001300", + "bill_ref": "887G14717-1177", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應全面檢討審視我國農業政策及經費配置,並將檢討報告送交本院經濟委員會乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00411.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00411.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 407, + "subitem": null, + "item": null, + "bill_id": "1030417071001400", + "bill_ref": "887G14717-1178", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應檢討農業長期以來「零成長」問題,並向本院經濟委員會提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00412.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00412.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 408, + "subitem": null, + "item": null, + "bill_id": "1030502071002900", + "bill_ref": "887G14717-1255", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林業試驗所經管不動產目前被占用土地及建物共8筆,應依規定積極清理,於3個月內提出改善計畫乙案,業己備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00413.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00413.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 409, + "subitem": null, + "item": null, + "bill_id": "1030514071001600", + "bill_ref": "887G14717-1273", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,檢送調整耕作制度活化農地計畫專案報告,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00414.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00414.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 410, + "subitem": null, + "item": null, + "bill_id": "1030514071001700", + "bill_ref": "887G14717-1274", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對轄下財團法人之整併、捐補助與營運狀況進行通盤檢討,於103年5月底向本院經濟委員會提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00415.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00415.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 411, + "subitem": null, + "item": null, + "bill_id": "1030514071001800", + "bill_ref": "887G14717-1275", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求確實檢討各農業財團法人設置效能與年度營運績效,明確訂定整併或解散之退場考核認定標準,向本院經濟委員會提出專案檢討報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00416.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00416.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 412, + "subitem": null, + "item": null, + "bill_id": "1030515071000200", + "bill_ref": "887G14717-1278", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應參酌歐盟模式,於3個月內規劃「產品地理標示保護制度」向本院經濟委員會提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00417.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00417.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 413, + "subitem": null, + "item": null, + "bill_id": "1030515071000400", + "bill_ref": "887G14717-1283", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對應提出農業所得未能提升之檢討報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00418.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00418.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 414, + "subitem": null, + "item": null, + "bill_id": "1030521071000100", + "bill_ref": "887G14717-1289", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求立即公布家畜衛生試驗所之狂犬病動物試驗計畫書,並擴大專家參與討論,以檢視其必要性與防疫效益,並至本院經濟委員會報告經同意後始得辦理該計畫乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00419.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00419.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 415, + "subitem": null, + "item": null, + "bill_id": "1030327071004100", + "bill_ref": "887G14717-1134", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,檢送公路總局「台13線大坪頂段截彎取直工程」辦理期程地方說明會會議紀錄及解凍案說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00420.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00420.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 416, + "subitem": null, + "item": null, + "bill_id": "1030403071001200", + "bill_ref": "887G14717-1142", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,凍結「災害性天氣監測與預報作業建置計畫」編列3億元之五分之一,需向本院交通委員會提出書面報告後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00421.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00421.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 417, + "subitem": null, + "item": null, + "bill_id": "1030409071000100", + "bill_ref": "887G14717-1144", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,有關「地震測報」項下「委辦費」編列2,185萬元,刪減50萬元並凍結五分之一,需向本院交通委員會提出書面報告後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00422.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00422.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 418, + "subitem": null, + "item": null, + "bill_id": "1030409071000200", + "bill_ref": "887G14717-1145", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,有關「氣象科技研究」項下「強化災害性即時天氣預報計畫」4,023萬1,000元,凍結五分之一,俟將改善書面報告送本院交通委員會後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00423.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00423.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 419, + "subitem": null, + "item": null, + "bill_id": "1030409071000300", + "bill_ref": "887G14717-1146", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,有關「氣象科技研究」項下新增「氣候變遷應用服務能力發展計畫」編列2,530萬2,000元,凍結三分之一,俟向本院交通委員會提出書面報告後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00424.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00424.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 420, + "subitem": null, + "item": null, + "bill_id": "1030410071002200", + "bill_ref": "887G14717-1169", + "proposed_by": "交通部", + "summary": "函送公路總局有關「國道客運營運爭議」與「遊覽大客車輛識別措施」辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00425.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00425.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 421, + "subitem": null, + "item": null, + "bill_id": "1030410071002300", + "bill_ref": "887G14717-1170", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(二),檢送觀光局書面報告說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00426.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00426.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 422, + "subitem": null, + "item": null, + "bill_id": "1030417071001500", + "bill_ref": "887G14717-1179", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,有關民用航空局「一般行政-人員維持」編列3億728萬2,000元,凍結十分之一,俟向本院交通委員會提出書面報告後始得動支乙案,檢送相關書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00427.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00427.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 423, + "subitem": null, + "item": null, + "bill_id": "1030417071001600", + "bill_ref": "887G14717-1180", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,有關民用航空局「一般行政-基本行政工作維持」編列「業務費」214萬6,000元凍結三分之一,俟向本院交通委員會提出書面報告後,始得動支乙案,檢送相關書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00428.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00428.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 424, + "subitem": null, + "item": null, + "bill_id": "1030417071001700", + "bill_ref": "887G14717-1181", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結觀光局「觀光業務」預算之書面報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00429.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00429.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 425, + "subitem": null, + "item": null, + "bill_id": "1030502071002800", + "bill_ref": "887G14717-1216", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第2項決議(三),「空運及航管業務-業務費」24萬6,000元,全數凍結,待民用航空局向本院交通委員會提出書面報告後始得動支乙案,檢送相關書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00430.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00430.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 426, + "subitem": null, + "item": null, + "bill_id": "1030403071000800", + "bill_ref": "887G14717-1138", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送有效防制大陸毒品計畫作為及具體積極改善成果報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00431.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00431.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 427, + "subitem": null, + "item": null, + "bill_id": "1030514071001300", + "bill_ref": "887G14717-1270", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送關於租賃房舍作為檢察官職務宿舍之數量、租金與使用狀況進行檢討及調查之報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00432.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00432.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 428, + "subitem": null, + "item": null, + "bill_id": "1030403071000900", + "bill_ref": "887G14717-1139", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十五),請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00433.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00433.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 429, + "subitem": null, + "item": null, + "bill_id": "1030403071001300", + "bill_ref": "887G14717-1143", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「建立常態化跨部會基礎網路協調機制」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00434.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00434.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 430, + "subitem": null, + "item": null, + "bill_id": "1030409071000400", + "bill_ref": "887G14717-1147", + "proposed_by": "蒙藏委員會", + "summary": "函,為103年度中央政府總預算決議,針對「藏事業務」預算凍結十分之一,俟協調改善藏籍配偶應視同其他外配入境、歸化條件等相關規劃,向本院內政委員會報告並經同意後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00435.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00435.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 431, + "subitem": null, + "item": null, + "bill_id": "1030409071000500", + "bill_ref": "887G14717-1148", + "proposed_by": "蒙藏委員會", + "summary": "函,為103年度中央政府總預算決議,針對「蒙事業務─推動與大陸地區及全球蒙族聚居地區交流」預算凍結100萬元,俟向本院內政委員會提出辦理電影展覽之規劃方向及具體內容並經同意後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00436.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00436.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 432, + "subitem": null, + "item": null, + "bill_id": "1030409071000600", + "bill_ref": "887G14717-1149", + "proposed_by": "蒙藏委員會", + "summary": "函,為103年度中央政府總預算決議,針對「獎補助費」698萬4,000元,凍結三分之一,俟向本院內政委員會提出檢討2008年至今獎補助案執行成效暨建立日後審查考核機制報告並經同意後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00437.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00437.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 433, + "subitem": null, + "item": null, + "bill_id": "1030410071000500", + "bill_ref": "887G14717-1154", + "proposed_by": "行政院人事行政總處", + "summary": "函送「配合組改中央機關簡任官等職務變動情形」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00438.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00438.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 434, + "subitem": null, + "item": null, + "bill_id": "1030417071000300", + "bill_ref": "887G14717-1172", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理我國海洋權益主張成果展示工作」經費520萬元,凍結三分之一,俟向本院內政委員會報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00439.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00439.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 435, + "subitem": null, + "item": null, + "bill_id": "1030418071000100", + "bill_ref": "887G14717-1183", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理不動產成交案件實際資訊申報登錄所需經費」原列832萬5,000元(法定預算數752萬5,000元),凍結二分之一,俟向本院內政委員會提出報告經同意後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00440.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00440.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 436, + "subitem": null, + "item": null, + "bill_id": "1030516071000500", + "bill_ref": "887G14717-1288", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「國土測繪資料整合」預算凍結四分之一,俟向本院內政委員會提出專案報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00441.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00441.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 437, + "subitem": null, + "item": null, + "bill_id": "1030417071001800", + "bill_ref": "887G14717-1182", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送「故宮南院作為大故宮計畫替代方案之研究專案報告」,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00442.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00442.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 438, + "subitem": null, + "item": null, + "bill_id": "1030506071000100", + "bill_ref": "887G14717-1262", + "proposed_by": "飛航安全調查委員會", + "summary": "函,為103年度中央政府總預算行政院主管第15項決議(一),凍結該會103年度預算之五分之一,向本院交通委員會提出報告後始得動支乙案,檢送該會人事編制說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00443.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00443.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 439, + "subitem": null, + "item": null, + "bill_id": "1030506071000200", + "bill_ref": "887G14717-1263", + "proposed_by": "飛航安全調查委員會", + "summary": "函,為103年度中央政府總預算行政院主管第15項決議(八),凍結該會103年度歲出預算之五分之一,向本院交通委員會提出報告後始得動支乙案,檢送該會人事編制及飛安業務檢討改進報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00444.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00444.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 440, + "subitem": null, + "item": null, + "bill_id": "1030516071000100", + "bill_ref": "887G14717-1282", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議(一),檢送說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00445.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00445.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 441, + "subitem": null, + "item": null, + "bill_id": "1030516071000200", + "bill_ref": "887G14717-1284", + "proposed_by": "監察院", + "summary": "函,為103年度中央政府總預算決議,凍結「調查巡察業務」經費2,174萬1,000元之五分之一,並就所附決議向本院司法及法制委員會報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00446.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00446.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 442, + "subitem": null, + "item": null, + "bill_id": "1030516071000300", + "bill_ref": "887G14717-1285", + "proposed_by": "監察院", + "summary": "函,為103年度中央政府總預算決議,凍結「一般行政」項下人員維持費外之經費五分之一,並就所附決議向本院司法及法制委員會報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00447.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00447.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 443, + "subitem": null, + "item": null, + "bill_id": "1030516071000400", + "bill_ref": "887G14717-1286", + "proposed_by": "監察院", + "summary": "函,為103年度中央政府總預算決議,凍結「派員出國計畫」預算經費五分之一,並就所附決議向本院司法及法制委員會報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00448.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00448.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 444, + "subitem": null, + "item": null, + "bill_id": "1030516071000600", + "bill_ref": "887G14717-1287", + "proposed_by": "監察院", + "summary": "函,為103年度中央政府總預算決議,凍結「基本行政工作維持」業務費之四分之一,並就所附決議向本院司法及法制委員會報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00449.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00449.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 445, + "subitem": null, + "item": null, + "bill_id": "1030410071002000", + "bill_ref": "887G14717-1167", + "proposed_by": "行政院大陸委員會", + "summary": "函,為103年度中央政府總預算決議,有關「企劃業務」編列4,363萬8,000元凍結五分之一,俟公布與大陸服貿協議、貨貿協議談判會議紀錄並經本院內政委員會同意後始得動支乙案,檢送解凍書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/add/08/05/11/LCEWA01_080511_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/add/08/05/11/LCEWA01_080511_00018.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 446, + "subitem": null, + "item": null, + "bill_id": "1030218071001400", + "bill_ref": "887G14717-122", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會及勞工退休基金監理會之業務費(除收支併列部分外)預算凍結四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00077.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 447, + "subitem": null, + "item": null, + "bill_id": "1030218071001500", + "bill_ref": "887G14717-123", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管決議(三),針對該會、職業訓練局及所屬因應貿易自由化就業發展及協助預算凍結五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00078.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 448, + "subitem": null, + "item": null, + "bill_id": "1030218071001800", + "bill_ref": "887G14717-126", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二),凍結「勞工保險業務」預算1億元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00081.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 449, + "subitem": null, + "item": null, + "bill_id": "1030218071001900", + "bill_ref": "887G14717-127", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三),凍結「研議承保及現金給付業務」預算六分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00082.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 450, + "subitem": null, + "item": null, + "bill_id": "1030218071002000", + "bill_ref": "887G14717-128", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(四),凍結「研議承保及現金給付業務」預算六分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00083.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 451, + "subitem": null, + "item": null, + "bill_id": "1030218071002500", + "bill_ref": "887G14717-133", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九),凍結「勞資關係業務」項下「強化勞資夥伴關係」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00088.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 452, + "subitem": null, + "item": null, + "bill_id": "1030218071002700", + "bill_ref": "887G14717-135", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十一),凍結「勞動條件業務」業務費預算200萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00090.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 453, + "subitem": null, + "item": null, + "bill_id": "1030218071003100", + "bill_ref": "887G14717-139", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十五),凍結「健全合理工資、工時制度」預算30萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00094.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 454, + "subitem": null, + "item": null, + "bill_id": "1030218071003200", + "bill_ref": "887G14717-140", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十六),凍結「健全合理工資、工時制度」預算30萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00095.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 455, + "subitem": null, + "item": null, + "bill_id": "1030218071003400", + "bill_ref": "887G14717-142", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十八),凍結「勞工福利業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00097.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 456, + "subitem": null, + "item": null, + "bill_id": "1030218071003700", + "bill_ref": "887G14717-145", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十一),凍結「勞工福利業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00100.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 457, + "subitem": null, + "item": null, + "bill_id": "1030218071003900", + "bill_ref": "887G14717-147", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十三),凍結「勞工安全衛生業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00102.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 458, + "subitem": null, + "item": null, + "bill_id": "1030218071004400", + "bill_ref": "887G14717-152", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十八),凍結「勞工檢查業務」(不含「危險性機械及設備檢查與管理」)預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00107.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 459, + "subitem": null, + "item": null, + "bill_id": "1030218071004600", + "bill_ref": "887G14717-154", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三十),凍結「推動研究發展」、「強化計畫管考」及「強化勞動力規劃及組織效能」預算20萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00109.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 460, + "subitem": null, + "item": null, + "bill_id": "1030218071004700", + "bill_ref": "887G14717-155", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三十一),凍結「檢查所管理」預算300萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00110.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 461, + "subitem": null, + "item": null, + "bill_id": "1030218071004800", + "bill_ref": "887G14717-156", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三十二),凍結「檢查所管理」預算300萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00111.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 462, + "subitem": null, + "item": null, + "bill_id": "1030218071004900", + "bill_ref": "887G14717-157", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十一),凍結業務費(除收支併列部分外)預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00112.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 463, + "subitem": null, + "item": null, + "bill_id": "1030218071005500", + "bill_ref": "887G14717-161", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十五),凍結「一般行政」(除人事費及行政費外)預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00116.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 464, + "subitem": null, + "item": null, + "bill_id": "1030218071005600", + "bill_ref": "887G14717-162", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十六),凍結「基本行政工作維持」預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00117.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 465, + "subitem": null, + "item": null, + "bill_id": "1030218071005700", + "bill_ref": "887G14717-163", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十七),凍結「勞工資訊業務」預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 466, + "subitem": null, + "item": null, + "bill_id": "1030218071005900", + "bill_ref": "887G14717-165", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十九),凍結「健全勞資爭議處理制度」業務費預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 467, + "subitem": null, + "item": null, + "bill_id": "1030218071006100", + "bill_ref": "887G14717-167", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九十一),凍結「勞動條件業務」預算1,000萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 468, + "subitem": null, + "item": null, + "bill_id": "1030218071007500", + "bill_ref": "887G14717-181", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十二),針對「就業服務」推動並督導就業服務業務預算凍結十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 469, + "subitem": null, + "item": null, + "bill_id": "1030219071000100", + "bill_ref": "887G14717-188", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十九),針對「職訓中心管理」扣除「辦理職前訓練」後之預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 470, + "subitem": null, + "item": null, + "bill_id": "1030219071000700", + "bill_ref": "887G14717-194", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十五),針對「就服中心管理」扣除「辦理就業服務」後之預算凍結十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 471, + "subitem": null, + "item": null, + "bill_id": "1030219071000800", + "bill_ref": "887G14717-195", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(四十六),凍結職業訓練局及所屬「一般行政」預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 472, + "subitem": null, + "item": null, + "bill_id": "1030219071001100", + "bill_ref": "887G14717-198", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(三),凍結「勞工退休基金監理業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 473, + "subitem": null, + "item": null, + "bill_id": "1030219071001200", + "bill_ref": "887G14717-199", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(四),凍結「勞工退休基金監理業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 474, + "subitem": null, + "item": null, + "bill_id": "1030219071001300", + "bill_ref": "887G14717-200", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(五),針對勞工退休基金監理會「一般行政」(除人事費及行政費外)預算凍結五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 475, + "subitem": null, + "item": null, + "bill_id": "1030221071003200", + "bill_ref": "887G14717-261", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」原列6,500萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 476, + "subitem": null, + "item": null, + "bill_id": "1030221071003400", + "bill_ref": "887G14717-263", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」下推動大陸地區交流平臺及文化前瞻論壇計畫1,275萬5,000元、赴大陸地區或港澳地區參加兩岸文化交流活動224萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 477, + "subitem": null, + "item": null, + "bill_id": "1030221071003600", + "bill_ref": "887G14717-265", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」編列「推動大陸地區交流平臺及文化前瞻論壇計畫」1,275萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 478, + "subitem": null, + "item": null, + "bill_id": "1030221071003800", + "bill_ref": "887G14717-267", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」編列赴大陸地區或港澳地區參加兩岸文化交流活動、考察訪視文化行政部門運作及籌備兩岸論壇活動辦理事宜224萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 479, + "subitem": null, + "item": null, + "bill_id": "1030221071004000", + "bill_ref": "887G14717-269", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸交流事務推展」原列358萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 480, + "subitem": null, + "item": null, + "bill_id": "1030225071000100", + "bill_ref": "887G14717-371", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「資料使用費」之統計資料使用費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 481, + "subitem": null, + "item": null, + "bill_id": "1030225071000200", + "bill_ref": "887G14717-372", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「場地設施使用費」之資料加值應用場地設施使用費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 482, + "subitem": null, + "item": null, + "bill_id": "1030225071000300", + "bill_ref": "887G14717-373", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「使用規費收入」下「服務費」之資料加值應用服務費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 483, + "subitem": null, + "item": null, + "bill_id": "1030225071000400", + "bill_ref": "887G14717-374", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(一),針對該部預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 484, + "subitem": null, + "item": null, + "bill_id": "1030225071000800", + "bill_ref": "887G14717-376", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 485, + "subitem": null, + "item": null, + "bill_id": "1030225071000900", + "bill_ref": "887G14717-377", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(四),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 486, + "subitem": null, + "item": null, + "bill_id": "1030225071001100", + "bill_ref": "887G14717-379", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(六),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 487, + "subitem": null, + "item": null, + "bill_id": "1030225071000600", + "bill_ref": "887G14717-380", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七),針對「以醫療科技評估建置衛生資源分配機制」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 488, + "subitem": null, + "item": null, + "bill_id": "1030225071001400", + "bill_ref": "887G14717-381", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八),針對「衛生與社會福利統計應用研究及健康加值應用雲端化服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 489, + "subitem": null, + "item": null, + "bill_id": "1030225071001500", + "bill_ref": "887G14717-382", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(九),針對「衛生與社會福利統計應用研究及健康加值應用雲端化服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 490, + "subitem": null, + "item": null, + "bill_id": "1030225071001700", + "bill_ref": "887G14717-383", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十),針對「數位資訊醫療之推動與整合」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 491, + "subitem": null, + "item": null, + "bill_id": "1030225071001800", + "bill_ref": "887G14717-384", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十一),針對「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 492, + "subitem": null, + "item": null, + "bill_id": "1030225071001900", + "bill_ref": "887G14717-385", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十二),針對「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 493, + "subitem": null, + "item": null, + "bill_id": "1030225071002000", + "bill_ref": "887G14717-386", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十三),針對「醫衛生命科技研究計畫」之獎補助費(人事費除外)預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 494, + "subitem": null, + "item": null, + "bill_id": "1030225071002100", + "bill_ref": "887G14717-387", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十四),針對「各疾病研究領域之生物分子鏢靶新藥研究與開發計畫」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 495, + "subitem": null, + "item": null, + "bill_id": "1030225071002400", + "bill_ref": "887G14717-388", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十五),針對「社會保險行政工作」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 496, + "subitem": null, + "item": null, + "bill_id": "1030225071002200", + "bill_ref": "887G14717-389", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十六),針對「全民健康保險業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 497, + "subitem": null, + "item": null, + "bill_id": "1030225071002300", + "bill_ref": "887G14717-390", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十七),針對「長期照護保險籌備工作」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 498, + "subitem": null, + "item": null, + "bill_id": "1030225071002900", + "bill_ref": "887G14717-395", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十二),針對「加強心理健康促進工作」辦理全國自殺防治中心業務預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 499, + "subitem": null, + "item": null, + "bill_id": "1030225071003300", + "bill_ref": "887G14717-396", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十三),針對「護理及健康照護業務」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 500, + "subitem": null, + "item": null, + "bill_id": "1030225071003600", + "bill_ref": "887G14717-399", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十六),針對「中醫藥業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 501, + "subitem": null, + "item": null, + "bill_id": "1030225071003700", + "bill_ref": "887G14717-400", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十七),針對「醫院營運輔導」預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 502, + "subitem": null, + "item": null, + "bill_id": "1030225071003900", + "bill_ref": "887G14717-406", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十一),針對「醫政業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 503, + "subitem": null, + "item": null, + "bill_id": "1030225071005400", + "bill_ref": "887G14717-407", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十二),針對「醫政業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 504, + "subitem": null, + "item": null, + "bill_id": "1030225071003100", + "bill_ref": "887G14717-409", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十四),針對「護理及健康照護業務」之業務費(長照十年計畫除外)預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 505, + "subitem": null, + "item": null, + "bill_id": "1030225071005600", + "bill_ref": "887G14717-413", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二),針對「食品安全管制科技發展計畫」之提升國內食品衛生水準,確保食品之安全性,以維護國人健康之委辦費預算凍結2,500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 506, + "subitem": null, + "item": null, + "bill_id": "1030225071005700", + "bill_ref": "887G14717-414", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(三),針對「食品安全管制科技發展計畫」之落實源頭管理,進行食品攙偽及物種鑑別之研究,基因改造食品之調查等等計畫預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 507, + "subitem": null, + "item": null, + "bill_id": "1030225071005900", + "bill_ref": "887G14717-415", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(四),針對「基本工作維持」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 508, + "subitem": null, + "item": null, + "bill_id": "1030225071006500", + "bill_ref": "887G14717-418", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(七),針對「藥品及新興生技藥品管理業務」之委辦費預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 509, + "subitem": null, + "item": null, + "bill_id": "1030225071006700", + "bill_ref": "887G14717-419", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(八),針對「藥品及新興生技藥品管理業務」之辦理藥品查驗登記業務之委辦費預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 510, + "subitem": null, + "item": null, + "bill_id": "1030225071006600", + "bill_ref": "887G14717-421", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十),針對「區管理中心業務」辦理輸入食品查驗業務預算凍結3,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 511, + "subitem": null, + "item": null, + "bill_id": "1030225071004000", + "bill_ref": "887G14717-422", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十一),針對「區管理中心業務」之委辦費預算凍結350萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 512, + "subitem": null, + "item": null, + "bill_id": "1030225071004100", + "bill_ref": "887G14717-423", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十二),針對「區管理中心業務」辦理輸入食品查驗業務之大陸地區旅費預算凍結20萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 513, + "subitem": null, + "item": null, + "bill_id": "1030225071006000", + "bill_ref": "887G14717-424", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十八),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 514, + "subitem": null, + "item": null, + "bill_id": "1030225071006100", + "bill_ref": "887G14717-425", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十九),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 515, + "subitem": null, + "item": null, + "bill_id": "1030225071006200", + "bill_ref": "887G14717-426", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(三十),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 516, + "subitem": null, + "item": null, + "bill_id": "1030225071004200", + "bill_ref": "887G14717-427", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(一),針對「一般行政」(不包括人員維持)預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 517, + "subitem": null, + "item": null, + "bill_id": "1030225071004400", + "bill_ref": "887G14717-428", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(二),針對「健保業務」預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 518, + "subitem": null, + "item": null, + "bill_id": "1030225071004300", + "bill_ref": "887G14717-429", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三),針對「健保業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 519, + "subitem": null, + "item": null, + "bill_id": "1030225071004500", + "bill_ref": "887G14717-430", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第5項決議(一),針對國民健康署「基本行政工作維持」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 520, + "subitem": null, + "item": null, + "bill_id": "1030304071003400", + "bill_ref": "887G14717-628", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「海外華僑文教中心服務業務」項下「設置巴黎華僑文教服務中心計畫」預算凍結五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 521, + "subitem": null, + "item": null, + "bill_id": "1030522071001800", + "bill_ref": "1798G13511-2", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「地熱能發電系統示範獎勵辦法」案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00526.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00526.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 522, + "subitem": null, + "item": null, + "bill_id": "1030522071001900", + "bill_ref": "1554G4580-15", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部為修正「在大陸地區從事投資或技術合作許可辦法」第四條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00527.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00527.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 523, + "subitem": null, + "item": null, + "bill_id": "1030522071002000", + "bill_ref": "1534G9008-13", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部為修正「原產地證明書及加工證明書管理辦法」第九條及第九條之一條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00528.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00528.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 524, + "subitem": null, + "item": null, + "bill_id": "1030522071002100", + "bill_ref": "917G3662-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「保安林經營準則」第四條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00529.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00529.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 525, + "subitem": null, + "item": null, + "bill_id": "1030522071002200", + "bill_ref": "1534G8958-19", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部為修正「辦理推廣貿易業務補助辦法」部分條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00530.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00530.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 526, + "subitem": null, + "item": null, + "bill_id": "1030522071002300", + "bill_ref": "917G9959-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「保安林解除審核標準」第二條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00531.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00531.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 527, + "subitem": null, + "item": null, + "bill_id": "1030522071002400", + "bill_ref": "1539G12274-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部為修正「經濟部所屬產業園區管理機構人事管理辦法」部分條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00532.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00532.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 528, + "subitem": null, + "item": null, + "bill_id": "1030522071002500", + "bill_ref": "959G3717-11", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「農會人事管理辦法」部分條文及第二十三條附表四乙案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00533.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00533.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 529, + "subitem": null, + "item": null, + "bill_id": "1030522071002600", + "bill_ref": "917G10007-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「森林保護辦法」部分條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00534.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00534.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 530, + "subitem": null, + "item": null, + "bill_id": "1030522071002700", + "bill_ref": "917G7593-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「山坡地開發利用回饋金繳交辦法」第八條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00535.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00535.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 531, + "subitem": null, + "item": null, + "bill_id": "1030522071002800", + "bill_ref": "1760G8167-7", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「行政院農業委員會科學技術研究發展成果歸屬及運用辦法」第一條及第二十二條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00536.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00536.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 532, + "subitem": null, + "item": null, + "bill_id": "1030522071002900", + "bill_ref": "1470G9877-10", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「水土保持計畫審核監督辦法」第八條之一、第十九條及第二十條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00537.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00537.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 533, + "subitem": null, + "item": null, + "bill_id": "1030522071003100", + "bill_ref": "1182G2373-20", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「擴大家庭農場經營規模協助農民購買耕地貸款辦法」第六條條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00538.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00538.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 534, + "subitem": null, + "item": null, + "bill_id": "1030522071003200", + "bill_ref": "959G9609-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「農會漁會信用部業務管理辦法」部分條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00539.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00539.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 535, + "subitem": null, + "item": null, + "bill_id": "1030522071003300", + "bill_ref": "285G12435-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「農村再生計畫審核及執行監督辦法」第九條條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00540.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00540.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 536, + "subitem": null, + "item": null, + "bill_id": "1030522071003400", + "bill_ref": "810G2835-43", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「動物用藥品檢驗標準」部分條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00541.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00541.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 537, + "subitem": null, + "item": null, + "bill_id": "1030522071003500", + "bill_ref": "815G4621-14", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「娛樂漁業管理辦法」案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00542.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00542.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 538, + "subitem": null, + "item": null, + "bill_id": "1030522071003600", + "bill_ref": "234G5245-13", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「農田水利會人事管理規則」第三十五條條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00543.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00543.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 539, + "subitem": null, + "item": null, + "bill_id": "1030522071003700", + "bill_ref": "1570G14579-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查公平交易委員會函送「多層次傳銷業訂定個人資料檔案安全維護計畫及業務終止後個人資料處理方法作業辦法」案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00544.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00544.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 540, + "subitem": null, + "item": null, + "bill_id": "1030522071003800", + "bill_ref": "972G8493-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「漁會出資或投資審核辦法」部分條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00545.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00545.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 541, + "subitem": null, + "item": null, + "bill_id": "1030522071003900", + "bill_ref": "293G7204-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「農田水利會會務委員會議事規則」案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00546.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00546.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 542, + "subitem": null, + "item": null, + "bill_id": "1030522071004000", + "bill_ref": "1539G12741-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部為修正「公用天然氣事業會計處理準則」部分條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00547.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00547.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 543, + "subitem": null, + "item": null, + "bill_id": "1030522071004100", + "bill_ref": "959G8166-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「農會出資或投資審核辦法」第六條之一條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00548.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00548.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 544, + "subitem": null, + "item": null, + "bill_id": "1030522071004200", + "bill_ref": "1053G14332-38", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部為修正「在大陸地區從事商業行為應經許可或禁止之事項公告項目表」案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00549.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00549.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 545, + "subitem": null, + "item": null, + "bill_id": "1030522071004300", + "bill_ref": "815G11070-7", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會為修正「漁船運搬養殖活魚管理辦法」部分條文案,經提本院第8屆第4會期第18次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00550.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00550.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 546, + "subitem": null, + "item": null, + "bill_id": "1030522071003000", + "bill_ref": "1204G9834-3", + "proposed_by": "本院經濟、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查行政院農業委員會、行政院衛生署函為修正「實際從事漁業工作者申請參加全民健康保險認定標準及資格審查辦法」第一條條文案,經提本院第8屆第4會期第17次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00551.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00551.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 547, + "subitem": null, + "item": null, + "bill_id": "1030519071001700", + "bill_ref": "1053G14332-34", + "proposed_by": "本院社會福利及衛生環境、經濟兩委員會", + "summary": "函,為院會交付審查行政院衛生署及公平交易委員會函送「全民健康保險藥品交易定型化契約範本」等2案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00552.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00552.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 548, + "subitem": null, + "item": null, + "bill_id": "1030519071001800", + "bill_ref": "1142G11990-2", + "proposed_by": "本院社會福利及衛生環境、交通兩委員會", + "summary": "函,為院會交付審查行政院環境保護署、交通部函為修正「陸上運輸系統噪音管制標準」第二條及第三條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00553.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00553.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 549, + "subitem": null, + "item": null, + "bill_id": "1030519071001900", + "bill_ref": "1053G14332-35", + "proposed_by": "本院社會福利及衛生環境、外交及國防兩委員會", + "summary": "函,為院會交付審查行政院勞工委員會及國防部函為修正「勞資爭議處理法第五十四條第二項第二款國防部及其所屬機關構學校之範圍」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00554.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00554.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 550, + "subitem": null, + "item": null, + "bill_id": "1030522071000200", + "bill_ref": "1776G13072-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「地質敏感區劃定變更及廢止辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00555.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00555.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 551, + "subitem": null, + "item": null, + "bill_id": "1030522071000300", + "bill_ref": "1053G14332-36", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「應施檢驗玩具商品之相關檢驗規定」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00556.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00556.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 552, + "subitem": null, + "item": null, + "bill_id": "1030522071000400", + "bill_ref": "1539G12284-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「興辦工業人使用毗連非都市土地擴展計畫申請審查辦法」第三條、第五條及第六條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00557.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00557.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 553, + "subitem": null, + "item": null, + "bill_id": "1030522071000500", + "bill_ref": "27G9291-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「度量衡器型式認證管理辦法」第二條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00558.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00558.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 554, + "subitem": null, + "item": null, + "bill_id": "1030522071000600", + "bill_ref": "1776G13072-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「地質敏感區基地地質調查及地質安全評估作業準則」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00559.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00559.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 555, + "subitem": null, + "item": null, + "bill_id": "1030522071000700", + "bill_ref": "40G6325-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「經濟部所屬事業機構人員考核辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00560.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00560.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 556, + "subitem": null, + "item": null, + "bill_id": "1030522071000800", + "bill_ref": "1053G8297-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「酒精汽油生質柴油及再生油品之生產輸入摻配銷售業務管理辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00561.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00561.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 557, + "subitem": null, + "item": null, + "bill_id": "1030522071000900", + "bill_ref": "1053G14332-37", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「其他鍵盤等十一項應施檢驗商品之檢驗方式」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00562.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00562.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 558, + "subitem": null, + "item": null, + "bill_id": "1030522071001000", + "bill_ref": "1053G12343-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「未登記工廠補辦臨時工廠登記辦法」第四條附件案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00563.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00563.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 559, + "subitem": null, + "item": null, + "bill_id": "1030522071001100", + "bill_ref": "474G11307-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付本會審查經濟部函為「商標電子申請實施辦法」名稱修正為「商標電子申請及電子送達實施辦法」,並修正部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00564.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00564.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 560, + "subitem": null, + "item": null, + "bill_id": "1030522071001200", + "bill_ref": "474G11303-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為「專利電子申請實施辦法」名稱修正為「專利電子申請及電子送達實施辦法」,並修正部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00565.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00565.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 561, + "subitem": null, + "item": null, + "bill_id": "1030522071001300", + "bill_ref": "703G9095-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「犬貓輸入檢疫作業辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00566.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00566.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 562, + "subitem": null, + "item": null, + "bill_id": "1030522071001400", + "bill_ref": "917G10007-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「森林保護辦法」第二十八條及第三十七條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00567.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00567.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 563, + "subitem": null, + "item": null, + "bill_id": "1030522071001500", + "bill_ref": "917G2119-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「國有林林產物處分規則」第十四條及第十五條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00568.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00568.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 564, + "subitem": null, + "item": null, + "bill_id": "1030522071001600", + "bill_ref": "984G8358-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「山坡地保育利用管理獎勵辦法」第五條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00569.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00569.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 565, + "subitem": null, + "item": null, + "bill_id": "1030522071001700", + "bill_ref": "956G1421-13", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付本會審查行政院農業委員會函為修正「農會法施行細則」第四十條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00570.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00570.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 566, + "subitem": null, + "item": null, + "bill_id": "1030522087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李桐豪等19人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00571.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00571.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 567, + "subitem": null, + "item": null, + "bill_id": "1030522087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等18人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00572.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00572.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 568, + "subitem": null, + "item": null, + "bill_id": "1030522087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等13人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00573.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00573.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 569, + "subitem": null, + "item": null, + "bill_id": "1030522087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員簡東明等26人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00574.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00574.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 570, + "subitem": null, + "item": null, + "bill_id": "1030522087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員魏明谷等17人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00575.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00575.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 571, + "subitem": null, + "item": null, + "bill_id": "1030522087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等20人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00576.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00576.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 572, + "subitem": null, + "item": null, + "bill_id": "1030523087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃偉哲等12人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00577.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00577.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030527070300200", + "bill_ref": "887G14960-1", + "proposed_by": "本院財政、內政、經濟三委員會", + "summary": "報告審查行政院函請審議「中央政府流域綜合治理計畫第1期特別預算案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00580.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00580.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1020329070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國102年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(含財政委員會、司法及法制委員會審查報告暨內政委員會、外交及國防委員會信託基金審查報告部分;其餘各委員會尚未審查完竣未及列入)", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602302_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 2, + "item": null, + "bill_id": "1020517070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關交通委員會營業及非營業預算部分;內政、外交及國防委員會之非營業預算部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803140602322_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 3, + "item": null, + "bill_id": "1020530070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關經濟、社會福利及衛生環境委員會營業及非營業部分暨教育及文化委員會之非營業部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/03/01/01/LCEWA01_080301_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803010603009_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1030331070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國103年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(未含內政、經濟、教育及文化、司法及法制、社會福利及衛生環境等5委員會附屬單位預算營業及非營業部分審查報告)", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1010607070300700", + "bill_ref": "1053G13121-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查行政院函請審議「植物防疫檢疫法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/01/01/LCEWA01_080101_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/01/01/LCEWA01_080101_00017.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 1, + "item": null, + "bill_id": "1011212070300400", + "bill_ref": "1542L13282;13479;13513;13564;13777;14030;14056;14131;14109-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員盧秀燕等40人擬具「性別工作平等法第十七條、第三十八條及第三十八條之一條文修正草案」、委員蔣乃辛等20人、委員馬文君等19人分別擬具「性別工作平等法第十三條條文修正草案」、委員尤美女等19人擬具「性別工作平等法第六條之一及第三十八條之二條文修正草案」、委員趙天麟等24人擬具「性別工作平等法第十二條條文修正草案」、委員李俊俋等18人擬具「性別工作平等法第六條之一條文修正草案」、委員吳育仁等24人擬具「性別工作平等法第二條條文修正草案」、委員徐欣瑩等37人擬具「性別工作平等法部分條文修正草案」及委員邱志偉等26人擬具「性別工作平等法第三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00586.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00586.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 2, + "item": null, + "bill_id": "1011219070100300", + "bill_ref": "1542G13480", + "proposed_by": "行政院", + "summary": "函請審議「性別工作平等法第三十八條、第三十八條之一及第四十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\15\\LCEWA01_080215_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/15/LCEWA01_080215_00048.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 3, + "item": null, + "bill_id": "1011224070200300", + "bill_ref": "1542L14577", + "proposed_by": "本院委員江啟臣等19人", + "summary": "擬具「性別工作平等法第三十八條及第三十八條之一條文修正草案」,請審議案。", + "doc": { + "doc": "http://misq.ly.gov.tw/MISQ/docu/201301/1011224070200300_010309331.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 4, + "item": null, + "bill_id": "1020509070200200", + "bill_ref": "1542L15059", + "proposed_by": "本院親民黨黨團", + "summary": "擬具「性別工作平等法第三條及第三十八條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/13/LCEWA01_080313_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/13/LCEWA01_080313_00024.doc" + }, + "sitting_introduced": "08-03-YS-13" + }, { + "motion_class": "discussion", + "agenda_item": 6, + "subitem": 1, + "item": null, + "bill_id": "1030414070300100", + "bill_ref": "1542L14569;14782;14785;15095;15188;15167;15887;15931-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員邱志偉等24人、委員王育敏等24人分別擬具「性別工作平等法第三十八條條文修正草案」、委員黃偉哲等20人擬具「性別工作平等法第三十八條及第三十八條之一條文修正草案」、委員陳淑慧等21人、委員陳歐珀等19人分別擬具「性別工作平等法第三十八條、第三十八條之一及第四十條條文修正草案」及委員何欣純等17人、委員林鴻池等25人、委員江惠貞等18人分別擬具「性別工作平等法第三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00590.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00590.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 7, + "subitem": 1, + "item": null, + "bill_id": "1010611070300600", + "bill_ref": "1028G13051-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查行政院函請審議「國立社會教育機構作業基金設置條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 8, + "subitem": 1, + "item": null, + "bill_id": "1030506070300100", + "bill_ref": "246G13033-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議「中華民國刑法第三百四十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00525.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00525.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 9, + "subitem": 1, + "item": null, + "bill_id": "1030506070300300", + "bill_ref": "1539L16010;16027;16069;16073-1", + "proposed_by": "本院經濟、財政兩委員會", + "summary": "報告併案審查民進黨黨團擬具「產業創新條例第七十條條文修正草案」、委員蔣乃辛等23人、委員蔡正元等20人分別擬具「產業創新條例第十條條文修正草案」及委員楊麗環等50人擬具「產業創新條例第二十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00526.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00526.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 10, + "subitem": 1, + "item": null, + "bill_id": "1030507070300100", + "bill_ref": "246L14776;15553;15572-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員李貴敏等26人擬具「證人保護法第二條條文修正草案」、委員吳育昇等21人擬具「證人保護法第十四條條文修正草案」及委員廖正井等22人擬具「證人保護法第二條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00527.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00527.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 11, + "subitem": 1, + "item": null, + "bill_id": "1030108070300900", + "bill_ref": "887G14734-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院大陸委員會函送財團法人海峽交流基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 12, + "subitem": 1, + "item": null, + "bill_id": "1030515070300200", + "bill_ref": "988G;L14685;14501;14712;14883-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「專科學校法修正草案」、委員徐欣瑩等31人擬具「專科學校法第七條及第三十五條之一條文修正草案」、委員蔣乃辛等23人擬具「專科學校法第二十四條條文修正草案」及委員陳亭妃等21人擬具「專科學校法第三十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00596.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00596.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 13, + "subitem": 1, + "item": null, + "bill_id": "1030515070300100", + "bill_ref": "1259G;L14823;14217-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查委員馬文君等22人擬具「家庭教育法第十四條條文修正草案」及行政院函請審議「家庭教育法第十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00597.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00597.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 14, + "subitem": 1, + "item": null, + "bill_id": "1030514070300200", + "bill_ref": "246G;L13323;13040;13326;14160;16178;14268;14294;14325;14545;14556;14634;14654;14705;14706;15067-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查行政院及司法院函請審議「中華民國刑法部分條文修正草案」、委員丁守中等31人擬具「中華民國刑法第三百四十九條條文修正草案」、委員黃偉哲等17人擬具「中華民國刑法第三百三十九條條文修正草案」、委員李昆澤等23人、委員蔣乃辛等27人分別擬具「中華民國刑法第三百四十四條及第三百四十四條之一條文修正草案」、委員馬文君等20人擬具「中華民國刑法第二百八十五條條文修正草案」、委員蔣乃辛等21人擬具「中華民國刑法部分條文修正草案」、委員黃偉哲等25人擬具「中華民國刑法第二百五十一條條文修正草案」、委員丁守中等21人擬具「中華民國刑法第五條、第三百三十九條及第三百四十一條條文修正草案」、委員謝國樑等21人擬具「中華民國刑法第二百五十一條及第三百三十九條之四條文修正草案」、委員蘇震清等20人擬具「中華民國刑法第二百五十一條條文修正草案」、委員潘維剛等24人擬具「中華民國刑法第三百四十九條條文修正草案」、委員邱志偉等19人擬具「中華民國刑法第三百四十四條條文修正草案」、委員邱志偉等19人擬具「中華民國刑法部分條文修正草案」及委員徐欣瑩等63人擬具「中華民國刑法第三百四十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00598.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00598.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 15, + "subitem": 1, + "item": null, + "bill_id": "1030514070300100", + "bill_ref": "380G;L13014;13998;13181;13093;13110;15155;14422;15862;15339;14978;12964;15545;16098-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「鐵路法部分條文修正草案」、委員李昆澤等28人擬具「鐵路法部分條文修正草案」、委員高志鵬等21人擬具「鐵路法第二條及第六十一條條文修正草案」、委員馬文君等23人擬具「鐵路法第二條及第六十二條條文修正草案」、委員趙天麟等27人、委員陳亭妃等23人分別擬具「鐵路法第十九條條文修正草案」、親民黨黨團擬具「鐵路法第四十條條文修正草案」、委員李昆澤等19人擬具「鐵路法第四十條及第六十七條條文修正草案」、委員王惠美等24人擬具「鐵路法第四十九條條文修正草案」、委員蔡其昌等23人擬具「鐵路法第五十六條條文修正草案」、委員李俊俋等20人擬具「鐵路法第五十七條、第六十七條之三及第七十條條文修正草案」、委員蔡正元等27人擬具「鐵路法第六十三條條文修正草案」、委員鄭天財等26人擬具「鐵路法第六十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00599.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00599.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 16, + "subitem": 1, + "item": null, + "bill_id": "1030522070300100", + "bill_ref": "55G;L14592;15357;15562-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「飛航事故調查法部分條文修正草案」、委員楊麗環等17人擬具「飛航事故調查法部分條文修正草案」及委員李昆澤等17人擬具「飛航事故調查法第二條、第三條及第五條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00600.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00600.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 17, + "subitem": 1, + "item": null, + "bill_id": "1030520070300200", + "bill_ref": "616G;L14949;16051;16130;16138-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「使用牌照稅法部分條文修正草案」、委員楊玉欣等23人、委員孫大千等22人及委員李應元等16人分別擬具「使用牌照稅法第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00601.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00601.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 18, + "subitem": 1, + "item": null, + "bill_id": "1030520070100400", + "bill_ref": "184G;L13530;14773;13130;16247;15781;16104;16184-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「貨物稅條例第十七條及第三十六條條文修正草案」、「貨物稅條例第二條、第二十三條及第三十三條條文修正草案」暨本院委員蔡錦隆等22人、委員楊玉欣等37人分別擬具「貨物稅條例第十二條條文修正草案」、委員許添財等20人擬具「貨物稅條例第十七條及第三十六條條文修正草案」、委員丁守中等29人擬具「貨物稅條例第十二條之二條文修正草案」及委員李應元等16人擬具「貨物稅條例第十二條及第十二條之二條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00602.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00602.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 19, + "subitem": 1, + "item": null, + "bill_id": "1030521070300100", + "bill_ref": "1746G;L13448;13389;13674;13638;16212;16228;13642;14732;16113;13914;14036;14072;14185;14047;14523;14574;14570;15107;15484;15999-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「菸酒管理法修正草案」暨委員高志鵬等17人及委員陳歐珀等17人分別擬具「菸酒管理法第四十六條條文修正草案」、委員廖國棟等20人、委員賴士葆等19人及委員王育敏等21人分別擬具「菸酒管理法部分條文修正草案」、委員蔡其昌等19人、委員江啟臣等22人及委員陳怡潔等17人分別擬具「菸酒管理法第三十三條及第三十七條條文修正草案」、委員林岱樺等28人擬具「菸酒管理法第二條條文修正草案」、委員李昆澤等19人、委員劉建國等22人及委員徐欣瑩等33人分別擬具「菸酒管理法第三十五條之一及第五十七條條文修正草案」、委員蔣乃辛等19人擬具「菸酒管理法增訂第三十五條之一條文草案」、委員王育敏等32人擬具「菸酒管理法第三十一條、第三十三條及第三十七條條文修正草案」、台灣團結聯盟黨團擬具「菸酒管理法第三十三條之一及第五十七條條文修正草案」、委員邱志偉等16人擬具「菸酒管理法第四條條文修正草案」、委員黃文玲等21人擬具「菸酒管理法刪除第四十四條條文草案」、台灣團結聯盟黨團擬具「菸酒管理法第四十六條及第六十三條條文修正草案」、委員謝國樑等18人擬具「菸酒管理法第四十六條及第四十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00603.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00603.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 20, + "subitem": 1, + "item": null, + "bill_id": "1030520070300100", + "bill_ref": "981L15953-1", + "proposed_by": "本院財政委員會", + "summary": "報告審查委員曾巨威等33人擬具「稅捐稽徵法第四十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00604.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00604.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 21, + "subitem": 1, + "item": null, + "bill_id": "1030520070300400", + "bill_ref": "1374G14768-1", + "proposed_by": "本院外交及國防、司法及法制兩委員會", + "summary": "報告審查行政院函請審議「中華民國與聖克里斯多福及尼維斯間引渡條約」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00605.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00605.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 22, + "subitem": 1, + "item": null, + "bill_id": "1030520070300500", + "bill_ref": "1374G14817-1", + "proposed_by": "本院外交及國防、司法及法制兩委員會", + "summary": "報告審查行政院函請審議「駐南非共和國臺北聯絡代表處與南非聯絡辦事處刑事司法互助協議」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00606.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00606.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 23, + "subitem": 1, + "item": null, + "bill_id": "1030526070300100", + "bill_ref": "1455G;L14841;16176;15387;15390;15404;15422;15431;15479;15472;15486;15502;15456;15524;15341;15338;15367;15379;15530;15523;15575;15665;15853;16160;16281;16299;16305;16296-1", + "proposed_by": "本院經濟委員會", + "summary": "報告併案審查行政院函請審議「糧食管理法部分條文修正草案」、委員盧秀燕等41人擬具「糧食管理法部分條文修正草案」、委員劉建國等19人擬具「糧食管理法第十四條、第十八條及第十八條之二條文修正草案」、委員黃偉哲等19人、委員李昆澤等21人分別擬具「糧食管理法第十八條條文修正草案」、委員江啟臣等24人擬具「糧食管理法第十四條之一及第十八條條文修正草案」、委員鄭汝芬等36人擬具「糧食管理法第十八條條文修正草案」、委員李應元等19人擬具「糧食管理法第十四條及第十八條條文修正草案」、委員葉津鈴等17人擬具「糧食管理法增訂第十八條之二條文草案」、委員蘇震清等27人擬具「糧食管理法部分條文修正草案」、委員王育敏等24人擬具「糧食管理法第四條、第十四條之一及第十八條條文修正草案」、委員羅淑蕾等22人擬具「糧食管理法第十八條條文修正草案」、委員江惠貞等22人擬具「糧食管理法第十八條條文修正草案」、委員張嘉郡等24人擬具「糧食管理法第十四條之一及第十八條條文修正草案」、委員王惠美等21人擬具「糧食管理法第十八條條文修正草案」、委員蔣乃辛等28人擬具「糧食管理法第十四條之一及第十八條條文修正草案」、委員李貴敏等38人擬具「糧食管理法第十四條、第十八條及第十八條之二條文修正草案」、委員田秋堇等22人擬具「糧食管理法第十四條之一及第十八條條文修正草案」、台灣團結聯盟黨團擬具「糧食管理法第十八條條文修正草案」、委員謝國樑等20人擬具「糧食管理法第十八條及第十八條之二條文修正草案」、委員吳育仁等20人、委員李慶華等23人分別擬具「糧食管理法第十八條條文修正草案」、委員潘孟安等23人擬具「糧食管理法第五條條文修正草案」、委員翁重鈞等25人擬具「糧食管理法第十四條條文修正草案」、委員蔣乃辛等26人擬具「糧食管理法第十四條及第十八條條文修正草案」、委員盧秀燕等17人擬具「糧食管理法第十八條條文修正草案」及委員江惠貞等20人擬具「糧食管理法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00607.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00607.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 24, + "subitem": 1, + "item": null, + "bill_id": "1030523070300200", + "bill_ref": "310G13110-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議廢止「行政院人事行政局組織條例」、「公務人員住宅及福利委員會組織條例」、「公務人力發展中心組織條例」及「行政院人事行政局地方行政研習中心組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00608.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00608.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 25, + "subitem": 1, + "item": null, + "bill_id": "1030526070300300", + "bill_ref": "815L15843-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查委員潘孟安等18人擬具「漁業法增訂第六十九條之二條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00609.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00609.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 26, + "subitem": 1, + "item": null, + "bill_id": "1030108070300200", + "bill_ref": "887G14723-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣營建研究院103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 27, + "subitem": 1, + "item": null, + "bill_id": "1030108070300300", + "bill_ref": "887G17424-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人台灣建築中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 28, + "subitem": 1, + "item": null, + "bill_id": "1030108070300400", + "bill_ref": "887G17425-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人二二八事件紀念基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 1, + "item": null, + "bill_id": "1030108070300500", + "bill_ref": "887G14726-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人國土規劃及不動產資訊中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 30, + "subitem": 1, + "item": null, + "bill_id": "1030108070300600", + "bill_ref": "887G14727-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人中央營建技術顧問研究社103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 31, + "subitem": 1, + "item": null, + "bill_id": "1030108070300700", + "bill_ref": "887G14729-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣省義勇人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 32, + "subitem": 1, + "item": null, + "bill_id": "1030108070300800", + "bill_ref": "887G14728-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人義勇消防人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 33, + "subitem": 1, + "item": null, + "bill_id": "1030108070301000", + "bill_ref": "887G14743-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院原住民族委員會函送財團法人原住民族文化事業基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 34, + "subitem": 1, + "item": null, + "bill_id": "1030108070301100", + "bill_ref": "887G14748-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查蒙藏委員會函送財團法人蒙藏基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 35, + "subitem": 1, + "item": null, + "bill_id": "1010528070202200", + "bill_ref": "1044L13747", + "proposed_by": "本院委員邱文彥等32人", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\01\\LCEWA01_080201_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/01/LCEWA01_080201_00008.doc" + }, + "sitting_introduced": "08-02-YS-01" + }, { + "motion_class": "discussion", + "agenda_item": 36, + "subitem": 1, + "item": null, + "bill_id": "1030110070300100", + "bill_ref": "1586G;L14583;14285-1", + "proposed_by": "本院交通、經濟、司法及法制三委員會", + "summary": "報告併案審查行政院函請審議「觀光賭場管理條例草案」及委員陳雪生等24人擬具「離島地區博弈事業管理法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00586.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00586.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 37, + "subitem": 1, + "item": null, + "bill_id": "1020221070300100", + "bill_ref": "1204G;L13003;13069;13413;13588;13987;14481;13589;14482;13590-1", + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查行政院函請審議及委員黃昭順等21人、委員林岱樺等27人、委員尤美女等16人、委員鄭天財等18人、委員吳宜臻等32人分別擬具「農業部組織法草案」;行政院函請審議「農業部農糧署組織法草案」、「農業部漁業署組織法草案」、「農業部動植物防疫檢疫署組織法草案」、「農業部水產試驗所組織法草案」、「農業部畜產試驗所組織法草案」、「農業部獸醫試驗所組織法草案」、「農業部農業藥物毒物試驗所組織法草案」、「農業部農業金融局組織法草案」;行政院函請審議「農業部農村及農田水利署組織法草案」、委員尤美女等16人擬具「農業部農村及農田水利署組織法草案」、委員鄭天財等18人擬具「農業部水土保持及農村發展署組織法草案」及委員吳宜臻等27人擬具「農業部農村再生及人力發展署組織法草案」;行政院函請審議「農業部農業試驗所組織法草案」及委員尤美女等20人擬具「農業部農業試驗所組織法草案」;委員鄭天財等18人擬具「農業部森林及保育署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 38, + "subitem": 1, + "item": null, + "bill_id": "1020205070300100", + "bill_ref": null, + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查行政院函請審議及委員吳宜臻等21人擬具「經濟及能源部組織法草案」案;行政院函請審議「經濟及能源部產業發展局組織法草案」、「經濟及能源部貿易商務局組織法草案」、「經濟及能源部中小企業局組織法草案」、「經濟及能源部智慧財產局組織法草案」、「經濟及能源部標準檢驗局組織法草案」、「經濟及能源部能源署組織法草案」案;行政院函請審議及委員吳宜臻等32人擬具「經濟及能源部產業園區管理局組織法草案」案;行政院函請審議及委員尤美女等16人擬具「經濟及能源部能源研究所組織法草案」案暨委員吳宜臻等24人擬具「氣候變遷暨能源發展委員會組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 39, + "subitem": 1, + "item": null, + "bill_id": "1011102070300100", + "bill_ref": "70G12999-1", + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告審查行政院函請審議「大陸委員會組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 40, + "subitem": 1, + "item": null, + "bill_id": "1011206070301200", + "bill_ref": "1128G;L13015;13592-1", + "proposed_by": "本院司法及法制、交通兩委員會", + "summary": "報告併案審查行政院函請審議「交通及建設部組織法草案」、「交通及建設部觀光署組織法草案」、「交通及建設部高速公路局組織法草案」、「交通及建設部公路局組織法草案」、「交通及建設部航港局組織法草案」、「交通及建設部民用航空局組織法草案」、「交通及建設部鐵道局組織法草案」及「交通及建設部運輸研究所組織法草案」暨委員尤美女等16人擬具「交通及建設部鐵道局組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 40, + "subitem": 2, + "item": null, + "bill_id": "1021227070300300", + "bill_ref": "1128L14961-1", + "proposed_by": "本院司法及法制、交通兩委員會", + "summary": "報告審查委員王廷升等25人擬具「交通部臺灣鐵路管理局組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局貨運服務總所組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局餐旅服務總所組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局各機廠組織通則第一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 41, + "subitem": 1, + "item": null, + "bill_id": "1011120070300300", + "bill_ref": null, + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告併案審查行政院函請審議、親民黨黨團及委員林正二等25人分別擬具「內政部組織法修正草案」案、行政院函請審議「內政部消防署組織條例修正草案」及委員管碧玲等21人擬具「內政部消防署組織條例第十一條條文修正草案」案暨行政院函請審議「內政部國土管理署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 42, + "subitem": 1, + "item": null, + "bill_id": "1020510070300200", + "bill_ref": "1204G;L12995;13736;13304;13541;14221;13189;14738;14008;14242;13651;13711;13986;13737;14739-1", + "proposed_by": "本院司法及法制、社會福利及衛生環境兩委員會", + "summary": "報告併案審查行政院函請審議及委員鄭汝芬等24人、委員田秋堇等16人、委員吳宜臻等20人、委員鄭天財等18人、委員葉宜津等23人分別擬具「環境資源部組織法草案」;行政院函請審議「環境資源部氣象局組織法草案」、「環境資源部水利署組織法草案」、「環境資源部森林及保育署組織法草案」;行政院函請審議「環境資源部水保及地礦署組織法草案」及委員鄭天財等18人擬具「環境資源部地礦及地質調查局組織法草案」;行政院函請審議「環境資源部下水道及污染防治局組織法草案」、委員呂學樟等29人擬具「環境資源部下水道署組織法草案」及委員呂學樟等23人擬具「環境資源部下水道及環境工程局組織法草案」;行政院函請審議及委員管碧玲等20人、委員黃昭順等25人分別擬具「環境資源部國家公園署組織法草案」;行政院函請審議「環境資源部森林及自然保育試驗所組織法草案」、「環境資源部生物多樣性研究所組織法草案」、「環境資源部環境教育及訓練所組織法草案」;委員尤美女等17人擬具「化學安全管理署組織法草案」、委員林國正等16人擬具「環境資源部化學安全管理署組織法草案」及委員呂學樟等26人擬具「環境資源部化學品及污染管制局組織法草案」案;及委員吳宜臻等21人擬具「環境資源部核能安全署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 42, + "subitem": 2, + "item": null, + "bill_id": "1020403070200900", + "bill_ref": "1204L14832", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「環境資源部組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00356.doc" + }, + "sitting_introduced": "08-03-YS-08" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 1, + "item": null, + "bill_id": "1020201070300100", + "bill_ref": "1603G;L13001;13761;13768;13769-1", + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告併案審查行政院函請審議、委員丁守中等20人、委員姚文智等16人分別擬具「海洋委員會組織法草案」及「海洋委員會海巡署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 2, + "item": null, + "bill_id": "1021223070201700", + "bill_ref": "1603L16000", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「行政院海洋委員會組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00065.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 3, + "item": null, + "bill_id": "1021223070201800", + "bill_ref": "1603L16001", + "proposed_by": "本院委員邱文彥等18人", + "summary": "擬具「海洋委員會海巡署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00066.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 4, + "item": null, + "bill_id": "1021223070201900", + "bill_ref": "1603L16002", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「海洋委員會海洋保育署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00067.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 5, + "item": null, + "bill_id": "1021223070202100", + "bill_ref": "1603L16004", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「海洋委員會教育及訓練所組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00068.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 6, + "item": null, + "bill_id": "1021223070202000", + "bill_ref": "1603L16003", + "proposed_by": "本院委員邱文彥等35人", + "summary": "擬具「國家海洋發展研究院組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00069.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 7, + "item": null, + "bill_id": "1021223070202200", + "bill_ref": "1603L16005", + "proposed_by": "本院委員田秋堇等25人", + "summary": "擬具「國家海洋研究院組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00083.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 8, + "item": null, + "bill_id": "1021220070201400", + "bill_ref": "1603L15982", + "proposed_by": "本院委員田秋堇等25人", + "summary": "擬具「海洋委員會海洋保育署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00084.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 44, + "subitem": 1, + "item": null, + "bill_id": "1020218070300100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員林郁方等20人、委員邱文彥等81人分別擬具「中央行政機關組織基準法第二十九條條文修正草案」及委員吳宜臻等22人擬具「中央行政機關組織基準法第三十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 45, + "subitem": 1, + "item": null, + "bill_id": "1020123070300200", + "bill_ref": "70L14375;14374;13691-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員林郁方等20人擬具「行政院組織法第三條條文修正草案」、委員邱文彥等81人擬具「行政院組織法第三條及第四條條文修正草案」及委員吳宜臻等22人擬具「行政院組織法第四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 46, + "subitem": 1, + "item": null, + "bill_id": "1010409070300100", + "bill_ref": "1048G13065-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議廢止「監獄組織通則」、「看守所組織通則」、「法務部戒治所組織通則」、「法務部技能訓練所組織條例」及「法務部矯正人員訓練所組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/08/LCEWA01_080108_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/08/LCEWA01_080108_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 47, + "subitem": 1, + "item": null, + "bill_id": "1011026070300100", + "bill_ref": "1082G13075-1", + "proposed_by": "本院司法及法制、教育及文化兩委員會", + "summary": "報告審查行政院函請審議「財團法人文化創意產業發展研究院設置條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/08/LCEWA01_080208_00276.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/08/LCEWA01_080208_00276.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 48, + "subitem": 1, + "item": null, + "bill_id": "1021021070300900", + "bill_ref": "225G;L13541;13718;13888;14820;15077-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「所得稅法第十五條條文修正草案」、委員盧秀燕等36人、委員許忠信等19人、委員吳秉叡等21人及委員吳秉叡等17人分別擬具「所得稅法第十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 49, + "subitem": 1, + "item": null, + "bill_id": "1021230070300300", + "bill_ref": "882G;L13324;15375;15571-1", + "proposed_by": "本院經濟、財政兩委員會", + "summary": "報告併案審查行政院函請審議「商業會計法部分條文修正草案」、委員費鴻泰等43人擬具「商業會計法部分條文修正草案」及委員羅淑蕾等20人擬具「商業會計法第六十五條及第八十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 1, + "item": null, + "bill_id": "1030114070300100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「長期照護服務法草案」、委員黃昭順等29人、委員鄭汝芬等21人、委員羅淑蕾等30人、委員楊麗環等35人、委員徐欣瑩等37人、委員楊玉欣等50人、委員王育敏等30人、委員蘇清泉等26人、委員江惠貞等30人分別擬具「長期照護服務法草案」、委員許添財等18人、委員劉建國等29人、委員徐少萍等22人、委員陳節如等22人、委員翁重鈞等19人、委員林淑芬等23人分別擬具「長期照顧服務法草案」及委員李應元等21人擬具「長期照顧法草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 2, + "item": null, + "bill_id": "1030113070200300", + "bill_ref": "1619L16077", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「長期照顧服務法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00010.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 3, + "item": null, + "bill_id": "1030102070200300", + "bill_ref": "1619L16058", + "proposed_by": "本院委員吳育仁等21人", + "summary": "擬具「長期照護服務法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00020.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 4, + "item": null, + "bill_id": "1030106070200600", + "bill_ref": "1619L16071", + "proposed_by": "本院委員吳宜臻等19人", + "summary": "擬具「長期照護服務法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00033.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "discussion", + "agenda_item": 51, + "subitem": 1, + "item": null, + "bill_id": "1030521070300300", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「醫療糾紛處理及醫療事故補償法草案」、委員江惠貞等20人、委員劉建國等18人、委員蘇清泉等23人、委員徐少萍等17人、委員陳節如等19人、委員林世嘉等21人、委員田秋堇等27人分別擬具「醫療糾紛處理及醫療事故補償法草案」、委員蔡錦隆等24人、委員吳宜臻等24人分別擬具「醫療事故補償法草案」、委員蔡錦隆等24人擬具「醫事爭議處理法草案」及委員吳宜臻等24人擬具「醫療糾紛處理法草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 52, + "subitem": 1, + "item": null, + "bill_id": "1010426070300100", + "bill_ref": "1586G;L13021;12991;13029-1", + "proposed_by": "本院教育及文化、財政兩委員會", + "summary": "報告併案審查行政院函請審議「運動彩券發行條例部分條文修正草案」、委員蔣乃辛等29人擬具「運動彩券發行條例第十三條及第二十三條條文修正草案」及委員黃志雄等21人擬具「運動彩券發行條例第十三條、第二十二條及第二十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/10/LCEWA01_080110_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/10/LCEWA01_080110_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 53, + "subitem": 1, + "item": null, + "bill_id": "1020520070300100", + "bill_ref": "269G;L13491;13706-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告併案審查行政院函請審議「外國人投資條例部分條文修正草案」及委員孫大千等26人擬具「外國人投資條例增訂第七條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 54, + "subitem": 1, + "item": null, + "bill_id": "1020520070300200", + "bill_ref": "269G13493-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告審查行政院函請審議「華僑回國投資條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 55, + "subitem": 1, + "item": null, + "bill_id": "1030106070300400", + "bill_ref": "161L15660;15701-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員呂學樟等20人及委員蔡正元等16人分別擬具「刑事妥速審判法第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 56, + "subitem": 1, + "item": null, + "bill_id": "1020103070390300", + "bill_ref": "963G;L13045;13464-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議及台灣團結聯盟黨團擬具「私立學校法第六十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00368.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00368.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 57, + "subitem": 1, + "item": null, + "bill_id": "1030526070300200", + "bill_ref": "1687G14799-1", + "proposed_by": "本院社會福利及衛生環境、經濟、內政三委員會", + "summary": "報告審查行政院函請審議「老年農民福利津貼暫行條例第三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00653.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00653.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 58, + "subitem": 1, + "item": null, + "bill_id": "1011212070300300", + "bill_ref": "1619L13323;13607;13582;13720;13873;13929;14276;14241-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員江惠貞等25人、委員呂玉玲等25人分別擬具「老人福利法第二十三條條文修正草案」、委員江惠貞等26人擬具「老人福利法增訂第七條之一條文草案」、委員呂玉玲等27人擬具「老人福利法第三十四條條文修正草案」、委員賴士葆等24人擬具「老人福利法第十五條、第十七條及第十九條條文修正草案」、委員李昆澤等21人、台灣團結聯盟黨團分別擬具「老人福利法增訂第五十二條之一條文草案」及委員劉建國等16人擬具「老人福利法第二十五條及第五十二條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 59, + "subitem": 1, + "item": null, + "bill_id": "1020510070300100", + "bill_ref": null, + "proposed_by": "本院財政、內政、外交及國防、經濟、教育及文化、司法及法制、社會福利及衛生環境七委員會", + "summary": "報告併案審查行政院函請審議「101年度中央政府總預算第二預備金動支數額表」案及行政院函為該院體育委員會為補助臺北市政府辦理「2017年世界大學運動會」所需權利金,動支101年度中央政府總預算第二預備金2億8,725萬620元支應案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00384.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00384.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 60, + "subitem": 1, + "item": null, + "bill_id": "1010830070300100", + "bill_ref": "979G;L13076;13401;13336;13421;13020-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「廣播電視法部分條文修正草案」、委員葉宜津等28人擬具「廣播電視法部分條文修正草案」、委員管碧玲等21人擬具「廣播電視法部分條文修正草案」、委員管碧玲等17人擬具「廣播電視法部分條文修正草案」及台灣團結聯盟黨團擬具「廣播電視法第十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00363.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00363.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 60, + "subitem": 2, + "item": null, + "bill_id": "1010927070201600", + "bill_ref": "979L13945", + "proposed_by": "本院委員楊麗環等40人", + "summary": "擬具「廣播電視法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\03\\LCEWA01_080203_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/03/LCEWA01_080203_00010.doc" + }, + "sitting_introduced": "08-02-YS-03" + }, { + "motion_class": "discussion", + "agenda_item": 61, + "subitem": 1, + "item": null, + "bill_id": "1010830070300300", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「衛星廣播電視法修正草案」、委員葉宜津等29人擬具「衛星廣播電視法修正草案」及委員管碧玲等21人擬具「衛星廣播電視法第一條、第九條及第十一條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00365.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00365.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 62, + "subitem": 1, + "item": null, + "bill_id": "1010830070300200", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「有線廣播電視法修正草案」、委員葉宜津等25人擬具「有線廣播電視法修正草案」、委員尤美女等19人擬具「有線廣播電視法部分條文修正草案」、委員管碧玲等17人擬具「有線廣播電視法部分條文修正草案」、委員吳宜臻等22人擬具「有線廣播電視法第八條及第五十一條條文修正草案」、委員林佳龍等22人擬具「有線廣播電視法第十九條條文修正草案」、委員蔡其昌等21人擬具「有線廣播電視法第二十四條、第三十四條之一及第六十八條條文修正草案」、委員林佳龍等21人擬具「有線廣播電視法第三十七條條文修正草案」、委員潘孟安等19人擬具「有線廣播電視法第四十二條條文修正草案」、委員趙天麟等20人擬具「有線廣播電視法第四十三條條文修正草案」、台灣團結聯盟黨團擬具「有線廣播電視法第四十三條條文修正草案」、委員林淑芬等24人擬具「有線廣播電視法第四十三條條文修正草案」、委員管碧玲等21人擬具「有線廣播電視法第四十三條條文修正草案」及委員魏明谷等20人擬具「有線廣播電視法第四十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00366.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602366_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 63, + "subitem": 1, + "item": null, + "bill_id": "1020508070300300", + "bill_ref": "775G;L13049;14699-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「藥事法第九十五條、第九十六條及第一百條條文修正草案」及委員邱志偉等20人擬具「藥事法第九十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00383.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00383.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 64, + "subitem": 1, + "item": null, + "bill_id": "1020508070300200", + "bill_ref": "1722G;L13029;13906;14652-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「健康食品管理法第二十四條、第二十四條之一及第二十八條條文修正草案」、委員徐欣瑩等21人擬具「健康食品管理法部分條文修正草案」及委員潘維剛等23人擬具「健康食品管理法第十七條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 65, + "subitem": 1, + "item": null, + "bill_id": "1030408070300200", + "bill_ref": "1044G14832-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院函請審議「政治獻金法第十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00478.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00478.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 66, + "subitem": 1, + "item": null, + "bill_id": "1010614070300100", + "bill_ref": "1549L13144;13179-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員鄭天財等18人及委員高志鵬等21人分別擬具「公務人員行政中立法第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/01/01/LCEWA01_080101_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/01/01/LCEWA01_080101_00024.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 67, + "subitem": 1, + "item": null, + "bill_id": "1011203070300400", + "bill_ref": "1549L14126;14121;14194-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查民進黨黨團、委員尤美女等19人分別擬具「公務人員行政中立法第五條、第九條及第十七條條文修正草案」及委員鄭天財等20人擬具「公務人員行政中立法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00362.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00362.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 68, + "subitem": 1, + "item": null, + "bill_id": "1020412070300600", + "bill_ref": "1301G13364-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院函請審議「消防法第九條、第十九條及第三十八條條文修正草案」案 。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 69, + "subitem": 1, + "item": null, + "bill_id": "1021107070300400", + "bill_ref": null, + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「私立學校法部分條文修正草案」、委員鄭麗君等22人擬具「私立學校法第十五條及第三十九條條文修正草案」、委員蔣乃辛等22人擬具「私立學校法第五十七條條文修正草案」、委員邱志偉等22人擬具「私立學校法第三十九條及第五十七條條文修正草案」及委員丁守中等19人擬具「私立學校法第五十七條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 70, + "subitem": 1, + "item": null, + "bill_id": "1020527070300200", + "bill_ref": "870G;L13083;14029;14048;15042;14161;14428-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「大學法第九條、第十五條及第三十三條條文修正草案」、委員李俊俋等18人、委員蔣乃辛等31人及委員鄭麗君等19人分別擬具「大學法第五條條文修正草案」、委員李昆澤等21人擬具「大學法第三十三條、第三十三條之一及第三十三條之二條文修正草案」及委員陳淑慧等48人擬具「大學法第五條、第七條及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 70, + "subitem": 2, + "item": null, + "bill_id": "1021113070300100", + "bill_ref": "870L15336-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳淑慧等26人擬具「大學法第五條及第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 71, + "subitem": 1, + "item": null, + "bill_id": "1021113070300300", + "bill_ref": "870L15017;14992;15301;15379;15443-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查委員蔣乃辛等22人、委員劉建國等16人、委員林佳龍等25人、委員潘孟安等18人及委員邱志偉等22人分別擬具「大學法第二十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 1, + "item": null, + "bill_id": "1021115070300100", + "bill_ref": "1150L14026-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查委員蔡錦隆等21人擬具「民法第四百四十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 73, + "subitem": 1, + "item": null, + "bill_id": "1021230070300800", + "bill_ref": "635G;L14790;14977-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「關稅法部分條文修正草案」及委員蔡其昌等20人擬具「關稅法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 74, + "subitem": 1, + "item": null, + "bill_id": "1030106070300600", + "bill_ref": "230G14609-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查行政院函請審議「學位授予法修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 75, + "subitem": 1, + "item": null, + "bill_id": "1021220070300500", + "bill_ref": "1155L13723-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員王育敏等30人擬具「護理人員法第十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 76, + "subitem": 1, + "item": null, + "bill_id": "1030411070300100", + "bill_ref": "468L12994;14763;15236-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員蔣乃辛等24人擬具「勞工保險條例增訂第二十七條之一條文草案」及委員蔣乃辛等19人、委員王惠美等26人分別擬具「勞工保險條例第七十四條之二條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 77, + "subitem": 1, + "item": null, + "bill_id": "1030116070300200", + "bill_ref": "671G14761-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告審查行政院函請審議「國軍退除役官兵輔導條例第三條之一、第三十三條及第三十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 78, + "subitem": 1, + "item": null, + "bill_id": "1030418070300400", + "bill_ref": "786G;L14850;13824;15689-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查台灣團結聯盟黨團擬具「圖書館法第十五條條文修正草案」、委員陳節如等20人擬具「圖書館法第九條條文修正草案」及行政院函請審議「圖書館法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 79, + "subitem": 1, + "item": null, + "bill_id": "1030415070300200", + "bill_ref": "1685G;L14871;14953-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「國立大學校院校務基金設置條例修正草案」及委員林岱樺等17人擬具「國立大學校院校務基金設置條例第五條之一、第五條之二及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 80, + "subitem": 1, + "item": null, + "bill_id": "1021218070300200", + "bill_ref": "887G14740-1", + "proposed_by": "本院財政委員會", + "summary": "報告審查金融監督管理委員會函送財團法人台灣金融研訓院、財團法人汽車交通事故特別補償基金、財團法人住宅地震保險基金、財團法人保險安定基金、財團法人證券投資人及期貨交易人保護中心、財團法人保險事業發展中心暨財團法人金融消費評議中心等103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 81, + "subitem": 1, + "item": null, + "bill_id": "1030509070300300", + "bill_ref": "99L16430", + "proposed_by": "本院國民黨黨團,", + "summary": "建請決議:核四廠1號機不施工只安檢,安檢後封存,核四廠2號機全部停工。核四安檢完畢後,先進行封存,日後如需放置燃料棒,須先辦理公民投票,公民投票有結果前,除安檢及封存維護相關經費外,不編列其他核四預算。是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00587.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00587.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 82, + "subitem": 1, + "item": null, + "bill_id": "1030509070300400", + "bill_ref": "99L16431", + "proposed_by": "本院委員盧嘉辰等26人", + "summary": ",為本院委員陳歐珀於馬總統母親秦厚修女士治喪期間赴靈堂鬧場,對喪家不敬,嚴重失禮在前,又虛與狡辯在後,行為脫序為社會所不容乙事,建請將陳委員歐珀交付本院紀律委員會懲戒,是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00588.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00588.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-11", + "name": "第8屆第5會期第11次會議", + "summary": "一、23日上午9時至10時為國是論壇時間。二、同意權之行使事項(27日上午)三、討論事項:詳見議事日程(27日下午)三、27日下午5時至6時為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 61642, + "chair": null, + "date": "2014-05-23", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61757, + "chair": null, + "date": "2014-05-23", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61641, + "chair": null, + "date": "2014-05-27", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61758, + "chair": null, + "date": "2014-05-27", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030513070100100", + "bill_ref": null, + "proposed_by": "總統", + "summary": "咨,為考試院第十一屆院長、副院長及考試委員任期於本(103)年8月31日屆滿,依據憲法增修條文第6條第2項規定,提名伍錦霖為考試院第十二屆院長,高永光為考試院第十二屆副院長,何寄澎、李選、張明珠、陳皎眉、趙麗雲、蔡良文、詹中原、浦忠成、黃錦堂、王亞男、張素瓊、馮正民、蕭全政、周志龍、黃婷婷、周萬來、謝秀能、周玉山、楊雅惠19人為考試院第十二屆考試委員,咨請同意案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030513070100200", + "bill_ref": null, + "proposed_by": "總統", + "summary": "咨,為監察院第四屆院長、副院長及監察委員任期於本(103)年7月31日屆滿,依據憲法增修條文第7條第2項規定,提名張博雅、孫大川、江綺雯、章仁香、高鳳仙、江明蒼、方萬富、林雅鋒、楊美鈴、余騰芳、李月德、劉德勳、陳慶財、薛春明、程仁宏、李炳南、陳小紅、施鴻志、蔡培村、王惠珀、包宗和、康照洲、尹祚芊、沈美真、許國文、許文彬、范良銹、仉桂美、王美玉29人為監察院第五屆監察委員;並以張博雅為院長、孫大川為副院長,咨請同意案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030512070200200", + "bill_ref": "380L16433", + "proposed_by": "本院委員盧秀燕等17人", + "summary": "擬具「鐵路法第六十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00009.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030512070200300", + "bill_ref": "1121L16434", + "proposed_by": "本院委員盧秀燕等30人", + "summary": "擬具「勞動基準法第三十七條及第三十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00010.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030512070200400", + "bill_ref": "246L16435", + "proposed_by": "本院委員陳根德等19人", + "summary": "擬具「中華民國刑法第三百二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00011.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030513070200100", + "bill_ref": "159L16448", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「兵役法第四十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00012.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030513070200200", + "bill_ref": "159L16449", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「兵役法第四十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00013.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030513070200300", + "bill_ref": "859L16450", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「中央法規標準法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00014.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030513070200400", + "bill_ref": "1554L16451", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00015.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030513070200500", + "bill_ref": "1375L16452", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「公平交易法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00016.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030513070200600", + "bill_ref": "618L16453", + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「公司法刪除第二百二十三條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00017.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030513070200700", + "bill_ref": "915L16454", + "proposed_by": "本院委員李應元等19人", + "summary": "擬具「警察職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00018.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030513070200800", + "bill_ref": "1537L16455", + "proposed_by": "本院委員李桐豪等18人", + "summary": "擬具「就業服務法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00019.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030513070200900", + "bill_ref": "1545L16456", + "proposed_by": "本院委員李桐豪等18人", + "summary": "擬具「醫療法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00020.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030513070201000", + "bill_ref": "1142L16457", + "proposed_by": "本院委員劉櫂豪等18人", + "summary": "擬具「噪音管制法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00021.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030513070201100", + "bill_ref": "756L16458", + "proposed_by": "本院委員劉櫂豪等18人", + "summary": "擬具「道路交通管理處罰條例第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00022.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030513070201200", + "bill_ref": "1722L16459", + "proposed_by": "本院委員廖國棟等21人", + "summary": "擬具「原住民族基本法第二十一條及第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00023.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030513070201300", + "bill_ref": "553L16460", + "proposed_by": "本院委員黃偉哲等17人", + "summary": "擬具「著作權法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00024.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030515070200200", + "bill_ref": "616L16478", + "proposed_by": "本院委員黃偉哲等17人", + "summary": "擬具「使用牌照稅法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00025.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030514070200100", + "bill_ref": "1032L16461", + "proposed_by": "本院委員陳淑慧等23人", + "summary": "擬具「身心障礙者權益保障法第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00026.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030515070200100", + "bill_ref": "1559L16462", + "proposed_by": "本院委員陳淑慧等24人", + "summary": "擬具「教師法第三十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00027.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030514070200200", + "bill_ref": "963L16463", + "proposed_by": "本院委員陳淑慧等23人", + "summary": "擬具「私立學校法第八十三條及第八十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00028.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030514070200300", + "bill_ref": "1574L16464", + "proposed_by": "本院委員邱志偉等18人", + "summary": "擬具「公民投票法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00029.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030514070200600", + "bill_ref": "1044L16467", + "proposed_by": "本院委員邱志偉等19人", + "summary": "擬具「公職人員選舉罷免法第八十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00030.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030514070200700", + "bill_ref": "1409L16468", + "proposed_by": "本院委員邱志偉等18人", + "summary": "擬具「社會秩序維護法第九十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00031.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030514070200400", + "bill_ref": "1749L16465", + "proposed_by": "本院委員邱志偉等19人", + "summary": "擬具「動物保護法第十四條之一及第三十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00032.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030514070200500", + "bill_ref": "1749L16466", + "proposed_by": "本院委員邱志偉等19人", + "summary": "擬具「野生動物保育法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00033.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030514070200800", + "bill_ref": "1604L16469", + "proposed_by": "本院委員周倪安等19人", + "summary": "擬具「全民健康保險法第五十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00034.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030514070200900", + "bill_ref": "1037L16470", + "proposed_by": "本院委員周倪安等19人", + "summary": "擬具「社會救助法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00035.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030514070201000", + "bill_ref": "1563L16471", + "proposed_by": "本院委員周倪安等19人", + "summary": "擬具「檔案法第十三條及第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00036.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030514070201500", + "bill_ref": "1390L16476", + "proposed_by": "本院委員周倪安等19人", + "summary": "擬具「人體器官移植條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00037.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030514070201600", + "bill_ref": "1390L16477", + "proposed_by": "本院委員周倪安等21人", + "summary": "擬具「人體器官移植條例第十條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00038.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030514070201100", + "bill_ref": "248L16472", + "proposed_by": "本院委員許智傑等18人", + "summary": "擬具「都市計畫法第四十二條及第四十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00039.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030515070201500", + "bill_ref": "248L16491", + "proposed_by": "本院委員楊玉欣等29人", + "summary": "擬具「都市計畫法第四十二條及第四十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00040.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030514070201200", + "bill_ref": "468L16473", + "proposed_by": "本院委員蔣乃辛等26人", + "summary": "擬具「勞工保險條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00041.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030514070201300", + "bill_ref": "986L16474", + "proposed_by": "本院委員顏寬恒等18人", + "summary": "擬具「羈押法第四條、第十二條及第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00042.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030514070201400", + "bill_ref": "255L16475", + "proposed_by": "本院委員顏寬恒等19人", + "summary": "擬具「監獄行刑法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00043.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030515070200300", + "bill_ref": "1737L16479", + "proposed_by": "本院委員鄭天財等20人", + "summary": "擬具「原住民族教育法第二十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00044.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030515070200400", + "bill_ref": "932L16480", + "proposed_by": "本院委員鄭麗君等23人", + "summary": "擬具「放射性物料管理法第四條及第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00045.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030515070200500", + "bill_ref": "1082L16481", + "proposed_by": "本院委員鄭麗君等23人", + "summary": "擬具「文化資產保存法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00046.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030515070200600", + "bill_ref": "1604L16482", + "proposed_by": "本院委員李昆澤等18人", + "summary": "擬具「全民健康保險法第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00047.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030515070200700", + "bill_ref": "1749L16483", + "proposed_by": "本院委員何欣純等21人", + "summary": "擬具「動物保護法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00048.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030515070200800", + "bill_ref": "1749L16484", + "proposed_by": "本院委員何欣純等21人", + "summary": "擬具「野生動物保育法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00049.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1030515070200900", + "bill_ref": "562L16485", + "proposed_by": "本院委員何欣純等19人", + "summary": "擬具「警察教育條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00050.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1030515070201100", + "bill_ref": "308L16486", + "proposed_by": "本院委員何欣純等21人", + "summary": "擬具「毒品危害防制條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00051.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1030515070201000", + "bill_ref": "775L14687", + "proposed_by": "本院委員馬文君等24人", + "summary": "擬具「藥事法增訂第八十條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00052.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1030515070201200", + "bill_ref": "1073L16488", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「幼兒教育及照顧法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00053.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1030515070201300", + "bill_ref": "1073L16489", + "proposed_by": "本院委員王育敏等22人", + "summary": "擬具「幼兒教育及照顧法第四條、第九條及第三十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00054.doc" + }, + "sitting_introduced": "08-05-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1030207071002100", + "bill_ref": "1053G10332-1936", + "proposed_by": "行政院勞工委員會", + "summary": "函送「未分類其他社會服務業中之大廈管理委員會適用勞動基準法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00055.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1030207071002200", + "bill_ref": "887G12800-1133", + "proposed_by": "行政院勞工委員會", + "summary": "函送該會勞工保險局102年第4季政策宣導廣告動支情形資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00056.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1030207071002300", + "bill_ref": "1578G11279-2", + "proposed_by": "衛生福利部", + "summary": "函,為修正「國民年金保險保險費與利息分期及延期繳納辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00057.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1030207071002900", + "bill_ref": "1538G14887", + "proposed_by": "衛生福利部", + "summary": "函,為「行政院衛生署暨直轄市政府衛生局所屬醫療機構醫師專勤服務辦法」名稱修正為「衛生福利部及直轄市政府衛生局所屬醫療機構醫師專勤服務辦法」,並修正條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00058.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1030207071003000", + "bill_ref": "1783G14888", + "proposed_by": "衛生福利部", + "summary": "函送「全民健康保險保險憑證讀卡設備之安全模組卡收費標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00059.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1030207071003300", + "bill_ref": "1537G9825-3", + "proposed_by": "衛生福利部", + "summary": "函,為修正「受聘僱外國人入國後健康檢查醫院指定與管理辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00060.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1030207071003400", + "bill_ref": "1537G9598-6", + "proposed_by": "衛生福利部", + "summary": "函,為修正「受聘僱外國人健康檢查管理辦法」部分條文及相關附表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00061.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1030207071002400", + "bill_ref": "233G13505-3", + "proposed_by": "國防部", + "summary": "函,為修正「國防部編制表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00062.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00062.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1030207071002500", + "bill_ref": "887G13333-1960", + "proposed_by": "公平交易委員會", + "summary": "函送102年度截至12月底政策宣導廣告預算執行情形表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00063.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00063.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1030207071002600", + "bill_ref": "887G13333-1961", + "proposed_by": "考試院", + "summary": "函送該院暨所屬部會102年第4季於媒體辦理政策宣導廣告季報表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00064.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1030207071003600", + "bill_ref": "1224G5964-12", + "proposed_by": "考試院、行政院、司法院", + "summary": "函,為修正「公務人員考試錄取人員訓練辦法」第二十七條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00065.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1030207071002700", + "bill_ref": "887G12800-1134", + "proposed_by": "金融監督管理委員會", + "summary": "函送該會主管營業、非營業基金及財團法人102年度第4季辦理政策宣導相關廣告執行情形表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00066.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1030207071002800", + "bill_ref": "887G12800-1135", + "proposed_by": "行政院海岸巡防署", + "summary": "函送該署暨所屬機關截至102年度12月底止辦理政策宣導相關廣告執行情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00067.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1030207071003500", + "bill_ref": "887G12800-1136", + "proposed_by": "行政院國家科學委員會", + "summary": "函送各科學工業園區管理局102年第4季於各媒體辦理政策宣導相關之廣告執行情形資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00068.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1030207071004000", + "bill_ref": "887G12800-1137", + "proposed_by": "行政院國家科學委員會", + "summary": "函送行政院原則同意之財團法人國家實驗研究院「國家地震工程研究中心第二實驗設施建置計畫」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00069.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1030207071003700", + "bill_ref": "1798G14889", + "proposed_by": "經濟部", + "summary": "函送「小型風力機發電系統示範獎勵辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00070.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1030207071004100", + "bill_ref": "1760G7165-5", + "proposed_by": "經濟部", + "summary": "函,為修正「經濟部科學技術研究發展成果歸屬及運用辦法」第十五條之一條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00071.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00071.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030212071000800", + "bill_ref": "887G11144-887", + "proposed_by": "經濟部", + "summary": "函送台電、中油、台糖、台水及漢翔公司102年11月份公益支出、委託調查、會費、捐助及睦鄰支出明細表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00072.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030212071002400", + "bill_ref": "887G11144-888", + "proposed_by": "經濟部", + "summary": "函送台電、中油、台糖、台水及漢翔公司102年12月份公益支出、委託調查、會費、捐助及睦鄰支出明細表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00073.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030207071003800", + "bill_ref": "1783G14762-3", + "proposed_by": "行政院農業委員會", + "summary": "函送「行政院農業委員會高雄區農業改良場辦理農藥田間試驗收費標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00074.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00074.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030207071003900", + "bill_ref": "1783G12417-2", + "proposed_by": "文化部", + "summary": "函轉國立中正紀念堂管理處為修正「國立中正紀念堂管理處場地設備規費收費標準」第三條附表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00075.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00075.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030207071004200", + "bill_ref": "99G8214-2", + "proposed_by": "行政院", + "summary": "函,為修正「社會福利基金收支保管及運用辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00076.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030515071000100", + "bill_ref": "887G13153-4", + "proposed_by": "行政院", + "summary": "函送「中華民國一百零四年度中央政府總預算編製辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00077.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030514071000400", + "bill_ref": "887G13153-3", + "proposed_by": "行政院", + "summary": "函送「中華民國一百零四年度中央政府總預算附屬單位預算編製辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00078.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030514071000100", + "bill_ref": "887G14717-1277", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「原住民人才未來發展規劃之分析報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00079.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030514071000200", + "bill_ref": "887G14717-1259", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,檢送有關高速鐵路局就高鐵台中車站小客車上下車於一、二樓分離運作情形之檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00080.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030514071000300", + "bill_ref": "887G14717-1260", + "proposed_by": "行政院公共工程委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「勞務承攬」訂定運用規範,必須符合勞動基準法規定之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00081.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030515071000500", + "bill_ref": "1374G10061-217", + "proposed_by": "外交部", + "summary": "函,為關於上(102)年己生效之我與美方無償交換使用房地換函續於本(103)年由北美事務協調委員會與美國在台協會台北辦事處完成換函以修正文字乙事,檢送該本年換函影本及中譯本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00082.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030307071000200", + "bill_ref": "887G14717-654", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」預算24億0,454萬6,000元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00083.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030307071000100", + "bill_ref": "887G14717-653", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「住宅計畫、住宅政策之推動及建築開發經理業輔導管理」凍結300萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00084.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030307071000300", + "bill_ref": "887G14717-655", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「辦理國土、海岸地區及土資場等計畫之研擬審議、規劃管理」預算5,864萬5,000元,凍結四分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00085.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030307071000400", + "bill_ref": "887G14717-656", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「公園規劃業務」原列2億1,828萬9,000元,凍結五分之一,俟向本院內政委員會提出報告始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00086.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030307071000500", + "bill_ref": "887G14717-657", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「辦理國土、海岸地區及土資場等計畫之研擬審議、規劃管理」凍結1,000萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00087.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030307071000600", + "bill_ref": "887G14717-658", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對本部營建署及所屬「辦理國土、海岸地區及土資場等計畫之研擬審議、規劃管理」中「業務費」凍結500萬元,俟向本院內政委員會提出報告始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00088.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030307071000700", + "bill_ref": "887G14717-659", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「補助地方政府辦理海岸復育及景觀改善示範計畫」凍結500萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00089.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030307071000800", + "bill_ref": "887G14717-660", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「陽明山國家公園遊憩區細部計畫通盤檢討」原列150萬元,凍結五分之一,俟向本院內政委員會提出專案報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00090.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030314071000700", + "bill_ref": "887G14717-727", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」凍結1億元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00091.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030314071000800", + "bill_ref": "887G14717-728", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「國家公園經營管理」凍結2億元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00092.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030314071000900", + "bill_ref": "887G14717-729", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「都市計畫書圖重製暨整合應用計畫」凍結500萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00093.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030314071001000", + "bill_ref": "887G14717-730", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「市區道路人本環境建設計畫」原列19億4,240萬元,凍結2億元,俟向本院內政委員會提出報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00094.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030314071001100", + "bill_ref": "887G14717-731", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「市區道路人本環境建設計畫」原列19億4,240萬元,凍結四分之一,俟向本院內政委員會提出報告後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00095.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030314071001200", + "bill_ref": "887G14717-732", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「市區道路人本環境建設計畫」原列19億4,240萬元,凍結五分之一,俟向本院內政委員會提出報告後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00096.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00096.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030314071001400", + "bill_ref": "887G14717-733", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「推動建築許可施工管理及使用維護等工作」凍結200萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00097.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030314071001500", + "bill_ref": "887G14717-734", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「公園規劃業務」凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00098.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030307071001500", + "bill_ref": "887G14717-668", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高級中等學校教育」補助「改善或充實公立完全中學教學設備及修繕工程」經費5,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00099.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030314071006100", + "bill_ref": "887G14717-780", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」中「推動及改進大學招生制度」600萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00100.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030307071001600", + "bill_ref": "887G14717-669", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「價值產值化計畫─發展中介服務體系」書面解凍報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00101.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030314071006400", + "bill_ref": "887G14717-783", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送國立臺灣文學館103年度赴大陸地區「重慶‧西安‧昆明參訪交流計畫」書面報告,請惠予解凍,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00102.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030314071006500", + "bill_ref": "887G14717-784", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「影視流行音樂產業跨域整合規劃」之配合國家通訊傳播委員會依兒童及少年福利法辦理網路內容防護機關分攤費用50萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00103.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00103.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030314071006600", + "bill_ref": "887G14717-785", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「流行音樂產業發展政策規劃與輔導」100萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00104.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030314071006700", + "bill_ref": "887G14717-786", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「影視音海外展演交流推展計畫」500萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00105.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030314071006800", + "bill_ref": "887G14717-787", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「影視及流行音樂推動與輔導」中「對財團法人中央廣播電臺捐助」1,000萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00106.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030314071006900", + "bill_ref": "887G14717-788", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「一般行政」中「基本行政工作維持」150萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00107.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030314071007000", + "bill_ref": "887G14717-789", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「臺灣流行音樂海外發聲計畫」300萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00108.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030314071007200", + "bill_ref": "887G14717-790", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「對財團法人中央通訊社捐助」計畫凍結3,000萬元之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00109.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030314071007500", + "bill_ref": "887G14717-791", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「影視及流行音樂策劃與發展」中「廣播電視產業發展政策規劃與輔導」100萬元(不含「獎補助費」)之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00110.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030314071007600", + "bill_ref": "887G14717-792", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「電影產業發展政策規劃與輔導」50萬元之書面檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00111.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030314071007300", + "bill_ref": "887G14717-793", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送辦理文化平權理念推廣及國民記憶庫計畫書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00112.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030314071007400", + "bill_ref": "887G14717-794", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「文學發展業務」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00113.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030314071007700", + "bill_ref": "887G14717-795", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送國家人權博物館籌備處「博物館業務之推展」書面報告,請准予解凍,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00114.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030307071001800", + "bill_ref": "887G14717-670", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「科學園區政策環評」與「科學園區創新發展之規劃與推動」專案報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00115.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030307071001900", + "bill_ref": "887G14717-671", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「經濟部科技專案研究機構執行績效」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00116.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030307071002000", + "bill_ref": "887G14717-672", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對中小企業處「中小企業科技應用」預算應於1個月內向本院經濟委員會提出專案檢討報告乙案,業已備妥相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00117.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030307071002100", + "bill_ref": "887G14717-673", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對出口市場多元化目標未充分落實應進行檢討乙案,業已備妥績效檢討專案報告,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030307071002200", + "bill_ref": "887G14717-674", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「兩岸智慧財產權協處機制改善計畫」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030307071002300", + "bill_ref": "887G14717-675", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「清理專利積案執行成效專案報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030307071002400", + "bill_ref": "887G14717-676", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「發明專利審結期間改善情形專案報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030307071002500", + "bill_ref": "887G14717-677", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「清理專利積案計畫執行成效專案報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030307071002600", + "bill_ref": "887G14717-678", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「經濟部科技專案執行績效及專利運用情形」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030324071002600", + "bill_ref": "887G14717-994", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局所轄部分污水處理廠,近年來污水處理之放流水,因不符合規範標準,被環保機關以違反水污染防治法取締案,檢送「工業區污水處理廠放流水管制措施」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030324071002800", + "bill_ref": "887G14717-996", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算該部主管第5項智慧財產局決議(六),業已備妥專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030324071002700", + "bill_ref": "887G14717-995", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算該部主管第5項智慧財產局決議(十),業已備妥專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030324071002900", + "bill_ref": "887G14717-997", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署102年監察院3糾正案,檢送辦理情形專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030226071002200", + "bill_ref": "887G14717-681", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對家畜衛生試驗所銷毀之疫苗均係向外採購且有一定保存期限,應加強管控採購時程,審慎規劃疫苗採購及儲備方式,並於3個月內提出改善計畫乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030307071002900", + "bill_ref": "887G14717-682", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業保險議題規劃應進行專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030307071003000", + "bill_ref": "887G14717-683", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水產試驗所經管不動產目前被占用土地及建物共29筆,應依規定積極清理避免新增占用,以免減損國家資源,並於3個月內提出改善計畫乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030307071003100", + "bill_ref": "887G14717-684", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水產試驗所103年度預計運用勞務承攬26人,較102年度運用人數30人,減少4人,經費卻增加261萬6,000元,不減反增,合理性亦有待商榷,應於3個月內提出改善計畫覈實編列乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030304071000700", + "bill_ref": "887G14717-685", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會及水土保持局應於3個月內通盤檢討農村再生計畫推動方案與執行不力之缺失,並向本院經濟委員會報告乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030304071000800", + "bill_ref": "887G14717-686", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求將農村再生計畫之執行情形向本院經濟委員會提出專案報告乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030304071000900", + "bill_ref": "887G14717-687", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水土保持局必須就現行警戒、防災項目、防災資訊整備等部分進行全面檢討與規劃,並將檢討規劃報告送交本院經濟委員會乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030307071003200", + "bill_ref": "887G14717-688", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林務局歲出除人事、行政經費外凍結五分之一及「林業發展」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030307071003300", + "bill_ref": "887G14717-689", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業管理」除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030307071003400", + "bill_ref": "887G14717-690", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業多元化經營建設」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030307071003500", + "bill_ref": null, + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬歲出預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030307071003600", + "bill_ref": "887G14717-692", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署「農糧管理」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030307071003800", + "bill_ref": "887G14717-693", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對種苗改良繁殖場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030307071003900", + "bill_ref": "887G14717-694", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會及所屬各機關「臨時人員、派遣人力及勞務承攬費用」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030307071004000", + "bill_ref": "887G14717-695", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對高雄區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030307071004100", + "bill_ref": "887G14717-696", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對苗栗區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030307071004200", + "bill_ref": "887G14717-697", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對臺中區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030307071004500", + "bill_ref": "887G14717-700", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對臺南區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030307071004300", + "bill_ref": "887G14717-698", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對未能積極策訂有效去化新增公糧措施、未將公糧倉庫之優劣條件及時建檔及未能確實策訂公糧倉庫管理政策等疏失,提出檢討與解決方案並進行專案報告乙案,已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030307071004400", + "bill_ref": "887G14717-699", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業發展」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00147.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030314071009400", + "bill_ref": "887G14717-812", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業科技研究發展」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030314071009500", + "bill_ref": "887G14717-813", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業科技研究發展」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030314071009600", + "bill_ref": "887G14717-814", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林務局「林業發展」項下「林地管理與森林保護」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030314071009700", + "bill_ref": "887G14717-815", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「養殖漁業管理」之獎補助費辦理「水產精品多元化產銷通路及行銷輔導推廣」計畫預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030314071009800", + "bill_ref": "887G14717-816", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林務局「林業發展」項下「生態旅遊系統建置發展」及「國有林治山防災及遊樂區林道維護」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030314071009900", + "bill_ref": "887G14717-817", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署及所屬「農糧管理」項下「企劃管理」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030314071010000", + "bill_ref": "887G14717-818", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署及所屬「農糧科技研發」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030314071010300", + "bill_ref": "887G14717-819", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署及所屬「農糧作物產銷技術研發」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030314071010100", + "bill_ref": "887G14717-820", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署及所屬「農糧科技研發」下「農產運銷電子化研發」、「作物環境科技研發」、「農產加工科技研發」,預算各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030314071010200", + "bill_ref": "887G14717-821", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林務局「林業管理」項下「野生物保育」預算凍結500萬元乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030314071010400", + "bill_ref": "887G14717-822", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對花蓮區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030314071010500", + "bill_ref": "887G14717-823", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林務局「林業發展」項下之「厚植森林資源」編列6億9,000萬元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030314071010600", + "bill_ref": "887G14717-824", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署及所屬「糧食產業管理」編列5,099萬9,000元預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030319071000100", + "bill_ref": "887G14717-840", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業天然災害救助經費與制度議題應提出改善計畫並進行專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030319071000200", + "bill_ref": "887G14717-912", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對維護優良農地落實土地資源合理分配利用,並於3個月內向本院經濟委員會提出專案報告乙案,業已備妥報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030319071000300", + "bill_ref": "887G14717-913", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求農業試驗所針對派遣人力使用之狀況進行檢討乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030319071000400", + "bill_ref": "887G14717-914", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署應檢討公糧存放倉庫之定期稽查,強化公糧存量管理及倉儲調撥機制,並於3個月內提出活化公糧運用措施,向本院經濟委員會提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030324071006200", + "bill_ref": "887G14717-1030", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求農業試驗所針對「運用派遣人力協助研究人員進行試驗研究計畫」進行檢討改善乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00165.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00165.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030324071006300", + "bill_ref": "887G14717-1031", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業科技研究發展」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030307071005500", + "bill_ref": "887G14717-711", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議該會應協調衛生福利部、經濟部及行政院農業委員會等事業主管機關,針對標示不實或不實廣告提出統合懲罰與查報機制,並提出專案檢討報告,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030314071001300", + "bill_ref": "887G14717-735", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,有關凍結「領事事務管理」項下「印刷及製作護照」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030314071001700", + "bill_ref": "887G14717-736", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「國際合作」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030314071001600", + "bill_ref": "887G14717-839", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「國際會議及交流」預算五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030314071001800", + "bill_ref": "887G14717-737", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「駐外使領單位基本行政工作維持」項下「駐泰國代表處業務費用」500萬元乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030314071001900", + "bill_ref": "887G14717-738", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「國際會議及交流」項下補助「世界自由民主聯盟中華民國總會」經費五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030314071002000", + "bill_ref": "887G14717-739", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「國際會議及交流」項下補助「亞洲太平洋自由民主聯盟秘書處」經費二分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030314071002100", + "bill_ref": "887G14717-740", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「駐外使領單位基本行政工作維持」中「辦公室、館長宿舍與事務機器等租金及大樓物業管理費等」1,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030314071002200", + "bill_ref": "887G14717-741", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「駐外使領單位基本行政工作維持」中「駐美國代表處業務費」五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00175.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00175.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030324071002400", + "bill_ref": "887G14717-992", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,凍結「外交業務管理」項下「基本行政工作維持」委託舉辦民意調查及就當前外交施政重要議題進行深度研究等委辦經費1,447萬元五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030324071002500", + "bill_ref": "887G14717-993", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,有關凍結「國際事務活動」中「鞏固雙邊及多邊關係」600萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030314071002300", + "bill_ref": "887G14717-742", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「基本行政工作維持」凍結1,500萬元,並就後附3項提案刪減或凍結理由,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00178.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00178.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030314071002400", + "bill_ref": "887G14717-743", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「研討(考)暨進修業務」895萬8,000元凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030314071002500", + "bill_ref": "887G14717-744", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「資訊管理業務」6,144萬8,000元凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030314071002600", + "bill_ref": "887G14717-745", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對該部及所屬機關辦公廳舍擴(遷)建工程先期規劃及設施汰換等專項經費凍結1,000萬元,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030314071002700", + "bill_ref": "887G14717-746", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理檢察行政業務─業務費」凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030314071002800", + "bill_ref": "887G14717-747", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理檢察行政業務─業務費」凍結十分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030314071002900", + "bill_ref": "887G14717-748", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理司法保護業務」之捐助更生保護會與犯罪被害人保護協會之「獎補助費」共3,426萬7千元,凍結三分之一,並就後附2項提案刪減或凍結理由,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030314071003000", + "bill_ref": "887G14717-749", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理法律事務業務」業務費凍結五分之一,須向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030314071003100", + "bill_ref": "887G14717-750", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理檢察行政業務」一般事務費凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030314071003200", + "bill_ref": "887G14717-751", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「法務行政」項下「辦理國際及兩岸法律事務」預算凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030314071003300", + "bill_ref": "887G14717-752", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「法務行政」項下「辦理檢察行政業務」預算凍結五分之一,並就後附2項提案凍結理由向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030314071003400", + "bill_ref": "887G14717-753", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政─各項法規問題研究」經費5,767千元凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030314071003600", + "bill_ref": "887G14717-755", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「法務行政」項下「辦理檢察行政業務」業務費2,136萬8千元凍結五分之一,須向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030314071003700", + "bill_ref": "887G14717-756", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理廉政政策規劃考核業務」一般事務費凍結五分之一,並就後附2項提案凍結理由向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030314071003800", + "bill_ref": "887G14717-757", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理廉政貪瀆預防業務」業務費凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030314071003900", + "bill_ref": "887G14717-758", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「廉政業務」4,978萬4千元凍結五分之一,並就後附4項提案刪減或凍結理由向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030314071004000", + "bill_ref": "887G14717-759", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理貪瀆及相關犯罪案件調查與督導業務」業務費1,120萬5,000元凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030314071004100", + "bill_ref": "887G14717-760", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對廉政署「基本行政工作維持」之「業務費」其他業務租金3,399萬8,000元、一般事務費1,825萬1,000元,及「廉政業務」項下「辦理廉政政策規劃考核業務」之「業務費─一般事務費」1,247萬5,000元,合計凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030314071004200", + "bill_ref": "887G14717-761", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理廉政政策規劃考核業務」預算凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030314071004300", + "bill_ref": "887G14717-762", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理矯正行政業務─一般事務費」戒護安全、收容人教化等重大政事經費凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030314071004400", + "bill_ref": "887G14717-763", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理矯正行政業務─一般事務費」之台中監獄附設培德醫院辦理性侵害加害人刑後強制治療經費凍結五分之一,須向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030314071004500", + "bill_ref": "887G14717-764", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理矯正行政業務」之「設備及投資」3,029萬元凍結五分之一,並就後附2項提案刪減理由向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030314071004600", + "bill_ref": "887G14717-765", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「辦理矯正、醫療及訓練業務」之「業務費─一般事務費」,凍結90萬3,000元,並就後附2項提案刪減理由向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030314071004700", + "bill_ref": "887G14717-766", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對矯正署及所屬「改善監所計畫」凍結800萬,須向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030314071004800", + "bill_ref": "887G14717-767", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對矯正署及所屬「辦理矯正行政業務」1億8,017萬4,000元凍結十分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00202.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030314071004900", + "bill_ref": "887G14717-768", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對矯正署及所屬「辦理矯正、醫療及訓練業務」2億8,718萬3,000元凍結十分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030314071005000", + "bill_ref": "887G14717-769", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對矯正署及所屬「矯正業務─業務費」之大陸地區旅費833千元凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030314071005100", + "bill_ref": "887G14717-770", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「矯正業務」項下「辦理矯正、醫療及訓練業務」預算凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030314071005200", + "bill_ref": "887G14717-771", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對行政執行署及所屬「一般行政」及「執行案件處理」項下「人員維持─人事費─獎金」執行工作績效獎勵金共計68,182千元,凍結五分之一,並就後附2項提案刪減理由向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030314071005300", + "bill_ref": "887G14717-772", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「檢察業務」項下「辦理選舉查察業務」4,762萬3,000元,刪減262萬3千元,其餘4,500萬元,凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030314071005400", + "bill_ref": "887G14717-773", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(二),針對特別偵查組案件偵辦費除減列數額外,其餘凍結二分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030314071005500", + "bill_ref": "887G14717-774", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(三),針對特別偵查組案件偵辦費除減列數額外,其餘凍結二分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030314071005600", + "bill_ref": "887G14717-775", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(四),針對特別偵查組案件偵辦費除減列數額外,其餘凍結二分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030314071005700", + "bill_ref": "887G14717-776", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(五),針對特別偵查組案件偵辦費除減列數額外,其餘凍結二分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00211.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00211.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030314071005800", + "bill_ref": "887G14717-777", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(六),針對特別偵查組案件偵辦費除減列數額外,其餘凍結二分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00212.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030314071005900", + "bill_ref": "887G14717-778", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(七),針對特別偵查組案件偵辦費除減列數額外,其餘凍結二分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00213.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030314071003500", + "bill_ref": "887G14717-754", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政─各項法規問題研究」經費5,767千元,凍結五分之一,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030319071000500", + "bill_ref": "887G14717-915", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,有關調查局更換華為行動網卡辦理情形,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030319071000600", + "bill_ref": "887G14717-916", + "proposed_by": "法務部", + "summary": "函送調查局執行海峽兩岸共同打擊犯罪及司法互助協議案追緝遣返外逃罪犯書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030324071004400", + "bill_ref": "887G14717-1012", + "proposed_by": "法務部", + "summary": "函送「假釋及外役監遴選制度之專案報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030325071001400", + "bill_ref": "887G14717-1054", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送就潛逃大陸之通緝犯加強兩岸引渡合作報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030314071007800", + "bill_ref": "887G14717-796", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「放射性物料管理作業」400萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030314071007900", + "bill_ref": "887G14717-797", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「核子保安與應變」300萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030314071008100", + "bill_ref": "887G14717-798", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,針對「精進放射性物料安全管制技術發展」之委託國內核能專業與學術機構執行「低放射性廢棄物安全管制技術發展」等委辦費,原列1,611萬元凍結五分之一,俟向本院教育及文化委員會後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030318071000100", + "bill_ref": "887G14717-838", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,針對「臺灣地區背景輻射偵測」原列50萬元凍結五分之一,俟會同衛生福利部等相關單位共同訂定提高食品進口輻射檢驗標準,並向本院教育及文化委員會進行專案報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030314071008200", + "bill_ref": "887G14717-799", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「游離輻射安全防護」1,000萬元(含「游離輻射安全評估及防護督導與輻射鋼筋處理專案」300萬元),俟向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030314071008400", + "bill_ref": "887G14717-800", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「放射性物料管理」之「核物料及小產源廢棄物安全管制」100萬元之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030314071008500", + "bill_ref": "887G14717-801", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「核能科技計畫管考、設施運轉維護及安全」之「綜合計畫」200萬元之解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030314071008600", + "bill_ref": "887G14717-802", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「核能科技研發計畫」5,000萬元之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030314071008700", + "bill_ref": "887G14717-803", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「推廣核能技術應用」3,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030314071008800", + "bill_ref": "887G14717-804", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「環境輻射偵測」之「人造游離輻射偵測」100萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030314071008900", + "bill_ref": "887G14717-805", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「派員出國計畫」100萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030314071008000", + "bill_ref": "887G14717-806", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,「原子能資訊公開與對外溝通」下教育宣導影片製作及原子能資料圖書蒐集費,原列133萬7,000元,予以凍結五分之一,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030314071008300", + "bill_ref": "887G14717-807", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,針對「放射性物料管理作業」項下之委託國內核能專業與學術機構執行「低放射性廢棄物安全管制技術發展」及「精進用過核子燃料及放射性物料安全管制技術發展」2項計畫之委辦費共計1,611萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030314071009000", + "bill_ref": "887G14717-808", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「核設施安全管制」中「核設施安全與維護之管制」350萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030314071009100", + "bill_ref": "887G14717-809", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「一般行政」1億元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030314071009200", + "bill_ref": "887G14717-810", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「一般行政」中「基本行政工作維持」之法律諮詢顧問費及教育人員升等著作審查費等15 萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030319071000800", + "bill_ref": "887G14717-919", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送102年度接受外界捐贈款專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030314071010700", + "bill_ref": "887G14717-825", + "proposed_by": "行政院公共工程委員會", + "summary": "函,為103年度中央政府總預算決議,針對「公共工程管理業務」原列1,538萬5千元凍結五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030314071010900", + "bill_ref": "887G14717-827", + "proposed_by": "飛航安全調查委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「飛航安全調查委員會近3年度飛航安全業務之專案研究、宣導事項說明」書面報告,請同意預算解凍,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030314071010800", + "bill_ref": "887G14717-826", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對「檔案管理綜合企劃與管考」預算243萬5,000元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030514071000500", + "bill_ref": "887G14717-1268", + "proposed_by": "本院教育及文化委員會", + "summary": "函,為院會交付處理中央研究院函為103年度中央政府總預算凍結「派員出國計畫」1,000萬元,請安排報告案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030514071000600", + "bill_ref": "887G14717-1269", + "proposed_by": "本院教育及文化委員會", + "summary": "函,為院會交付處理中央研究院函為103年度中央政府總預算凍結「一般學術研究及評議」6,000萬元,請安排報告案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030514071002900", + "bill_ref": "887G12800-1174", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付處理行政院環境保護署函送101年度中央政府總預算案,針對該署第3目「綜合計畫」第1節「綜合企劃」項下「環境影響評估」之辦理政策環境影響評估研修及政策評估說明書審查相關工作預算凍結十分之一之決議相關書面報告資料,請安排報告等4案,均已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030514071002000", + "bill_ref": "887G11913-3", + "proposed_by": "本院財政、內政兩委員會", + "summary": "函,為院會交付審查行政院函為金融監督管理委員會函報該會業與大陸地區銀行監理機構完成簽署「關於大陸商業銀行從事代客境外理財業務監督管理合作瞭解備忘錄」一案,已依「臺灣地區與大陸地區人民關係條例」第5條第2項規定予以核定案,經本院第8屆第4會期第15次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030514071000700", + "bill_ref": "915G13287-3", + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查國家安全局函送「政府各機關協助特種勤務應配合事項辦法」等5案,業經本院第8屆第4會期第6次會議報告後決定:「展延審查期限。」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030514071000800", + "bill_ref": "467G996-19", + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查外交部函送為修正「護照條例施行細則」部分條文,業經本院第8屆第4會期第6次會議報告後決定:「展延審查期限。」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030514071000900", + "bill_ref": "1344G6320-3", + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查外交部函送「駐外機構統一指揮辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030514071001000", + "bill_ref": "310G12288-8", + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查國家安全局函為修正「情報協助人員補償及救助辦法」第十一條及第十八條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030514071001100", + "bill_ref": "337G259-10", + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查行政院函為修正「召集規則」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030514071001200", + "bill_ref": "1702G6071-9", + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查國防部函為修正「國軍老舊眷村及不適用營地之國有土地標售或處分辦法」第二條及第六條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030514071002200", + "bill_ref": "1554G9551-3", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查行政院大陸委員會函為修正「大陸地區物品勞務服務在臺灣地區從事廣告活動管理辦法」第九條之一及第十條條文等23案,因已逾法定三個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030514071002100", + "bill_ref": "1554G8281-22", + "proposed_by": "本院內政、交通兩委員會", + "summary": "函,為院會交付審查內政部、交通部函為修正「大陸地區人民來臺從事觀光活動許可辦法」第八條條文案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030514071002300", + "bill_ref": "709G14795-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「自來水工程使用土地爭議補償裁量準則」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030514071002400", + "bill_ref": "1570G14797-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「自來水事業個人資料檔案安全維護計畫標準辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030514071002500", + "bill_ref": "1053G14332-24", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「中華民國一百零三年度再生能源電能躉購費率及其計算公式」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030514071002600", + "bill_ref": "1053G14332-25", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「烏山頂泥火山地景自然保留區範圍」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030514071002700", + "bill_ref": "810G6020-11", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「清除豬瘟暨口蹄疫所需疫苗之種類及其管理辦法」第三條及第十三條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030514071002800", + "bill_ref": "540G3781-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「野生動物保育法施行細則」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030515071000600", + "bill_ref": "1053G14332-33", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院衛生署函,為修正「食品中甜味劑之檢驗方法-醋磺內酯鉀、糖精、甘精及環己基(代)磺醯胺酸之檢驗」等15案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00257.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00257.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030515087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱文彥等29人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00258.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00258.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030515087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃志雄等20人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00259.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00259.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030515087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員盧嘉辰等19人於第8屆第5會期第6次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/11/LCEWA01_080511_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/11/LCEWA01_080511_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1020329070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國102年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(含財政委員會、司法及法制委員會審查報告暨內政委員會、外交及國防委員會信託基金審查報告部分;其餘各委員會尚未審查完竣未及列入)", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602302_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 2, + "item": null, + "bill_id": "1020517070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關交通委員會營業及非營業預算部分;內政、外交及國防委員會之非營業預算部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803140602322_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 3, + "item": null, + "bill_id": "1020530070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關經濟、社會福利及衛生環境委員會營業及非營業部分暨教育及文化委員會之非營業部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/03/01/01/LCEWA01_080301_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803010603009_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1030331070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國103年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(未含內政、經濟、教育及文化、司法及法制、社會福利及衛生環境等5委員會附屬單位預算營業及非營業部分審查報告)", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1010528070202200", + "bill_ref": "1044L13747", + "proposed_by": "本院委員邱文彥等32人", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\01\\LCEWA01_080201_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/01/LCEWA01_080201_00008.doc" + }, + "sitting_introduced": "08-02-YS-01" + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1030408070300200", + "bill_ref": "1044G14832-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院函請審議「政治獻金法第十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00478.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00478.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 1, + "item": null, + "bill_id": "1030418070300300", + "bill_ref": "230L15688-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳節如等20人擬具「學位授予法第八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 6, + "subitem": 1, + "item": null, + "bill_id": "1030411070300100", + "bill_ref": "468L12994;14763;15236-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員蔣乃辛等24人擬具「勞工保險條例增訂第二十七條之一條文草案」及委員蔣乃辛等19人、委員王惠美等26人分別擬具「勞工保險條例第七十四條之二條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 7, + "subitem": 1, + "item": null, + "bill_id": "1030116070300200", + "bill_ref": "671G14761-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告審查行政院函請審議「國軍退除役官兵輔導條例第三條之一、第三十三條及第三十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 8, + "subitem": 1, + "item": null, + "bill_id": "1030418070300400", + "bill_ref": "786G;L14850;13824;15689-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查台灣團結聯盟黨團擬具「圖書館法第十五條條文修正草案」、委員陳節如等20人擬具「圖書館法第九條條文修正草案」及行政院函請審議「圖書館法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 9, + "subitem": 1, + "item": null, + "bill_id": "1030415070300200", + "bill_ref": "1685G;L14871;14953-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「國立大學校院校務基金設置條例修正草案」及委員林岱樺等17人擬具「國立大學校院校務基金設置條例第五條之一、第五條之二及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 10, + "subitem": 1, + "item": null, + "bill_id": "1030506070300100", + "bill_ref": "246G13033-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議「中華民國刑法第三百四十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00525.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00525.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 11, + "subitem": 1, + "item": null, + "bill_id": "1030506070300300", + "bill_ref": "1539L16010;16027;16069;16073-1", + "proposed_by": "本院經濟、財政兩委員會", + "summary": "報告併案審查民進黨黨團擬具「產業創新條例第七十條條文修正草案」、委員蔣乃辛等23人、委員蔡正元等20人分別擬具「產業創新條例第十條條文修正草案」及委員楊麗環等50人擬具「產業創新條例第二十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00526.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00526.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 12, + "subitem": 1, + "item": null, + "bill_id": "1030507070300100", + "bill_ref": "246L14776;15553;15572-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員李貴敏等26人擬具「證人保護法第二條條文修正草案」、委員吳育昇等21人擬具「證人保護法第十四條條文修正草案」及委員廖正井等22人擬具「證人保護法第二條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00527.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00527.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 13, + "subitem": 1, + "item": null, + "bill_id": "1030108070300200", + "bill_ref": "887G14723-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣營建研究院103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 14, + "subitem": 1, + "item": null, + "bill_id": "1030108070300300", + "bill_ref": "887G17424-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人台灣建築中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 15, + "subitem": 1, + "item": null, + "bill_id": "1030108070300400", + "bill_ref": "887G17425-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人二二八事件紀念基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 16, + "subitem": 1, + "item": null, + "bill_id": "1030108070300500", + "bill_ref": "887G14726-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人國土規劃及不動產資訊中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 17, + "subitem": 1, + "item": null, + "bill_id": "1030108070300600", + "bill_ref": "887G14727-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人中央營建技術顧問研究社103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 18, + "subitem": 1, + "item": null, + "bill_id": "1030108070300700", + "bill_ref": "887G14729-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣省義勇人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 19, + "subitem": 1, + "item": null, + "bill_id": "1030108070300800", + "bill_ref": "887G14728-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人義勇消防人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 20, + "subitem": 1, + "item": null, + "bill_id": "1030108070300900", + "bill_ref": "887G14734-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院大陸委員會函送財團法人海峽交流基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 21, + "subitem": 1, + "item": null, + "bill_id": "1030108070301000", + "bill_ref": "887G14743-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院原住民族委員會函送財團法人原住民族文化事業基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 22, + "subitem": 1, + "item": null, + "bill_id": "1030108070301100", + "bill_ref": "887G14748-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查蒙藏委員會函送財團法人蒙藏基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 23, + "subitem": 1, + "item": null, + "bill_id": "1020221070300100", + "bill_ref": "1204G;L13003;13069;13413;13588;13987;14481;13589;14482;13590-1", + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查行政院函請審議及委員黃昭順等21人、委員林岱樺等27人、委員尤美女等16人、委員鄭天財等18人、委員吳宜臻等32人分別擬具「農業部組織法草案」;行政院函請審議「農業部農糧署組織法草案」、「農業部漁業署組織法草案」、「農業部動植物防疫檢疫署組織法草案」、「農業部水產試驗所組織法草案」、「農業部畜產試驗所組織法草案」、「農業部獸醫試驗所組織法草案」、「農業部農業藥物毒物試驗所組織法草案」、「農業部農業金融局組織法草案」;行政院函請審議「農業部農村及農田水利署組織法草案」、委員尤美女等16人擬具「農業部農村及農田水利署組織法草案」、委員鄭天財等18人擬具「農業部水土保持及農村發展署組織法草案」及委員吳宜臻等27人擬具「農業部農村再生及人力發展署組織法草案」;行政院函請審議「農業部農業試驗所組織法草案」及委員尤美女等20人擬具「農業部農業試驗所組織法草案」;委員鄭天財等18人擬具「農業部森林及保育署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 24, + "subitem": 1, + "item": null, + "bill_id": "1020205070300100", + "bill_ref": null, + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查行政院函請審議及委員吳宜臻等21人擬具「經濟及能源部組織法草案」案;行政院函請審議「經濟及能源部產業發展局組織法草案」、「經濟及能源部貿易商務局組織法草案」、「經濟及能源部中小企業局組織法草案」、「經濟及能源部智慧財產局組織法草案」、「經濟及能源部標準檢驗局組織法草案」、「經濟及能源部能源署組織法草案」案;行政院函請審議及委員吳宜臻等32人擬具「經濟及能源部產業園區管理局組織法草案」案;行政院函請審議及委員尤美女等16人擬具「經濟及能源部能源研究所組織法草案」案暨委員吳宜臻等24人擬具「氣候變遷暨能源發展委員會組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 25, + "subitem": 1, + "item": null, + "bill_id": "1011102070300100", + "bill_ref": "70G12999-1", + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告審查行政院函請審議「大陸委員會組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 26, + "subitem": 1, + "item": null, + "bill_id": "1011206070301200", + "bill_ref": "1128G;L13015;13592-1", + "proposed_by": "本院司法及法制、交通兩委員會", + "summary": "報告併案審查行政院函請審議「交通及建設部組織法草案」、「交通及建設部觀光署組織法草案」、「交通及建設部高速公路局組織法草案」、「交通及建設部公路局組織法草案」、「交通及建設部航港局組織法草案」、「交通及建設部民用航空局組織法草案」、「交通及建設部鐵道局組織法草案」及「交通及建設部運輸研究所組織法草案」暨委員尤美女等16人擬具「交通及建設部鐵道局組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 26, + "subitem": 2, + "item": null, + "bill_id": "1021227070300300", + "bill_ref": "1128L14961-1", + "proposed_by": "本院司法及法制、交通兩委員會", + "summary": "報告審查委員王廷升等25人擬具「交通部臺灣鐵路管理局組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局貨運服務總所組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局餐旅服務總所組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局各機廠組織通則第一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 27, + "subitem": 1, + "item": null, + "bill_id": "1011120070300300", + "bill_ref": null, + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告併案審查行政院函請審議、親民黨黨團及委員林正二等25人分別擬具「內政部組織法修正草案」案、行政院函請審議「內政部消防署組織條例修正草案」及委員管碧玲等21人擬具「內政部消防署組織條例第十一條條文修正草案」案暨行政院函請審議「內政部國土管理署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 28, + "subitem": 1, + "item": null, + "bill_id": "1020510070300200", + "bill_ref": "1204G;L12995;13736;13304;13541;14221;13189;14738;14008;14242;13651;13711;13986;13737;14739-1", + "proposed_by": "本院司法及法制、社會福利及衛生環境兩委員會", + "summary": "報告併案審查行政院函請審議及委員鄭汝芬等24人、委員田秋堇等16人、委員吳宜臻等20人、委員鄭天財等18人、委員葉宜津等23人分別擬具「環境資源部組織法草案」;行政院函請審議「環境資源部氣象局組織法草案」、「環境資源部水利署組織法草案」、「環境資源部森林及保育署組織法草案」;行政院函請審議「環境資源部水保及地礦署組織法草案」及委員鄭天財等18人擬具「環境資源部地礦及地質調查局組織法草案」;行政院函請審議「環境資源部下水道及污染防治局組織法草案」、委員呂學樟等29人擬具「環境資源部下水道署組織法草案」及委員呂學樟等23人擬具「環境資源部下水道及環境工程局組織法草案」;行政院函請審議及委員管碧玲等20人、委員黃昭順等25人分別擬具「環境資源部國家公園署組織法草案」;行政院函請審議「環境資源部森林及自然保育試驗所組織法草案」、「環境資源部生物多樣性研究所組織法草案」、「環境資源部環境教育及訓練所組織法草案」;委員尤美女等17人擬具「化學安全管理署組織法草案」、委員林國正等16人擬具「環境資源部化學安全管理署組織法草案」及委員呂學樟等26人擬具「環境資源部化學品及污染管制局組織法草案」案;及委員吳宜臻等21人擬具「環境資源部核能安全署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 28, + "subitem": 2, + "item": null, + "bill_id": "1020403070200900", + "bill_ref": "1204L14832", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「環境資源部組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00356.doc" + }, + "sitting_introduced": "08-03-YS-08" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 1, + "item": null, + "bill_id": "1020201070300100", + "bill_ref": "1603G;L13001;13761;13768;13769-1", + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告併案審查行政院函請審議、委員丁守中等20人、委員姚文智等16人分別擬具「海洋委員會組織法草案」及「海洋委員會海巡署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 2, + "item": null, + "bill_id": "1021223070201700", + "bill_ref": "1603L16000", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「行政院海洋委員會組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00065.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 3, + "item": null, + "bill_id": "1021223070201800", + "bill_ref": "1603L16001", + "proposed_by": "本院委員邱文彥等18人", + "summary": "擬具「海洋委員會海巡署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00066.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 4, + "item": null, + "bill_id": "1021223070201900", + "bill_ref": "1603L16002", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「海洋委員會海洋保育署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00067.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 5, + "item": null, + "bill_id": "1021223070202100", + "bill_ref": "1603L16004", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「海洋委員會教育及訓練所組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00068.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 6, + "item": null, + "bill_id": "1021223070202000", + "bill_ref": "1603L16003", + "proposed_by": "本院委員邱文彥等35人", + "summary": "擬具「國家海洋發展研究院組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00069.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 7, + "item": null, + "bill_id": "1021223070202200", + "bill_ref": "1603L16005", + "proposed_by": "本院委員田秋堇等25人", + "summary": "擬具「國家海洋研究院組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00083.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 8, + "item": null, + "bill_id": "1021220070201400", + "bill_ref": "1603L15982", + "proposed_by": "本院委員田秋堇等25人", + "summary": "擬具「海洋委員會海洋保育署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00084.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 30, + "subitem": 1, + "item": null, + "bill_id": "1020218070300100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員林郁方等20人、委員邱文彥等81人分別擬具「中央行政機關組織基準法第二十九條條文修正草案」及委員吳宜臻等22人擬具「中央行政機關組織基準法第三十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 31, + "subitem": 1, + "item": null, + "bill_id": "1020123070300200", + "bill_ref": "70L14375;14374;13691-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員林郁方等20人擬具「行政院組織法第三條條文修正草案」、委員邱文彥等81人擬具「行政院組織法第三條及第四條條文修正草案」及委員吳宜臻等22人擬具「行政院組織法第四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 32, + "subitem": 1, + "item": null, + "bill_id": "1010409070300100", + "bill_ref": "1048G13065-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議廢止「監獄組織通則」、「看守所組織通則」、「法務部戒治所組織通則」、「法務部技能訓練所組織條例」及「法務部矯正人員訓練所組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/08/LCEWA01_080108_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/08/LCEWA01_080108_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 33, + "subitem": 1, + "item": null, + "bill_id": "1011026070300100", + "bill_ref": "1082G13075-1", + "proposed_by": "本院司法及法制、教育及文化兩委員會", + "summary": "報告審查行政院函請審議「財團法人文化創意產業發展研究院設置條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/08/LCEWA01_080208_00276.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/08/LCEWA01_080208_00276.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 34, + "subitem": 1, + "item": null, + "bill_id": "1021021070300900", + "bill_ref": "225G;L13541;13718;13888;14820;15077-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「所得稅法第十五條條文修正草案」、委員盧秀燕等36人、委員許忠信等19人、委員吳秉叡等21人及委員吳秉叡等17人分別擬具「所得稅法第十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 35, + "subitem": 1, + "item": null, + "bill_id": "1030114070300100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「長期照護服務法草案」、委員黃昭順等29人、委員鄭汝芬等21人、委員羅淑蕾等30人、委員楊麗環等35人、委員徐欣瑩等37人、委員楊玉欣等50人、委員王育敏等30人、委員蘇清泉等26人、委員江惠貞等30人分別擬具「長期照護服務法草案」、委員許添財等18人、委員劉建國等29人、委員徐少萍等22人、委員陳節如等22人、委員翁重鈞等19人、委員林淑芬等23人分別擬具「長期照顧服務法草案」及委員李應元等21人擬具「長期照顧法草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 35, + "subitem": 2, + "item": null, + "bill_id": "1030102070200300", + "bill_ref": "1619L16058", + "proposed_by": "本院委員吳育仁等21人", + "summary": "擬具「長期照護服務法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00020.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "discussion", + "agenda_item": 35, + "subitem": 3, + "item": null, + "bill_id": "1030106070200600", + "bill_ref": "1619L16071", + "proposed_by": "本院委員吳宜臻等19人", + "summary": "擬具「長期照護服務法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00033.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "discussion", + "agenda_item": 36, + "subitem": 1, + "item": null, + "bill_id": "1020520070300100", + "bill_ref": "269G;L13491;13706-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告併案審查行政院函請審議「外國人投資條例部分條文修正草案」及委員孫大千等26人擬具「外國人投資條例增訂第七條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 37, + "subitem": 1, + "item": null, + "bill_id": "1020520070300200", + "bill_ref": "269G13493-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告審查行政院函請審議「華僑回國投資條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 38, + "subitem": 1, + "item": null, + "bill_id": "1010607070300700", + "bill_ref": "1053G13121-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查行政院函請審議「植物防疫檢疫法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/01/01/LCEWA01_080101_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/01/01/LCEWA01_080101_00017.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 39, + "subitem": 1, + "item": null, + "bill_id": "1030106070300400", + "bill_ref": "161L15660;15701-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員呂學樟等20人及委員蔡正元等16人分別擬具「刑事妥速審判法第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 40, + "subitem": 1, + "item": null, + "bill_id": "1011212070300300", + "bill_ref": "1619L13323;13607;13582;13720;13873;13929;14276;14241-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員江惠貞等25人、委員呂玉玲等25人分別擬具「老人福利法第二十三條條文修正草案」、委員江惠貞等26人擬具「老人福利法增訂第七條之一條文草案」、委員呂玉玲等27人擬具「老人福利法第三十四條條文修正草案」、委員賴士葆等24人擬具「老人福利法第十五條、第十七條及第十九條條文修正草案」、委員李昆澤等21人、台灣團結聯盟黨團分別擬具「老人福利法增訂第五十二條之一條文草案」及委員劉建國等16人擬具「老人福利法第二十五條及第五十二條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 41, + "subitem": 1, + "item": null, + "bill_id": "1020510070300100", + "bill_ref": null, + "proposed_by": "本院財政、內政、外交及國防、經濟、教育及文化、司法及法制、社會福利及衛生環境七委員會", + "summary": "報告併案審查行政院函請審議「101年度中央政府總預算第二預備金動支數額表」案及行政院函為該院體育委員會為補助臺北市政府辦理「2017年世界大學運動會」所需權利金,動支101年度中央政府總預算第二預備金2億8,725萬620元支應案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00384.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00384.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 42, + "subitem": 1, + "item": null, + "bill_id": "1010830070300100", + "bill_ref": "979G;L13076;13401;13336;13421;13020-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「廣播電視法部分條文修正草案」、委員葉宜津等28人擬具「廣播電視法部分條文修正草案」、委員管碧玲等21人擬具「廣播電視法部分條文修正草案」、委員管碧玲等17人擬具「廣播電視法部分條文修正草案」及台灣團結聯盟黨團擬具「廣播電視法第十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00363.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00363.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 42, + "subitem": 2, + "item": null, + "bill_id": "1010927070201600", + "bill_ref": "979L13945", + "proposed_by": "本院委員楊麗環等40人", + "summary": "擬具「廣播電視法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\03\\LCEWA01_080203_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/03/LCEWA01_080203_00010.doc" + }, + "sitting_introduced": "08-02-YS-03" + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 1, + "item": null, + "bill_id": "1010830070300300", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「衛星廣播電視法修正草案」、委員葉宜津等29人擬具「衛星廣播電視法修正草案」及委員管碧玲等21人擬具「衛星廣播電視法第一條、第九條及第十一條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00365.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00365.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 44, + "subitem": 1, + "item": null, + "bill_id": "1010830070300200", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「有線廣播電視法修正草案」、委員葉宜津等25人擬具「有線廣播電視法修正草案」、委員尤美女等19人擬具「有線廣播電視法部分條文修正草案」、委員管碧玲等17人擬具「有線廣播電視法部分條文修正草案」、委員吳宜臻等22人擬具「有線廣播電視法第八條及第五十一條條文修正草案」、委員林佳龍等22人擬具「有線廣播電視法第十九條條文修正草案」、委員蔡其昌等21人擬具「有線廣播電視法第二十四條、第三十四條之一及第六十八條條文修正草案」、委員林佳龍等21人擬具「有線廣播電視法第三十七條條文修正草案」、委員潘孟安等19人擬具「有線廣播電視法第四十二條條文修正草案」、委員趙天麟等20人擬具「有線廣播電視法第四十三條條文修正草案」、台灣團結聯盟黨團擬具「有線廣播電視法第四十三條條文修正草案」、委員林淑芬等24人擬具「有線廣播電視法第四十三條條文修正草案」、委員管碧玲等21人擬具「有線廣播電視法第四十三條條文修正草案」及委員魏明谷等20人擬具「有線廣播電視法第四十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00366.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602366_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 45, + "subitem": 1, + "item": null, + "bill_id": "1020508070300300", + "bill_ref": "775G;L13049;14699-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「藥事法第九十五條、第九十六條及第一百條條文修正草案」及委員邱志偉等20人擬具「藥事法第九十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00383.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00383.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 46, + "subitem": 1, + "item": null, + "bill_id": "1020508070300200", + "bill_ref": "1722G;L13029;13906;14652-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「健康食品管理法第二十四條、第二十四條之一及第二十八條條文修正草案」、委員徐欣瑩等21人擬具「健康食品管理法部分條文修正草案」及委員潘維剛等23人擬具「健康食品管理法第十七條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 47, + "subitem": 1, + "item": null, + "bill_id": "1010614070300100", + "bill_ref": "1549L13144;13179-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員鄭天財等18人及委員高志鵬等21人分別擬具「公務人員行政中立法第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/01/01/LCEWA01_080101_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/01/01/LCEWA01_080101_00024.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 48, + "subitem": 1, + "item": null, + "bill_id": "1011203070300400", + "bill_ref": "1549L14126;14121;14194-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查民進黨黨團、委員尤美女等19人分別擬具「公務人員行政中立法第五條、第九條及第十七條條文修正草案」及委員鄭天財等20人擬具「公務人員行政中立法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00362.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00362.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 49, + "subitem": 1, + "item": null, + "bill_id": "1020412070300600", + "bill_ref": "1301G13364-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院函請審議「消防法第九條、第十九條及第三十八條條文修正草案」案 。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 1, + "item": null, + "bill_id": "1021230070300300", + "bill_ref": "882G;L13324;15375;15571-1", + "proposed_by": "本院經濟、財政兩委員會", + "summary": "報告併案審查行政院函請審議「商業會計法部分條文修正草案」、委員費鴻泰等43人擬具「商業會計法部分條文修正草案」及委員羅淑蕾等20人擬具「商業會計法第六十五條及第八十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 51, + "subitem": 1, + "item": null, + "bill_id": "1021107070300400", + "bill_ref": null, + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「私立學校法部分條文修正草案」、委員鄭麗君等22人擬具「私立學校法第十五條及第三十九條條文修正草案」、委員蔣乃辛等22人擬具「私立學校法第五十七條條文修正草案」、委員邱志偉等22人擬具「私立學校法第三十九條及第五十七條條文修正草案」及委員丁守中等19人擬具「私立學校法第五十七條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 52, + "subitem": 1, + "item": null, + "bill_id": "1010611070300600", + "bill_ref": "1028G13051-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查行政院函請審議「國立社會教育機構作業基金設置條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 53, + "subitem": 1, + "item": null, + "bill_id": "1020527070300200", + "bill_ref": "870G;L13083;14029;14048;15042;14161;14428-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「大學法第九條、第十五條及第三十三條條文修正草案」、委員李俊俋等18人、委員蔣乃辛等31人及委員鄭麗君等19人分別擬具「大學法第五條條文修正草案」、委員李昆澤等21人擬具「大學法第三十三條、第三十三條之一及第三十三條之二條文修正草案」及委員陳淑慧等48人擬具「大學法第五條、第七條及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 53, + "subitem": 2, + "item": null, + "bill_id": "1021113070300100", + "bill_ref": "870L15336-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳淑慧等26人擬具「大學法第五條及第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 54, + "subitem": 1, + "item": null, + "bill_id": "1021113070300300", + "bill_ref": "870L15017;14992;15301;15379;15443-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查委員蔣乃辛等22人、委員劉建國等16人、委員林佳龍等25人、委員潘孟安等18人及委員邱志偉等22人分別擬具「大學法第二十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 55, + "subitem": 1, + "item": null, + "bill_id": "1021115070300100", + "bill_ref": "1150L14026-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查委員蔡錦隆等21人擬具「民法第四百四十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 56, + "subitem": 1, + "item": null, + "bill_id": "1021230070300800", + "bill_ref": "635G;L14790;14977-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「關稅法部分條文修正草案」及委員蔡其昌等20人擬具「關稅法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 57, + "subitem": 1, + "item": null, + "bill_id": "1030106070300600", + "bill_ref": "230G14609-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查行政院函請審議「學位授予法修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 58, + "subitem": 1, + "item": null, + "bill_id": "1021220070300500", + "bill_ref": "1155L13723-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員王育敏等30人擬具「護理人員法第十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 59, + "subitem": 1, + "item": null, + "bill_id": "1021218070300200", + "bill_ref": "887G14740-1", + "proposed_by": "本院財政委員會", + "summary": "報告審查金融監督管理委員會函送財團法人台灣金融研訓院、財團法人汽車交通事故特別補償基金、財團法人住宅地震保險基金、財團法人保險安定基金、財團法人證券投資人及期貨交易人保護中心、財團法人保險事業發展中心暨財團法人金融消費評議中心等103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 60, + "subitem": 1, + "item": null, + "bill_id": "1030110070300100", + "bill_ref": "1586G;L14583;14285-1", + "proposed_by": "本院交通、經濟、司法及法制三委員會", + "summary": "報告併案審查行政院函請審議「觀光賭場管理條例草案」及委員陳雪生等24人擬具「離島地區博弈事業管理法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00586.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00586.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 61, + "subitem": 1, + "item": null, + "bill_id": "1030509070300300", + "bill_ref": "99L16430", + "proposed_by": "本院國民黨黨團,", + "summary": "建請決議:核四廠1號機不施工只安檢,安檢後封存,核四廠2號機全部停工。核四安檢完畢後,先進行封存,日後如需放置燃料棒,須先辦理公民投票,公民投票有結果前,除安檢及封存維護相關經費外,不編列其他核四預算。是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00587.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00587.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 62, + "subitem": 1, + "item": null, + "bill_id": "1030509070300400", + "bill_ref": "99L16431", + "proposed_by": "本院委員盧嘉辰等26人", + "summary": ",為本院委員陳歐珀於馬總統母親秦厚修女士治喪期間赴靈堂鬧場,對喪家不敬,嚴重失禮在前,又虛與狡辯在後,行為脫序為社會所不容乙事,建請將陳委員歐珀交付本院紀律委員會懲戒,是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00588.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00588.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-10", + "name": "第8屆第5會期第10次會議", + "summary": "一、16日上午9時至10時為國是論壇時間。\n二、討論事項:詳見議事日程。\n三、20日下午5時至6時為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 61460, + "chair": null, + "date": "2014-05-16", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61586, + "chair": null, + "date": "2014-05-16", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61461, + "chair": null, + "date": "2014-05-20", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61587, + "chair": null, + "date": "2014-05-20", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030502070200100", + "bill_ref": "24L16395", + "proposed_by": "本院委員李貴敏等18人", + "summary": "擬具「遺產及贈與稅法第二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00007.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030502070200200", + "bill_ref": "246L16396", + "proposed_by": "本院委員蕭美琴等20人", + "summary": "擬具「中華民國刑法刪除部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00008.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030502070200300", + "bill_ref": "246L16397", + "proposed_by": "本院委員蕭美琴等20人", + "summary": "擬具「中華民國刑法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00009.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030502070200400", + "bill_ref": "1032L16398", + "proposed_by": "本院委員潘孟安等20人", + "summary": "擬具「身心障礙者權益保障法第三十六條及第四十九條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00010.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030502070200500", + "bill_ref": "1450L16399", + "proposed_by": "本院委員潘孟安等20人", + "summary": "擬具「消費者保護法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00011.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030506070200100", + "bill_ref": "1140L16407", + "proposed_by": "本院委員廖國棟等19人", + "summary": "擬具「罕見疾病防治及藥物法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00012.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030507070200400", + "bill_ref": "1016L16408", + "proposed_by": "本院委員蔣乃辛等22人", + "summary": "擬具「高級中等學校建教合作實施及建教生權益保障法第二十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00013.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030507070200300", + "bill_ref": "1450L16409", + "proposed_by": "本院委員蔣乃辛等23人", + "summary": "擬具「消費者保護法第二十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00014.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030507070200200", + "bill_ref": "1450L16410", + "proposed_by": "本院委員謝國樑等19人", + "summary": "擬具「消費者保護法第十九條及第十九條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00015.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030507070200100", + "bill_ref": "1409L16411", + "proposed_by": "本院委員謝國樑等16人", + "summary": "擬具「社會秩序維護法增訂第十八條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00016.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030508070200100", + "bill_ref": "1037L16412", + "proposed_by": "本院委員楊麗環等19人", + "summary": "擬具「社會救助法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00017.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030508070200200", + "bill_ref": "1559L16413", + "proposed_by": "本院委員黃志雄等16人", + "summary": "擬具「教師待遇條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00018.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030508070200300", + "bill_ref": "225L16414", + "proposed_by": "本院委員曾巨威等17人", + "summary": "擬具「所得稅法第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00019.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030508070200400", + "bill_ref": "438L16415", + "proposed_by": "本院委員林郁方等24人", + "summary": "擬具「礦業法第十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00020.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030508070200500", + "bill_ref": "454L16416", + "proposed_by": "本院委員陳學聖等23人", + "summary": "擬具「自由經濟示範區特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00021.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030508070200600", + "bill_ref": "246L16417", + "proposed_by": "本院委員徐少萍等19人", + "summary": "擬具「中華民國刑法第三百三十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00022.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030508070200700", + "bill_ref": "243L16418", + "proposed_by": "本院委員呂學樟等19人", + "summary": "擬具「民事訴訟法第二百十三條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00023.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030508070200800", + "bill_ref": "161L16419", + "proposed_by": "本院委員呂學樟等19人", + "summary": "擬具「刑事妥速審判法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00024.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030508070200900", + "bill_ref": "932L16420", + "proposed_by": "本院委員王育敏等22人", + "summary": "擬具「兒童及少年福利與權益保障法第四十七條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00025.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030508070201000", + "bill_ref": "932L16425", + "proposed_by": "本院委員盧秀燕等29人", + "summary": "擬具「兒童及少年福利與權益保障法第四十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00026.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030508070201100", + "bill_ref": "1037L16426", + "proposed_by": "本院委員盧秀燕等24人", + "summary": "擬具「社會救助法第五條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00027.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030508070201200", + "bill_ref": "271L16421", + "proposed_by": "本院委員賴士葆等23人", + "summary": "擬具「加值型及非加值型營業稅法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00028.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030508070201600", + "bill_ref": "462L16422", + "proposed_by": "本院委員魏明谷等17人", + "summary": "擬具「強制汽車責任保險法第十六條及第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00029.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030508070201300", + "bill_ref": "1081L16423", + "proposed_by": "本院委員魏明谷等17人", + "summary": "擬具「農產品市場交易法第三十五條及第三十五條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00030.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030508070201400", + "bill_ref": "1684L16424", + "proposed_by": "本院委員楊玉欣等33人", + "summary": "擬具「身心障礙者權利公約施行法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00031.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030508070201500", + "bill_ref": "1559L16427", + "proposed_by": "本院委員呂玉玲等18人", + "summary": "擬具「教師法第二十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00032.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030505070200100", + "bill_ref": "1450L16404", + "proposed_by": "本院委員田秋堇等16人", + "summary": "擬具「消費者保護法第四十九條及第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00033.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030505070200200", + "bill_ref": "1032L16401", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「身心障礙者權益保障法第六十條及第一百條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00034.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030505070200300", + "bill_ref": "447L16402", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「住宅法第四十六條及第五十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00035.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030505070200400", + "bill_ref": "1121L16403", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「勞動基準法第三十條及第八十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00036.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030512070200100", + "bill_ref": "1375L16432", + "proposed_by": "本院委員黃昭順等37人", + "summary": "擬具「公平交易法第六條、第十一條及第四十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00037.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030512070200500", + "bill_ref": "647L16436", + "proposed_by": "本院委員呂學樟等58人", + "summary": "擬具「人民參與審判試行條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00038.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030512070200600", + "bill_ref": "1711L16437", + "proposed_by": "本院委員鄭汝芬等19人", + "summary": "擬具「氣候變遷調適法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00039.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030512070200700", + "bill_ref": "1650L16438", + "proposed_by": "本院委員丁守中等16人", + "summary": "擬具「政府採購法增訂第九十六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00040.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030512070200800", + "bill_ref": "874L16439", + "proposed_by": "本院委員丁守中等22人", + "summary": "擬具「化粧品衛生管理條例第二十三條之二及第二十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00041.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030512070201400", + "bill_ref": "1749L16440", + "proposed_by": "本院委員丁守中等23", + "summary": "擬具「動物保護法增訂第十八條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00042.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030512070200900", + "bill_ref": "1000L16441", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警察服制條例第四條、第五條及第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00043.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030512070201000", + "bill_ref": "915L16442", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警察職權行使法第四條、第二十七條及第二十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00044.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030512070201100", + "bill_ref": "562L16443", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警察法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00045.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030512070201300", + "bill_ref": "915L16444", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「特種勤務條例第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00046.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030512070201200", + "bill_ref": "808L16445", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「警械使用條例第一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00047.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030512070201600", + "bill_ref": "1684L16446", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「身心障礙者權利公約施行法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00048.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030512070201500", + "bill_ref": "1044L16447", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00049.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1021121070200400", + "bill_ref": "1618L15677", + "proposed_by": "本院委員楊應雄等19人", + "summary": "擬具「離島建設條例第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00037.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030313070203700", + "bill_ref": "38L16163", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「赦免法增訂第六條之一、第六條之二及第六條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00051.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030403070200300", + "bill_ref": "23L16217", + "proposed_by": "本院委員尤美女等30人", + "summary": "擬具「立法院職權行使法增訂第十三條之一、第十三條之二及第十三條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00099.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030428070200400", + "bill_ref": "759L16371", + "proposed_by": "本院委員尤美女等16人", + "summary": "擬具「廢止核能發電條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00115.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030403070200400", + "bill_ref": "1394L16216", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「條約締結法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00100.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030317070201100", + "bill_ref": "1679L16187", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「總統職務交接條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00068.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030423070200500", + "bill_ref": "759L16309", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「核四逃命圈公民投票特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00061.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030507070300300", + "bill_ref": "703G14985", + "proposed_by": "行政院", + "summary": "函請審議「動物傳染病防治條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00114.doc" + }, + "sitting_introduced": "08-05-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030507071000100", + "bill_ref": "887G14986", + "proposed_by": "行政院大陸委員會", + "summary": "函送財團法人海峽交流基金會102年度決算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00117.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030206071001600", + "bill_ref": "1013G14881", + "proposed_by": "教育部", + "summary": "函送「高級中等學校合聘教師辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030206071001800", + "bill_ref": "1013G14880", + "proposed_by": "教育部", + "summary": "函送「高級中等學校學生家長會設置辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030206071002000", + "bill_ref": "1016G7254-10", + "proposed_by": "教育部", + "summary": "函,為修正「高級中等以下學校辦理學生團體保險辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030206071002400", + "bill_ref": "1013G14873", + "proposed_by": "教育部", + "summary": "函送「高級中等學校學生獎懲委員會組織及運作辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030206071002500", + "bill_ref": "1013G14874", + "proposed_by": "教育部", + "summary": "函送「高級中等學校學生申訴評議委員會組織及運作辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030207071000100", + "bill_ref": "1013G14882", + "proposed_by": "教育部", + "summary": "函送「高級中等學校評鑑辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030207071000400", + "bill_ref": "988G3929-3", + "proposed_by": "教育部", + "summary": "函,為「職業學校技術及專業教師甄審登記遴聘辦法」名稱修正為「高級中等學校專業及技術教師遴聘辦法」,並修正條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030207071000500", + "bill_ref": "1013G14883", + "proposed_by": "教育部", + "summary": "函送「高級中等學校組織設置及員額編制標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030207071001900", + "bill_ref": "988G8259-2", + "proposed_by": "教育部", + "summary": "函,為修正「入學專科學校同等學力認定標準」第二條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030507071000400", + "bill_ref": "887G14717-1258", + "proposed_by": "教育部", + "summary": "函送「原住民學生在校住宿費用補助措施」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030507071000800", + "bill_ref": "887G14717-1266", + "proposed_by": "教育部", + "summary": "函送「針對公私立大專校院如何進行輔導轉型發展與退場計畫之檢討與具體規劃」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030206071001700", + "bill_ref": "887G13333-1958", + "proposed_by": "行政院主計總處", + "summary": "函送102年度第4季依預算法第62條之1辦理政策宣導相關之廣告調查表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030206071001900", + "bill_ref": "1409G4456-1", + "proposed_by": "行政院", + "summary": "函,為修正「拘留所設置管理辦法」第十五條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030207071000700", + "bill_ref": "285G1748-6", + "proposed_by": "行政院", + "summary": "函,為修正「土地稅法施行細則」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030207071001500", + "bill_ref": "248G3808-10", + "proposed_by": "行政院", + "summary": "函,為修正「平均地權條例施行細則」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030507071000500", + "bill_ref": "1472G13171-3", + "proposed_by": "行政院", + "summary": "函送外交部擬具「國際合作發展事務102年度報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030206071002100", + "bill_ref": "464G11963-4", + "proposed_by": "金融監督管理委員會", + "summary": "函,為修正「保險業財務報告編製準則」部分條文及相關附表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030207071001200", + "bill_ref": "1570G5639-1", + "proposed_by": "金融監督管理委員會", + "summary": "函,為廢止「金融業個人資料檔案安全維護計畫標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030207071001600", + "bill_ref": "1192G3788-12", + "proposed_by": "行政院勞工委員會", + "summary": "函,為修正「技術士技能檢定作業及試場規則」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030502071002500", + "bill_ref": "1121G2745-3", + "proposed_by": "勞動部、經濟部", + "summary": "函,為修正「勞資會議實施辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030206071002300", + "bill_ref": "887G13333-1959", + "proposed_by": "司法院", + "summary": "函送該院及財團法人法律扶助基金會102年第4季政策宣導廣告一覽表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00138.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030207071005300", + "bill_ref": "887G12800-1140", + "proposed_by": "司法院", + "summary": "函,為101年度中央政府總預算案通過附帶決議,檢送彙總執行情況,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030207071000200", + "bill_ref": "1722G14884", + "proposed_by": "衛生福利部", + "summary": "函送「食品安全風險評估諮議會設置辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030207071000300", + "bill_ref": "1053G10332-1932", + "proposed_by": "衛生福利部", + "summary": "函,為修正「藥事法第一百零二條所稱無藥事人員執業之偏遠地區與非屬上述偏遠地區列表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030502071001200", + "bill_ref": "1604G11823-10", + "proposed_by": "衛生福利部", + "summary": "函,為修正「全民健康保險藥物給付項目及支付標準」部分項目,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030207071000600", + "bill_ref": "1053G10332-1933", + "proposed_by": "經濟部", + "summary": "函送「位於經濟部公告嚴重地層下陷地區內之工廠,為工廠管理輔導法第十一條第二款於設廠前應取得主管機關之設立許可(已通過環評之產業聚落或工廠者除外)之情形」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030207071001300", + "bill_ref": "1255G12329-2", + "proposed_by": "經濟部", + "summary": "函,為修正「工廠危險物品申報辦法」部分條文及第九條附表一、第十條附表二,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030507071000200", + "bill_ref": "887G12800-1173", + "proposed_by": "經濟部", + "summary": "函,為101年度中央政府總預算附屬單位預算決議,檢送中油公司103年第1季環保、工安績效書面報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030507071000900", + "bill_ref": "1797G14987", + "proposed_by": "經濟部", + "summary": "函送修正「流域綜合治理計畫(103-108年)」(核定本),請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030507071001000", + "bill_ref": null, + "proposed_by": "(密)經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「兩岸貨品貿易協議洽談狀況報告」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030207071002000", + "bill_ref": "1534G7206-12", + "proposed_by": "經濟部、財政部、行政院農業委員會", + "summary": "函,為修正「貨品進口救濟案件處理辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030207071000800", + "bill_ref": "959G10437-1", + "proposed_by": "行政院農業委員會", + "summary": "函,為修正「全國農業金庫投資有價證券之種類及限額標準」第二條及第三條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030207071001800", + "bill_ref": "810G14886", + "proposed_by": "行政院農業委員會", + "summary": "函送「行政院農業委員會林業試驗所受託試驗與鑑定收費標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030207071000900", + "bill_ref": "666G6529-4", + "proposed_by": "內政部", + "summary": "函,為修正「都市更新建築容積獎勵辦法」第十三條、第十四條及第十六條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030507071000300", + "bill_ref": "666G6600-5", + "proposed_by": "內政部", + "summary": "函,為修正「都市更新條例施行細則」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030207071001100", + "bill_ref": "759G14885", + "proposed_by": "行政院原子能委員會", + "summary": "函送「核子反應器設施監查工作範圍及監查機構認可辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030207071001400", + "bill_ref": "1053G10332-1935", + "proposed_by": "文化部", + "summary": "函,為修正「電影片禮券定型化契約應記載及不得記載事項」部分規定,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030207071001700", + "bill_ref": "887G11818-1662", + "proposed_by": "福建省政府", + "summary": "函送102年度第4季補、捐(獎)助其他政府機關、團體或個人經費報告表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030507071000600", + "bill_ref": "1374G10061-216", + "proposed_by": "外交部", + "summary": "函送「中華民國政府與聖露西亞政府間資訊通信技術合作協定」中、英文影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030507071000700", + "bill_ref": "887G14717-1265", + "proposed_by": "國家發展委員會", + "summary": "函送「新興策略性產業聚焦推動情形」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030225071000100", + "bill_ref": "887G14717-371", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「資料使用費」之統計資料使用費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030225071000200", + "bill_ref": "887G14717-372", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「場地設施使用費」之資料加值應用場地設施使用費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030225071000300", + "bill_ref": "887G14717-373", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「使用規費收入」下「服務費」之資料加值應用服務費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030225071000400", + "bill_ref": "887G14717-374", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(一),針對該部預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030225071000700", + "bill_ref": "887G14717-375", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030225071000800", + "bill_ref": "887G14717-376", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030225071000900", + "bill_ref": "887G14717-377", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(四),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030225071001000", + "bill_ref": "887G14717-378", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030225071001100", + "bill_ref": "887G14717-379", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(六),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030225071000600", + "bill_ref": "887G14717-380", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七),針對「以醫療科技評估建置衛生資源分配機制」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030225071001400", + "bill_ref": "887G14717-381", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八),針對「衛生與社會福利統計應用研究及健康加值應用雲端化服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030225071001500", + "bill_ref": "887G14717-382", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(九),針對「衛生與社會福利統計應用研究及健康加值應用雲端化服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030225071001700", + "bill_ref": "887G14717-383", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十),針對「數位資訊醫療之推動與整合」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030225071001800", + "bill_ref": "887G14717-384", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十一),針對「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030225071001900", + "bill_ref": "887G14717-385", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十二),針對「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030225071002000", + "bill_ref": "887G14717-386", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十三),針對「醫衛生命科技研究計畫」之獎補助費(人事費除外)預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030225071002100", + "bill_ref": "887G14717-387", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十四),針對「各疾病研究領域之生物分子鏢靶新藥研究與開發計畫」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030225071002400", + "bill_ref": "887G14717-388", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十五),針對「社會保險行政工作」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030225071002200", + "bill_ref": "887G14717-389", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十六),針對「全民健康保險業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030225071002300", + "bill_ref": "887G14717-390", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十七),針對「長期照護保險籌備工作」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030225071002500", + "bill_ref": "887G14717-391", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十八),針對「低收入戶健保費補助」預算凍結5億元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030225071002600", + "bill_ref": "887G14717-392", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十九),針對「辦理急難救助工作」之馬上關懷專案預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030225071002700", + "bill_ref": "887G14717-393", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十),針對「基本行政工作維持」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030225071002800", + "bill_ref": "887G14717-394", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十一),針對「醫政業務」預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00202.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030225071002900", + "bill_ref": "887G14717-395", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十二),針對「加強心理健康促進工作」辦理全國自殺防治中心業務預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030225071003300", + "bill_ref": "887G14717-396", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十三),針對「護理及健康照護業務」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030225071003400", + "bill_ref": "887G14717-397", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十四),針對「強化護理人力培育與提升專業知能」之業務費預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030225071003500", + "bill_ref": "887G14717-398", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十五),針對「中醫藥業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030225071003600", + "bill_ref": "887G14717-399", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十六),針對「中醫藥業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030225071003700", + "bill_ref": "887G14717-400", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十七),針對「醫院營運輔導」預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030225071000500", + "bill_ref": "887G14717-401", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十六),針對「推動衛生福利科技發展與管理」之獎補助費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030225071001200", + "bill_ref": "887G14717-402", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十七),針對「提升臨床試驗國際競爭力計畫」之獎補助費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030225071001300", + "bill_ref": "887G14717-403", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十八),針對「建構偏鄉資訊醫療照護網及健康照護發展計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00211.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00211.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030225071001600", + "bill_ref": "887G14717-404", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十九),針對「數位資訊醫療之推動與整合」及「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00212.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030225071003800", + "bill_ref": "887G14717-405", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十),針對「醫政業務」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00213.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030225071003900", + "bill_ref": "887G14717-406", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十一),針對「醫政業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030225071005400", + "bill_ref": "887G14717-407", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十二),針對「醫政業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030225071003000", + "bill_ref": "887G14717-408", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十三),針對「護理及健康照護業務」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030225071003100", + "bill_ref": "887G14717-409", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十四),針對「護理及健康照護業務」之業務費(長照十年計畫除外)預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030225071003200", + "bill_ref": "887G14717-410", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十五),針對「落實長照十年計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030225071005500", + "bill_ref": "887G14717-411", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十六),針對「醫院營運輔導」補助醫療藥品基金(人事費除外)預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030225071005800", + "bill_ref": "887G14717-412", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(一),針對「科技發展工作」預算凍結3,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030225071005600", + "bill_ref": "887G14717-413", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二),針對「食品安全管制科技發展計畫」之提升國內食品衛生水準,確保食品之安全性,以維護國人健康之委辦費預算凍結2,500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030225071005700", + "bill_ref": "887G14717-414", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(三),針對「食品安全管制科技發展計畫」之落實源頭管理,進行食品攙偽及物種鑑別之研究,基因改造食品之調查等等計畫預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030225071005900", + "bill_ref": "887G14717-415", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(四),針對「基本工作維持」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030225071006300", + "bill_ref": "887G14717-416", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(五),針對「食品藥物管理業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030225071006400", + "bill_ref": "887G14717-417", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(六),針對「食品藥物管理業務」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030225071006500", + "bill_ref": "887G14717-418", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(七),針對「藥品及新興生技藥品管理業務」之委辦費預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030225071006700", + "bill_ref": "887G14717-419", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(八),針對「藥品及新興生技藥品管理業務」之辦理藥品查驗登記業務之委辦費預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030225071006800", + "bill_ref": "887G14717-420", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(九),針對「醫療器材及化粧品管理業務」之業務費預算凍結39萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030225071006600", + "bill_ref": "887G14717-421", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十),針對「區管理中心業務」辦理輸入食品查驗業務預算凍結3,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030225071004000", + "bill_ref": "887G14717-422", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十一),針對「區管理中心業務」之委辦費預算凍結350萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030225071004100", + "bill_ref": "887G14717-423", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十二),針對「區管理中心業務」辦理輸入食品查驗業務之大陸地區旅費預算凍結20萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030225071006000", + "bill_ref": "887G14717-424", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十八),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030225071006100", + "bill_ref": "887G14717-425", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十九),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030225071006200", + "bill_ref": "887G14717-426", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(三十),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030225071004200", + "bill_ref": "887G14717-427", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(一),針對「一般行政」(不包括人員維持)預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030225071004400", + "bill_ref": "887G14717-428", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(二),針對「健保業務」預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030225071004300", + "bill_ref": "887G14717-429", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三),針對「健保業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030225071004500", + "bill_ref": "887G14717-430", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第5項決議(一),針對國民健康署「基本行政工作維持」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030225071004600", + "bill_ref": "887G14717-431", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(一),針對「推展身心障礙者福利服務」之業務費預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030225071004700", + "bill_ref": "887G14717-432", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二),針對「推展身心障礙者福利服務」辦理ICF行銷與民眾教育宣導之一般事務費預算凍結50萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030225071004800", + "bill_ref": "887G14717-433", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(三),針對「推展身心障礙福利服務」辦理身心障礙者個人照顧及家庭支持服務等工作預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030225071004900", + "bill_ref": "887G14717-434", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(四),針對「推展身心障礙福利服務」補助各類身心障礙福利機構辦理教養、養護服務,提升服務品質預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030225071005000", + "bill_ref": "887G14717-435", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(五),針對「推展兒童及少年福利服務」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030225071005200", + "bill_ref": "887G14717-436", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(六),針對「推展家庭支持服務」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030225071005100", + "bill_ref": "887G14717-437", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(七),針對「推展家庭支持服務」之業務費預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030225071005300", + "bill_ref": "887G14717-438", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(八),針對「推展家庭支持服務」之業務費預算凍結50萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030227071000200", + "bill_ref": "887G14717-521", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「教師資格檢定評鑑課程認定」,辦理公費生分發經費原列116萬元,除原住民教育經費45萬元外,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030227071000300", + "bill_ref": "887G14717-522", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「師資培育與藝術教育行政及督導」項下「健全師資培育」,原列3億1,222萬元凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030227071000400", + "bill_ref": "887G14717-523", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國民中小學教育」之提升國民中小學教育人力所需經費1億元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030227071000500", + "bill_ref": "887G14717-524", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「學生事務與特殊教育行政及督導」之「學生全民國防教育推展」經費6,952萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030227071000600", + "bill_ref": "887G14717-525", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國民中小學教育」之國民中小學基本需求經費1億元解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030227071000700", + "bill_ref": "887G14717-526", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國民中小學教育」之發展特色學校與閒置校舍空間活化利用經費之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030227071000800", + "bill_ref": "887G14717-527", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「改善教學研究環境及提升高等教育行政服務品質」之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030227071000900", + "bill_ref": "887G14717-528", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「推展學生全民國防教育及全民防衛精神動員準備工作」經費1,845萬8,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030227071001000", + "bill_ref": "887G14717-529", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「推動人文社科教育先導計畫」經費2億6,381萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030227071001100", + "bill_ref": "887G14717-530", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「學生全民國防教育推展」下「辦理軍訓人員後勤服務工作」經費1,209萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030227071001200", + "bill_ref": "887G14717-531", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國民中小學教育」之提升國民中小學英語文教學成效計畫所需經費之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030227071001300", + "bill_ref": "887G14717-532", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「推動體育班課程教學優質化」原列3,126萬3,000元凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030227071001400", + "bill_ref": "887G14717-533", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「學校體育教育」編列16億6,201萬5,000元,其中整備學校運動場地設備器材之整改建學校游泳池,原列1億2,000萬元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030227071001500", + "bill_ref": "887G14717-534", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「加強學校體育活動及教學發展」之整備學校運動場地設備器材2,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030227071001600", + "bill_ref": "887G14717-535", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國家體育建設」中「推展競技運動」原列6億6,742萬3,000元凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030227071002600", + "bill_ref": "887G14717-536", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」下「強化人才培育及產學合作機制」之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030227071001700", + "bill_ref": "887G14717-537", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」中「獎勵大學教學卓越計畫」2,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030227071001800", + "bill_ref": "887G14717-538", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「科技教育計畫」之「推動人文及科技跨領域教育先導計畫」經費2億8,512萬1,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030227071001900", + "bill_ref": "887G14717-539", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」中「強化人才培育及產學合作機制」5,000萬元解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030227071002000", + "bill_ref": "887G14717-540", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「終身教育及行政督導」編列10億1,369萬7,000元,其中「推行語文教育」原列1億0,660萬5,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030303071001200", + "bill_ref": "887G14717-572", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」之「推動大學評鑑制度」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030303071001300", + "bill_ref": "887G14717-573", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「推動大學評鑑制度」1,000萬元解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030303071001400", + "bill_ref": "887G14717-574", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「推動大學評鑑制度」之評鑑中心轉型發展及評鑑中心人事費、業務費及設備費五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030303071001500", + "bill_ref": "887G14717-575", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高級中等學校教育」之高中職優質化輔助方案3億元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030303071001600", + "bill_ref": "887G14717-576", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國家體育建設」中「推展競技運動」項下獎補助原列3億1,815萬3,000元,補助各亞奧運單項協會訓練及比賽用器材等等,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030303071001700", + "bill_ref": "887G14717-577", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國際及兩岸教育交流」之「吸引外國學生來臺留學」預算之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030303071001800", + "bill_ref": "887G14717-578", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「整建運動設施」之辦理公民營運動設施管理輔導業務原列1,441萬1,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030303071001900", + "bill_ref": "887G14717-579", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「整建運動設施」下自行車道整體路網串連建設計畫續編2億9,000萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030303071002000", + "bill_ref": "887G14717-580", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「整建運動設施」之改善國民運動環境與打造運動島計畫及自行車道整體路網串連建設計畫3,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030303071002100", + "bill_ref": "887G14717-581", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國家體育建設」之「整建運動設施」項下自行車道整體路網串連建設計畫第2年經費原列3億元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030303071002200", + "bill_ref": "887G14717-582", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國家體育建設」之「整建運動設施」項下改善國民運動環境與打造運動島計畫第5年獎補助經費9億1,000萬元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00257.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00257.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030303071002300", + "bill_ref": "887G14717-583", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國家體育建設」中「整建運動設施」之2017臺北世界大學運動會籌辦計畫2,000萬元解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00258.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00258.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030303071002400", + "bill_ref": "887G14717-584", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「整建運動設施」之2017臺北世界大學運動會籌辦計畫,原列3億9,400萬元凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00259.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00259.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030303071002500", + "bill_ref": "887G14717-585", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國家體育建設」中「推展競技運動」之運動科學介入競技實力提升計畫200萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030303071002600", + "bill_ref": "887G14717-586", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」下「邁向頂尖大學計畫」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030303071002700", + "bill_ref": "887G14717-587", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「邁向頂尖大學計畫」3億元解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030303071002800", + "bill_ref": "887G14717-588", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國家體育建設」項下「整建運動設施」之設備及投資-國家運動園區整體興設與人才培育計畫,原列9億1,000萬元凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030303071002900", + "bill_ref": "887G14717-589", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「師資培育與藝術教育行政及督導」中「推行藝術教育」之辦理「老師謝謝您」舞臺劇及補助學校等機構團體辦理藝術教育活動等650萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00264.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00264.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030303071000400", + "bill_ref": "887G14717-564", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對空中勤務總隊「實施教育訓練費-辦理黑鷹直升機種子人員訓練暨初次籌補計畫」經費5億元,凍結二分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030303071000500", + "bill_ref": "887G14717-565", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「入出國及移民管理業務」項下「執行國境管理及查驗許可」原列992萬7千元,凍結三分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030303071000600", + "bill_ref": "887G14717-566", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「國家公園經營管理」項下「墾丁國家公園經營管理」、「玉山國家公園經營管理」、「陽明山國家公園經營管理」、「太魯閣國家公園經營管理」、「雪霸國家公園經營管理」、「金門國家公園經營管理」、「海洋國家公園經營管理」、「台江國家公園經營管理」中「資訊軟硬體設備費」分別凍結四分之一,俟向本院內政委員會提出報告後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00267.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00267.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030303071001100", + "bill_ref": "887G14717-567", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「區域及都市規劃業務」項下「城鄉發展」凍結200萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030303071000700", + "bill_ref": "887G14717-568", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」項下「城鎮風貌型塑計畫」凍結1億元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030303071000800", + "bill_ref": "887G14717-569", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」原列預算24億454萬6,000元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送「內政部都委會審議桃園國際機場園區」解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030303071000900", + "bill_ref": "887G14717-570", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬所有網站建置、維護、經營等相關經費凍結二分之一,計547萬6,000元,俟向本院內政委員會提出檢討報告經同意後始得動支乙案,檢送解凍檢討報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00271.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00271.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030303071001000", + "bill_ref": "887G14717-571", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「下水道管理業務」凍結20億元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00272.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00272.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030303071003000", + "bill_ref": "887G14717-590", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「科技專案」項下「科技行政管理」及「政策研究與推動計畫」,除人事、行政經費外,各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030303071003100", + "bill_ref": "887G14717-591", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對國際貿易局及所屬「歲出」預算凍結相關項目計3案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00274.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00274.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 269, + "subitem": null, + "item": null, + "bill_id": "1030303071003200", + "bill_ref": "887G14717-592", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對該部「科技專案」凍結10億元乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00275.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00275.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 270, + "subitem": null, + "item": null, + "bill_id": "1030303071003300", + "bill_ref": "887G14717-593", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「中科院科技專案計畫」預算凍結五分之一乙案,檢送專案報告,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00276.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00276.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 271, + "subitem": null, + "item": null, + "bill_id": "1030303071003400", + "bill_ref": "887G14717-594", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對經濟部技術處、工業技術研究院等20個研發法人所屬之「專利維護事項」,應就功能、績效維護建立檢討平台,並於2個月內就功能、年限及維護費提出檢討報告乙案,檢送專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00277.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00277.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 272, + "subitem": null, + "item": null, + "bill_id": "1030303071003500", + "bill_ref": "887G14717-595", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農糧署及所屬「農糧管理─農業資材管理」預算凍結4,292萬元乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00278.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00278.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 273, + "subitem": null, + "item": null, + "bill_id": "1030303071003600", + "bill_ref": "887G14717-596", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對動植物防疫檢疫局「動植物防檢疫管理」計畫預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 274, + "subitem": null, + "item": null, + "bill_id": "1030303071003700", + "bill_ref": "887G14717-597", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對動植物防疫檢疫局及所屬「動植物防檢疫技術研發」;「動植物防檢疫技術研發」項下「農產品安全無縫科技研發」、「檢疫產業電子化自動化」;「動植物防檢疫技術研發」項下「整合與提升我國食媒性疾病及其病原監測防護網」、「推動農業科技產業全球運籌」等預算各凍結五分之一等3案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 275, + "subitem": null, + "item": null, + "bill_id": "1030303071003800", + "bill_ref": "887G14717-598", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水產試驗所歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 276, + "subitem": null, + "item": null, + "bill_id": "1030304071000200", + "bill_ref": "887G14717-599", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對林務局「林業發展」項下「林地管理與森林保護」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 277, + "subitem": null, + "item": null, + "bill_id": "1030304071000300", + "bill_ref": "887G14717-600", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水土保持局歲出51億1,508萬5,000元,除人事、行政經費外,凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 278, + "subitem": null, + "item": null, + "bill_id": "1030304071000400", + "bill_ref": "887G14717-601", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水土保持局「水土保持試驗研究」3,142萬元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 279, + "subitem": null, + "item": null, + "bill_id": "1030304071000500", + "bill_ref": "887G14717-602", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水土保持局「水土保持發展」項下「整體性治山防災」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 280, + "subitem": null, + "item": null, + "bill_id": "1030304071000600", + "bill_ref": "887G14717-603", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對水土保持局「水土保持發展」項下「新增易淹水地區後續治理及維護管理計畫」經費5億元及「新增重劃區外緊急農路設施改善計畫」經費10億元各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 281, + "subitem": null, + "item": null, + "bill_id": "1030304071001000", + "bill_ref": "887G14717-604", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 282, + "subitem": null, + "item": null, + "bill_id": "1030304071003800", + "bill_ref": "887G14717-632", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送「辦理院區建築物及公共空間等改善工程」凍結2,360萬元之五分之一預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 283, + "subitem": null, + "item": null, + "bill_id": "1030304071004000", + "bill_ref": "887G14717-634", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文物管理及展覽」中「展示服務與社教推廣」500萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 284, + "subitem": null, + "item": null, + "bill_id": "1030304071004100", + "bill_ref": "887G14717-635", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結業務費中「臨時人員酬金」第1目「一般行政」中「人員維持」項下「技工及工友待遇」、「基本行政工作維持」項下「一般事務費」1,000萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 285, + "subitem": null, + "item": null, + "bill_id": "1030303071000100", + "bill_ref": "887G14717-561", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送該院「施政及法制業務」中「法規審查研議及訴願審議督導」項下預算凍結五分之一之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 286, + "subitem": null, + "item": null, + "bill_id": "1030303071000200", + "bill_ref": "887G14717-562", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「法規審查研議及訴願審議督導」預算凍結五分之一之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 287, + "subitem": null, + "item": null, + "bill_id": "1030303071000300", + "bill_ref": "887G14717-563", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送該院「災害防救業務」預算凍結五分之一,計169萬8千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00293.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00293.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 288, + "subitem": null, + "item": null, + "bill_id": "1030304071001800", + "bill_ref": "887G14717-612", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家實驗研究院發展計畫」中「奈米元件研究與技術人才培育服務計畫」3,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 289, + "subitem": null, + "item": null, + "bill_id": "1030304071001900", + "bill_ref": "887G14717-613", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家實驗研究院發展計畫」中「太空科技發展與服務計畫」1億元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 290, + "subitem": null, + "item": null, + "bill_id": "1030304071002000", + "bill_ref": "887G14717-614", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家同步輻射研究中心發展計畫」中「台灣光源計畫」、「台灣光子源周邊實驗設施興建計畫」及「台澳中子設施運轉維護」1億元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 291, + "subitem": null, + "item": null, + "bill_id": "1030304071002100", + "bill_ref": "887G14717-615", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家實驗研究院發展計畫」中「災害防救科技發展與運用計畫」原列1億6,084萬6,000元之十分之一解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 292, + "subitem": null, + "item": null, + "bill_id": "1030304071002200", + "bill_ref": "887G14717-616", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家實驗研究院發展計畫」中「高速計算與網路應用研究計畫」6,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 293, + "subitem": null, + "item": null, + "bill_id": "1030304071002300", + "bill_ref": "887G14717-617", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家實驗研究院發展計畫」中「晶片設計實作計畫」原列2億8,803萬7,000元之十分之一解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 294, + "subitem": null, + "item": null, + "bill_id": "1030304071002500", + "bill_ref": "887G14717-618", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「一般行政」原列4億3,066萬6,000元之十分之一解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 295, + "subitem": null, + "item": null, + "bill_id": "1030304071002400", + "bill_ref": "887G14717-619", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「財團法人國家實驗研究院發展計畫」中「儀器科技發展計畫」1,700萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 296, + "subitem": null, + "item": null, + "bill_id": "1030304071002600", + "bill_ref": "887G14717-620", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,針對「計畫管理及科技人才培訓」原列683萬1,000元,予以凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 297, + "subitem": null, + "item": null, + "bill_id": "1030304071002700", + "bill_ref": "887G14717-621", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,有關凍結「業務費」中「臨時人員酬金」2,000萬元,俟向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 298, + "subitem": null, + "item": null, + "bill_id": "1030304071002800", + "bill_ref": "887G14717-622", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,有關凍結「一般行政」6,000萬元,俟向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 299, + "subitem": null, + "item": null, + "bill_id": "1030304071002900", + "bill_ref": "887G14717-623", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,針對「核能安全科技研究」原列1億8,087萬4,000元凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 300, + "subitem": null, + "item": null, + "bill_id": "1030304071003000", + "bill_ref": "887G14717-624", + "proposed_by": "行政院公共工程委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「捐助技師公會及相關團體辦理年會及研討會」執行情形報告,請同意預算解凍,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 301, + "subitem": null, + "item": null, + "bill_id": "1030304071003100", + "bill_ref": "887G14717-625", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「對外之捐助」預算凍結500萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 302, + "subitem": null, + "item": null, + "bill_id": "1030304071003200", + "bill_ref": "887G14717-626", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」預算凍結30萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 303, + "subitem": null, + "item": null, + "bill_id": "1030304071003300", + "bill_ref": "887G14717-627", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「海外華僑文教中心服務業務」項下「設置巴黎華僑文教服務中心計畫」預算凍結4,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00309.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00309.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 304, + "subitem": null, + "item": null, + "bill_id": "1030304071003400", + "bill_ref": "887G14717-628", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「海外華僑文教中心服務業務」項下「設置巴黎華僑文教服務中心計畫」預算凍結五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 305, + "subitem": null, + "item": null, + "bill_id": "1030304071003500", + "bill_ref": "887G14717-629", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「華僑新聞資訊及傳媒服務」預算凍結五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00311.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00311.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 306, + "subitem": null, + "item": null, + "bill_id": "1030304071003600", + "bill_ref": "887G14717-630", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「華僑新聞資訊及傳媒服務」中「辦理宏觀新聞資訊服務業務」預算凍結五分之一乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 307, + "subitem": null, + "item": null, + "bill_id": "1030304071003700", + "bill_ref": "887G14717-631", + "proposed_by": "國家安全局", + "summary": "函,為103年度中央政府總預算決議,針對凍結「基本行政工作維持業務費」及「教育訓練業務費」等2項預算,業已備妥相關書面資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 308, + "subitem": null, + "item": null, + "bill_id": "1030304071004200", + "bill_ref": "887G14717-636", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議第(二)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 309, + "subitem": null, + "item": null, + "bill_id": "1030304071004400", + "bill_ref": "887G14717-637", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議第(三)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 310, + "subitem": null, + "item": null, + "bill_id": "1030304071004300", + "bill_ref": "887G14717-638", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議第(十二)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 311, + "subitem": null, + "item": null, + "bill_id": "1030307071004600", + "bill_ref": "887G14717-701", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議第(四)項,請向本院司法及法制委員會報告乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 312, + "subitem": null, + "item": null, + "bill_id": "1030307071004700", + "bill_ref": "887G14717-702", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議第(五)項,請向本院司法及法制委員會作專案報告案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 313, + "subitem": null, + "item": null, + "bill_id": "1030307071004800", + "bill_ref": "887G14717-703", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第2項決議第(一)、(二)、(三)項專案報告案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 314, + "subitem": null, + "item": null, + "bill_id": "1030307071005800", + "bill_ref": "887G14717-704", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第20項決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 315, + "subitem": null, + "item": null, + "bill_id": "1030307071005000", + "bill_ref": "887G14717-705", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第25項決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 316, + "subitem": null, + "item": null, + "bill_id": "1030307071004900", + "bill_ref": "887G14717-706", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第26項決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 317, + "subitem": null, + "item": null, + "bill_id": "1030307071005200", + "bill_ref": "887G14717-707", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第27項決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 318, + "subitem": null, + "item": null, + "bill_id": "1030307071005100", + "bill_ref": "887G14717-708", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第36項決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 319, + "subitem": null, + "item": null, + "bill_id": "1030307071005300", + "bill_ref": "887G14717-709", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第37項決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 320, + "subitem": null, + "item": null, + "bill_id": "1030314071011200", + "bill_ref": "887G14717-830", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出部分第4款第1項該院主管通過決議第(十三)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 321, + "subitem": null, + "item": null, + "bill_id": "1030314071011100", + "bill_ref": "887G14717-829", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出部分第4款第1項該院主管通過決議第(十四)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 322, + "subitem": null, + "item": null, + "bill_id": "1030314071011000", + "bill_ref": "887G14717-828", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第15項臺灣臺北地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 323, + "subitem": null, + "item": null, + "bill_id": "1030314071000600", + "bill_ref": "887G14717-726", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「一般行政」項下不休假加班費凍結二分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 324, + "subitem": null, + "item": null, + "bill_id": "1030325071000100", + "bill_ref": "887G14717-1043", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「一般行政」凍結人事費1億8,000萬元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 325, + "subitem": null, + "item": null, + "bill_id": "1030314071000100", + "bill_ref": "887G14717-721", + "proposed_by": "行政院", + "summary": "(院臺南服字第1030124893號)函,為103年度中央政府總預算決議,檢送「聯合服務業務」預算凍結五分之一計714萬8千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 326, + "subitem": null, + "item": null, + "bill_id": "1030324071001900", + "bill_ref": "887G14717-987", + "proposed_by": "行政院", + "summary": "(院臺東服字第1030125167號)函,為103年度中央政府總預算決議,檢送「聯合服務業務」預算凍結五分之一計714萬8千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00332.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00332.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 327, + "subitem": null, + "item": null, + "bill_id": "1030314071000300", + "bill_ref": "887G14717-723", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「國土安全規劃」預算凍結三分之一計165萬7千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00333.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00333.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 328, + "subitem": null, + "item": null, + "bill_id": "1030314071000400", + "bill_ref": "887G14717-724", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「性別平等業務」預算凍結四分之一計410萬9千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 329, + "subitem": null, + "item": null, + "bill_id": "1030314071000500", + "bill_ref": "887G14717-725", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「資通安全業務」預算凍結四分之一計78萬6千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00335.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00335.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 330, + "subitem": null, + "item": null, + "bill_id": "1030314071000200", + "bill_ref": "887G14717-722", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送各科目預算凍結2,000萬元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 331, + "subitem": null, + "item": null, + "bill_id": "1030324071001800", + "bill_ref": "887G14717-986", + "proposed_by": "行政院", + "summary": "函,為103年度中央政府總預算決議,檢送「新聞傳播業務」凍結五分之一計1,218萬5千元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 332, + "subitem": null, + "item": null, + "bill_id": "1030307071001700", + "bill_ref": "887G14717-667", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「推展一般教育及編印文教書刊」之辦理教育部法規疑義之研議闡釋等原列1,460萬4,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00338.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00338.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 333, + "subitem": null, + "item": null, + "bill_id": "1030314071006000", + "bill_ref": "887G14717-779", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高等教育行政及督導」預算116億8,826萬8,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00339.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00339.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 334, + "subitem": null, + "item": null, + "bill_id": "1030314071006300", + "bill_ref": "887G14717-782", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「教師專業發展」業務費1億2,365萬8,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 335, + "subitem": null, + "item": null, + "bill_id": "1030314071006200", + "bill_ref": "887G14717-781", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「校園安全維護與學校反毒宣教工作推展」經費1億2,136萬3,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00341.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00341.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 336, + "subitem": null, + "item": null, + "bill_id": "1030417071000400", + "bill_ref": "887G14717-1173", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「榮眷健康保險」預算3,000 萬元,俟向本院外交及國防委員會提出書面報告後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00342.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00342.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 337, + "subitem": null, + "item": null, + "bill_id": "1030410071002100", + "bill_ref": "887G14717-1168", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函送「交通部觀光局公布之國內旅遊人次創造2千元之觀光收入與森保處運用閒置土地辦理合作經營違失案」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00343.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00343.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 338, + "subitem": null, + "item": null, + "bill_id": "1030317071001100", + "bill_ref": "887G14717-719", + "proposed_by": "公務人員保障暨培訓委員會", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」項下「人員維持」之「加班值班費」經費611萬元及「訓練進修業務規劃與宣導費用」預算,各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 339, + "subitem": null, + "item": null, + "bill_id": "1030224071003800", + "bill_ref": "887G14717-368", + "proposed_by": "銓敘部", + "summary": "函,為103年度中央政府總預算決議,針對該部「人事法制及銓敘」經費編列787萬6,000元,凍結五分之ㄧ乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 340, + "subitem": null, + "item": null, + "bill_id": "1030226071002900", + "bill_ref": "887G14717-489", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「一般行政」項下「業務費」之「房屋建築養護費」經費110萬元,俟向本院司法及法制委員會提出說明及檢討報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 341, + "subitem": null, + "item": null, + "bill_id": "1030226071003000", + "bill_ref": "887G14171-490", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「法制業務」項目經費五分之一,俟研議適法作為,向本院司法及法制委員會提出報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 342, + "subitem": null, + "item": null, + "bill_id": "1030226071003100", + "bill_ref": "887G14717-491", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,針對「施政業務及督導」經費1,295萬9,000元,凍結五分之一,俟向本院司法及法制委員會提出學術交流計畫等相關報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 343, + "subitem": null, + "item": null, + "bill_id": "1030307071005700", + "bill_ref": "887G14717-713", + "proposed_by": "考選部", + "summary": "函,為103年度中央政府總預算決議,凍結「試題研編及審查」預算之五分之一,俟向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 344, + "subitem": null, + "item": null, + "bill_id": "1030307071005600", + "bill_ref": "887G14717-712", + "proposed_by": "考選部", + "summary": "函,為103年度中央政府總預算決議,凍結「研究發展及宣導」預算之五分之一,俟研議改善方案,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00278.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00278.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 345, + "subitem": null, + "item": null, + "bill_id": "1030213071000100", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送技工、工友及駕駛人員精簡辦法相關專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 346, + "subitem": null, + "item": null, + "bill_id": "1030213071000200", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「中高階公務人員密集英語訓練」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 347, + "subitem": null, + "item": null, + "bill_id": "1030213071000300", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「選送優秀公務人員出國進修學位」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 348, + "subitem": null, + "item": null, + "bill_id": "1030213071000400", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「選送組團出國專題研究辦理情形」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 349, + "subitem": null, + "item": null, + "bill_id": "1030213071000500", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「高階公務人員出國短期研習辦理情形」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 350, + "subitem": null, + "item": null, + "bill_id": "1030213071000700", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「公務人力培訓績效指標具體改善計畫」專案報告,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 351, + "subitem": null, + "item": null, + "bill_id": "1030207071003100", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,有關凍結「公務人員培訓與考用-辦理選送公務人員出國研習業務」預算五分之一,並應提出專案報告乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 352, + "subitem": null, + "item": null, + "bill_id": "1030207071003200", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,有關凍結「規劃訓練進修」費用六分之一,並應提出專案報告乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 353, + "subitem": null, + "item": null, + "bill_id": "1030213071000600", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,有關應提「公務人力培訓績效指標具體改善計畫」專案報告乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 354, + "subitem": null, + "item": null, + "bill_id": "1030213071002800", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「財團法人國家同步輻射研究中心發展計畫」原列3億5,000萬元,凍結五分之一,應向本院教育及文化委員會提出報告後,始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 355, + "subitem": null, + "item": null, + "bill_id": "1030213071002900", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「台灣光源計畫」原列6億4,000萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 356, + "subitem": null, + "item": null, + "bill_id": "1030213071003000", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「太空科技發展與服務計畫」原列17億2,815萬8,000元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 357, + "subitem": null, + "item": null, + "bill_id": "1030213071003100", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關中部科學工業園區管理局及所屬「高等研究園區開發業務」原列9,684萬8,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 358, + "subitem": null, + "item": null, + "bill_id": "1030213071003200", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「科技政策研究與知識庫服務計畫」原列2億9,705萬元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 359, + "subitem": null, + "item": null, + "bill_id": "1030213071003300", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「財團法人國家實驗研究院發展計畫」之「晶片設計實作計畫」,原列2億8,803萬7,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 360, + "subitem": null, + "item": null, + "bill_id": "1030213071003400", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「財團法人國家實驗研究院發展計畫」之「儀器科技發展計畫」,原列4億1,700萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 361, + "subitem": null, + "item": null, + "bill_id": "1030213071003500", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「儀器科技發展計畫」─獎補助費─對國內團體之捐助原列4億1,700萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 362, + "subitem": null, + "item": null, + "bill_id": "1030213071003700", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「災害防救科技發展與運用計畫」─獎補助費─對國內團體之捐助原列l億6,084萬6,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 363, + "subitem": null, + "item": null, + "bill_id": "1030213071003800", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「高速計算與網路應用研究計畫」原列7億6,814萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 364, + "subitem": null, + "item": null, + "bill_id": "1030213071003900", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「高速計算與網路應用研究計畫」─獎補助費─對國內團體之捐助原列7億6,814萬元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 365, + "subitem": null, + "item": null, + "bill_id": "1030213071004000", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「奈米元件研究與技術人才培育服務計畫」原列4億8,291萬6,000元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 366, + "subitem": null, + "item": null, + "bill_id": "1030213071004100", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「晶片設計實作計畫」─獎補助費─對國內團體之捐助原列2億8,803萬7,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 367, + "subitem": null, + "item": null, + "bill_id": "1030213071003600", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「儀器科技發展計畫」下生醫科技研發與驗證原列l億8,200萬元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 368, + "subitem": null, + "item": null, + "bill_id": "1030217071000100", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「高等研究園區開發業務」預算凍結500萬元,應向本院教育及文化委員會提出專案報告乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 369, + "subitem": null, + "item": null, + "bill_id": "1030217071000200", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「科技政策研究與知識庫服務計畫」預算凍結3,000萬元,應向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 370, + "subitem": null, + "item": null, + "bill_id": "1030217071000300", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「海洋科技發展計畫」預算凍結3,000萬元,應向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 371, + "subitem": null, + "item": null, + "bill_id": "1030214071002000", + "bill_ref": null, + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九),檢送應提之書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 372, + "subitem": null, + "item": null, + "bill_id": "1030218071000800", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「志工服務照顧榮民作業」項下「獎補助費」預算500萬元,俟向本院外交及國防委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 373, + "subitem": null, + "item": null, + "bill_id": "1030218071000900", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「基本行政工作維持」榮民節活動經費、文教宣慰活動及媒體聯繫作業等預算200萬元,俟向本院外交及國防委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 374, + "subitem": null, + "item": null, + "bill_id": "1030218071001000", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「對榮民及特定醫療體系之補助」預算4,532萬5,000元,俟向本院外交及國防委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 375, + "subitem": null, + "item": null, + "bill_id": "1030218071001100", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「就養榮民給與等經費」預算101億5,157萬4,000元之五分之一,俟向本院外交及國防委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 376, + "subitem": null, + "item": null, + "bill_id": "1030218071001200", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「就養榮民給與等經費」項下就養榮民眷屬補助費2億6,399萬7,000元之五分之一,俟向本院外交及國防委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 377, + "subitem": null, + "item": null, + "bill_id": "1030220071000100", + "bill_ref": "887G14717-201", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對建築研究所凍結辦理耐震標章之評定審查、研究、宣導推廣等所有相關預算二分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 378, + "subitem": null, + "item": null, + "bill_id": "1030220071000200", + "bill_ref": "887G14717-202", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「一般行政─基本行政工作維持」原列7,888萬6,000元(法定預算數為7,838萬7,000元)凍結十分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 379, + "subitem": null, + "item": null, + "bill_id": "1030220071000300", + "bill_ref": "887G14717-203", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「移民輔導人口販運防制及居留定居管理」預算編列5億4,892萬元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 380, + "subitem": null, + "item": null, + "bill_id": "1030220071000400", + "bill_ref": "887G14717-204", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「執行移出輔導及國際事務工作」預算原列4,034萬5千元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 381, + "subitem": null, + "item": null, + "bill_id": "1030220071000500", + "bill_ref": "887G14717-205", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對役政署「替代役役男服勤及生活管理之督導─業務費」原列350萬元,凍結30%,俟向本院內政委員會提出檢討報告後始得動支乙案,檢送解凍檢討報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 382, + "subitem": null, + "item": null, + "bill_id": "1030220071001800", + "bill_ref": "887G14717-216", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬編列「建置使用WIFI手持式行動裝置定位系統」500萬元,凍結四分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 383, + "subitem": null, + "item": null, + "bill_id": "1030220071001600", + "bill_ref": "887G14717-217", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬辦理「警政發展方案(第1期)─充實科技犯罪偵防設備計畫」,原列1億2,853萬7,000元(法定預算數1億2,803萬7,000元),凍結十分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 384, + "subitem": null, + "item": null, + "bill_id": "1030220071001700", + "bill_ref": "887G14717-218", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「移民發展及工程建設計畫」編列6,390萬元,凍結三分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 385, + "subitem": null, + "item": null, + "bill_id": "1030224071002100", + "bill_ref": "887G14717-351", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「交通安全維護及交通秩序規劃」編列經費1,106萬1,000元,凍結五分之一,俟向本院內政委員會提出檢討報告及防治計畫經同意後始得動支乙案,檢送相關資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 386, + "subitem": null, + "item": null, + "bill_id": "1030224071002300", + "bill_ref": "887G14717-353", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」項下「城鎮風貌型塑計畫」原列8億元,凍結五分之一,俟向本院內政委員會報告後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 387, + "subitem": null, + "item": null, + "bill_id": "1030224071002400", + "bill_ref": "887G14717-354", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」項下「城鎮風貌型塑計畫」預算凍結五分之一,俟向本院內政委員會提出報告後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 388, + "subitem": null, + "item": null, + "bill_id": "1030224071002500", + "bill_ref": "887G14717-355", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「建立整體性入出國及移民管理資訊系統」中「推動新住民資訊素養教育計畫」原列3,500萬元,凍結三分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 389, + "subitem": null, + "item": null, + "bill_id": "1030224071002600", + "bill_ref": "887G14717-356", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署及所屬「入出國及移民管理業務」項下「通訊費」原列4,956萬5,000元,凍結500萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 390, + "subitem": null, + "item": null, + "bill_id": "1030224071002800", + "bill_ref": "887G14717-357", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「殯葬管理」編列「殯葬設施示範計畫」第3期計畫經費1億1,506萬元,刪減300萬元,餘凍結20%,俟向本院內政委員會報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 391, + "subitem": null, + "item": null, + "bill_id": "1030224071002900", + "bill_ref": "887G14717-358", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」預算凍結1億元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 392, + "subitem": null, + "item": null, + "bill_id": "1030220071000600", + "bill_ref": "887G14717-206", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結體育署「輔導2017臺北世界大學運動會籌備計畫」解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 393, + "subitem": null, + "item": null, + "bill_id": "1030220071000700", + "bill_ref": "887G14717-207", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送該部「產學合作及技職教師研習」原列21億2,036萬7,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 394, + "subitem": null, + "item": null, + "bill_id": "1030220071000800", + "bill_ref": "887G14717-208", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「技術職業教育行政及督導」之「輔導改進技專校院之管理發展」預算解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 395, + "subitem": null, + "item": null, + "bill_id": "1030220071000900", + "bill_ref": "887G14717-209", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「終身教育行政及督導」項下「推行家庭教育」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00175.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00175.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 396, + "subitem": null, + "item": null, + "bill_id": "1030220071001000", + "bill_ref": "887G14717-210", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「推展一般教育及編印文教書刊」中辦理教育部法規疑義之研議闡釋等400萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 397, + "subitem": null, + "item": null, + "bill_id": "1030220071001900", + "bill_ref": "887G14717-219", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國立社教館所維持及發展輔助」項下用於獎補助費─輔助國立海洋生物博物館經費1億0,390萬8,000元之三分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 398, + "subitem": null, + "item": null, + "bill_id": "1030220071002000", + "bill_ref": "887G14717-220", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關「師資培育與藝術教育行政及督導」項下「推行藝術教育」,原列1億0,197萬9,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00178.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00178.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 399, + "subitem": null, + "item": null, + "bill_id": "1030220071001200", + "bill_ref": "887G14717-211", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,凍結該部水利署「水資源開發及維護」項下「無自來水地區供水改善計畫第二期」預算相關項目計2案,業已備妥資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 400, + "subitem": null, + "item": null, + "bill_id": "1030220071002900", + "bill_ref": "887G14717-229", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」分支計畫「資訊管理」辦理經濟地理資訊圖資建置計畫預算凍結十分之一乙案,檢送辦理情形,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 401, + "subitem": null, + "item": null, + "bill_id": "1030220071003000", + "bill_ref": "887G14717-230", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署「水資源科技發展」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 402, + "subitem": null, + "item": null, + "bill_id": "1030224071003000", + "bill_ref": "887G14717-362", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「水利行政及水權業務─設備及投資─公共建設及設施費」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 403, + "subitem": null, + "item": null, + "bill_id": "1030224071003100", + "bill_ref": "887G14717-363", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「延攬海外科技人才」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 404, + "subitem": null, + "item": null, + "bill_id": "1030224071003200", + "bill_ref": "887G14717-364", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對投資業務處編列委辦費(促進投資科目項下)預算凍結二分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 405, + "subitem": null, + "item": null, + "bill_id": "1030224071003300", + "bill_ref": "887G14717-365", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對中央地質調查所「地質科技研究發展」預算凍結五分之一,俟向本院經濟委員會報告後始得動支乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 406, + "subitem": null, + "item": null, + "bill_id": "1030220071001100", + "bill_ref": "887G14717-212", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對動植物防疫檢疫局歲出預算凍結1000萬元乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 407, + "subitem": null, + "item": null, + "bill_id": "1030220071001300", + "bill_ref": "887G14717-213", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業管理」項下「養殖漁業管理」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 408, + "subitem": null, + "item": null, + "bill_id": "1030220071001400", + "bill_ref": "887G14717-241", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局「農業金融業務」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 409, + "subitem": null, + "item": null, + "bill_id": "1030220071001500", + "bill_ref": "887G14717-215", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 410, + "subitem": null, + "item": null, + "bill_id": "1030220071002100", + "bill_ref": "887G14717-221", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對畜產試驗所歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 411, + "subitem": null, + "item": null, + "bill_id": "1030220071002200", + "bill_ref": "887G14717-222", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業試驗所歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 412, + "subitem": null, + "item": null, + "bill_id": "1030220071002300", + "bill_ref": "887G14717-223", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」項下「改善政府動物管制收容設施計畫」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 413, + "subitem": null, + "item": null, + "bill_id": "1030220071002400", + "bill_ref": "887G14717-224", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對動植物防疫檢疫局歲出預算,除人事、行政經費外,凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 414, + "subitem": null, + "item": null, + "bill_id": "1030224071003400", + "bill_ref": "887G14717-359", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」項下「加強農田水利建設」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 415, + "subitem": null, + "item": null, + "bill_id": "1030224071003500", + "bill_ref": "887G14717-360", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」項下「農田水利會營運改善」原列5億8,091萬元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 416, + "subitem": null, + "item": null, + "bill_id": "1030224071003600", + "bill_ref": "887G14717-361", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業管理」項下「農田水利管理」預算22億6,467萬5,000元,凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 417, + "subitem": null, + "item": null, + "bill_id": "1030224071003900", + "bill_ref": "887G14717-369", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對茶業改良場「茶業技術研究改良」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 418, + "subitem": null, + "item": null, + "bill_id": "1030220071002500", + "bill_ref": "887G14717-225", + "proposed_by": "行政院公共工程委員會", + "summary": "函,為103年度中央政府總預算決議,要求該會提送政府採購電子化之建置期程、相關計畫等書面資料備查,始得動支相關預算乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 419, + "subitem": null, + "item": null, + "bill_id": "1030220071002600", + "bill_ref": "887G14717-226", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「安全管理維護」3,209萬元之五分之一預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 420, + "subitem": null, + "item": null, + "bill_id": "1030220071002700", + "bill_ref": "887G14717-227", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「基本行政工作維持」之指導委員會會議資料等相關費用2萬5,000元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 421, + "subitem": null, + "item": null, + "bill_id": "1030220071002800", + "bill_ref": "887G14717-228", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文物加值運用與管理」200萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 422, + "subitem": null, + "item": null, + "bill_id": "1030226071001700", + "bill_ref": "887G14717-691", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第1項司法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 423, + "subitem": null, + "item": null, + "bill_id": "1030226071001900", + "bill_ref": "887G14717-479", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第7項公務員懲戒委員會通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 424, + "subitem": null, + "item": null, + "bill_id": "1030226071002000", + "bill_ref": "887G14717-481", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第16項臺灣士林地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 425, + "subitem": null, + "item": null, + "bill_id": "1030227071002200", + "bill_ref": "887G14717-494", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第17項臺灣新北地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 426, + "subitem": null, + "item": null, + "bill_id": "1030227071002500", + "bill_ref": "887G14717-495", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第18項臺灣桃園地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 427, + "subitem": null, + "item": null, + "bill_id": "1030227071002400", + "bill_ref": "887G14717-496", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第19項臺灣新竹地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 428, + "subitem": null, + "item": null, + "bill_id": "1030226071002300", + "bill_ref": "887G14717-483", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第21項臺灣臺中地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 429, + "subitem": null, + "item": null, + "bill_id": "1030226071002800", + "bill_ref": "887G14717-488", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第22項臺灣南投地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 430, + "subitem": null, + "item": null, + "bill_id": "1030227071002300", + "bill_ref": "887G14717-497", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第23項臺灣彰化地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 431, + "subitem": null, + "item": null, + "bill_id": "1030227071002100", + "bill_ref": "887G14717-498", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第24項臺灣雲林地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 432, + "subitem": null, + "item": null, + "bill_id": "1030226071002700", + "bill_ref": "887G14717-487", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第28項臺灣屏東地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00202.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 433, + "subitem": null, + "item": null, + "bill_id": "1030226071002500", + "bill_ref": "887G14717-485", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第29項臺灣臺東地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 434, + "subitem": null, + "item": null, + "bill_id": "1030226071002600", + "bill_ref": "887G14717-486", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第30項臺灣花蓮地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 435, + "subitem": null, + "item": null, + "bill_id": "1030226071001800", + "bill_ref": "887G14717-480", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第31項臺灣宜蘭地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 436, + "subitem": null, + "item": null, + "bill_id": "1030226071002100", + "bill_ref": "887G14717-482", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第32項臺灣基隆地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 437, + "subitem": null, + "item": null, + "bill_id": "1030226071002400", + "bill_ref": "887G14717-484", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第33項臺灣澎湖地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 438, + "subitem": null, + "item": null, + "bill_id": "1030225071007900", + "bill_ref": "887G14717-449", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高級中等學校教育」之「補助高職發展務實致用之特色課程」預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 439, + "subitem": null, + "item": null, + "bill_id": "1030225071008100", + "bill_ref": "887G14717-451", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「私立學校教學獎助」中「輔導私立大專校院財務及會計行政」300萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 440, + "subitem": null, + "item": null, + "bill_id": "1030225071008000", + "bill_ref": "887G14717-450", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「產學合作及技職教師研習」項下彈性薪資方案原列2,500萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 441, + "subitem": null, + "item": null, + "bill_id": "1030225071008200", + "bill_ref": "887G14717-452", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導私立大專校院財務及會計行政」948萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 442, + "subitem": null, + "item": null, + "bill_id": "1030225071008300", + "bill_ref": "887G14717-453", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「產學合作及技職教師研習」項下發展典範科技大學計畫,原列12億1,090萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 443, + "subitem": null, + "item": null, + "bill_id": "1030225071008400", + "bill_ref": "887G14717-454", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「技術職業教育行政及督導」原列59億8,818萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 444, + "subitem": null, + "item": null, + "bill_id": "1030225071008500", + "bill_ref": "887G14717-455", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國際及兩岸教育交流」編列17億1,240萬8,000元,其中「辦理兩岸學術交流相關事務」原列1,797萬6,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 445, + "subitem": null, + "item": null, + "bill_id": "1030226071000900", + "bill_ref": "887G14717-470", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署、海洋巡防總局及海岸巡防總局設備費用凍結1億元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 446, + "subitem": null, + "item": null, + "bill_id": "1030226071001000", + "bill_ref": "887G14717-471", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署及海洋巡防總局大陸地區旅費124萬6,000元全數凍結,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 447, + "subitem": null, + "item": null, + "bill_id": "1030226071001100", + "bill_ref": "887G14717-472", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署海岸及海域巡防業務─通訊資訊管理作業項下編列海巡岸際雷達系統換裝計畫3,000萬元,凍結500萬元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 448, + "subitem": null, + "item": null, + "bill_id": "1030226071001200", + "bill_ref": "887G14717-473", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署海岸及海域巡防業務─海巡建設計畫項下編列南沙太平島交通基礎整建工程計畫10億226萬1,000元,凍結2億元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 449, + "subitem": null, + "item": null, + "bill_id": "1030226071001300", + "bill_ref": "887G14717-474", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海洋巡防總局一般行政項下編列人事費-加班值班費2億7,249萬元,凍結1,000萬元,俟向本院內政委員會報告並經同意後,始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 450, + "subitem": null, + "item": null, + "bill_id": "1030226071001400", + "bill_ref": "887G14717-475", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海洋巡防總局海洋巡防業務項下艦艇建造及維修經費,凍結5,000萬元,俟向本院內政委員會報告並經同意後,始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 451, + "subitem": null, + "item": null, + "bill_id": "1030226071001500", + "bill_ref": "887G14717-476", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海岸巡防總局及所屬海岸巡防規劃及管理、地區海岸巡防工作編列港口安全檢查計1,651萬8,000元,凍結200萬元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 452, + "subitem": null, + "item": null, + "bill_id": "1030226071001600", + "bill_ref": "887G14717-477", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海岸巡防總局及所屬地區海岸巡防工作編列7億4,321萬6,000元,凍結5,000萬元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 453, + "subitem": null, + "item": null, + "bill_id": "1030507071001100", + "bill_ref": "1534G8958-18", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「辦理推廣貿易業務補助辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00459.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00459.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 454, + "subitem": null, + "item": null, + "bill_id": "1030507071001200", + "bill_ref": "1053G14332-23", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「在大陸地區從事投資或技術合作禁止類農業產品項目」部分項目、「在大陸地區從事投資或技術合作禁止類製造業產品項目」部分項目及「禁止赴大陸地區投資之基礎建設項目」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00460.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00460.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 455, + "subitem": null, + "item": null, + "bill_id": "1030507071001300", + "bill_ref": "1539G12351-2", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「經濟部資源再生綠色產品審查認定辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00461.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00461.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 456, + "subitem": null, + "item": null, + "bill_id": "1030507071001400", + "bill_ref": "618G8290-9", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「公司之登記及認許辦法」第八條條文及第十六條附表案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00462.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00462.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 457, + "subitem": null, + "item": null, + "bill_id": "1030507071001500", + "bill_ref": "1374G14675-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「臺紐經濟合作協定原產地聲明書相關事項」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00463.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00463.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 458, + "subitem": null, + "item": null, + "bill_id": "1030507071001600", + "bill_ref": "956G9537-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「申請農業用地作農業設施容許使用審查辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00464.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00464.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 459, + "subitem": null, + "item": null, + "bill_id": "1030507071001700", + "bill_ref": "1801G9015-8", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院勞工委員會函,為修正「就業促進津貼實施辦法」第十二條及第三十八條條文等11案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00465.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00465.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 460, + "subitem": null, + "item": null, + "bill_id": "1030507078800100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為立法委員吳育仁國會辦公室函轉財政部高雄市國稅局工會等連署書,為陳請保障公務機關約聘僱人員退休保障,能比照勞動基準法最低規定之請願文書案,經審查結果,不成為議案案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00466.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00466.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 461, + "subitem": null, + "item": null, + "bill_id": "1030507078800200", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為牛玉津先生為請就「勞動基準法第84條及其施行細則第50條」執行之疑難問題,陳請釋明之請願文書案,經審查結果,不成為議案案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00467.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00467.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 462, + "subitem": null, + "item": null, + "bill_id": "1030507078800300", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為林碧珠女士為建請修正「老人福利法」第41條,增列排除條款之請願文書案,經審查結果,不成為議案案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00468.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00468.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1020329070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國102年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(含財政委員會、司法及法制委員會審查報告暨內政委員會、外交及國防委員會信託基金審查報告部分;其餘各委員會尚未審查完竣未及列入)", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602302_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 2, + "item": null, + "bill_id": "1020517070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關交通委員會營業及非營業預算部分;內政、外交及國防委員會之非營業預算部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803140602322_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 3, + "item": null, + "bill_id": "1020530070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關經濟、社會福利及衛生環境委員會營業及非營業部分暨教育及文化委員會之非營業部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/03/01/01/LCEWA01_080301_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803010603009_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1030331070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國103年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(未含內政、經濟、教育及文化、司法及法制、社會福利及衛生環境等5委員會附屬單位預算營業及非營業部分審查報告)", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1010528070202200", + "bill_ref": "1044L13747", + "proposed_by": "本院委員邱文彥等32人", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\01\\LCEWA01_080201_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/01/LCEWA01_080201_00008.doc" + }, + "sitting_introduced": "08-02-YS-01" + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1030505070300300", + "bill_ref": "225G14924-1", + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「所得稅法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00476.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00476.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 1, + "item": null, + "bill_id": "1030505070300400", + "bill_ref": "271G;L14923;15007;15011;15096;15127;15223;15780;16103-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「加值型及非加值型營業稅法第十一條及第三十六條條文修正草案」、委員廖正井等55人、委員林淑芬等21人、委員羅淑蕾等20人、委員林佳龍等26人、委員陳節如等22人、委員黃偉哲等19人及委員李應元等17人分別擬具「加值型及非加值型營業稅法第十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00477.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00477.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 6, + "subitem": 1, + "item": null, + "bill_id": "1030408070300200", + "bill_ref": "1044G14832-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院函請審議「政治獻金法第十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00478.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00478.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 7, + "subitem": 1, + "item": null, + "bill_id": "1030319070300200", + "bill_ref": "468L14386;15927;16068-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員何欣純等18人擬具「勞工保險條例第二十條及第三十二條條文修正草案」及委員趙天麟等23人、委員劉建國等24人分別擬具「勞工保險條例第三十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 8, + "subitem": 1, + "item": null, + "bill_id": "1030507070300200", + "bill_ref": "464G;L14904;16100;16186;12912;13044;14350;15113;15329;15881;15882;16244-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「保險法部分條文修正草案」、委員李應元等16人、委員賴士葆等17人分別擬具「保險法部分條文修正草案」、委員黃昭順等23人擬具「保險法第六十四條條文修正草案」、委員蔡錦隆等24人擬具「保險法第一百二十二條條文修正草案」、親民黨黨團擬具「保險法第五十三條條文修正草案」、委員丁守中等16人擬具「保險法第一百四十六條之二條文修正草案」、委員吳秉叡等24人擬具「保險法第一條條文修正草案」、委員李桐豪等18人擬具「保險法第一百四十三條之一條文修正草案」、委員李桐豪等22人擬具「保險法第一百四十三條之四、第一百四十三條之五及第一百四十九條條文修正草案」及委員李應元等22人擬具「保險法第一百四十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00480.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00480.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 9, + "subitem": 1, + "item": null, + "bill_id": "1030506070300200", + "bill_ref": "161L16117-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查委員呂學樟等23人擬具「刑事妥速審判法第五條及第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00481.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00481.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 10, + "subitem": 1, + "item": null, + "bill_id": "1030415070300100", + "bill_ref": "1028L14648-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員林岱樺等23人擬具「師資培育法第二十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 11, + "subitem": 1, + "item": null, + "bill_id": "1030418070300100", + "bill_ref": "1259L15302-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員林佳龍等20人擬具「特殊教育法第二十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 12, + "subitem": 1, + "item": null, + "bill_id": "1030418070300200", + "bill_ref": "1604L15769-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳亭妃等22人擬具「學校衛生法第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 13, + "subitem": 1, + "item": null, + "bill_id": "1030418070300300", + "bill_ref": "230L15688-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳節如等20人擬具「學位授予法第八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 14, + "subitem": 1, + "item": null, + "bill_id": "1030425070300100", + "bill_ref": "1053L14774;15884-1", + "proposed_by": "本院經濟委員會", + "summary": "報告併案審查委員廖國棟等20人擬具「石油管理法第三十六條條文修正草案」及委員鄭天財等21人擬具「石油管理法第三十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 15, + "subitem": 1, + "item": null, + "bill_id": "1030407070300200", + "bill_ref": "1352L14138-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員吳育仁等18人擬具「勞資爭議處理法第二十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 16, + "subitem": 1, + "item": null, + "bill_id": "1030407070300300", + "bill_ref": "1566L14139-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員吳育仁等22人擬具「團體協約法第六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 17, + "subitem": 1, + "item": null, + "bill_id": "1030425070300200", + "bill_ref": "468L16091-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員潘孟安等18人擬具「就業保險法第二十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 18, + "subitem": 1, + "item": null, + "bill_id": "1030123070300100", + "bill_ref": "1032L15346-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員王育敏等26人擬具「身心障礙者權益保障法增訂第六十四條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 19, + "subitem": 1, + "item": null, + "bill_id": "1030123070300200", + "bill_ref": "1032L15678-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員劉建國等21人擬具「身心障礙者權益保障法增訂第五十七條之一及第八十八條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 20, + "subitem": 1, + "item": null, + "bill_id": "1030123070300400", + "bill_ref": "1032L15382-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員陳節如等18人擬具「身心障礙者權益保障法第六十四條、第九十二條及第九十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 21, + "subitem": 1, + "item": null, + "bill_id": "1030123070300300", + "bill_ref": "1032L15691-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員陳節如等20人擬具「身心障礙者權益保障法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 22, + "subitem": 1, + "item": null, + "bill_id": "1030411070300100", + "bill_ref": "468L12994;14763;15236-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員蔣乃辛等24人擬具「勞工保險條例增訂第二十七條之一條文草案」及委員蔣乃辛等19人、委員王惠美等26人分別擬具「勞工保險條例第七十四條之二條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 23, + "subitem": 1, + "item": null, + "bill_id": "1030407070300100", + "bill_ref": "962L15712-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員蔡正元等16人擬具「海洋污染防治法第十三條及第三十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00293.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00293.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 24, + "subitem": 1, + "item": null, + "bill_id": "1030403070300100", + "bill_ref": "159G;L14847;15421-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告併案審查行政院函請審議「兵役法施行法部分條文修正草案」及台灣團結聯盟黨團擬具「兵役法施行法第三十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 25, + "subitem": 1, + "item": null, + "bill_id": "1030113070300300", + "bill_ref": "1586L13991;14066;13432-1", + "proposed_by": "本院教育及文化、財政兩委員會", + "summary": "報告併案審查委員何欣純等24人、委員管碧玲等23人分別擬具「運動彩券發行條例第七條條文修正草案」及委員林佳龍等25人擬具「運動彩券發行條例第八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 26, + "subitem": 1, + "item": null, + "bill_id": "1030417070300200", + "bill_ref": "1684L15998;15615-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告併案審查委員盧秀燕等18人擬具「全民防衛動員準備法第二十五條及第三十六條條文修正草案」及委員盧秀燕等27人擬具「全民防衛動員準備法第三十六條條文修正草案」。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 27, + "subitem": 1, + "item": null, + "bill_id": "1030421070300100", + "bill_ref": "1429L15157;15770-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查委員陳亭妃等23人擬具「發展大眾運輸條例第四條條文修正草案」及委員陳亭妃等22人擬具「發展大眾運輸條例增訂第四條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 28, + "subitem": 1, + "item": null, + "bill_id": "1030421070300200", + "bill_ref": "1429L15156;14076-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查委員陳亭妃等23人擬具「大眾捷運法第二十四條之二條文修正草案」及委員李昆澤等22人擬具「大眾捷運法第二十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 1, + "item": null, + "bill_id": "1030410070300100", + "bill_ref": "727L15541;15610-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員蔡正元等27人及委員王惠美等18人分別擬具「金融資產證券化條例第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 30, + "subitem": 1, + "item": null, + "bill_id": "1030410070300200", + "bill_ref": "801G14723;14929;14816;14892;15123;15166-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員賴士葆等23人、親民黨黨團分別擬具「金融控股公司法第四十三條條文修正草案」及委員孫大千等20人、委員李俊俋等22人、委員謝國樑等26人、委員何欣純等16人分別擬具「金融控股公司法第四十三條及第六十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 31, + "subitem": 1, + "item": null, + "bill_id": "1030331070300200", + "bill_ref": "1043L14724;14817;15122;15641-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員賴士葆等24人、委員孫大千等19人、委員謝國樑等21人分別擬具「金融消費者保護法第七條條文修正草案」及委員賴士葆等27人擬具「金融消費者保護法第十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 32, + "subitem": 1, + "item": null, + "bill_id": "1030501070300100", + "bill_ref": "39L15556;16101-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員孫大千等18人擬具「房屋稅條例增訂第五條之一條文草案」及委員李應元等16人擬具「房屋稅條例第五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 33, + "subitem": 1, + "item": null, + "bill_id": "1030410070300300", + "bill_ref": "801L14950;15450;15520;15647;15854;16042-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員顏寬恒等29人擬具「銀行法第四十五條之一條文修正草案」、委員賴士葆等24人、委員李應元等18人、委員黃偉哲等17人、委員許忠信等17人及委員謝國樑等16人分別擬具「銀行法第七條之一、第十九條及第四十五條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 34, + "subitem": 1, + "item": null, + "bill_id": "1030116070300200", + "bill_ref": "671G14761-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告審查行政院函請審議「國軍退除役官兵輔導條例第三條之一、第三十三條及第三十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 35, + "subitem": 1, + "item": null, + "bill_id": "1030422070300200", + "bill_ref": "161L14841;15521;15573-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員李應元等20人擬具「刑事訴訟法第二百五十三條之二及第四百五十五條之二條文修正草案」、委員廖正井等24人擬具「刑事訴訟法第二百五十三條之二條文修正草案」及委員廖正井等26人擬具「刑事訴訟法第三百七十條及第三百八十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 36, + "subitem": 1, + "item": null, + "bill_id": "1030422070300100", + "bill_ref": "474G;L14601;15376;15947-1", + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查司法院、行政院函請審議「智慧財產案件審理法第四條、第十九條及第二十三條條文修正草案」、委員李貴敏等38人擬具「智慧財產案件審理法第二十三條及第三十一條條文修正草案」及委員呂學樟等36人擬具「智慧財產案件審理法增訂第二十二條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 37, + "subitem": 1, + "item": null, + "bill_id": "1030328070300100", + "bill_ref": "474G;L14806;15376;15658-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查司法院、行政院函請審議「智慧財產法院組織法部分條文修正草案」、委員李貴敏等40人擬具「智慧財產法院組織法第三條條文修正草案」及委員呂學樟等22人擬具「智慧財產法院組織法第十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 38, + "subitem": 1, + "item": null, + "bill_id": "1030502070300200", + "bill_ref": "555L12943;12944;13082;15772;15855-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員賴士葆等16人擬具「強制執行法第一條條文修正草案」、委員賴士葆等19人擬具「強制執行法第八十一條條文修正草案」、委員蕭美琴等18人擬具「強制執行法第五十三條及第一百二十二條條文修正草案」、委員陳亭妃等22人擬具「強制執行法部分條文修正草案」及委員丁守中等28人擬具「強制執行法第七十七條及第八十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00510.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00510.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 39, + "subitem": 1, + "item": null, + "bill_id": "1030107070300200", + "bill_ref": "335L15356-1", + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "報告審查委員李昆澤等22人擬具「軍事審判法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 40, + "subitem": 1, + "item": null, + "bill_id": "1030109070300200", + "bill_ref": "335L15361;15406-1", + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "報告併案審查委員黃偉哲等16人擬具「軍事審判法部分條文修正草案」及委員李俊俋等19人擬具「軍事審判法第一條、第十八條及第五十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 41, + "subitem": 1, + "item": null, + "bill_id": "1030423070300100", + "bill_ref": "981L15351;15845-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員賴士葆等16人擬具「稅捐稽徵法第四十八條之一條文修正草案」及委員賴士葆等17人擬具「稅捐稽徵法第三十條、第三十三條及第四十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 42, + "subitem": 1, + "item": null, + "bill_id": "1030422070300300", + "bill_ref": "1518L15378-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查委員李貴敏等37人擬具「中小企業發展條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00309.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00309.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 1, + "item": null, + "bill_id": "1030116070300300", + "bill_ref": "959L15381-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查委員王惠美等16人擬具「農會法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 44, + "subitem": 1, + "item": null, + "bill_id": "1030411070300200", + "bill_ref": "801L14936;15542;15611;15451;15518;15519-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員薛凌等16人、委員蔡正元等27人、委員王惠美等18人分別擬具「信用合作社法第五條條文修正草案」、委員賴士葆等24人擬具「信用合作社法第二十一條條文修正草案」、委員王廷升等27人擬具「信用合作社法第十六條之一、第十六條之二及第十六條之三條文修正草案」及委員李應元等18人擬具「信用合作社法第五條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00311.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00311.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 45, + "subitem": 1, + "item": null, + "bill_id": "1030319070300300", + "bill_ref": "1156G;L14846;14517;15384;15470;15763;15827-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「傳染病防治法第二條及第二十三條條文修正草案」、委員蘇震清等19人擬具「傳染病防治法第三十條條文修正草案」、委員劉建國等18人擬具「傳染病防治法第五十一條條文修正草案」、委員李俊俋等21人擬具「傳染病防治法第六條條文修正草案」及委員江惠貞等21人、委員李桐豪等27人分別擬具「傳染病防治法第二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 46, + "subitem": 1, + "item": null, + "bill_id": "1030428070300100", + "bill_ref": "1537G;L13416;14107;14994;15415;15637-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「大量解僱勞工保護法第二條條文修正草案」及委員邱志偉等20人擬具「大量解僱勞工保護法第二條條文修正草案」、委員盧嘉辰等18人擬具「大量解僱勞工保護法第二條及第四條條文修正草案」、委員李桐豪等25人擬具「大量解僱勞工保護法第十二條條文修正草案」及委員王育敏等27人擬具「大量解僱勞工保護法第十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 47, + "subitem": 1, + "item": null, + "bill_id": "1030422070300400", + "bill_ref": "1619L14649;14765;14803;14815;14851-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員徐少萍等18人擬具「老人福利法部分條文修正草案」、委員江惠貞等29人、委員馬文君等21人分別擬具「老人福利法第三十八條條文修正草案」、委員孫大千等19人擬具「老人福利法第三十六條條文修正草案」及委員謝國樑等23人擬具「老人福利法第三十七條及第三十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 48, + "subitem": 1, + "item": null, + "bill_id": "1030418070300400", + "bill_ref": "786G;L14850;13824;15689-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查台灣團結聯盟黨團擬具「圖書館法第十五條條文修正草案」、委員陳節如等20人擬具「圖書館法第九條條文修正草案」及行政院函請審議「圖書館法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 49, + "subitem": 1, + "item": null, + "bill_id": "1030418070300500", + "bill_ref": "1684L16115-1", + "proposed_by": "本院外交及國防、社會福利及衛生環境兩委員會", + "summary": "報告審查委員王育敏等28人擬具「兒童權利公約施行法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 1, + "item": null, + "bill_id": "1030113070300200", + "bill_ref": "471G14754-1", + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "報告審查行政院、考試院函請審議「駐外外交領事人員任用條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 51, + "subitem": 1, + "item": null, + "bill_id": "1030415070300200", + "bill_ref": "1685G;L14871;14953-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「國立大學校院校務基金設置條例修正草案」及委員林岱樺等17人擬具「國立大學校院校務基金設置條例第五條之一、第五條之二及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 52, + "subitem": 1, + "item": null, + "bill_id": "1030502070300100", + "bill_ref": "703G14848-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查行政院函請審議「動物傳染病防治條例第十七條及第二十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00524.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00524.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 53, + "subitem": 1, + "item": null, + "bill_id": "1030506070300100", + "bill_ref": "246G13033-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議「中華民國刑法第三百四十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00525.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00525.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 54, + "subitem": 1, + "item": null, + "bill_id": "1030506070300300", + "bill_ref": "1539L16010;16027;16069;16073-1", + "proposed_by": "本院經濟、財政兩委員會", + "summary": "報告併案審查民進黨黨團擬具「產業創新條例第七十條條文修正草案」、委員蔣乃辛等23人、委員蔡正元等20人分別擬具「產業創新條例第十條條文修正草案」及委員楊麗環等50人擬具「產業創新條例第二十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00526.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00526.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 55, + "subitem": 1, + "item": null, + "bill_id": "1030507070300100", + "bill_ref": "246L14776;15553;15572-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員李貴敏等26人擬具「證人保護法第二條條文修正草案」、委員吳育昇等21人擬具「證人保護法第十四條條文修正草案」及委員廖正井等22人擬具「證人保護法第二條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00527.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00527.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 56, + "subitem": 1, + "item": null, + "bill_id": "1030108070300200", + "bill_ref": "887G14723-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣營建研究院103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 57, + "subitem": 1, + "item": null, + "bill_id": "1030108070300300", + "bill_ref": "887G17424-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人台灣建築中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 58, + "subitem": 1, + "item": null, + "bill_id": "1030108070300400", + "bill_ref": "887G17425-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人二二八事件紀念基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 59, + "subitem": 1, + "item": null, + "bill_id": "1030108070300500", + "bill_ref": "887G14726-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人國土規劃及不動產資訊中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 60, + "subitem": 1, + "item": null, + "bill_id": "1030108070300600", + "bill_ref": "887G14727-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人中央營建技術顧問研究社103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 61, + "subitem": 1, + "item": null, + "bill_id": "1030108070300700", + "bill_ref": "887G14729-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣省義勇人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 62, + "subitem": 1, + "item": null, + "bill_id": "1030108070300800", + "bill_ref": "887G14728-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人義勇消防人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 63, + "subitem": 1, + "item": null, + "bill_id": "1030108070300900", + "bill_ref": "887G14734-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院大陸委員會函送財團法人海峽交流基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 64, + "subitem": 1, + "item": null, + "bill_id": "1030108070301000", + "bill_ref": "887G14743-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院原住民族委員會函送財團法人原住民族文化事業基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 65, + "subitem": 1, + "item": null, + "bill_id": "1030108070301100", + "bill_ref": "887G14748-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查蒙藏委員會函送財團法人蒙藏基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 66, + "subitem": 1, + "item": null, + "bill_id": "1020221070300100", + "bill_ref": "1204G;L13003;13069;13413;13588;13987;14481;13589;14482;13590-1", + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查行政院函請審議及委員黃昭順等21人、委員林岱樺等27人、委員尤美女等16人、委員鄭天財等18人、委員吳宜臻等32人分別擬具「農業部組織法草案」;行政院函請審議「農業部農糧署組織法草案」、「農業部漁業署組織法草案」、「農業部動植物防疫檢疫署組織法草案」、「農業部水產試驗所組織法草案」、「農業部畜產試驗所組織法草案」、「農業部獸醫試驗所組織法草案」、「農業部農業藥物毒物試驗所組織法草案」、「農業部農業金融局組織法草案」;行政院函請審議「農業部農村及農田水利署組織法草案」、委員尤美女等16人擬具「農業部農村及農田水利署組織法草案」、委員鄭天財等18人擬具「農業部水土保持及農村發展署組織法草案」及委員吳宜臻等27人擬具「農業部農村再生及人力發展署組織法草案」;行政院函請審議「農業部農業試驗所組織法草案」及委員尤美女等20人擬具「農業部農業試驗所組織法草案」;委員鄭天財等18人擬具「農業部森林及保育署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 67, + "subitem": 1, + "item": null, + "bill_id": "1020205070300100", + "bill_ref": null, + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查行政院函請審議及委員吳宜臻等21人擬具「經濟及能源部組織法草案」案;行政院函請審議「經濟及能源部產業發展局組織法草案」、「經濟及能源部貿易商務局組織法草案」、「經濟及能源部中小企業局組織法草案」、「經濟及能源部智慧財產局組織法草案」、「經濟及能源部標準檢驗局組織法草案」、「經濟及能源部能源署組織法草案」案;行政院函請審議及委員吳宜臻等32人擬具「經濟及能源部產業園區管理局組織法草案」案;行政院函請審議及委員尤美女等16人擬具「經濟及能源部能源研究所組織法草案」案暨委員吳宜臻等24人擬具「氣候變遷暨能源發展委員會組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 68, + "subitem": 1, + "item": null, + "bill_id": "1011102070300100", + "bill_ref": "70G12999-1", + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告審查行政院函請審議「大陸委員會組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 69, + "subitem": 1, + "item": null, + "bill_id": "1011206070301200", + "bill_ref": "1128G;L13015;13592-1", + "proposed_by": "本院司法及法制、交通兩委員會", + "summary": "報告併案審查行政院函請審議「交通及建設部組織法草案」、「交通及建設部觀光署組織法草案」、「交通及建設部高速公路局組織法草案」、「交通及建設部公路局組織法草案」、「交通及建設部航港局組織法草案」、「交通及建設部民用航空局組織法草案」、「交通及建設部鐵道局組織法草案」及「交通及建設部運輸研究所組織法草案」暨委員尤美女等16人擬具「交通及建設部鐵道局組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 69, + "subitem": 2, + "item": null, + "bill_id": "1021227070300300", + "bill_ref": "1128L14961-1", + "proposed_by": "本院司法及法制、交通兩委員會", + "summary": "報告審查委員王廷升等25人擬具「交通部臺灣鐵路管理局組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局貨運服務總所組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局餐旅服務總所組織條例第一條條文修正草案」、「交通部臺灣鐵路管理局各機廠組織通則第一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 70, + "subitem": 1, + "item": null, + "bill_id": "1011120070300300", + "bill_ref": null, + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告併案審查行政院函請審議、親民黨黨團及委員林正二等25人分別擬具「內政部組織法修正草案」案、行政院函請審議「內政部消防署組織條例修正草案」及委員管碧玲等21人擬具「內政部消防署組織條例第十一條條文修正草案」案暨行政院函請審議「內政部國土管理署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 71, + "subitem": 1, + "item": null, + "bill_id": "1020510070300200", + "bill_ref": "1204G;L12995;13736;13304;13541;14221;13189;14738;14008;14242;13651;13711;13986;13737;14739-1", + "proposed_by": "本院司法及法制、社會福利及衛生環境兩委員會", + "summary": "報告併案審查行政院函請審議及委員鄭汝芬等24人、委員田秋堇等16人、委員吳宜臻等20人、委員鄭天財等18人、委員葉宜津等23人分別擬具「環境資源部組織法草案」;行政院函請審議「環境資源部氣象局組織法草案」、「環境資源部水利署組織法草案」、「環境資源部森林及保育署組織法草案」;行政院函請審議「環境資源部水保及地礦署組織法草案」及委員鄭天財等18人擬具「環境資源部地礦及地質調查局組織法草案」;行政院函請審議「環境資源部下水道及污染防治局組織法草案」、委員呂學樟等29人擬具「環境資源部下水道署組織法草案」及委員呂學樟等23人擬具「環境資源部下水道及環境工程局組織法草案」;行政院函請審議及委員管碧玲等20人、委員黃昭順等25人分別擬具「環境資源部國家公園署組織法草案」;行政院函請審議「環境資源部森林及自然保育試驗所組織法草案」、「環境資源部生物多樣性研究所組織法草案」、「環境資源部環境教育及訓練所組織法草案」;委員尤美女等17人擬具「化學安全管理署組織法草案」、委員林國正等16人擬具「環境資源部化學安全管理署組織法草案」及委員呂學樟等26人擬具「環境資源部化學品及污染管制局組織法草案」案;及委員吳宜臻等21人擬具「環境資源部核能安全署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 71, + "subitem": 2, + "item": null, + "bill_id": "1020403070200900", + "bill_ref": "1204L14832", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「環境資源部組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00356.doc" + }, + "sitting_introduced": "08-03-YS-08" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 1, + "item": null, + "bill_id": "1020201070300100", + "bill_ref": "1603G;L13001;13761;13768;13769-1", + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告併案審查行政院函請審議、委員丁守中等20人、委員姚文智等16人分別擬具「海洋委員會組織法草案」及「海洋委員會海巡署組織法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 2, + "item": null, + "bill_id": "1021223070201700", + "bill_ref": "1603L16000", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「行政院海洋委員會組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00065.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 3, + "item": null, + "bill_id": "1021223070201800", + "bill_ref": "1603L16001", + "proposed_by": "本院委員邱文彥等18人", + "summary": "擬具「海洋委員會海巡署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00066.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 4, + "item": null, + "bill_id": "1021223070201900", + "bill_ref": "1603L16002", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「海洋委員會海洋保育署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00067.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 5, + "item": null, + "bill_id": "1021223070202100", + "bill_ref": "1603L16004", + "proposed_by": "本院委員邱文彥等34人", + "summary": "擬具「海洋委員會教育及訓練所組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00068.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 6, + "item": null, + "bill_id": "1021223070202000", + "bill_ref": "1603L16003", + "proposed_by": "本院委員邱文彥等35人", + "summary": "擬具「國家海洋發展研究院組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00069.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 7, + "item": null, + "bill_id": "1021223070202200", + "bill_ref": "1603L16005", + "proposed_by": "本院委員田秋堇等25人", + "summary": "擬具「國家海洋研究院組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00083.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 72, + "subitem": 8, + "item": null, + "bill_id": "1021220070201400", + "bill_ref": "1603L15982", + "proposed_by": "本院委員田秋堇等25人", + "summary": "擬具「海洋委員會海洋保育署組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00084.doc" + }, + "sitting_introduced": "08-04-YS-16" + }, { + "motion_class": "discussion", + "agenda_item": 73, + "subitem": 1, + "item": null, + "bill_id": "1020218070300100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員林郁方等20人、委員邱文彥等81人分別擬具「中央行政機關組織基準法第二十九條條文修正草案」及委員吳宜臻等22人擬具「中央行政機關組織基準法第三十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 74, + "subitem": 1, + "item": null, + "bill_id": "1020123070300200", + "bill_ref": "70L14375;14374;13691-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員林郁方等20人擬具「行政院組織法第三條條文修正草案」、委員邱文彥等81人擬具「行政院組織法第三條及第四條條文修正草案」及委員吳宜臻等22人擬具「行政院組織法第四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 75, + "subitem": 1, + "item": null, + "bill_id": "1010409070300100", + "bill_ref": "1048G13065-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查行政院函請審議廢止「監獄組織通則」、「看守所組織通則」、「法務部戒治所組織通則」、「法務部技能訓練所組織條例」及「法務部矯正人員訓練所組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/08/LCEWA01_080108_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/08/LCEWA01_080108_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 76, + "subitem": 1, + "item": null, + "bill_id": "1011026070300100", + "bill_ref": "1082G13075-1", + "proposed_by": "本院司法及法制、教育及文化兩委員會", + "summary": "報告審查行政院函請審議「財團法人文化創意產業發展研究院設置條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/08/LCEWA01_080208_00276.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/08/LCEWA01_080208_00276.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 77, + "subitem": 1, + "item": null, + "bill_id": "1021021070300900", + "bill_ref": "225G;L13541;13718;13888;14820;15077-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「所得稅法第十五條條文修正草案」、委員盧秀燕等36人、委員許忠信等19人、委員吳秉叡等21人及委員吳秉叡等17人分別擬具「所得稅法第十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 78, + "subitem": 1, + "item": null, + "bill_id": "1030114070300100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「長期照護服務法草案」、委員黃昭順等29人、委員鄭汝芬等21人、委員羅淑蕾等30人、委員楊麗環等35人、委員徐欣瑩等37人、委員楊玉欣等50人、委員王育敏等30人、委員蘇清泉等26人、委員江惠貞等30人分別擬具「長期照護服務法草案」、委員許添財等18人、委員劉建國等29人、委員徐少萍等22人、委員陳節如等22人、委員翁重鈞等19人、委員林淑芬等23人分別擬具「長期照顧服務法草案」及委員李應元等21人擬具「長期照顧法草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 79, + "subitem": 1, + "item": null, + "bill_id": "1020520070300100", + "bill_ref": "269G;L13491;13706-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告併案審查行政院函請審議「外國人投資條例部分條文修正草案」及委員孫大千等26人擬具「外國人投資條例增訂第七條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 80, + "subitem": 1, + "item": null, + "bill_id": "1020520070300200", + "bill_ref": "269G13493-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告審查行政院函請審議「華僑回國投資條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 81, + "subitem": 1, + "item": null, + "bill_id": "1010607070300700", + "bill_ref": "1053G13121-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查行政院函請審議「植物防疫檢疫法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/01/01/LCEWA01_080101_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/01/01/LCEWA01_080101_00017.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 82, + "subitem": 1, + "item": null, + "bill_id": "1030106070300400", + "bill_ref": "161L15660;15701-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員呂學樟等20人及委員蔡正元等16人分別擬具「刑事妥速審判法第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 83, + "subitem": 1, + "item": null, + "bill_id": "1011212070300300", + "bill_ref": "1619L13323;13607;13582;13720;13873;13929;14276;14241-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員江惠貞等25人、委員呂玉玲等25人分別擬具「老人福利法第二十三條條文修正草案」、委員江惠貞等26人擬具「老人福利法增訂第七條之一條文草案」、委員呂玉玲等27人擬具「老人福利法第三十四條條文修正草案」、委員賴士葆等24人擬具「老人福利法第十五條、第十七條及第十九條條文修正草案」、委員李昆澤等21人、台灣團結聯盟黨團分別擬具「老人福利法增訂第五十二條之一條文草案」及委員劉建國等16人擬具「老人福利法第二十五條及第五十二條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 84, + "subitem": 1, + "item": null, + "bill_id": "1020510070300100", + "bill_ref": null, + "proposed_by": "本院財政、內政、外交及國防、經濟、教育及文化、司法及法制、社會福利及衛生環境七委員會", + "summary": "報告併案審查行政院函請審議「101年度中央政府總預算第二預備金動支數額表」案及行政院函為該院體育委員會為補助臺北市政府辦理「2017年世界大學運動會」所需權利金,動支101年度中央政府總預算第二預備金2億8,725萬620元支應案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00384.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00384.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 85, + "subitem": 1, + "item": null, + "bill_id": "1010830070300100", + "bill_ref": "979G;L13076;13401;13336;13421;13020-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「廣播電視法部分條文修正草案」、委員葉宜津等28人擬具「廣播電視法部分條文修正草案」、委員管碧玲等21人擬具「廣播電視法部分條文修正草案」、委員管碧玲等17人擬具「廣播電視法部分條文修正草案」及台灣團結聯盟黨團擬具「廣播電視法第十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00363.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00363.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 85, + "subitem": 2, + "item": null, + "bill_id": "1010927070201600", + "bill_ref": "979L13945", + "proposed_by": "本院委員楊麗環等40人", + "summary": "擬具「廣播電視法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1\\02\\pdf\\08\\02\\03\\LCEWA01_080203_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda/02/word/08/02/03/LCEWA01_080203_00010.doc" + }, + "sitting_introduced": "08-02-YS-03" + }, { + "motion_class": "discussion", + "agenda_item": 86, + "subitem": 1, + "item": null, + "bill_id": "1010830070300300", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「衛星廣播電視法修正草案」、委員葉宜津等29人擬具「衛星廣播電視法修正草案」及委員管碧玲等21人擬具「衛星廣播電視法第一條、第九條及第十一條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00365.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00365.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 87, + "subitem": 1, + "item": null, + "bill_id": "1010830070300200", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「有線廣播電視法修正草案」、委員葉宜津等25人擬具「有線廣播電視法修正草案」、委員尤美女等19人擬具「有線廣播電視法部分條文修正草案」、委員管碧玲等17人擬具「有線廣播電視法部分條文修正草案」、委員吳宜臻等22人擬具「有線廣播電視法第八條及第五十一條條文修正草案」、委員林佳龍等22人擬具「有線廣播電視法第十九條條文修正草案」、委員蔡其昌等21人擬具「有線廣播電視法第二十四條、第三十四條之一及第六十八條條文修正草案」、委員林佳龍等21人擬具「有線廣播電視法第三十七條條文修正草案」、委員潘孟安等19人擬具「有線廣播電視法第四十二條條文修正草案」、委員趙天麟等20人擬具「有線廣播電視法第四十三條條文修正草案」、台灣團結聯盟黨團擬具「有線廣播電視法第四十三條條文修正草案」、委員林淑芬等24人擬具「有線廣播電視法第四十三條條文修正草案」、委員管碧玲等21人擬具「有線廣播電視法第四十三條條文修正草案」及委員魏明谷等20人擬具「有線廣播電視法第四十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00366.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602366_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 88, + "subitem": 1, + "item": null, + "bill_id": "1020508070300300", + "bill_ref": "775G;L13049;14699-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「藥事法第九十五條、第九十六條及第一百條條文修正草案」及委員邱志偉等20人擬具「藥事法第九十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00383.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00383.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 89, + "subitem": 1, + "item": null, + "bill_id": "1020508070300200", + "bill_ref": "1722G;L13029;13906;14652-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「健康食品管理法第二十四條、第二十四條之一及第二十八條條文修正草案」、委員徐欣瑩等21人擬具「健康食品管理法部分條文修正草案」及委員潘維剛等23人擬具「健康食品管理法第十七條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 90, + "subitem": 1, + "item": null, + "bill_id": "1010614070300100", + "bill_ref": "1549L13144;13179-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員鄭天財等18人及委員高志鵬等21人分別擬具「公務人員行政中立法第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/01/01/LCEWA01_080101_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/01/01/LCEWA01_080101_00024.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 91, + "subitem": 1, + "item": null, + "bill_id": "1011203070300400", + "bill_ref": "1549L14126;14121;14194-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查民進黨黨團、委員尤美女等19人分別擬具「公務人員行政中立法第五條、第九條及第十七條條文修正草案」及委員鄭天財等20人擬具「公務人員行政中立法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00362.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/08/LCEWA01_080308_00362.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 92, + "subitem": 1, + "item": null, + "bill_id": "1020412070300600", + "bill_ref": "1301G13364-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院函請審議「消防法第九條、第十九條及第三十八條條文修正草案」案 。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 93, + "subitem": 1, + "item": null, + "bill_id": "1021230070300300", + "bill_ref": "882G;L13324;15375;15571-1", + "proposed_by": "本院經濟、財政兩委員會", + "summary": "報告併案審查行政院函請審議「商業會計法部分條文修正草案」、委員費鴻泰等43人擬具「商業會計法部分條文修正草案」及委員羅淑蕾等20人擬具「商業會計法第六十五條及第八十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 94, + "subitem": 1, + "item": null, + "bill_id": "1021107070300400", + "bill_ref": null, + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「私立學校法部分條文修正草案」、委員鄭麗君等22人擬具「私立學校法第十五條及第三十九條條文修正草案」、委員蔣乃辛等22人擬具「私立學校法第五十七條條文修正草案」、委員邱志偉等22人擬具「私立學校法第三十九條及第五十七條條文修正草案」及委員丁守中等19人擬具「私立學校法第五十七條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 95, + "subitem": 1, + "item": null, + "bill_id": "1010611070300600", + "bill_ref": "1028G13051-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查行政院函請審議「國立社會教育機構作業基金設置條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 96, + "subitem": 1, + "item": null, + "bill_id": "1020527070300200", + "bill_ref": "870G;L13083;14029;14048;15042;14161;14428-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「大學法第九條、第十五條及第三十三條條文修正草案」、委員李俊俋等18人、委員蔣乃辛等31人及委員鄭麗君等19人分別擬具「大學法第五條條文修正草案」、委員李昆澤等21人擬具「大學法第三十三條、第三十三條之一及第三十三條之二條文修正草案」及委員陳淑慧等48人擬具「大學法第五條、第七條及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 96, + "subitem": 2, + "item": null, + "bill_id": "1021113070300100", + "bill_ref": "870L15336-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳淑慧等26人擬具「大學法第五條及第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 97, + "subitem": 1, + "item": null, + "bill_id": "1021113070300300", + "bill_ref": "870L15017;14992;15301;15379;15443-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查委員蔣乃辛等22人、委員劉建國等16人、委員林佳龍等25人、委員潘孟安等18人及委員邱志偉等22人分別擬具「大學法第二十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/11/LCEWA01_080411_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/11/LCEWA01_080411_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 98, + "subitem": 1, + "item": null, + "bill_id": "1021115070300100", + "bill_ref": "1150L14026-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告審查委員蔡錦隆等21人擬具「民法第四百四十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 99, + "subitem": 1, + "item": null, + "bill_id": "1021230070300800", + "bill_ref": "635G;L14790;14977-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「關稅法部分條文修正草案」及委員蔡其昌等20人擬具「關稅法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 100, + "subitem": 1, + "item": null, + "bill_id": "1030106070300600", + "bill_ref": "230G14609-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查行政院函請審議「學位授予法修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 101, + "subitem": 1, + "item": null, + "bill_id": "1021220070300500", + "bill_ref": "1155L13723-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員王育敏等30人擬具「護理人員法第十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 102, + "subitem": 1, + "item": null, + "bill_id": "1021218070300200", + "bill_ref": "887G14740-1", + "proposed_by": "本院財政委員會", + "summary": "報告審查金融監督管理委員會函送財團法人台灣金融研訓院、財團法人汽車交通事故特別補償基金、財團法人住宅地震保險基金、財團法人保險安定基金、財團法人證券投資人及期貨交易人保護中心、財團法人保險事業發展中心暨財團法人金融消費評議中心等103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/16/LCEWA01_080416_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/16/LCEWA01_080416_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 103, + "subitem": 1, + "item": null, + "bill_id": "1030110070300100", + "bill_ref": "1586G;L14583;14285-1", + "proposed_by": "本院交通、經濟、司法及法制三委員會", + "summary": "報告併案審查行政院函請審議「觀光賭場管理條例草案」及委員陳雪生等24人擬具「離島地區博弈事業管理法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00586.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00586.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 104, + "subitem": 1, + "item": null, + "bill_id": "1030509070300300", + "bill_ref": "99L16430", + "proposed_by": "本院國民黨黨團,", + "summary": "建請決議:核四廠1號機不施工只安檢,安檢後封存,核四廠2號機全部停工。核四安檢完畢後,先進行封存,日後如需放置燃料棒,須先辦理公民投票,公民投票有結果前,除安檢及封存維護相關經費外,不編列其他核四預算。是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00587.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00587.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 105, + "subitem": 1, + "item": null, + "bill_id": "1030509070300400", + "bill_ref": "99L16431", + "proposed_by": "本院委員盧嘉辰等26人", + "summary": ",為本院委員陳歐珀於馬總統母親秦厚修女士治喪期間赴靈堂鬧場,對喪家不敬,嚴重失禮在前,又虛與狡辯在後,行為脫序為社會所不容乙事,建請將陳委員歐珀交付本院紀律委員會懲戒,是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/10/LCEWA01_080510_00588.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/10/LCEWA01_080510_00588.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-09", + "name": "第8屆第5會期第9次會議", + "summary": "一、9日上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢(5月9日)。三、討論事項:(5月13日)本院財政委員會報告審查行政院函請審議「中華民國102年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案等102案。四、13日下午5時至6時為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 61280, + "chair": null, + "date": "2014-05-09", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61375, + "chair": null, + "date": "2014-05-09", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61395, + "chair": null, + "date": "2014-05-09", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61281, + "chair": null, + "date": "2014-05-13", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61376, + "chair": null, + "date": "2014-05-13", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61396, + "chair": null, + "date": "2014-05-13", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030428070200100", + "bill_ref": "1711L16368", + "proposed_by": "本院委員陳根德等18人", + "summary": "擬具「溫室氣體減量法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00007.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030428070200600", + "bill_ref": "1782L16370", + "proposed_by": "本院委員徐少萍等20人", + "summary": "擬具「志願服務法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00008.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030430070200100", + "bill_ref": "775L16375", + "proposed_by": "本院委員徐少萍等19人", + "summary": "擬具「藥師法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00009.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030429070200100", + "bill_ref": "1800L16374", + "proposed_by": "本院委員邱文彥等50人", + "summary": "擬具「景觀師法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00010.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030430070200200", + "bill_ref": "1462L16376", + "proposed_by": "本院委員謝國樑等21人", + "summary": "擬具「菸害防制法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00011.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030430070200300", + "bill_ref": "1582L16377", + "proposed_by": "本院委員鄭天財等22人", + "summary": "擬具「二二八事件處理及賠償條例第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00012.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030430070200400", + "bill_ref": "1737L16382", + "proposed_by": "本院委員鄭天財等22人", + "summary": "擬具「原住民族教育法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00013.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030430070200500", + "bill_ref": "1722L16378", + "proposed_by": "本院委員鄭天財等22人", + "summary": "擬具「財團法人原住民族文化事業基金會設置條例第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00014.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030501070200400", + "bill_ref": "1722L16386", + "proposed_by": "本院委員鄭天財等18人", + "summary": "擬具「財團法人原住民族文化事業基金會設置條例第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00015.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030430070200600", + "bill_ref": "1722L16379", + "proposed_by": "本院委員鄭天財等22人", + "summary": "擬具「原住民族傳統智慧創作保護條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00016.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030430070200700", + "bill_ref": "1053L16380", + "proposed_by": "本院委員鄭天財等22人", + "summary": "擬具「溫泉法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00017.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030430070200800", + "bill_ref": "709L16381", + "proposed_by": "本院委員鄭天財等20人", + "summary": "擬具「自來水法第十二條之一及第十二條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00018.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030501070200100", + "bill_ref": "1138L16383", + "proposed_by": "本院委員盧秀燕等19人", + "summary": "擬具「殯葬管理條例第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00019.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030501070200200", + "bill_ref": "1409L16384", + "proposed_by": "本院委員盧秀燕等21人", + "summary": "擬具「社會秩序維護法第九十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00020.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030501070200300", + "bill_ref": "1073L16385", + "proposed_by": "本院委員盧秀燕等21人", + "summary": "擬具「幼兒教育及照顧法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00021.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030501070200500", + "bill_ref": "468L16387", + "proposed_by": "本院委員吳育仁等17人", + "summary": "擬具「勞工保險條例第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00022.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030501070200700", + "bill_ref": "1542L16389", + "proposed_by": "本院委員吳育仁等22人", + "summary": "擬具「性別工作平等法第二條、第十三條及第三十八條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00023.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030501070200600", + "bill_ref": "1155L16388", + "proposed_by": "本院委員蘇清泉等21人", + "summary": "擬具「護理人員法第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00024.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030501070200800", + "bill_ref": "1628L16390", + "proposed_by": "本院委員葉津鈴等19人", + "summary": "擬具「公務人員任用法第二十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00025.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030501070200900", + "bill_ref": "86L16391", + "proposed_by": "本院委員賴振昌等18人", + "summary": "擬具「票據法第二十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00026.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030501070201000", + "bill_ref": "1150L16392", + "proposed_by": "本院委員賴振昌等17人", + "summary": "擬具「民法第一百三十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00027.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030501070201100", + "bill_ref": "1150L16393", + "proposed_by": "本院委員賴振昌等18人", + "summary": "擬具「民法第二百零三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00028.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030501070201200", + "bill_ref": "1559L16394", + "proposed_by": "本院委員黃志雄等16人", + "summary": "擬具「教師法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00029.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030428070100100", + "bill_ref": "979G14970", + "proposed_by": "行政院", + "summary": "函,為提名陳憶寧、翁柏宗及杜震華為國家通訊傳播委員會委員,請查照同意案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00030.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030428070100200", + "bill_ref": "775G14971", + "proposed_by": "行政院", + "summary": "函請審議「藥師法第十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00031.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030428070100300", + "bill_ref": "1711G14972", + "proposed_by": "行政院", + "summary": "函請審議「民防法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00032.doc" + }, + "sitting_introduced": "08-05-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030312071005900", + "bill_ref": "887G14717-898", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送餐飲服務委託經營案書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00033.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030312071006000", + "bill_ref": "887G14717-899", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送文物銷售適法性方案書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00034.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030312071006100", + "bill_ref": "887G14717-900", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送有關該院「朕知道了」紙膠帶於「2013中國杭州文博會」展出研處情形書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00035.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030312071006200", + "bill_ref": "887G14717-901", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送關於吸引高中與大專生參與活動之教育推廣成效及具體措施書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00036.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030312071006300", + "bill_ref": "887G14717-902", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送數位化計畫執行成效及未來博物館數位化規劃書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00037.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030326071002500", + "bill_ref": "887G11818-1685", + "proposed_by": "國立故宮博物院", + "summary": "函送南部院區籌建計畫執行情形報告(102年9月至103年2月),請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00038.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030421071000200", + "bill_ref": "887G14717-1196", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送「多元之策展內容與學術研究」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00039.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030312071006400", + "bill_ref": "887G14717-903", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,有關邀集相關部會1個月內研擬國民年金對原住民與一般國民就政府負擔部分作區別之可行性方案,檢送「國民年金原住民給付會議紀錄」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00040.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030312071006500", + "bill_ref": "887G14717-904", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送就行政院「台灣生技產業起飛行動方案」中生技高階人才實務培訓與授課內容結合計畫之書面說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00041.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030421071000400", + "bill_ref": "887G14717-1198", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算總統府主管第5項決議(二十九),檢送說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00042.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030421071000500", + "bill_ref": "887G14717-1199", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算總統府主管第5項決議(三十),檢送說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00043.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030421071000600", + "bill_ref": "887G14717-1200", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算總統府主管第5項決議(三十一),檢送說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00044.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030312071006600", + "bill_ref": "887G14717-905", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,有關就9家民營電廠聯合行為所為之處分,經行政院訴願會撤銷原處分,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00045.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030312071006700", + "bill_ref": "887G14717-906", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,有關該會執行寬恕政策適用之案件似偏低,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00046.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030312071006800", + "bill_ref": "887G14717-907", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,有關人身保險業者對人壽保險、醫療險及長期照護險之被保險人年齡限制,涉及公平交易法聯合行為,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00047.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030326071001000", + "bill_ref": "887G14717-1079", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,針對應加強執法主動性,積極查緝違法行為以維護產業發展及交易市場秩序,並於3個月內提出改善報告乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00048.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030326071001200", + "bill_ref": "887G14717-1080", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,針對嚴密監控便利商店促銷產品價格波動乙案,檢送處理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00049.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1030326071001300", + "bill_ref": "887G14717-1081", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,有關應會同相關單位研議處理「預售屋紅單」並嚴格查緝及杜絕類似炒高房價乙案,檢送處理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00050.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1030326071001400", + "bill_ref": "887G14717-1082", + "proposed_by": "公平交易委員會", + "summary": "函復有關裁罰9家民營電廠之罰金罰鍰60億5,000萬元,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00051.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1030312071006900", + "bill_ref": "887G14717-908", + "proposed_by": "行政院大陸委員會", + "summary": "函,為103年度中央政府總預算有關兩岸航空票價之決議事項,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00052.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1030312071007000", + "bill_ref": "887G14717-909", + "proposed_by": "中央銀行", + "summary": "函送「銀行業赴大陸投資風險限額控管及開辦人民幣業務是否造成通貨替代效果等問題之報告」及「中央銀行預算編列及未分配盈餘繳庫情形報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00053.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1030312071007100", + "bill_ref": "887G14717-910", + "proposed_by": "行政院公共工程委員會", + "summary": "函,為103年度中央政府總預算決議,檢送針對移撥國家發展委員會之業務、人員與經費所提書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00054.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1030312071007200", + "bill_ref": "887G14717-911", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,檢送本院第8屆第4會期外交及國防委員會通過之「臨時提案」執行情形彙整表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00055.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1030326071002300", + "bill_ref": "887G14717-1090", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,檢送執行情形彙整表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00056.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1030326071001800", + "bill_ref": "887G14717-1091", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,有關補助就養及未領退休俸榮民娶外籍及大陸配偶所生,就讀國中、小學子女營養午餐,應納入榮民遺孤在國中、小學就讀者乙案,檢送辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00057.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1030313071000700", + "bill_ref": "887G14717-652", + "proposed_by": "經濟部", + "summary": "函送「臺灣電力公司核能四廠第1、2號機發電工程102年第4季執行進度表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00058.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1030430071000500", + "bill_ref": "887G14717-1213", + "proposed_by": "經濟部", + "summary": "函送「臺灣電力公司核能四廠第1、2號機發電工程103年第1季執行進度表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00059.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1030313071000800", + "bill_ref": "887G12800-1154", + "proposed_by": "經濟部", + "summary": "函,為101年度中央政府總預算附屬單位預算決議,檢送中油公司「委內瑞拉東、西帕里亞礦區探油案仲裁進行概況」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00060.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1030410071000300", + "bill_ref": "1374G10061-210", + "proposed_by": "經濟部", + "summary": "函送與薩爾瓦多共和國經濟部完成簽署之臺薩微中小型企業合作協定中、西、英文影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00061.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1030423071000400", + "bill_ref": "1053G14332-14", + "proposed_by": "經濟部", + "summary": "函送「臺星經濟夥伴協定原產地聲明書相關事項」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00062.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00062.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1030325071003300", + "bill_ref": "887G14717-1063", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對自100年度起國內固定資產投資金額逐年下滑,顯見來台設廠區者未如預期,請工業局提供歷年辦理成果說明報告乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00063.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00063.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1030325071003400", + "bill_ref": "887G14717-1064", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「協助產業升級與轉型」項下產業創新價值卓越計畫研提檢討報告乙案,業已備妥檢討報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00064.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1030325071003500", + "bill_ref": "887G14717-1065", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「智慧電網總體規劃方案」項下智慧電表基礎建設原訂進度延宕,請能源局提出改善報告乙案,業已備妥改善報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00065.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1030325071003600", + "bill_ref": "887G14717-1066", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對國內製造業投資動能不足,整體投資不佳,要求工業局注意並於6個月內提出因應對策乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00066.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1030325071003700", + "bill_ref": "887G14717-1067", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(十八),應提出「易淹水地區水患治理計畫」成效檢討摘要報告乙案,業已備妥相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00067.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1030325071003800", + "bill_ref": "887G14717-1068", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(十九),應提出「易淹水地區水患治理計畫」成效檢討摘要報告乙案,業已備妥相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00068.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1030325071003900", + "bill_ref": "887G14717-1069", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,要求針對水庫集水區內無自來水用戶,提出修正評比機制及匡列一定額度案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00069.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1030325071004000", + "bill_ref": "887G14717-1070", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送所通過之臨時提案辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00070.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1030325071004100", + "bill_ref": "887G14717-1071", + "proposed_by": "經濟部", + "summary": "函送「102年度中小企業法規調適檢討報告書」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00071.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00071.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030418071003100", + "bill_ref": "887G14717-1187", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「完善再生能源推動措施達成政策目標」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00072.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030418071003200", + "bill_ref": "887G14717-1188", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「檢討、改善及擴大我國再生能源發展」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00073.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030418071003800", + "bill_ref": "887G14717-1194", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對能源局辦理補助民眾購(換)置節能家電措施並提出檢討報告乙案,業已備妥相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00074.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00074.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030430071000200", + "bill_ref": "887G13336-2", + "proposed_by": "經濟部", + "summary": "函,為財團法人中華經濟研究院102年度預算決議,檢送該院就變動薪資年年超支之緣由所提檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00075.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00075.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030430071000300", + "bill_ref": "887G14717-1212", + "proposed_by": "經濟部", + "summary": "函送「耀華玻璃股份有限公司管理委員會之政府遴派人員相關資料表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00076.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030313071000900", + "bill_ref": "887G13333-1968", + "proposed_by": "國家發展委員會", + "summary": "函送於平面媒體、網路媒體、廣播媒體及電視媒體辦理政策宣導之相關廣告彙整表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00077.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030326071001700", + "bill_ref": "887G14717-983", + "proposed_by": "國家發展委員會", + "summary": "函送「102年經濟情勢檢討及提升經濟景氣判斷能力」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00078.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030327071004200", + "bill_ref": "887G14717-1094", + "proposed_by": "國家發展委員會", + "summary": "函,為檢送「(原)行政院經濟建設委員會同仁自行研究執行情形及委辦計畫必要性」報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00079.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030317071000300", + "bill_ref": "1371G10061-207", + "proposed_by": "外交部、法務部", + "summary": "函送完成簽署並於本(103)年2月7日生效之「駐德國台北代表處與德國在台協會關於移交受刑人及合作執行刑罰協議」中、德、英文約本影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00080.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030423071000300", + "bill_ref": "1374G10061-214", + "proposed_by": "外交部", + "summary": "函送「中華民國與薩爾瓦多共和國間有關一鄉一特產計畫技術合作協定」我方輪先之中、西文本影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00081.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030327071004400", + "bill_ref": "887G14717-1135", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算該部主管通過第(六)項決議,檢送處理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00082.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030418071003500", + "bill_ref": "887G14717-1191", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算決議,檢送「臨時提案」執行情形彙整表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00083.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030421071000800", + "bill_ref": "887G14717-1202", + "proposed_by": "外交部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十),檢送辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00084.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030430071000400", + "bill_ref": "1374G10061-215", + "proposed_by": "外交部", + "summary": "函送我與海地簽署之「中華民國政府與海地共和國政府間有關海地強化稻種生產能力計畫合作協定」我方輪先之中、法文本影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00085.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030317071000400", + "bill_ref": "1374G10061-208", + "proposed_by": "法務部", + "summary": "函送完成簽署之「臺灣法務部調查局洗錢防制處與英屬維京群島金融調查局關於洗錢及資助恐怖份子情資交換合作瞭解備忘錄」影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00086.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030317071000500", + "bill_ref": "1374G10061-209", + "proposed_by": "法務部", + "summary": "函送完成簽署之「中華民國法務部調查局洗錢防制處與馬拉威共和國金融情報中心關於洗錢及資助恐怖份子情資交換合作瞭解備忘錄」影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00087.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030421071000900", + "bill_ref": "887G14717-1203", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送就原住民族基本法第21條所涉相關疑義所為之研析報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00088.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030317071000600", + "bill_ref": "887G14717-720", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算決議,檢送臨時提案之辦理情形彙整表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00089.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030326071000300", + "bill_ref": "887G14717-1073", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(六),檢送應提之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00090.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030326071000600", + "bill_ref": "887G14717-1075", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(七),檢送應提之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00091.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030326071000200", + "bill_ref": "887G14717-1072", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十),檢送應提之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00092.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030326071000500", + "bill_ref": "887G14717-1074", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第3項決議(三),檢送應提之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00093.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030326071000900", + "bill_ref": "887G14717-980", + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(五)、(八)、(十一)至(十三)及第4項決議(七),檢送答復說明彙編,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00094.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030410071000400", + "bill_ref": "1374G10061-211", + "proposed_by": "財政部", + "summary": "函送「駐印度臺北經濟文化中心與駐臺北印度─臺北協會間關於TAITRA/FICCI貨品暫准通關證協定」之中、印、英文約文,暨執行議定書英文本及中譯本與暫准通關證表格之中英對照,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00095.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030326071000800", + "bill_ref": "887G14717-1077", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,有關提供101年度該部獲配公益彩券回饋金補助計畫細目乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00096.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00096.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030326071001100", + "bill_ref": "887G14717-1078", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對電子發票載具開立比率逐年下跌、未列印消費明細可能引起糾紛之疑慮等,檢送說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00097.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030421071001000", + "bill_ref": "887G14717-1204", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,檢送通過之臨時提案辦理情形一覽表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00098.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030421071001200", + "bill_ref": "887G14717-1206", + "proposed_by": "財政部", + "summary": "函送「市售電器產品貨物稅徵免爭議檢討報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00099.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030417071000100", + "bill_ref": "1374G10061-212", + "proposed_by": "交通部", + "summary": "函送「臺美航空氣象現代化作業系統發展技術合作協議─航空氣象現代化作業系統氣象技術增強計畫第17號執行辦法」影本及中譯本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00100.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030421071001300", + "bill_ref": "887G14717-1207", + "proposed_by": "交通部", + "summary": "函送高速公路局修正「高速公路電子收費系統個人資料檔案安全維護處理要點」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00101.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030325071001600", + "bill_ref": "887G14717-985", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「協助臺灣職棒發展以持續經營」書面資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00102.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030325071001700", + "bill_ref": "887G14717-990", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「妥適善用目前已培育之儲備師資人力」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00103.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00103.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030325071001800", + "bill_ref": "887G1333-1971", + "proposed_by": "教育部", + "summary": "函送「國立中興大學農資院實驗林管理處維護原住民傳統領域監督計畫」、「國立臺灣大學生物資源暨農學院所屬山地農場及實驗林管理處之完善監督計畫」及「國立臺灣大學重新檢視鄰近住宅區內日式宿舍」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00104.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030325071001900", + "bill_ref": "887G14717-1035", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關「國訓中心」與教育部體育署應密切掌控承包商財務狀況及工程施作情形,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00105.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030327071004300", + "bill_ref": "887G14717-1095", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關「自行車道整體路網串連建設計畫」應及早規劃勿再輕率變更計畫內容;另「帶動自行車相關產業發展、創造就業機會」應提高績效目標值,審慎選擇高自償性之計畫予以補助,以達到擴大政府投資乘數效益乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00106.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030418071002800", + "bill_ref": "887G14717-1184", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送協助未經「優質認證」之高級中等學校改善報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00107.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030418071002900", + "bill_ref": "887G14717-1185", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關立即研議訂定「全民運動日」,且於全民運動日當周免費開放民眾使用轄區內運動中心,提高國人運動興趣,落實全民運動乙案,檢送研議情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00108.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030418071003300", + "bill_ref": "887G14717-1189", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「強化技職教育務實致用,縮短學用落差之作法」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00109.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030325071002000", + "bill_ref": "887G14717-1036", + "proposed_by": "國防部", + "summary": "函送「國軍各型飛彈壽期管理」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00110.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030325071002100", + "bill_ref": "887G14717-1037", + "proposed_by": "國防部", + "summary": "函送101年度國防施政滿意度調查「軍隊國家化」滿意度較前年度降低原因分析與策進作為書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00111.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030324071002200", + "bill_ref": "887G14717-1038", + "proposed_by": "國防部", + "summary": "函,為「後勤綜合勤務」申請動支103年度第一預備金1億7,940萬3,000元案,業經行政院主計總處同意備案,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00112.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030325071002200", + "bill_ref": "887G14717-1039", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送於1個月內針對澎湖天后宮修復工程重新調查之報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00113.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030325071002300", + "bill_ref": "887G14717-1040", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送研究文化機構作業基金所轄館處預算編列如何回歸法制之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00114.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030325071002400", + "bill_ref": "887G14717-1041", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送未來出國報告經費撙節目標與方式全面檢討之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00115.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030325071002500", + "bill_ref": "887G14717-1042", + "proposed_by": "文化部", + "summary": "函送「國定古蹟修復或再利用工程督導計畫」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00116.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030325071002600", + "bill_ref": "887G14717-1057", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送身心障礙者「文化人權」之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00117.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030325071002700", + "bill_ref": "887G14717-1058", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關社區營造業務之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030325071002800", + "bill_ref": "887G14717-981", + "proposed_by": "文化部", + "summary": "函送「價值產值化計畫─積極提高臺中文創園區使用率以增裕收入,並定期制訂改進成果」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030325071003000", + "bill_ref": "887G14717-1060", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「文化部駐外文化人員遷調辦理情形」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030325071002900", + "bill_ref": "887G14717-1059", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三十六),檢送辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030325071003100", + "bill_ref": "887G14717-1061", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(九十九),檢送書面說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030325071003200", + "bill_ref": "887G14717-1062", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「九九峰生態藝術園區之營運狀況與短中長程規劃」書面說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030327071004500", + "bill_ref": "887G14717-984", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(九十六),檢送說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030418071003600", + "bill_ref": "887G14717-1192", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「檢討金鐘獎、金曲獎辦理方式」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030421071001100", + "bill_ref": "887G14717-1205", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三十八),檢送「文化例外」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030421071000700", + "bill_ref": "887G14717-1201", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十二),檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030326071000100", + "bill_ref": "887G14717-982", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對狂犬病防疫中、長期規劃及檢驗人力改善應於1個月內提書面報告乙案,業已備妥書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030418071003400", + "bill_ref": "887G14717-1190", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,檢送農業科技研發成果管理方案,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030418071003700", + "bill_ref": "887G14717-1193", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,檢送「農業科技研發成果技轉效益提升計畫」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030326071000700", + "bill_ref": "887G14717-1076", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,要求研修二代健保兼職薪資所得扣取補充保險費相關規定乙案,檢送研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030326071002400", + "bill_ref": "887G14717-1093", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,為強化社工人員執業安全,請該部2個月內研提具體改善計畫及擬具社工人員執業安全法案於103年1月15日前送行政院審查乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030418071003000", + "bill_ref": "887G14717-1186", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,檢送產前檢查增列母血唐氏症篩檢之可行性評估報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030421071000300", + "bill_ref": "887G14717-1197", + "proposed_by": "衛生福利部", + "summary": "函,為本院修正食品安全衛生管理法所通過附帶決議,有關衛生福利部應公告,要求負責廠商將國內或國外製造廠商之名稱向主管機關辦理登錄乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030430071000100", + "bill_ref": "887G14717-1209", + "proposed_by": "衛生福利部", + "summary": "函送食品藥物管理署「人力補強規劃」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030326071001500", + "bill_ref": "887G14717-1087", + "proposed_by": "僑務委員會", + "summary": "函,為103年度中央政府總預算決議,針對「組派文化訪問團體前往海外巡迴訪演」應遴派具有臺灣本土特色之團體向本院外交及國防委員會提出書面報告乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030326071001600", + "bill_ref": "887G14717-1088", + "proposed_by": "金融監督管理委員會", + "summary": "函送「督促本國銀行赴大陸地區投資風險限額之控管及強化對大陸地區暴險資訊揭露」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030326071002000", + "bill_ref": "887G14717-1089", + "proposed_by": "金融監督管理委員會", + "summary": "函送「改善本國銀行淨值報酬率」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00138.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030328071000100", + "bill_ref": "887G14717-1096", + "proposed_by": "金融監督管理委員會", + "summary": "函送「兩岸金融業務往來協商應落實實質對等原則,並加強談判策略運用」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030421071000100", + "bill_ref": "887G14717-1195", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,請該會參考美國及日本做法,酌增保險業資本適足率之揭露級距,並於3個月內提出書面報告乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030326071001900", + "bill_ref": "887G14717-1092", + "proposed_by": "行政院主計總處", + "summary": "函送「如何強化中央對地方財政監督考核機制」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030326071002100", + "bill_ref": "887G14717-1083", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議(六),檢送說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030326071002600", + "bill_ref": null, + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第1項決議(八),檢送書面報告資料,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030326071002200", + "bill_ref": "887G14717-1084", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管第8項決議(一),檢送說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030326071002700", + "bill_ref": "887G14717-1086", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算該院主管所作附帶決議第(一)項,檢送書面報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030418071002700", + "bill_ref": "887G13333-1974", + "proposed_by": "勞動部", + "summary": "函送該部就業安定基金管理會審議102年併決算計畫及會議資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030424071002700", + "bill_ref": "1574G9615-1", + "proposed_by": "中央選舉委員會", + "summary": "函,為修正「全國性公民投票意見發表會或辯論會實施辦法」第二條及第三條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00147.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030501071003900", + "bill_ref": "887G14717-1211", + "proposed_by": "科技部", + "summary": "函送國家型科技計畫102年度成果摘要報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030226071004600", + "bill_ref": "887G14717-511", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高級中等學校改隸直轄市專案補助」經費1億元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030226071004700", + "bill_ref": "887G14717-512", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「辦理學校人權法治教育、品德教育及公民教育實踐」經費2,084萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030226071004800", + "bill_ref": "887G14717-513", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「科技教育計畫」之「推動重點產業科技教育先導計畫」經費4億0,001萬4,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030226071004900", + "bill_ref": "887G14717-514", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「臨時人員、派遣人力及勞務承攬費用」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030226071005000", + "bill_ref": "887G14717-515", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「一般行政」中「人員維持」及「基本行政工作維持」3,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030226071005100", + "bill_ref": "887G14717-516", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國民及學前教育行政及督導─國民中小學教育─強化國民中小學課程與教學」2,000萬元解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030226071005200", + "bill_ref": "887G14717-517", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國家體育建設」之「推展全民運動」原列2億0,325萬2,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030226071005300", + "bill_ref": "887G14717-518", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「資訊系統及網站維運業務」經費1億1,848萬7,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030226071005400", + "bill_ref": "887G14717-519", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「氣候變遷調適與防災教育及永續校園計畫」經費1億2,548萬4,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030227071000100", + "bill_ref": "887G14717-520", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高級中等學校教育」之「改善或充實國立高中職一般建築及設備」經費30,000千元解凍書面報告1份,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030225071006900", + "bill_ref": "887G14717-439", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「一般行政」項下「人員維持」原列30億6,172萬7千元,凍結十分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030225071007000", + "bill_ref": "887G14717-440", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「貫徹執行入出國及移民政策」原列2億4,436萬元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030225071007100", + "bill_ref": "887G14717-441", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「加強警察教育訓練業務」編列「維安、特殊任務警力集中訓練」經費908萬3,000元凍結30%,俟向本院內政委員會提出改善及檢討報告經同意後始得動支乙案,檢送改善及檢討報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030225071007500", + "bill_ref": "887G14717-442", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬編列獎金24億2,679萬4,000元(法定預算數24億2,158萬1,000元),扣除一般行政獎金,尚有2億3,892萬6,000元(法定預算數2億3,871萬3,000元),凍結五分之一,俟向本院內政委員會提出報告始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030225071007200", + "bill_ref": "887G14717-443", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「警政業務─強化警備應變措施及維護社會治安」原列9,515萬4,000元(法定預算數9,509萬6,000元),凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030225071007300", + "bill_ref": "887G14717-444", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「入出國及移民管理業務」原列12億3,944萬元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030225071007400", + "bill_ref": "887G14717-445", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「加強入出國及移民管理規劃」原列349萬9,000元全數凍結,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00165.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00165.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030225071007800", + "bill_ref": "887G14717-446", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「墾丁國家公園經營管理」原列2億9,633萬9,000元,除人事、行政費用以外,其餘凍結五分之一,俟向本院內政委員會提出專案報告經同意始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030225071007600", + "bill_ref": "887G14717-447", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「都市計畫法規研擬、案件審議及都市開發建設」凍結100萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030225071007700", + "bill_ref": "887G14717-448", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「推動新住民資訊素養教育計畫」原列3,500萬元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030227071002800", + "bill_ref": "887G14717-541", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「民政業務」項下「健全地方發展均衡基礎建設計畫」5億元凍結四分之一,俟向本院內政委員會提出執行進度及績效並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030227071002900", + "bill_ref": "887G14717-542", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對空中勤務總隊「直升機暨救災救護裝備器材維修」原列4億6,462萬7,000元,凍結20%,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030227071003000", + "bill_ref": "887G14717-543", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「建立整體性入出國及移民管理資訊系統」」中「個人生物特徵識別資料蒐集管理及運用建置計畫」原列8,200萬元,凍結三分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030227071002700", + "bill_ref": "887G14717-370", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算決議,針對「道路交通安全-道路交通安全工作督導與查核」預算凍結四分之一,俟向本院交通委員會提出書面報告後始得動支乙案,檢送相關書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030307071000900", + "bill_ref": "887G14717-661", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十七),需向本院交通委員會提出專案報告乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030307071001000", + "bill_ref": "887G14717-662", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三十二),需向本院交通委員會提出專案報告乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030307071001100", + "bill_ref": "887G14717-663", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項公路總局決議(二),需向本院交通委員會提出專案報告乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00175.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00175.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030307071001200", + "bill_ref": "887G14717-664", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項公路總局決議(三),需向本院交通委員會提出專案報告乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030307071001300", + "bill_ref": "887G14717-665", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項公路總局決議(四),需向本院交通委員會提出專案報告乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030307071001400", + "bill_ref": "887G14717-666", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項公路總局決議(二十二),需向本院交通委員會提出專案報告乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00178.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00178.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030227071003100", + "bill_ref": "887G14717-544", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對標準檢驗局及所屬歲出預算除人事及行政經費外凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030227071003200", + "bill_ref": "887G14717-545", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「委辦計畫經費」編列9億5,233萬元預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030227071003300", + "bill_ref": "887G14717-546", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「核能研究所科技專案計畫2,026萬元,凍結五分之一」乙案,檢送專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030227071003400", + "bill_ref": "887G14717-547", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對能源局「一般行政」預算凍結乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030227071003500", + "bill_ref": "887G14717-548", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對中小企業處「中小企業發展-營造優質發展環境」預算凍結三分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030227071003600", + "bill_ref": "887G14717-549", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對中小企業處「中小企業科技應用」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030227071003700", + "bill_ref": "887G14717-550", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對商業司「推動商業科技發展」預算凍結相關項目計4案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030227071003800", + "bill_ref": "887G14717-551", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署預算凍結「河川海岸環境營造計畫」及「區域排水環境營造計畫」等相關項目計6案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030227071003900", + "bill_ref": "877G14717-552", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署「水資源開發及維護」項下「水資源工程」之獎補助費預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030227071004000", + "bill_ref": "887G14717-553", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署「水利建設及保育管理」項下各項相關計畫捐助各農田水利會辦理改善工程計畫預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030227071004100", + "bill_ref": "887G14717-554", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「國營事業委員會」單位分預算,除人事、行政經費外凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030227071004200", + "bill_ref": "887G14717-555", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,凍結該會及所屬103年度委託研究計畫預算1,000萬元乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030227071004300", + "bill_ref": "887G14717-556", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對臺東區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030227071004400", + "bill_ref": "887G14717-557", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對特有生物研究保育中心歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030307071002700", + "bill_ref": "887G14717-679", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局應檢討派遣人力使用之必要性乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030307071002800", + "bill_ref": "887G14717-680", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對將過去3年國內違規使用動物用藥查驗及現有三管五卡機制檢討結果送交本院經濟委員會乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030227071004500", + "bill_ref": "887G14717-558", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會文化園區管理局「藝術展示表演及教育推廣業務」項下凍結500萬元整,俟提出書面報告後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030227071004600", + "bill_ref": "887G14717-559", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文物管理及展覽」之「器物管理研究及展覽」435萬5,000元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030227071004700", + "bill_ref": "887G14717-560", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文物登錄與科技研析」中「文物高精密科學檢測技術研發應用暨實驗室建置」500萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030304071001100", + "bill_ref": "887G14717-605", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對凍結「綜合規劃業務」中「公民社會經驗交流推廣」100萬元乙案,檢送書面報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030304071001200", + "bill_ref": "887G14717-606", + "proposed_by": "文化部", + "summary": "檢送「價值產值化計畫─產業集聚效應計畫」解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030304071001300", + "bill_ref": "887G14717-607", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送黃金人口參與村落文化發展試辦計畫預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030304071001400", + "bill_ref": "887G14717-608", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「國際文化交流業務推展」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030304071001500", + "bill_ref": "887G14717-609", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「社區營造業務─地方文化館第二期計畫」預算解凍報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00202.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030306071000100", + "bill_ref": "887G14717-640", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送「綜合規劃業務─文化發展之評估與推動計畫」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030304071001700", + "bill_ref": "887G14717-611", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對凍結「文化資源業務」959萬9,000元,俟向本院教育及文化委員會提出書面報告後始得動支乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030307071005400", + "bill_ref": "887G14717-710", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,要求檢討任用一元化,提出「海巡人員任用條例草案」,向本院內政委員會提出專案報告,並邀集相關單位討論人員一元化推動情形乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030304071004600", + "bill_ref": "887G14717-1214", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對原行政院研考會「研究發展」項下「民意與國情調查分析」預算229萬元凍結四分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030304071004500", + "bill_ref": "887G14717-639", + "proposed_by": "國家發展委員會", + "summary": "函,為103年度中央政府總預算決議,針對「推動財經法規鬆綁與革新、健全企業投資發展環境」預算834萬1,000元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030324071002000", + "bill_ref": "887G14717-988", + "proposed_by": "行政院主計總處", + "summary": "函,為103年度中央政府總預算有關該總處單位預算及第二預備金所作13項凍結預算之決議,俟向本院財政委員會報告後始得動支乙案,檢附專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030501071000100", + "bill_ref": "887G14717-1217", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(三),凍結「路政業務規劃及督導」5,856萬1,000元之四分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030501071000200", + "bill_ref": "887G14717-1218", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五),凍結「強化全民路權與用路安全觀念」項下「業務費」1,305萬元之四分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030501071000300", + "bill_ref": "887G14717-1219", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(九),凍結「鐵路建設計畫」236億7,220萬元之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00211.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00211.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030501071000400", + "bill_ref": "887G14717-1220", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(十),凍結「都市大眾捷運系統建設計畫」192億4,900萬元(不含「提升交通運輸系統規劃先期作業計畫」)之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00212.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030501071000500", + "bill_ref": "887G14717-1221", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(十一),凍結「提升交通運輸系統規劃先期作業計畫」1億0,500萬元之四分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00213.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030501071000600", + "bill_ref": "887G14717-1222", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(四十七),凍結「汽車燃料使用費經徵管理」1,198萬1,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030501071000700", + "bill_ref": "887G14717-1223", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(四十八),凍結「道路交通安全」2億7,045萬7,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030501071000800", + "bill_ref": "887G14717-1224", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(四十九),凍結「道路交通安全工作督導與查核」402萬5,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030501071000900", + "bill_ref": "887G14717-1225", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十),凍結「軌道工程興建管理」3億7,422萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030501071001000", + "bill_ref": "887G14717-1226", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十一),凍結「航政港政業務管理及執行」11億8,128萬3,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030501071001100", + "bill_ref": "887G14717-1227", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十二),凍結「航政港政業務管理及執行」項下「人員維持」7億6,290萬6,000元之十分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030501071001200", + "bill_ref": "887G14717-1228", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十三),凍結「航政港政業務管理及執行」項下「基本行政工作維持」之「設備及投資-機械設備費」4,800萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030501071001300", + "bill_ref": "887G14717-1229", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十四),凍結「臺鐵整體購置及汰換車輛計畫(2001至2014年)」125億元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030501071001400", + "bill_ref": "887G14717-1230", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十五),凍結「臺鐵南迴鐵路臺東潮州段電氣化工程建設計畫」2億元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030501071001500", + "bill_ref": "887G14717-1231", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(五十六),凍結「都市大眾捷運系統建設計畫」193億5,400萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030501071001600", + "bill_ref": "887G14717-1232", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第2項決議(二十二),民用航空局歲出預算3億1,185萬2,000元,除人事、行政費外凍結五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030501071001700", + "bill_ref": "887G14717-1233", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第2項決議(二十三),凍結民用航空局歲出預算3億1,185萬2,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030501071001800", + "bill_ref": "887G14717-1234", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第3項決議(五),凍結「氣象測報」1億8,569萬9,000元之二十分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030501071001900", + "bill_ref": "887G14717-1235", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第3項決議(二十四),凍結「氣象科技研究」1億6,471萬5,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030501071002000", + "bill_ref": "887G14717-1236", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(一),凍結觀光局及所屬歲出預算40億5,717萬6,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030501071002100", + "bill_ref": "887G14717-1237", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(三),凍結「資訊管理」2,611萬1,000元之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030501071002200", + "bill_ref": "887G14717-1238", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(五),凍結「觀光業務調查與規劃」2,122萬9,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030501071002300", + "bill_ref": "887G14717-1239", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(六),凍結「觀光資源保育與開發」5,178萬9,000元之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030501071002400", + "bill_ref": "887G14717-1240", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(八),凍結「國民旅遊事業管理與推廣」2,899萬元之十分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030501071002500", + "bill_ref": "887G14717-1241", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(九),凍結「旅館及民宿之管理與輔導」預算856萬1,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030501071002600", + "bill_ref": "887G14717-1242", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(十),凍結「東北角暨宜蘭海岸國家風景區開發與管理」、「東部海岸國家風景區開發與管理」、「澎湖國家風景區開發與管理」、「大鵬灣國家風景區開發與管理」、「馬祖國家風景區開發與管理」、「北海岸及觀音山國家風景區開發與管理」、「雲嘉南濱海國家風景區開發與管理」計畫經費4,161萬4,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030501071002700", + "bill_ref": "887G14717-1243", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(十一),凍結「國家風景區建設計畫」之「重要觀光景點建設中程計畫(101至104年度)─東部海岸國家風景區建設計畫」2億4,000萬元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030501071002800", + "bill_ref": "887G14717-1244", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(三十六),凍結觀光局及所屬「業務費」4億4,352萬7,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030501071002900", + "bill_ref": "887G14717-1245", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(三十七),凍結「觀光業務」項下「觀光國際事務」6,000萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030501071003000", + "bill_ref": "887G14717-1246", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(三十八),凍結「國家風景區開發與管理」28億7,308萬9,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030501071003100", + "bill_ref": "887G14717-1247", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第4項決議(三十九),凍結「日月潭國家風景區建設計畫」2億8,000萬元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030501071003200", + "bill_ref": "887G14717-1248", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第5項決議(十二),凍結運輸研究所歲出預算4億1,796萬3,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030501071003300", + "bill_ref": "887G14717-1249", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第6項決議(二十四),凍結「公路公共運輸提昇計畫」42億5,069萬3,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,其中2億元不指定項目繼續凍結,其餘准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030501071003400", + "bill_ref": "887G14717-1250", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第6項決議(二十五),凍結「公路新建及養護計畫」之「公路系統新建及改善計畫」299億3,630萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030501071003500", + "bill_ref": "887G14717-1251", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第6項決議(二十六),凍結「公路系統新建及改善計畫」之「業務費」1億1,800萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030501071003600", + "bill_ref": "887G14717-1252", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第6項決議(二十八),凍結「公路系統新建及改善計畫」中「業務費」1億1,800萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030501071003700", + "bill_ref": "887G14717-1253", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第6項決議(三十),凍結「公路新建及養護計畫」項下「公路養護計畫」57億6,486萬9,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030501071003800", + "bill_ref": "887G14717-1254", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函,為103年度中央政府總預算該部主管第1項決議(一),凍結「人員維持至其他給與」500萬元,需向本院交通委員會提出報告經同意後始得動支乙案,業已處理完竣,准予動支,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030423071000100", + "bill_ref": "1032G13547-1", + "proposed_by": "本院社會福利及衛生環境、教育及文化兩委員會", + "summary": "函,為院會交付審查內政部、教育部、行政院衛生署、行政院勞工委員會會銜函送「身心障礙者生涯轉銜計畫實施辦法」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030423071000200", + "bill_ref": "1426G6051-11", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院環境保護署函,為修正「環境檢驗測定機構管理辦法」部分條文等15案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030424071000100", + "bill_ref": "1604G11823-9", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院衛生署函,為「全民健康保險藥價基準」名稱修正為「全民健康保險藥物給付項目及支付標準」,並修正條文等14案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030430071000600", + "bill_ref": "1053G14332-17", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「應施檢驗玩具商品五十六品目之品名」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030430071000700", + "bill_ref": "1383G12752-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「天然氣事業輸儲設備防災相關設施裝置維修辦法」第三條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030430071000800", + "bill_ref": "815G1432-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「漁會法定公積公益金及各級漁會聯合訓練互助經費保管運用辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030430071000900", + "bill_ref": "956G4160-14", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農業天然災害救助辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030430071001000", + "bill_ref": "1749G8074-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為「實驗動物照護及使用委員會或小組設置辦法」名稱修正為「實驗動物照護及使用委員會或小組設置及管理辦法」,並修正條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030430071001100", + "bill_ref": "959G9605-2", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農會漁會信用部經營業務項目及範圍調整辦法」第七條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030430071001300", + "bill_ref": "1053G14332-18", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「鋼鐵製造業應遵行之節約能源及使用能源效率規定」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030430071001700", + "bill_ref": "1053G14332-20", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「稻米出口管理措施」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00257.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00257.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030430071001500", + "bill_ref": "1053G14332-19", + "proposed_by": "本院經濟、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查經濟部及衛生福利部函送「電業供給使用維生器材及必要生活輔具之身心礙障者家庭之資格認定;維生器材及必要生活輔具之適用範圍及電費計算方式」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00258.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00258.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030430071001400", + "bill_ref": "887G13154-2", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查行政院函送「中華民國一百零三年度中央政府總預算編製辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00259.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00259.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030430071001600", + "bill_ref": "887G13153-2", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查行政院函送「中華民國一百零三年度中央政府總預算附屬單位預算編製辦法」案,已逾立法院職權行使法第六十一條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030430071001800", + "bill_ref": "99G7075-8", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查行政院函為修正「地方建設基金收支保管及運用辦法」第五條、第六條及第十條條文案,已逾立法院職權行使法第六十一條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030430071001900", + "bill_ref": "7G9275-7", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查中央銀行函為修正「銀行業辦理外匯業務管理辦法」,並自102年1月25日施行案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030430071002000", + "bill_ref": "464G7414-17", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查金融監督管理委員會函為修正「保險業辦理國外投資管理辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030430071002100", + "bill_ref": "705G7328-16", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查財政部函為修正「中央統籌分配稅款分配辦法」第四條、第八條及第十條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00264.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00264.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030430071002300", + "bill_ref": "464G8330-7", + "proposed_by": "本院財政委員會", + "summary": "函,為院會交付審查金融監督管理委員會函為修正「保險業資金辦理專案運用公共及社會福利事業投資管理辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030430071002200", + "bill_ref": "184G12967-5", + "proposed_by": "本院財政、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查財政部、內政部函為修正「特種貨物及勞務稅稅課收入分配及運用辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030430071001200", + "bill_ref": "887G11600-1141", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人法律扶助基金會98年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00267.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00267.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030501087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等21人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030501087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院台灣團結聯盟黨團於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030501087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳碧涵等14人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030501087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等23人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00271.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00271.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030501087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員簡東明等14人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00272.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00272.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1020329070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國102年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(含財政委員會、司法及法制委員會審查報告暨內政委員會、外交及國防委員會信託基金審查報告部分;其餘各委員會尚未審查完竣未及列入)", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/08/LCEWA01_080308_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803080602302_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 2, + "item": null, + "bill_id": "1020517070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關交通委員會營業及非營業預算部分;內政、外交及國防委員會之非營業預算部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803140602322_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 3, + "item": null, + "bill_id": "1020530070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告有關經濟、社會福利及衛生環境委員會營業及非營業部分暨教育及文化委員會之非營業部分未及列入審查總報告乙節,業經提出審查報告,請併「中華民國102年度中央政府總預算案附屬單位預算營業及非營業部分案審查總報告」討論案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/03/01/01/LCEWA01_080301_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/LCEWA01_0803010603009_001.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1030331070300100", + "bill_ref": null, + "proposed_by": "本院財政委員會", + "summary": "報告審查行政院函請審議「中華民國103年度中央政府總預算案(含附屬單位預算及綜計表-營業及非營業部分)」案。(未含內政、經濟、教育及文化、司法及法制、社會福利及衛生環境等5委員會附屬單位預算營業及非營業部分審查報告)", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1030415070300100", + "bill_ref": "1028L14648-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員林岱樺等23人擬具「師資培育法第二十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1030418070300100", + "bill_ref": "1259L15302-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員林佳龍等20人擬具「特殊教育法第二十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 1, + "item": null, + "bill_id": "1030418070300200", + "bill_ref": "1604L15769-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳亭妃等22人擬具「學校衛生法第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 6, + "subitem": 1, + "item": null, + "bill_id": "1030418070300300", + "bill_ref": "230L15688-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告審查委員陳節如等20人擬具「學位授予法第八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 7, + "subitem": 1, + "item": null, + "bill_id": "1030425070300100", + "bill_ref": "1053L14774;15884-1", + "proposed_by": "本院經濟委員會", + "summary": "報告併案審查委員廖國棟等20人擬具「石油管理法第三十六條條文修正草案」及委員鄭天財等21人擬具「石油管理法第三十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 8, + "subitem": 1, + "item": null, + "bill_id": "1030407070300200", + "bill_ref": "1352L14138-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員吳育仁等18人擬具「勞資爭議處理法第二十五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 9, + "subitem": 1, + "item": null, + "bill_id": "1030407070300300", + "bill_ref": "1566L14139-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員吳育仁等22人擬具「團體協約法第六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 10, + "subitem": 1, + "item": null, + "bill_id": "1030425070300200", + "bill_ref": "468L16091-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員潘孟安等18人擬具「就業保險法第二十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 11, + "subitem": 1, + "item": null, + "bill_id": "1030123070300100", + "bill_ref": "1032L15346-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員王育敏等26人擬具「身心障礙者權益保障法增訂第六十四條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 12, + "subitem": 1, + "item": null, + "bill_id": "1030123070300200", + "bill_ref": "1032L15678-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員劉建國等21人擬具「身心障礙者權益保障法增訂第五十七條之一及第八十八條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 13, + "subitem": 1, + "item": null, + "bill_id": "1030123070300400", + "bill_ref": "1032L15382-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員陳節如等18人擬具「身心障礙者權益保障法第六十四條、第九十二條及第九十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 14, + "subitem": 1, + "item": null, + "bill_id": "1030123070300300", + "bill_ref": "1032L15691-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員陳節如等20人擬具「身心障礙者權益保障法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 15, + "subitem": 1, + "item": null, + "bill_id": "1030319070300200", + "bill_ref": "468L14386;15927;16068-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員何欣純等18人擬具「勞工保險條例第二十條及第三十二條條文修正草案」及委員趙天麟等23人、委員劉建國等24人分別擬具「勞工保險條例第三十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 16, + "subitem": 1, + "item": null, + "bill_id": "1030411070300100", + "bill_ref": "468L12994;14763;15236-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員蔣乃辛等24人擬具「勞工保險條例增訂第二十七條之一條文草案」及委員蔣乃辛等19人、委員王惠美等26人分別擬具「勞工保險條例第七十四條之二條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 17, + "subitem": 1, + "item": null, + "bill_id": "1030407070300100", + "bill_ref": "962L15712-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員蔡正元等16人擬具「海洋污染防治法第十三條及第三十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00293.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00293.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 18, + "subitem": 1, + "item": null, + "bill_id": "1030403070300100", + "bill_ref": "159G;L14847;15421-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告併案審查行政院函請審議「兵役法施行法部分條文修正草案」及台灣團結聯盟黨團擬具「兵役法施行法第三十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 19, + "subitem": 1, + "item": null, + "bill_id": "1030113070300300", + "bill_ref": "1586L13991;14066;13432-1", + "proposed_by": "本院教育及文化、財政兩委員會", + "summary": "報告併案審查委員何欣純等24人、委員管碧玲等23人分別擬具「運動彩券發行條例第七條條文修正草案」及委員林佳龍等25人擬具「運動彩券發行條例第八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 20, + "subitem": 1, + "item": null, + "bill_id": "1030417070300200", + "bill_ref": "1684L15998;15615-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告併案審查委員盧秀燕等18人擬具「全民防衛動員準備法第二十五條及第三十六條條文修正草案」及委員盧秀燕等27人擬具「全民防衛動員準備法第三十六條條文修正草案」。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 21, + "subitem": 1, + "item": null, + "bill_id": "1030421070300100", + "bill_ref": "1429L15157;15770-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查委員陳亭妃等23人擬具「發展大眾運輸條例第四條條文修正草案」及委員陳亭妃等22人擬具「發展大眾運輸條例增訂第四條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 22, + "subitem": 1, + "item": null, + "bill_id": "1030421070300200", + "bill_ref": "1429L15156;14076-1", + "proposed_by": "本院交通委員會", + "summary": "報告併案審查委員陳亭妃等23人擬具「大眾捷運法第二十四條之二條文修正草案」及委員李昆澤等22人擬具「大眾捷運法第二十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 23, + "subitem": 1, + "item": null, + "bill_id": "1030410070300100", + "bill_ref": "727L15541;15610-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員蔡正元等27人及委員王惠美等18人分別擬具「金融資產證券化條例第七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 24, + "subitem": 1, + "item": null, + "bill_id": "1030410070300200", + "bill_ref": "801G14723;14929;14816;14892;15123;15166-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員賴士葆等23人、親民黨黨團分別擬具「金融控股公司法第四十三條條文修正草案」及委員孫大千等20人、委員李俊俋等22人、委員謝國樑等26人、委員何欣純等16人分別擬具「金融控股公司法第四十三條及第六十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 25, + "subitem": 1, + "item": null, + "bill_id": "1030331070300200", + "bill_ref": "1043L14724;14817;15122;15641-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員賴士葆等24人、委員孫大千等19人、委員謝國樑等21人分別擬具「金融消費者保護法第七條條文修正草案」及委員賴士葆等27人擬具「金融消費者保護法第十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 26, + "subitem": 1, + "item": null, + "bill_id": "1030501070300100", + "bill_ref": "39L15556;16101-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員孫大千等18人擬具「房屋稅條例增訂第五條之一條文草案」及委員李應元等16人擬具「房屋稅條例第五條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 27, + "subitem": 1, + "item": null, + "bill_id": "1030410070300300", + "bill_ref": "801L14950;15450;15520;15647;15854;16042-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員顏寬恒等29人擬具「銀行法第四十五條之一條文修正草案」、委員賴士葆等24人、委員李應元等18人、委員黃偉哲等17人、委員許忠信等17人及委員謝國樑等16人分別擬具「銀行法第七條之一、第十九條及第四十五條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 28, + "subitem": 1, + "item": null, + "bill_id": "1030116070300200", + "bill_ref": "671G14761-1", + "proposed_by": "本院外交及國防委員會", + "summary": "報告審查行政院函請審議「國軍退除役官兵輔導條例第三條之一、第三十三條及第三十四條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 29, + "subitem": 1, + "item": null, + "bill_id": "1030422070300200", + "bill_ref": "161L14841;15521;15573-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查委員李應元等20人擬具「刑事訴訟法第二百五十三條之二及第四百五十五條之二條文修正草案」、委員廖正井等24人擬具「刑事訴訟法第二百五十三條之二條文修正草案」及委員廖正井等26人擬具「刑事訴訟法第三百七十條及第三百八十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 30, + "subitem": 1, + "item": null, + "bill_id": "1030107070300200", + "bill_ref": "335L15356-1", + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "報告審查委員李昆澤等22人擬具「軍事審判法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 31, + "subitem": 1, + "item": null, + "bill_id": "1030109070300200", + "bill_ref": "335L15361;15406-1", + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "報告併案審查委員黃偉哲等16人擬具「軍事審判法部分條文修正草案」及委員李俊俋等19人擬具「軍事審判法第一條、第十八條及第五十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 32, + "subitem": 1, + "item": null, + "bill_id": "1030423070300100", + "bill_ref": "981L15351;15845-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員賴士葆等16人擬具「稅捐稽徵法第四十八條之一條文修正草案」及委員賴士葆等17人擬具「稅捐稽徵法第三十條、第三十三條及第四十三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 33, + "subitem": 1, + "item": null, + "bill_id": "1030422070300300", + "bill_ref": "1518L15378-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查委員李貴敏等37人擬具「中小企業發展條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00309.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00309.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 34, + "subitem": 1, + "item": null, + "bill_id": "1030116070300300", + "bill_ref": "959L15381-1", + "proposed_by": "本院經濟委員會", + "summary": "報告審查委員王惠美等16人擬具「農會法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 35, + "subitem": 1, + "item": null, + "bill_id": "1030411070300200", + "bill_ref": "801L14936;15542;15611;15451;15518;15519-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查委員薛凌等16人、委員蔡正元等27人、委員王惠美等18人分別擬具「信用合作社法第五條條文修正草案」、委員賴士葆等24人擬具「信用合作社法第二十一條條文修正草案」、委員王廷升等27人擬具「信用合作社法第十六條之一、第十六條之二及第十六條之三條文修正草案」及委員李應元等18人擬具「信用合作社法第五條及第二十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00311.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00311.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 36, + "subitem": 1, + "item": null, + "bill_id": "1030319070300300", + "bill_ref": "1156G;L14846;14517;15384;15470;15763;15827-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「傳染病防治法第二條及第二十三條條文修正草案」、委員蘇震清等19人擬具「傳染病防治法第三十條條文修正草案」、委員劉建國等18人擬具「傳染病防治法第五十一條條文修正草案」、委員李俊俋等21人擬具「傳染病防治法第六條條文修正草案」及委員江惠貞等21人、委員李桐豪等27人分別擬具「傳染病防治法第二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 37, + "subitem": 1, + "item": null, + "bill_id": "1030422070300100", + "bill_ref": "474G;L14601;15376;15947-1", + "proposed_by": "本院司法及法制、經濟兩委員會", + "summary": "報告併案審查司法院、行政院函請審議「智慧財產案件審理法第四條、第十九條及第二十三條條文修正草案」、委員李貴敏等38人擬具「智慧財產案件審理法第二十三條及第三十一條條文修正草案」及委員呂學樟等36人擬具「智慧財產案件審理法增訂第二十二條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 38, + "subitem": 1, + "item": null, + "bill_id": "1030428070300100", + "bill_ref": "1537G;L13416;14107;14994;15415;15637-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「大量解僱勞工保護法第二條條文修正草案」及委員邱志偉等20人擬具「大量解僱勞工保護法第二條條文修正草案」、委員盧嘉辰等18人擬具「大量解僱勞工保護法第二條及第四條條文修正草案」、委員李桐豪等25人擬具「大量解僱勞工保護法第十二條條文修正草案」及委員王育敏等27人擬具「大量解僱勞工保護法第十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 39, + "subitem": 1, + "item": null, + "bill_id": "1030422070300400", + "bill_ref": "1619L14649;14765;14803;14815;14851-1", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查委員徐少萍等18人擬具「老人福利法部分條文修正草案」、委員江惠貞等29人、委員馬文君等21人分別擬具「老人福利法第三十八條條文修正草案」、委員孫大千等19人擬具「老人福利法第三十六條條文修正草案」及委員謝國樑等23人擬具「老人福利法第三十七條及第三十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 40, + "subitem": 1, + "item": null, + "bill_id": "1030418070300400", + "bill_ref": "786G;L14850;13824;15689-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查台灣團結聯盟黨團擬具「圖書館法第十五條條文修正草案」、委員陳節如等20人擬具「圖書館法第九條條文修正草案」及行政院函請審議「圖書館法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 41, + "subitem": 1, + "item": null, + "bill_id": "1030418070300500", + "bill_ref": "1684L16115-1", + "proposed_by": "本院外交及國防、社會福利及衛生環境兩委員會", + "summary": "報告審查委員王育敏等28人擬具「兒童權利公約施行法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 42, + "subitem": 1, + "item": null, + "bill_id": "1030113070300200", + "bill_ref": "471G14754-1", + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "報告審查行政院、考試院函請審議「駐外外交領事人員任用條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 43, + "subitem": 1, + "item": null, + "bill_id": "1030328070300100", + "bill_ref": "474G;L14806;15376;15658-1", + "proposed_by": "本院司法及法制委員會", + "summary": "報告併案審查司法院、行政院函請審議「智慧財產法院組織法部分條文修正草案」、委員李貴敏等40人擬具「智慧財產法院組織法第三條條文修正草案」及委員呂學樟等22人擬具「智慧財產法院組織法第十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 44, + "subitem": 1, + "item": null, + "bill_id": "1030415070300200", + "bill_ref": "1685G;L14871;14953-1", + "proposed_by": "本院教育及文化委員會", + "summary": "報告併案審查行政院函請審議「國立大學校院校務基金設置條例修正草案」及委員林岱樺等17人擬具「國立大學校院校務基金設置條例第五條之一、第五條之二及第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 45, + "subitem": 1, + "item": null, + "bill_id": "1030108070300200", + "bill_ref": "887G14723-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣營建研究院103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 46, + "subitem": 1, + "item": null, + "bill_id": "1030108070300300", + "bill_ref": "887G17424-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人台灣建築中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 47, + "subitem": 1, + "item": null, + "bill_id": "1030108070300400", + "bill_ref": "887G17425-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人二二八事件紀念基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 48, + "subitem": 1, + "item": null, + "bill_id": "1030108070300500", + "bill_ref": "887G14726-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人國土規劃及不動產資訊中心103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 49, + "subitem": 1, + "item": null, + "bill_id": "1030108070300600", + "bill_ref": "887G14727-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人中央營建技術顧問研究社103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 50, + "subitem": 1, + "item": null, + "bill_id": "1030108070300700", + "bill_ref": "887G14729-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人臺灣省義勇人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 51, + "subitem": 1, + "item": null, + "bill_id": "1030108070300800", + "bill_ref": "887G14728-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查內政部函送財團法人義勇消防人員安全濟助基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 52, + "subitem": 1, + "item": null, + "bill_id": "1030108070300900", + "bill_ref": "887G14734-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院大陸委員會函送財團法人海峽交流基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 53, + "subitem": 1, + "item": null, + "bill_id": "1030108070301000", + "bill_ref": "887G14743-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查行政院原住民族委員會函送財團法人原住民族文化事業基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 54, + "subitem": 1, + "item": null, + "bill_id": "1030108070301100", + "bill_ref": "887G14748-1", + "proposed_by": "本院內政委員會", + "summary": "報告審查蒙藏委員會函送財團法人蒙藏基金會103年度預算書案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 55, + "subitem": 1, + "item": null, + "bill_id": "1030414070300200", + "bill_ref": "99L16258", + "proposed_by": "本院台灣團結聯盟黨團,", + "summary": "針對行政權所轄之鎮暴警於3月24日凌晨攻擊圍毆立法委員周倪安一案,建請決議:一、對於行政院提出嚴重譴責,並限其於本會期內查明施暴員警,追究刑事及行政責任;二、行政院江宜樺院長,應向立法院及全體國人道歉;三、行政院江宜樺院長、警政主管內政部部長陳威仁及警政署署長王卓鈞等,均應負起政治責任,立即下台。是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 56, + "subitem": 1, + "item": null, + "bill_id": "1030428070300200", + "bill_ref": "99L16373", + "proposed_by": "本院民進黨黨團,", + "summary": "建請決議:要求行政院院長江宜樺應即率相關部會首長至立法院就核四停建進行專案報告並備質詢,並議決核四停建。是否有當?請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/09/LCEWA01_080509_00332.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/09/LCEWA01_080509_00332.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-08", + "name": "第8屆第5會期第8次會議", + "summary": "一、2日上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢。三、6日下午1時50分至2時30分為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 61101, + "chair": null, + "date": "2014-05-02", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61104, + "chair": null, + "date": "2014-05-02", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61100, + "chair": null, + "date": "2014-05-06", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61105, + "chair": null, + "date": "2014-05-06", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030411070200100", + "bill_ref": null, + "proposed_by": "本院委員潘孟安等19人", + "summary": "擬具「高級中等學校建教合作實施及建教生權益保障法第二十九條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030414070200700", + "bill_ref": null, + "proposed_by": "本院委員潘孟安等19人", + "summary": "擬具「科技保護法草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030415070200100", + "bill_ref": null, + "proposed_by": "本院委員蘇清泉等23人", + "summary": "擬具「藥師法第十一條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030415070200200", + "bill_ref": null, + "proposed_by": "本院委員蘇清泉等27人", + "summary": "擬具「醫事檢驗師法第四十九條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030417070200200", + "bill_ref": null, + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「社會秩序維護法第九條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030417070200100", + "bill_ref": null, + "proposed_by": "本院委員鄭麗君等26人", + "summary": "擬具「中華民國刑法第二十條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030415070200300", + "bill_ref": null, + "proposed_by": "本院委員薛凌等16人", + "summary": "擬具「中華民國刑法第一百九十一條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030416070200300", + "bill_ref": null, + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「中華民國刑法第五十七條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030415070200400", + "bill_ref": null, + "proposed_by": "本院委員薛凌等18人", + "summary": "擬具「稅捐稽徵法第二十六條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030415070200600", + "bill_ref": null, + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「商標法部分條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030415070200900", + "bill_ref": null, + "proposed_by": "本院委員薛凌等28人", + "summary": "擬具「電子遊戲場業管理條例部分條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030416070200100", + "bill_ref": null, + "proposed_by": "本院委員薛凌等22人", + "summary": "擬具「公職人員選舉罷免法第二十四條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030416070200200", + "bill_ref": null, + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「公職人員選舉罷免法第一百十二條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030416070200400", + "bill_ref": null, + "proposed_by": "本院委員薛凌等18人", + "summary": "擬具「房屋稅條例第五條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030415070200700", + "bill_ref": "618L16265", + "proposed_by": "本院委員薛凌等18人", + "summary": "擬具「公司法第二十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00020.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030415070200800", + "bill_ref": "618L16266", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「公司法第一百五十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00021.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030416070200600", + "bill_ref": "618L16273", + "proposed_by": "本院委員賴士葆等22人", + "summary": "擬具「公司法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00022.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030416070200500", + "bill_ref": "225L16272", + "proposed_by": "本院委員黃偉哲等16人", + "summary": "擬具「所得稅法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00023.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030417070200300", + "bill_ref": "808L16276", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「警械使用條例第四條及第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00024.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030417070200400", + "bill_ref": "808L16277", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「警械使用條例第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00025.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030417070200500", + "bill_ref": "1150L16278", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「民法第一千零五十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00026.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030417070200600", + "bill_ref": "1150L16279", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「民法第一千一百八十九條及第一千一百九十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00027.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030417070200700", + "bill_ref": "1121L16280", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「勞動基準法第三十條及第三十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00028.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030417070200800", + "bill_ref": "1455L16281", + "proposed_by": "本院委員翁重鈞等21人", + "summary": "擬具「糧食管理法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00029.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030417070200900", + "bill_ref": "271L16282", + "proposed_by": "本院委員葉津鈴等17人", + "summary": "擬具「加值型及非加值型營業稅法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00030.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030417070201000", + "bill_ref": "1150L16283", + "proposed_by": "本院委員葉津鈴等19人", + "summary": "擬具「民法第一千一百二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00031.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030417070201100", + "bill_ref": "1542L16284", + "proposed_by": "本院委員葉津鈴等18人", + "summary": "擬具「性別工作平等法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00032.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030417070201200", + "bill_ref": "1121L16285", + "proposed_by": "本院委員葉津鈴等18人", + "summary": "擬具「勞動基準法第四十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00033.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030417070201300", + "bill_ref": "225L16293", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「莫拉克颱風災後重建特別條例第七條及第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00034.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030417070201400", + "bill_ref": "1383L16290", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「天然氣事業法第四十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00035.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030417070201600", + "bill_ref": "727L16287", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「證券交易法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00036.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030417070201700", + "bill_ref": "1053L16288", + "proposed_by": "本院委員林德福等20人", + "summary": "擬具「證券投資人及期貨交易人保護法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00037.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030417070201800", + "bill_ref": "820L16289", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「不動產證券化條例第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00038.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030417070201900", + "bill_ref": "1277L16291", + "proposed_by": "本院委員林德福等20人", + "summary": "擬具「存款保險條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00039.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030417070202000", + "bill_ref": "225L16292", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「所得稅法第三條之四條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00040.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030417070202100", + "bill_ref": "713L16294", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「期貨交易法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00041.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030417070202200", + "bill_ref": "492L16295", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「會計師法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00042.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030417070201500", + "bill_ref": "1539L16286", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「行政院金融重建基金設置及管理條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00043.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030421070200200", + "bill_ref": "1601L16297", + "proposed_by": "本院委員王育敏等25人", + "summary": "擬具「兒童及少年性交易防制條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00044.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030421070200300", + "bill_ref": "1749L16298", + "proposed_by": "本院委員王育敏等18人", + "summary": "擬具「動物保護法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00045.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030421070200500", + "bill_ref": "1121L16300", + "proposed_by": "本院委員蔣乃辛等21人", + "summary": "擬具「勞動基準法第五十四條、第五十五條及第五十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00046.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030421070200400", + "bill_ref": "1455L16299", + "proposed_by": "本院委員蔣乃辛等26人", + "summary": "擬具「糧食管理法第十四條及第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00047.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030421070201000", + "bill_ref": "1455L16305", + "proposed_by": "本院委員盧秀燕等17人", + "summary": "擬具「糧食管理法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00048.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1030421070200600", + "bill_ref": "759L16301", + "proposed_by": "本院民進黨黨團及委員柯建銘等40人", + "summary": "擬具「核四公民投票特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00049.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1030421070200700", + "bill_ref": "775L16302", + "proposed_by": "本院委員林岱樺等19人", + "summary": "擬具「藥事法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00050.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1030421070200800", + "bill_ref": "1033L16303", + "proposed_by": "本院委員劉建國等24人", + "summary": "擬具「實物給付服務條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00051.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1030421070200900", + "bill_ref": "1604L16304", + "proposed_by": "本院委員劉建國等23人", + "summary": "擬具「全民健康保險法第十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00052.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1030421070200100", + "bill_ref": "1455L16296", + "proposed_by": "本院委員江惠貞等20人", + "summary": "擬具「糧食管理法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00052.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1030422070200100", + "bill_ref": "159L16306", + "proposed_by": "本院委員邱志偉等18人", + "summary": "擬具「兵役法第三十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00053.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1030423070200200", + "bill_ref": "159L16312", + "proposed_by": "本院委員邱志偉等16人", + "summary": "擬具「兵役法施行法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00054.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1030422070200200", + "bill_ref": "225L16307", + "proposed_by": "本院委員邱志偉等17人", + "summary": "擬具「所得稅法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00055.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1030423070200100", + "bill_ref": "225L16311", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「所得稅法第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00056.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1030423070200300", + "bill_ref": "1684L16313", + "proposed_by": "本院委員邱志偉等16人", + "summary": "擬具「全民防衛動員準備法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00057.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1030424070200100", + "bill_ref": "756L16318", + "proposed_by": "本院委員邱志偉等17人", + "summary": "擬具「道路交通管理處罰條例第七十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00058.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1030424070200200", + "bill_ref": "380L16319", + "proposed_by": "本院委員邱志偉等16人", + "summary": "擬具「鐵路法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00059.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1030423070200400", + "bill_ref": "1557L16308", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員財產申報法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00060.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1030423070200500", + "bill_ref": "759L16309", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「核四逃命圈公民投票特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00061.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1030423070200600", + "bill_ref": "1080L16310", + "proposed_by": "本院委員陳學聖等19人", + "summary": "擬具「博物館法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00062.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00062.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1030423070200700", + "bill_ref": "1619L16314", + "proposed_by": "本院委員潘孟安等21人", + "summary": "擬具「老人福利法增訂第三十一條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00063.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00063.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1030423070200800", + "bill_ref": "1033L16315", + "proposed_by": "本院委員潘孟安等21人", + "summary": "擬具「特殊境遇家庭扶助條例第一條及第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00064.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1030423070200900", + "bill_ref": "1073L16316", + "proposed_by": "本院委員呂學樟等20人", + "summary": "擬具「幼兒教育及照顧法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00065.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1030424070201000", + "bill_ref": "1073L16327", + "proposed_by": "本院委員陳淑慧等16人", + "summary": "擬具「幼兒教育及照顧法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00066.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1030424070200800", + "bill_ref": "1259L16325", + "proposed_by": "本院委員陳淑慧等20人", + "summary": "擬具「特殊教育法第十條、第十七條及第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00067.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1030424070200900", + "bill_ref": "1605L16326", + "proposed_by": "本院委員陳淑慧等24人", + "summary": "擬具「教育經費編列與管理法第三條之一、第九條及第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00068.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1030423070201000", + "bill_ref": "1539L16317", + "proposed_by": "本院委員陳超明等17人", + "summary": "擬具「產業創新條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00069.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030424070200300", + "bill_ref": "1554L16320", + "proposed_by": "本院委員蕭美琴等18人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第十六條及第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00070.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030424070200400", + "bill_ref": "1430L16321", + "proposed_by": "本院委員陳亭妃等18人", + "summary": "擬具「集會遊行法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00071.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00071.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030424070200500", + "bill_ref": "1782L16322", + "proposed_by": "本院委員陳亭妃等18人", + "summary": "擬具「志願服務法第二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00072.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030424070200600", + "bill_ref": "719L16323", + "proposed_by": "本院委員謝國樑等19人", + "summary": "擬具「商業登記法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00073.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030424070200700", + "bill_ref": "1021L16324", + "proposed_by": "本院委員盧秀燕等30人", + "summary": "擬具「科學工業園區設置管理條例第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00074.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00074.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030424070201200", + "bill_ref": "1722L16329", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「原住民身分法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00075.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00075.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030424070201300", + "bill_ref": "1150L16330", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「民法刪除部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00076.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030424070201400", + "bill_ref": "246L16331", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「中華民國刑法第一百八十五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00077.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030424070201500", + "bill_ref": "246L16332", + "proposed_by": "本院委員李俊俋等18人", + "summary": "擬具「中華民國刑法第一百八十五條之四條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00078.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030424070201600", + "bill_ref": "445L16333", + "proposed_by": "本院委員李俊俋等18人", + "summary": "擬具「法官法第八十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00079.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030424070201700", + "bill_ref": "225L16334", + "proposed_by": "本院委員李昆澤等23人", + "summary": "擬具「所得稅法第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00080.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030424070201800", + "bill_ref": "1032L16335", + "proposed_by": "本院委員江惠貞等24人", + "summary": "擬具「身心障礙者權益保障法第六十條及第一百條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00081.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030424070201900", + "bill_ref": "1537L16336", + "proposed_by": "本院委員呂玉玲等18人", + "summary": "擬具「就業服務法增訂第四十八條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00082.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030424070202000", + "bill_ref": "1225L16337", + "proposed_by": "本院委員呂玉玲等20人", + "summary": "擬具「工廠管理輔導法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00083.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030424070202100", + "bill_ref": "1339L16338", + "proposed_by": "本院委員呂玉玲等18人", + "summary": "擬具「後備軍人轉任公職考試比敘條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00084.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030424070202200", + "bill_ref": "1558L16339", + "proposed_by": "本院委員陳節如等16人", + "summary": "擬具「心理師法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00085.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030424070202300", + "bill_ref": "1374L16340", + "proposed_by": "本院委員江啟臣等19人", + "summary": "擬具「臺灣地區與大陸地區協議簽署監督條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00086.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030424070202400", + "bill_ref": "597L16341", + "proposed_by": "本院委員邱志偉等17人", + "summary": "擬具「外役監條例第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00087.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030424070202500", + "bill_ref": "932L16342", + "proposed_by": "本院委員王育敏等23人", + "summary": "擬具「兒童及少年福利與權益保障法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00088.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030424070202600", + "bill_ref": "697L16343", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「工廠法第六十一條及第七十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00089.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030424070202700", + "bill_ref": "977L16344", + "proposed_by": "本院委員蘇清泉等19人", + "summary": "擬具「工會法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00090.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030424070202800", + "bill_ref": "468L16345", + "proposed_by": "本院委員蘇清泉等16人", + "summary": "擬具「職業訓練法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00091.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030424070202900", + "bill_ref": "1696L16346", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「職工福利金條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00092.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030424070203000", + "bill_ref": "1542L16347", + "proposed_by": "本院委員蘇清泉等20人", + "summary": "擬具「性別工作平等法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00093.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030424070203100", + "bill_ref": "468L16348", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「勞工保險條例第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00094.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030424070203200", + "bill_ref": "468L16349", + "proposed_by": "本院委員蘇清泉等19人", + "summary": "擬具「勞工退休金條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00095.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030424070203300", + "bill_ref": "1121L16350", + "proposed_by": "本院委員蘇清泉等20人", + "summary": "擬具「勞動基準法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00096.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00096.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030424070203400", + "bill_ref": "1566L16351", + "proposed_by": "本院委員蘇清泉等17人", + "summary": "擬具「團體協約法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00097.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030424070203500", + "bill_ref": "468L16352", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「就業保險法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00098.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030424070203600", + "bill_ref": "1537L16353", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「就業服務法第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00099.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030424070203700", + "bill_ref": "961L16354", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「職業安全衛生法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00100.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030424070203800", + "bill_ref": "468L16355", + "proposed_by": "本院委員蘇清泉等17人", + "summary": "擬具「職業災害勞工保護法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00101.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030424070203900", + "bill_ref": "1611L16356", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「勞動檢查法第二條及第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00102.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030424070204700", + "bill_ref": "1537L16357", + "proposed_by": "本院委員蘇清泉等20人", + "summary": "擬具「大量解僱勞工保護法第三條及第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00103.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00103.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030424070204000", + "bill_ref": "1352L16358", + "proposed_by": "本院委員蘇清泉等18人", + "summary": "擬具「勞資爭議處理法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00104.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030424070204100", + "bill_ref": "248L16359", + "proposed_by": "本院委員馬文君等21人", + "summary": "擬具「都市計畫法第四十二條及第四十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00105.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030424070204200", + "bill_ref": "1586L16360", + "proposed_by": "本院委員楊玉欣等21人", + "summary": "擬具「人工生殖法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00106.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030424070204300", + "bill_ref": "1798L16361", + "proposed_by": "本院委員楊玉欣等29人", + "summary": "擬具「法律扶助法第三條及第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00107.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030424070204400", + "bill_ref": "1032L16362", + "proposed_by": "本院委員楊玉欣等29人", + "summary": "擬具「身心障礙者權益保障法第三十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00108.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030424070204500", + "bill_ref": "1032L16363", + "proposed_by": "本院委員楊玉欣等26人", + "summary": "擬具「身心障礙者權益保障法第五十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00109.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030424070204600", + "bill_ref": "1032L16364", + "proposed_by": "本院委員楊玉欣等29人", + "summary": "擬具「身心障礙者權益保障法第七十五條之一及第七十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00110.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030424070204800", + "bill_ref": "271L16365", + "proposed_by": "本院委員盧秀燕等33人", + "summary": "擬具「加值型及非加值型營業稅法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00111.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030424070204900", + "bill_ref": "165L16366", + "proposed_by": "本院委員盧秀燕等22人", + "summary": "擬具「娛樂稅法第二條及第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00112.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030428070200200", + "bill_ref": "285L16367", + "proposed_by": "本院委員張慶忠等26人", + "summary": "擬具「地政士法第二十六條之一及第五十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00113.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030428070200300", + "bill_ref": "1684L16372", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「身心障礙者權利公約施行法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00114.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030428070200400", + "bill_ref": "759L16371", + "proposed_by": "本院委員尤美女等16人", + "summary": "擬具「廢止核能發電條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00115.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030428070200500", + "bill_ref": "468L16369", + "proposed_by": "本院委員陳其邁等17人", + "summary": "擬具「勞工保險條例第七十六條及第七十六條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00116.doc" + }, + "sitting_introduced": "08-05-YS-08" + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030313070203700", + "bill_ref": "38L16163", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「赦免法增訂第六條之一、第六條之二及第六條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00051.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030403070200300", + "bill_ref": "23L16217", + "proposed_by": "本院委員尤美女等30人", + "summary": "擬具「立法院職權行使法增訂第十三條之一、第十三條之二及第十三條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00099.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030403070200400", + "bill_ref": "1394L16216", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「條約締結法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00100.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030317070201100", + "bill_ref": "1679L16187", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「總統職務交接條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00068.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030414070100100", + "bill_ref": "1562G14958", + "proposed_by": "行政院", + "summary": "函請審議「公共電視法修正草案」;並請同意撤回101年4月2日函送本院審議之「公共電視法修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00114.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030417070100100", + "bill_ref": "887G14960", + "proposed_by": "行政院", + "summary": "函請審議「中央政府流域綜合治理計畫第1期特別預算案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00115.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030422070100100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函請審議「農業科技園區設置管理條例部分條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030324071004500", + "bill_ref": "887G14717-1014", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,檢送「中央政府債務改善計畫」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030312071000300", + "bill_ref": "887G14717-841", + "proposed_by": "行政院國家科學委員會", + "summary": "函送組織改造後科技部部長應同時兼任行政院科技會報副召集人之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030312071000400", + "bill_ref": "887G14717-842", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關科技預算應訂定合理之資源配置準則之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030312071000700", + "bill_ref": "887G14717-843", + "proposed_by": "行政院國家科學委員會", + "summary": "函送對研究計畫之規劃與獎補助措施管理機制之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030312071000500", + "bill_ref": "887G14717-844", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科技部成立後如何與科技會報管控與分工之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030312071000600", + "bill_ref": "887G14717-845", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關國家型科技計畫檢討改善之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030312071000800", + "bill_ref": "887G14717-846", + "proposed_by": "行政院國家科學委員會", + "summary": "函送如何提升國科會「人社營」及教育部「人社班」之教學模式與成果普及至未參與之學生及學校之可行作為書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030312071000900", + "bill_ref": "887G14717-847", + "proposed_by": "行政院國家科學委員會", + "summary": "函送對國家型科技計畫之檢討說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030312071001000", + "bill_ref": "887G14717-848", + "proposed_by": "行政院國家科學委員會", + "summary": "函送對現行各類國家型科技計畫補助指標進行通盤檢討之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030312071001100", + "bill_ref": "887G14717-849", + "proposed_by": "行政院國家科學委員會", + "summary": "函送主動提供數位典藏經費及技術協助之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030312071001200", + "bill_ref": "887G14717-850", + "proposed_by": "行政院國家科學委員會", + "summary": "函送盤點我國各區域之主要產業聚落,並連結小聯盟計畫中學界與鄰近之產業聚落需求說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030312071001300", + "bill_ref": "887G14717-851", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關主動提供數位典藏經費及技術上協助,並配合中央研究院完成中部數位典藏中心之落成,以發揮數位典藏國家型科技計畫之綜效說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030312071001400", + "bill_ref": "887G14717-852", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關應儘速研擬小聯盟相關核定規範與資源補助辦法之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030312071001500", + "bill_ref": "887G14717-853", + "proposed_by": "行政院國家科學委員會", + "summary": "函送新竹生醫整合三大中心、相關學研機構及周邊廠商之能量,促成生醫聚落形成之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030312071001600", + "bill_ref": "887G14717-854", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科學園區開放公眾導覽及公眾參觀活動之說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030312071001700", + "bill_ref": "887G14717-855", + "proposed_by": "行政院國家科學委員會", + "summary": "函送行政院國家科學技術發展基金來源以政府編列適度經費挹注之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030312071001800", + "bill_ref": "887G14717-856", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科學工業園區勞動狀況調查書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030312071001900", + "bill_ref": "887G14717-857", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科學工業園區管理局積極招商,改善廠房及土地出租欠佳情形之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030312071002000", + "bill_ref": "887G14717-858", + "proposed_by": "行政院國家科學委員會", + "summary": "函送「由各學科領域之女性研究人員占比看科學研究場域之性別平等」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030312071002100", + "bill_ref": "887G14717-859", + "proposed_by": "行政院國家科學委員會", + "summary": "函送國家實驗研究院及國家同步輻射研究中心技術移轉收入及專利應用情形之檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030312071002200", + "bill_ref": "887G14717-860", + "proposed_by": "行政院國家科學委員會", + "summary": "函送整體太空科學與產業應用政策書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00138.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030312071002300", + "bill_ref": "887G14717-861", + "proposed_by": "行政院國家科學委員會", + "summary": "函送「科研經費分配應兼顧國土發展與良性學術競爭,使各大學於特定學門建立特色與專長」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030312071002400", + "bill_ref": "887G14717-862", + "proposed_by": "行政院國家科學委員會", + "summary": "函送國家實驗研究院與國家同步輻射研究中心研發計畫與成果是否符合產業需求檢討改善書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030312071002500", + "bill_ref": "887G14717-863", + "proposed_by": "行政院國家科學委員會", + "summary": "函送產學合作研究案檢討與具體改進措施書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030312071002600", + "bill_ref": "887G14717-864", + "proposed_by": "行政院國家科學委員會", + "summary": "函送為因應建置複合式災難救災及防災體系,應適度整合檢討書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030312071002700", + "bill_ref": "887G14717-865", + "proposed_by": "行政院國家科學委員會", + "summary": "函送補助計畫應強化相關審查監督機制書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030312071002800", + "bill_ref": "887G14717-866", + "proposed_by": "行政院國家科學委員會", + "summary": "函送補助涉有公共利益之研究成果管考通報作業機制說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030312071002900", + "bill_ref": "887G14717-867", + "proposed_by": "行政院國家科學委員會", + "summary": "函送「增加應用科技研發業務,減少產學落差」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030312071003000", + "bill_ref": "887G14717-868", + "proposed_by": "行政院國家科學委員會", + "summary": "函送針對規劃博士後研究補助政策說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030312071003100", + "bill_ref": "887G14717-869", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「全球產業合作推動及商務科技化示範應用計畫」應確實檢討並研謀改善之策,以強化台、日、美之產業合作乙案,業已備妥相關說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00147.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030312071003200", + "bill_ref": "887G14717-870", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對應加強重新規劃加工出口區土地和廠房再利用及辦理招商作業乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030312071003300", + "bill_ref": "887G14717-871", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「我國國際會議排名下滑檢討報告」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030312071003400", + "bill_ref": "887G14717-872", + "proposed_by": "經濟部", + "summary": "函送「漢翔公司民營化後國家安全之維護報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030312071003500", + "bill_ref": "887G14717-873", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對國際貿易局編列戰略性高科技貨品輸出入管理相關經費乙案,業已備妥檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030312071003600", + "bill_ref": "887G14717-874", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送有關確實檢討各項委辦及補助計畫必要性之檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030312071003700", + "bill_ref": "887G14717-875", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對關務署及所屬各關於罰金罰鍰歲入預算中編列4億4,314萬9,000元,目標值訂定過低,建議加強查緝,以5億元為目標值乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030312071003800", + "bill_ref": "887G14717-876", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,關於「檢討改進緝毒犬運作及培訓計畫,有效增加查緝效率」及「未訓練成功緝毒犬之去處及安置方案」等檢討改進事項,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030312071003900", + "bill_ref": "887G14717-877", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,檢送有關辦理資料開放邀請專家學者討論瞭解其需求並研擬相關規範或辦法之說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030312071004000", + "bill_ref": "887G14717-878", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送有關研議薪資報酬委員會審核標準書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030312071004400", + "bill_ref": "887G14717-883", + "proposed_by": "教育部", + "summary": "函送國立海洋生物博物館開發及委託經營模式檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030312071004100", + "bill_ref": "887G14717-879", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「我國青年發展政策之檢討及研擬青年發展法研究」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030312071004200", + "bill_ref": "887G14717-880", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「重新提出我國棒球發展政策乙案」書面資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030312071004300", + "bill_ref": "887G14717-881", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送2017臺北世界大學運動會軟硬體經費及場館興整建事宜書面說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030226071003800", + "bill_ref": "887G14717-882", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關「組織改造後體育署執行跨年度延續性計畫經費編列情形及辦理成效」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030312071004600", + "bill_ref": "887G14717-885", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「了解青年從事派遣或臨時工作情況及提升大專畢業生競爭力、就業能力」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030312071004700", + "bill_ref": "887G14717-886", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關檢討體育人才培育政策,訂定中長程體育人才培育計畫乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030312071004800", + "bill_ref": "887G14717-887", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「研擬推動提升我國中小學參與體育活動策略」之說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030312071004500", + "bill_ref": "887G14717-884", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送國立海洋生物博物館開發及委託經營模式檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00165.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00165.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030312071004900", + "bill_ref": "887G14717-888", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關應主動提供經費及技術上協助,並積極會同中央研究院完成中部數位典藏中心之落成之報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030312071005000", + "bill_ref": "887G14717-889", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第2項文化資產局決議(三),檢送辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030312071005100", + "bill_ref": "887G14717-890", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關參照日本古建資料彙編,優先建置「國定古蹟國家檔案資料庫」之說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030312071005200", + "bill_ref": "887G14717-891", + "proposed_by": "文化部", + "summary": "函送「價值產值化計畫─文化創意產業委託投資執行情形」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030312071005300", + "bill_ref": "887G14717-892", + "proposed_by": "文化部", + "summary": "函送「價值產值化計畫─文創產業發展現狀與檢討」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030312071005400", + "bill_ref": "887G14717-893", + "proposed_by": "國防部", + "summary": "函送「102年度派員出國計畫執行概況檢討」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030312071005500", + "bill_ref": "887G14717-894", + "proposed_by": "勞動部", + "summary": "函,為本院第8屆第4會期第18次會議審議公教人員保險法修正案時通過3項附帶決議,關於勞工保險生育給付標準應配合修正提高為2個月乙節,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030312071005600", + "bill_ref": "887G14717-895", + "proposed_by": "衛生福利部", + "summary": "函送「失智症預防與防治之研究規劃」書面資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030312071005700", + "bill_ref": "887G14717-896", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送相關書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030312071005800", + "bill_ref": null, + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送針對檢察官職務評定制度所提之報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030317071000100", + "bill_ref": "1554G14922", + "proposed_by": "行政院大陸委員會、交通部", + "summary": "函送完成簽署之「臺灣與澳門間航空運輸協議」影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030325071001500", + "bill_ref": "887G14717-920", + "proposed_by": "內政部", + "summary": "函送修正「民眾抗爭事件處理程序及聯繫作業要點」第三點、第四點及第十一點規定,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030310071003000", + "bill_ref": "1554G14914", + "proposed_by": "行政院", + "summary": "函,為核定該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸地震監測合作協議」及「海峽兩岸氣象合作協議」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030306071000600", + "bill_ref": "887G14717-642", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局擬定工業區土地活化對策並提出專案報告乙案,業已備妥相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030306071000500", + "bill_ref": "887G14717-643", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局應檢討「台美產業合作推動辦公室」執行台美產業合作目標數偏低,且促進美資在台投資成效不彰乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030306071000700", + "bill_ref": "887G14717-644", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,有關工業局「全球產業合作推動及商務科技化示範應用計畫」,宜針對近年日資在台投資下降情形,視為警訊並謀思改進措施乙案,檢送專案報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030306071000800", + "bill_ref": "887G14717-645", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局所管農業信用保證基金每年收回金額偏低,累積鉅額之待追索債權,應積極了解狀況,以紓目前困境乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030306071000900", + "bill_ref": "887G14717-646", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局現職公務員兼任董監事,按月領有兼職費及出席費,應檢討其合理性乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030306071001000", + "bill_ref": "887G14717-647", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局應檢討出國計畫之合理性與必要性乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030306071001100", + "bill_ref": "887G14717-648", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局應針對資本適足率未達標準之信用部加強監督與管理乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030306071001200", + "bill_ref": "887G14717-649", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局農業金融業務編列捐助全國農業金庫股份有限公司辦理「農漁會信用部之輔導及績效評鑑」等成效如何尚待商榷乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030317071000800", + "bill_ref": "887G14717-837", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求落實辦理進口稻米登記與流向追蹤作業暨重新研議稻米生產履歷制度推動政策,並提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030317071001000", + "bill_ref": "887G14717-716", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對桃園區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030317071000900", + "bill_ref": "887G14717-717", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業科技研究發展」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00257.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00257.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030226071003300", + "bill_ref": "887G14717-499", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送該部「國際及兩岸教育交流」之「辦理國際華語文教育」預算解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00258.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00258.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030226071003400", + "bill_ref": "887G14717-500", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結青年發展署「青年公共參與」600萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00259.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00259.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030226071003500", + "bill_ref": "887G14717-501", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結青年發展署「青年國際及體驗學習」1,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030226071003600", + "bill_ref": "887G14717-502", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「加強學校體育活動及教學發展」之國家足球發展計畫─學生足球運動解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030226071003700", + "bill_ref": "887G14717-503", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國家體育建設」中「推展全民運動」2,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030226071003900", + "bill_ref": "887G14717-504", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導私立大專校院整體發展獎助」1億5,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030226071004000", + "bill_ref": "887G14717-505", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「資訊與科技教育行政及督導」中「資訊科技融入教學」經費1億7,850萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00264.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00264.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030226071004100", + "bill_ref": "887G14717-506", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導海外臺灣學校及大陸地區臺商學校整體發展」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030226071004200", + "bill_ref": "887G14717-507", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「技術職業教育行政及督導」之「強化技職教育學制及特色」2億3,107萬1,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030226071004300", + "bill_ref": "887G14717-508", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,凍結「高級中等學校教育」之辦理輪調式建教合作學生基礎訓練等300萬元,俟向本院教育及文化委員會提出書面報告後始得動支乙案,檢送解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00267.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00267.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030226071004400", + "bill_ref": "887G14717-509", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「學生事務與特殊教育行政及督導」之「學生輔導及性別平等教育」經費6,071萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030226071004500", + "bill_ref": "887G14717-510", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導私立大專校院整體發展獎助」鼓勵私立大學校院健全發展等經費五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030317071001100", + "bill_ref": "887G14717-719", + "proposed_by": "公務人員保障暨培訓委員會", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」項下「人員維持」之「加班值班費」經費611萬元及「訓練進修業務規劃與宣導費用」預算,各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030314071011300", + "bill_ref": "887G14717-831", + "proposed_by": "審計部", + "summary": "函送「一般行政」項下「國內旅費」預算編列情形報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030314071011400", + "bill_ref": "887G14717-832", + "proposed_by": "審計部", + "summary": "函送「中央政府審計」工作計畫預算編列情形報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030314071011500", + "bill_ref": "887G14717-833", + "proposed_by": "審計部", + "summary": "函送派員參加「國際內部稽核協會年會」情形報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030314071011600", + "bill_ref": "887G14717-834", + "proposed_by": "審計部", + "summary": "函送「縣市地方審計」工作計畫預算編列情形報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00271.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00271.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 269, + "subitem": null, + "item": null, + "bill_id": "1030314071011700", + "bill_ref": "887G14717-835", + "proposed_by": "審計部", + "summary": "函送「重要審核意見追蹤列管情形」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/08/LCEWA01_080508_00272.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/08/LCEWA01_080508_00272.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 270, + "subitem": null, + "item": null, + "bill_id": "1030218071000700", + "bill_ref": null, + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算該會主管第9項決議(九)該會應於3個月內針對罷免不得宣傳等相關規定提出修法建議;與決議(十)凍結「選舉業務」預算五分之一,經研擬相關法律修正案,向本院內政委員會報告經同意後始得動支等,檢送相關修法建議條文,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 271, + "subitem": null, + "item": null, + "bill_id": "1030224071002700", + "bill_ref": "887G14717-366", + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會「選舉業務」預算1,000萬元,凍結五分之一,俟向本院內政委員會報告經同意後,始得動支乙案,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 272, + "subitem": null, + "item": null, + "bill_id": "1030304071001600", + "bill_ref": "887G14717-610", + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會及所屬「辦理及督導地方公職人員選舉」編列「業務費-辦理投開票工作人員訓儲及監察業務人講習」395萬元,凍結30%,俟向本院內政委員會提出專案報告並經同意後始得動支乙案,檢送相關書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 273, + "subitem": null, + "item": null, + "bill_id": "1030224071003800", + "bill_ref": "887G14717-368", + "proposed_by": "銓敘部", + "summary": "函,為103年度中央政府總預算決議,針對該部「人事法制及銓敘」經費編列787萬6,000元,凍結五分之ㄧ乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 274, + "subitem": null, + "item": null, + "bill_id": "1030226071002900", + "bill_ref": "887G14717-489", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「一般行政」項下「業務費」之「房屋建築養護費」經費110萬元,俟向本院司法及法制委員會提出說明及檢討報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 275, + "subitem": null, + "item": null, + "bill_id": "1030226071003000", + "bill_ref": "887G14171-490", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「法制業務」項目經費五分之一,俟研議適法作為,向本院司法及法制委員會提出報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 276, + "subitem": null, + "item": null, + "bill_id": "1030226071003100", + "bill_ref": "887G14717-491", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,針對「施政業務及督導」經費1,295萬9,000元,凍結五分之一,俟向本院司法及法制委員會提出學術交流計畫等相關報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 277, + "subitem": null, + "item": null, + "bill_id": "1030307071005600", + "bill_ref": "887G14717-712", + "proposed_by": "考選部", + "summary": "函,為103年度中央政府總預算決議,凍結「研究發展及宣導」預算之五分之一,俟研議改善方案,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00278.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00278.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 278, + "subitem": null, + "item": null, + "bill_id": "1030307071005700", + "bill_ref": "887G14717-713", + "proposed_by": "考選部", + "summary": "函,為103年度中央政府總預算決議,凍結「試題研編及審查」預算之五分之一,俟向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 279, + "subitem": null, + "item": null, + "bill_id": "1030320071001100", + "bill_ref": "1665G11499-9", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "函,為院會交付審查經濟部、國防部會銜函送修正「現役軍人家屬用電優待付費辦法」第四條及第十四條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 280, + "subitem": null, + "item": null, + "bill_id": "1030320071001200", + "bill_ref": "1687G6944-12", + "proposed_by": "本院經濟、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「老年農民福利津貼申領及核發辦法」第五條及第九條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 281, + "subitem": null, + "item": null, + "bill_id": "1030320071001300", + "bill_ref": "1475G3620-15", + "proposed_by": "本院經濟、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查行政院農業委員會、行政院衛生署會銜函送修正「實際從事農業工作者申請參加全民健康保險認定標準及資格審查辦法」第一條、第二條條文及第三條附件二乙案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 282, + "subitem": null, + "item": null, + "bill_id": "1030320071000100", + "bill_ref": "810G6020-10", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「清除豬瘟暨口蹄疫所需疫苗之種類及其管理辦法」第十一條及第十一條之一條文案等12案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 283, + "subitem": null, + "item": null, + "bill_id": "1030320071000200", + "bill_ref": "1053G8827-21", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送修正「汽電共生系統實施辦法」第二十一條條文及第六條附件二乙案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 284, + "subitem": null, + "item": null, + "bill_id": "1030320071000300", + "bill_ref": "972G3499-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「漁會總幹事遴選辦法」第三條及第六條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 285, + "subitem": null, + "item": null, + "bill_id": "1030320071000400", + "bill_ref": "1798G12110-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送修正「再生能源發電設備設置管理辦法」案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 286, + "subitem": null, + "item": null, + "bill_id": "1030320071000500", + "bill_ref": "972G3498-7", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「漁會選舉罷免辦法」第十六條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 287, + "subitem": null, + "item": null, + "bill_id": "1030320071000600", + "bill_ref": "474G2066-19", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送修正「專利法施行細則」案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 288, + "subitem": null, + "item": null, + "bill_id": "1030320071000700", + "bill_ref": "1053G10332-1961", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送公告「中華民國一百零二年度再生能源電能躉購費率及其計算公式」案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 289, + "subitem": null, + "item": null, + "bill_id": "1030320071000800", + "bill_ref": "959G8355-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「基層農會會員資格審查及認定辦法」第二條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 290, + "subitem": null, + "item": null, + "bill_id": "1030320071000900", + "bill_ref": "1455G13174-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「公糧業者管理辦法」第三條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 291, + "subitem": null, + "item": null, + "bill_id": "1030320071001000", + "bill_ref": "1053G10332-1962", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送該會95年10月11日農防字第0951473111號公告,經於101年9月7日以農防字第1011473960號公告修正案等11案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 292, + "subitem": null, + "item": null, + "bill_id": "1030320071007500", + "bill_ref": "956G10887-9", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「優良農產品驗證管理辦法」部分條文案,經提本院第8屆第4會期第8次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00293.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00293.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 293, + "subitem": null, + "item": null, + "bill_id": "1030324071000100", + "bill_ref": "887G11600-1137", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送該部「98年第4季中央政府預算補助社會團體、人民團體、財團法人及個人補助經費概況表」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 294, + "subitem": null, + "item": null, + "bill_id": "1030324071000200", + "bill_ref": "887G11818-1680", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送該部「99年第1季中央政府預算補助社會團體、人民團體、財團法人及個人補助經費概況表」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 295, + "subitem": null, + "item": null, + "bill_id": "1030324071000600", + "bill_ref": "887G11818-1682", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送「99年度中央政府總預算案,有關未依身心障礙者權益保障法足額進用身心障礙者之政府機關,應依該法第102條對該機關公務員予以懲處」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 296, + "subitem": null, + "item": null, + "bill_id": "1030324071000700", + "bill_ref": "887G11818-1683", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送「為99年度中央政府總預算決議,請該局、行政院公共工程委員會及行政院勞工委員會等機關研議保障派遣勞工權益一案,檢送涉及該局部分之辦理情形」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 297, + "subitem": null, + "item": null, + "bill_id": "1030324071000800", + "bill_ref": "887G12255-1636", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送「為100年度中央政府總預算決議,該局應檢討中央各機關員額編制及運用臨時人員、派遣勞工等整體人力配置情形,並提出員額精簡檢討報告」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 298, + "subitem": null, + "item": null, + "bill_id": "1030324071000900", + "bill_ref": "887G12255-1637", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送為100年度中央政府總預算決議,行政院應提「公務員兼職及兼職費支給檢討情形」專案報告乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 299, + "subitem": null, + "item": null, + "bill_id": "1030324071001000", + "bill_ref": "887G11600-1139", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送該院主管98年度第4季「補捐助團體及個人經費執行情形表」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 300, + "subitem": null, + "item": null, + "bill_id": "1030324071001100", + "bill_ref": "887G12255-1638", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院秘書長函送「為100年度中央政府總預算歲出第4款第1項對該院所作之第(四)項決議,請該院就司法改革藍圖及司法計畫專案報告案,請安排報告日程,請查照案」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 301, + "subitem": null, + "item": null, + "bill_id": "1030324071001400", + "bill_ref": "887G12255-1639", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送該部「財團法人法律扶助基金會100年度預算書及其董事長、執行首長、一級單位主管之職權說明、個人簡歷及薪資等資料」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 302, + "subitem": null, + "item": null, + "bill_id": "1030324071001500", + "bill_ref": "887G12255-1640", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會100年度預算書」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 303, + "subitem": null, + "item": null, + "bill_id": "1030324071001600", + "bill_ref": "887G11144-889", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查總統府函送為97年度中央政府總預算案,通過凍結該府「資政及國策顧問人事費」預算,請專案報告之決議,為配合第十二任總統用人,請安排報告,請查照案乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 304, + "subitem": null, + "item": null, + "bill_id": "1030324071000300", + "bill_ref": "887G11600-1138", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會98年度決算書」乙案,已逾決算法第28條所定審議期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 305, + "subitem": null, + "item": null, + "bill_id": "1030324071000400", + "bill_ref": "887G11818-1681", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會99年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 306, + "subitem": null, + "item": null, + "bill_id": "1030324071000500", + "bill_ref": "887G12255-1635", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會100年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 307, + "subitem": null, + "item": null, + "bill_id": "1030324071001200", + "bill_ref": "887G11818-1684", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人法律扶助基金會99年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 308, + "subitem": null, + "item": null, + "bill_id": "1030324071001300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人法律扶助基金會100年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 309, + "subitem": null, + "item": null, + "bill_id": "1030317071001200", + "bill_ref": "1053G10332-1960", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「電動機車用二次鋰電池/組商品之相關檢驗規定」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 310, + "subitem": null, + "item": null, + "bill_id": "1030319071000900", + "bill_ref": "216G5293-12", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院函為修正「僑外投資負面表列—禁止及限制僑外人投資業別項目」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00311.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00311.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 311, + "subitem": null, + "item": null, + "bill_id": "1030319071001000", + "bill_ref": "966G8579-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農業事業廢棄物再利用管理辦法」第三條、第四條及第五條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 312, + "subitem": null, + "item": null, + "bill_id": "1030319071001100", + "bill_ref": "810G2835-42", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「動物用藥品檢驗標準」第一百八十二條之二十一及第一百八十二條之二十二條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 313, + "subitem": null, + "item": null, + "bill_id": "1030319071001200", + "bill_ref": "1383G12750-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「公用天然氣事業營業章程範本」第二十四條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 314, + "subitem": null, + "item": null, + "bill_id": "1030319071001300", + "bill_ref": "1375G8964-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查公平交易委員會函為「行政院公平交易委員會委員會議資訊保密及公開辦法」名稱修正為「公平交易委員會委員會議資訊保密及公開辦法」,並修正條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 315, + "subitem": null, + "item": null, + "bill_id": "1030403071000600", + "bill_ref": "1635G14660-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「行政院農業委員會及所屬各機關公務人員交代條例施行細則」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 316, + "subitem": null, + "item": null, + "bill_id": "1030403071000700", + "bill_ref": "1783G14681-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「行政院農業委員會茶業改良場受託辦理茶葉品質檢驗及鑑識收費標準」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 317, + "subitem": null, + "item": null, + "bill_id": "1030416071000600", + "bill_ref": "618G2758-14", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為「公司申請登記資本額查核辦法」名稱修正為「會計師查核簽證公司登記資本額辦法」,並修正條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 318, + "subitem": null, + "item": null, + "bill_id": "1030416071000700", + "bill_ref": "1652G14679-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「經濟部及所屬各行政機關公務人員交代條例施行細則」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 319, + "subitem": null, + "item": null, + "bill_id": "1030416071000800", + "bill_ref": "1539G12374-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「經濟部推動研究機構進行產業創新及研究發展補助辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 320, + "subitem": null, + "item": null, + "bill_id": "1030416071000900", + "bill_ref": "959G2165-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農會法定公積公益金及各級農會推廣互助訓練經費保管運用辦法」案,已逾立法院職權行使法第61條所定審查期限,提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 321, + "subitem": null, + "item": null, + "bill_id": "1030416071001000", + "bill_ref": "956G7283-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農業用地作農業使用認定及核發證明辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 322, + "subitem": null, + "item": null, + "bill_id": "1030416071001100", + "bill_ref": "956G4530-12", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「休閒農業輔導管理辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 323, + "subitem": null, + "item": null, + "bill_id": "1030416071001200", + "bill_ref": "966G8364-14", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「經濟部事業廢棄物再利用管理辦法」部分條文及第三條附表案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 324, + "subitem": null, + "item": null, + "bill_id": "1030416071001300", + "bill_ref": "1554G11750-10", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「大陸地區人民來臺投資許可辦法」第八條、第九條及第十一條條文案,已逾立法院職權行使法第61條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 325, + "subitem": null, + "item": null, + "bill_id": "1030416071001400", + "bill_ref": "1554G11750-11", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為中華民國102年11月14日修正發布之「大陸地區人民來臺投資許可辦法」,除第八條第二項外,定自102年11月14日施行案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 326, + "subitem": null, + "item": null, + "bill_id": "1030416071001500", + "bill_ref": "1053G10332-1999", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「動物及動物產品輸入檢疫條件」第三點及附件一之二十三乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 327, + "subitem": null, + "item": null, + "bill_id": "1030416071001700", + "bill_ref": "1053G8380-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「石油業儲油設備代行檢查機構設置管理辦法」第七條條文案,已逾立法院職權行使法第61條所定審查期限,函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 328, + "subitem": null, + "item": null, + "bill_id": "1030416071001800", + "bill_ref": "1534G8929-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「出進口績優廠商表揚辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 329, + "subitem": null, + "item": null, + "bill_id": "1030416071001600", + "bill_ref": "1475G3620-16", + "proposed_by": "本院經濟、內政兩委員會", + "summary": "函,為院會交付審查行政院農業委員會、內政部函為修正「從事農業工作農民申請參加農民健康保險認定標準及資格審查辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 330, + "subitem": null, + "item": null, + "bill_id": "1030417071001200", + "bill_ref": "1374G10061-213", + "proposed_by": "(密)本院社會福利及衛生環境、外交及國防兩委員會", + "summary": "函,為院會交付審查行政院衛生署函送該署食品藥物管理局與英國藥物及保健產品管理局之「臺英保密瞭解備忘錄」簽署約本中、英文影本,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 331, + "subitem": null, + "item": null, + "bill_id": "1030317071001300", + "bill_ref": "1604G13463-1", + "proposed_by": "本院社會福利及衛生環境、司法及法制兩委員會", + "summary": "函,為院會交付審查行政院衛生署、法務部會銜函送「全民健康保險保險對象收容於矯正機關者就醫管理辦法」,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00332.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00332.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 332, + "subitem": null, + "item": null, + "bill_id": "1030317071001400", + "bill_ref": "969G7989-3", + "proposed_by": "本院社會福利及衛生環境、經濟兩委員會", + "summary": "函,為院會交付審查行政院衛生署、經濟部會銜函送修正「食品工廠建築及設備設廠標準」部分條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00333.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00333.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 333, + "subitem": null, + "item": null, + "bill_id": "1030403071000400", + "bill_ref": "1604G13489-1", + "proposed_by": "本院社會福利及衛生環境、經濟兩委員會", + "summary": "函,為院會交付審查行政院衛生署、公平交易委員會函送「全民健康保險藥品交易定型化契約應記載及不得記載事項」,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 334, + "subitem": null, + "item": null, + "bill_id": "1030317071001500", + "bill_ref": "468G10020-8", + "proposed_by": "本院社會福利及衛生環境委員會函,為", + "summary": "院會交付審查行政院勞工委員會函為修正「勞工退休金條例施行細則」第三十四條條文等13案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00335.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00335.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 335, + "subitem": null, + "item": null, + "bill_id": "1030324071001700", + "bill_ref": "1604G11954-27", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院衛生署函,為修正「全民健康保險醫療費用支付標準」部分診療項目等12案,已逾立法院職權行使法第61條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 336, + "subitem": null, + "item": null, + "bill_id": "1030403071000500", + "bill_ref": "1604G5151-14", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院衛生署函為「全民健康保險醫事服務機構醫療服務審查辦法」名稱修正為「全民健康保險醫療費用申報與核付及醫療服務審查辦法」,並修正條文等14案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 337, + "subitem": null, + "item": null, + "bill_id": "1030403071000300", + "bill_ref": "887G12255-1641", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院勞工委員會函送勞工保險局100年度第4季止預算執行情形報告案等10案,經提本院第8屆第4會期第9次會議報告後決定:展延審查期限;復逾立法院職權行使法第61條所定審查期限,茲依規定請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00338.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00338.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 338, + "subitem": null, + "item": null, + "bill_id": "1030416071001900", + "bill_ref": "887G11144-812", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付本會審查行政院海岸巡防署函送該署海洋巡防總局「98至101年100噸級巡防救難艇汰換計畫」計畫書等22案,均已逾年度預算執行期間,報請院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00339.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00339.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 339, + "subitem": null, + "item": null, + "bill_id": "1030416071002000", + "bill_ref": "447G13408-2", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查內政部函送「住宅法施行細則」等21案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 340, + "subitem": null, + "item": null, + "bill_id": "1030416071100100", + "bill_ref": "887G11818-1688", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查內政部函送「內政部本(99)年度第一季內政資訊業務歲出預算執行報告」等33案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00341.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00341.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 341, + "subitem": null, + "item": null, + "bill_id": "1030416071002100", + "bill_ref": "248G4524-5", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查內政部函送修正「獎勵土地所有權人辦理市地重劃辦法」部分條文等22案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00342.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00342.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 342, + "subitem": null, + "item": null, + "bill_id": "1030416071002200", + "bill_ref": "1581G7499-5", + "proposed_by": "本院內政、財政兩委員會", + "summary": "函,為院會交付審查內政部、財政部函送修正「促進民間參與公共建設公有土地出租及設定地上權租金優惠辦法」第二條條文案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00343.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00343.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 343, + "subitem": null, + "item": null, + "bill_id": "1030416071002300", + "bill_ref": "1053G14658-1", + "proposed_by": "本院內政、經濟兩委員會", + "summary": "函,為院會交付審查內政部、經濟部函送「新建建築物節約能源設計標準」案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00344.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00344.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 344, + "subitem": null, + "item": null, + "bill_id": "1030416071002400", + "bill_ref": "956G7983-4", + "proposed_by": "本院內政、經濟兩委員會", + "summary": "函,為院會交付審查內政部、行政院農業委員會函為修正「農業用地興建農舍辦法」案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00345.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00345.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 345, + "subitem": null, + "item": null, + "bill_id": "1030417087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳宜臻等11人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 346, + "subitem": null, + "item": null, + "bill_id": "1030417087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等27人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00347.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00347.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 347, + "subitem": null, + "item": null, + "bill_id": "1030417087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李桐豪等18人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00348.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00348.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 348, + "subitem": null, + "item": null, + "bill_id": "1030417087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱志偉等14人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00349.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00349.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 349, + "subitem": null, + "item": null, + "bill_id": "1030417087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等22人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00350.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00350.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 350, + "subitem": null, + "item": null, + "bill_id": "1030417087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員羅淑蕾等19人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 351, + "subitem": null, + "item": null, + "bill_id": "1030417087800700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等13人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 352, + "subitem": null, + "item": null, + "bill_id": "1030417087800800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等24人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 353, + "subitem": null, + "item": null, + "bill_id": "1030417087800900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等21人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 354, + "subitem": null, + "item": null, + "bill_id": "1030417087801000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等17人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 355, + "subitem": null, + "item": null, + "bill_id": "1030417087801100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等29人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00356.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 356, + "subitem": null, + "item": null, + "bill_id": "1030417087801200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李昆澤等12人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00357.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00357.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 357, + "subitem": null, + "item": null, + "bill_id": "1030417087803500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳碧涵等21人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00358.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00358.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-07", + "name": "第8屆第5會期第7次會議", + "summary": "一、25日上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢(25日及29日下午)三、同意權之行使事項(29日上午)四、本次院會不處理臨時提案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60941, + "chair": null, + "date": "2014-04-25", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 60940, + "chair": null, + "date": "2014-04-29", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030411070200100", + "bill_ref": null, + "proposed_by": "本院委員潘孟安等19人", + "summary": "擬具「高級中等學校建教合作實施及建教生權益保障法第二十九條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030414070200700", + "bill_ref": null, + "proposed_by": "本院委員潘孟安等19人", + "summary": "擬具「科技保護法草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030415070200100", + "bill_ref": null, + "proposed_by": "本院委員蘇清泉等23人", + "summary": "擬具「藥師法第十一條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030415070200200", + "bill_ref": null, + "proposed_by": "本院委員蘇清泉等27人", + "summary": "擬具「醫事檢驗師法第四十九條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030417070200200", + "bill_ref": null, + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「社會秩序維護法第九條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030417070200100", + "bill_ref": null, + "proposed_by": "本院委員鄭麗君等26人", + "summary": "擬具「中華民國刑法第二十條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030415070200300", + "bill_ref": null, + "proposed_by": "本院委員薛凌等16人", + "summary": "擬具「中華民國刑法第一百九十一條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030416070200300", + "bill_ref": null, + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「中華民國刑法第五十七條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030415070200400", + "bill_ref": null, + "proposed_by": "本院委員薛凌等18人", + "summary": "擬具「稅捐稽徵法第二十六條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030415070200600", + "bill_ref": null, + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「商標法部分條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030415070200900", + "bill_ref": null, + "proposed_by": "本院委員薛凌等28人", + "summary": "擬具「電子遊戲場業管理條例部分條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030416070200100", + "bill_ref": null, + "proposed_by": "本院委員薛凌等22人", + "summary": "擬具「公職人員選舉罷免法第二十四條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030416070200200", + "bill_ref": null, + "proposed_by": "本院委員薛凌等21人", + "summary": "擬具「公職人員選舉罷免法第一百十二條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030416070200400", + "bill_ref": null, + "proposed_by": "本院委員薛凌等18人", + "summary": "擬具「房屋稅條例第五條條文修正草案」,請審議案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030415070200700", + "bill_ref": "618L16265", + "proposed_by": "本院委員薛凌等18人", + "summary": "擬具「公司法第二十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00020.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030415070200800", + "bill_ref": "618L16266", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「公司法第一百五十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00021.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030416070200600", + "bill_ref": "618L16273", + "proposed_by": "本院委員賴士葆等22人", + "summary": "擬具「公司法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00022.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030416070200500", + "bill_ref": "225L16272", + "proposed_by": "本院委員黃偉哲等16人", + "summary": "擬具「所得稅法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00023.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030417070200300", + "bill_ref": "808L16276", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「警械使用條例第四條及第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00024.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030417070200400", + "bill_ref": "808L16277", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「警械使用條例第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00025.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030417070200500", + "bill_ref": "1150L16278", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「民法第一千零五十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00026.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030417070200600", + "bill_ref": "1150L16279", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「民法第一千一百八十九條及第一千一百九十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00027.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030417070200700", + "bill_ref": "1121L16280", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「勞動基準法第三十條及第三十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00028.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030417070200800", + "bill_ref": "1455L16281", + "proposed_by": "本院委員翁重鈞等21人", + "summary": "擬具「糧食管理法第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00029.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030417070200900", + "bill_ref": "271L16282", + "proposed_by": "本院委員葉津鈴等17人", + "summary": "擬具「加值型及非加值型營業稅法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00030.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030417070201000", + "bill_ref": "1150L16283", + "proposed_by": "本院委員葉津鈴等19人", + "summary": "擬具「民法第一千一百二十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00031.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030417070201100", + "bill_ref": "1542L16284", + "proposed_by": "本院委員葉津鈴等18人", + "summary": "擬具「性別工作平等法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00032.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030417070201200", + "bill_ref": "1121L16285", + "proposed_by": "本院委員葉津鈴等18人", + "summary": "擬具「勞動基準法第四十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00033.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030417070201300", + "bill_ref": "225L16293", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「莫拉克颱風災後重建特別條例第七條及第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00034.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030417070201400", + "bill_ref": "1383L16290", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「天然氣事業法第四十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00035.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030417070201600", + "bill_ref": "727L16287", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「證券交易法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00036.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030417070201700", + "bill_ref": "1053L16288", + "proposed_by": "本院委員林德福等20人", + "summary": "擬具「證券投資人及期貨交易人保護法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00037.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030417070201800", + "bill_ref": "820L16289", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「不動產證券化條例第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00038.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030417070201900", + "bill_ref": "1277L16291", + "proposed_by": "本院委員林德福等20人", + "summary": "擬具「存款保險條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00039.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030417070202000", + "bill_ref": "225L16292", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「所得稅法第三條之四條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00040.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030417070202100", + "bill_ref": "713L16294", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「期貨交易法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00041.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030417070202200", + "bill_ref": "492L16295", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「會計師法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00042.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030417070201500", + "bill_ref": "1539L16286", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「行政院金融重建基金設置及管理條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00043.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030421070200200", + "bill_ref": "1601L16297", + "proposed_by": "本院委員王育敏等25人", + "summary": "擬具「兒童及少年性交易防制條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00044.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030421070200300", + "bill_ref": "1749L16298", + "proposed_by": "本院委員王育敏等18人", + "summary": "擬具「動物保護法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00045.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030421070200500", + "bill_ref": "1121L16300", + "proposed_by": "本院委員蔣乃辛等21人", + "summary": "擬具「勞動基準法第五十四條、第五十五條及第五十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00046.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030421070200400", + "bill_ref": "1455L16299", + "proposed_by": "本院委員蔣乃辛等26人", + "summary": "擬具「糧食管理法第十四條及第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00047.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030421070201000", + "bill_ref": "1455L16305", + "proposed_by": "本院委員盧秀燕等17人", + "summary": "擬具「糧食管理法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00048.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1030421070200600", + "bill_ref": "759L16301", + "proposed_by": "本院民進黨黨團及委員柯建銘等40人", + "summary": "擬具「核四公民投票特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00049.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1030421070200700", + "bill_ref": "775L16302", + "proposed_by": "本院委員林岱樺等19人", + "summary": "擬具「藥事法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00050.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1030421070200800", + "bill_ref": "1033L16303", + "proposed_by": "本院委員劉建國等24人", + "summary": "擬具「實物給付服務條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00051.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1030421070200900", + "bill_ref": "1604L16304", + "proposed_by": "本院委員劉建國等23人", + "summary": "擬具「全民健康保險法第十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00052.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030313070203700", + "bill_ref": "38L16163", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「赦免法增訂第六條之一、第六條之二及第六條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00051.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030403070200300", + "bill_ref": "23L16217", + "proposed_by": "本院委員尤美女等30人", + "summary": "擬具「立法院職權行使法增訂第十三條之一、第十三條之二及第十三條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00099.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030403070200400", + "bill_ref": "1394L16216", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「條約締結法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00100.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030317070201100", + "bill_ref": "1679L16187", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「總統職務交接條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00068.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030414070100100", + "bill_ref": "1562G14958", + "proposed_by": "行政院", + "summary": "函請審議「公共電視法修正草案」;並請同意撤回101年4月2日函送本院審議之「公共電視法修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00114.doc" + }, + "sitting_introduced": "08-05-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030417070100100", + "bill_ref": "887G14960", + "proposed_by": "行政院", + "summary": "函請審議「中央政府流域綜合治理計畫第1期特別預算案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00115.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030324071004500", + "bill_ref": "887G14717-1014", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,檢送「中央政府債務改善計畫」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030312071000300", + "bill_ref": "887G14717-841", + "proposed_by": "行政院國家科學委員會", + "summary": "函送組織改造後科技部部長應同時兼任行政院科技會報副召集人之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030312071000400", + "bill_ref": "887G14717-842", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關科技預算應訂定合理之資源配置準則之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030312071000700", + "bill_ref": "887G14717-843", + "proposed_by": "行政院國家科學委員會", + "summary": "函送對研究計畫之規劃與獎補助措施管理機制之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030312071000500", + "bill_ref": "887G14717-844", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科技部成立後如何與科技會報管控與分工之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030312071000600", + "bill_ref": "887G14717-845", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關國家型科技計畫檢討改善之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030312071000800", + "bill_ref": "887G14717-846", + "proposed_by": "行政院國家科學委員會", + "summary": "函送如何提升國科會「人社營」及教育部「人社班」之教學模式與成果普及至未參與之學生及學校之可行作為書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030312071000900", + "bill_ref": "887G14717-847", + "proposed_by": "行政院國家科學委員會", + "summary": "函送對國家型科技計畫之檢討說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030312071001000", + "bill_ref": "887G14717-848", + "proposed_by": "行政院國家科學委員會", + "summary": "函送對現行各類國家型科技計畫補助指標進行通盤檢討之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030312071001100", + "bill_ref": "887G14717-849", + "proposed_by": "行政院國家科學委員會", + "summary": "函送主動提供數位典藏經費及技術協助之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030312071001200", + "bill_ref": "887G14717-850", + "proposed_by": "行政院國家科學委員會", + "summary": "函送盤點我國各區域之主要產業聚落,並連結小聯盟計畫中學界與鄰近之產業聚落需求說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030312071001300", + "bill_ref": "887G14717-851", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關主動提供數位典藏經費及技術上協助,並配合中央研究院完成中部數位典藏中心之落成,以發揮數位典藏國家型科技計畫之綜效說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030312071001400", + "bill_ref": "887G14717-852", + "proposed_by": "行政院國家科學委員會", + "summary": "函送有關應儘速研擬小聯盟相關核定規範與資源補助辦法之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030312071001500", + "bill_ref": "887G14717-853", + "proposed_by": "行政院國家科學委員會", + "summary": "函送新竹生醫整合三大中心、相關學研機構及周邊廠商之能量,促成生醫聚落形成之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030312071001600", + "bill_ref": "887G14717-854", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科學園區開放公眾導覽及公眾參觀活動之說明報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030312071001700", + "bill_ref": "887G14717-855", + "proposed_by": "行政院國家科學委員會", + "summary": "函送行政院國家科學技術發展基金來源以政府編列適度經費挹注之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030312071001800", + "bill_ref": "887G14717-856", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科學工業園區勞動狀況調查書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030312071001900", + "bill_ref": "887G14717-857", + "proposed_by": "行政院國家科學委員會", + "summary": "函送科學工業園區管理局積極招商,改善廠房及土地出租欠佳情形之書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030312071002000", + "bill_ref": "887G14717-858", + "proposed_by": "行政院國家科學委員會", + "summary": "函送「由各學科領域之女性研究人員占比看科學研究場域之性別平等」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030312071002100", + "bill_ref": "887G14717-859", + "proposed_by": "行政院國家科學委員會", + "summary": "函送國家實驗研究院及國家同步輻射研究中心技術移轉收入及專利應用情形之檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030312071002200", + "bill_ref": "887G14717-860", + "proposed_by": "行政院國家科學委員會", + "summary": "函送整體太空科學與產業應用政策書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00138.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030312071002300", + "bill_ref": "887G14717-861", + "proposed_by": "行政院國家科學委員會", + "summary": "函送「科研經費分配應兼顧國土發展與良性學術競爭,使各大學於特定學門建立特色與專長」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030312071002400", + "bill_ref": "887G14717-862", + "proposed_by": "行政院國家科學委員會", + "summary": "函送國家實驗研究院與國家同步輻射研究中心研發計畫與成果是否符合產業需求檢討改善書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030312071002500", + "bill_ref": "887G14717-863", + "proposed_by": "行政院國家科學委員會", + "summary": "函送產學合作研究案檢討與具體改進措施書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030312071002600", + "bill_ref": "887G14717-864", + "proposed_by": "行政院國家科學委員會", + "summary": "函送為因應建置複合式災難救災及防災體系,應適度整合檢討書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030312071002700", + "bill_ref": "887G14717-865", + "proposed_by": "行政院國家科學委員會", + "summary": "函送補助計畫應強化相關審查監督機制書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030312071002800", + "bill_ref": "887G14717-866", + "proposed_by": "行政院國家科學委員會", + "summary": "函送補助涉有公共利益之研究成果管考通報作業機制說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030312071002900", + "bill_ref": "887G14717-867", + "proposed_by": "行政院國家科學委員會", + "summary": "函送「增加應用科技研發業務,減少產學落差」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030312071003000", + "bill_ref": "887G14717-868", + "proposed_by": "行政院國家科學委員會", + "summary": "函送針對規劃博士後研究補助政策說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030312071003100", + "bill_ref": "887G14717-869", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「全球產業合作推動及商務科技化示範應用計畫」應確實檢討並研謀改善之策,以強化台、日、美之產業合作乙案,業已備妥相關說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00147.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030312071003200", + "bill_ref": "887G14717-870", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對應加強重新規劃加工出口區土地和廠房再利用及辦理招商作業乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030312071003300", + "bill_ref": "887G14717-871", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送「我國國際會議排名下滑檢討報告」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030312071003400", + "bill_ref": "887G14717-872", + "proposed_by": "經濟部", + "summary": "函送「漢翔公司民營化後國家安全之維護報告」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030312071003500", + "bill_ref": "887G14717-873", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對國際貿易局編列戰略性高科技貨品輸出入管理相關經費乙案,業已備妥檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030312071003600", + "bill_ref": "887G14717-874", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,檢送有關確實檢討各項委辦及補助計畫必要性之檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030312071003700", + "bill_ref": "887G14717-875", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,針對關務署及所屬各關於罰金罰鍰歲入預算中編列4億4,314萬9,000元,目標值訂定過低,建議加強查緝,以5億元為目標值乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030312071003800", + "bill_ref": "887G14717-876", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,關於「檢討改進緝毒犬運作及培訓計畫,有效增加查緝效率」及「未訓練成功緝毒犬之去處及安置方案」等檢討改進事項,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030312071003900", + "bill_ref": "887G14717-877", + "proposed_by": "財政部", + "summary": "函,為103年度中央政府總預算決議,檢送有關辦理資料開放邀請專家學者討論瞭解其需求並研擬相關規範或辦法之說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030312071004000", + "bill_ref": "887G14717-878", + "proposed_by": "金融監督管理委員會", + "summary": "函,為103年度中央政府總預算決議,檢送有關研議薪資報酬委員會審核標準書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030312071004400", + "bill_ref": "887G14717-883", + "proposed_by": "教育部", + "summary": "函送國立海洋生物博物館開發及委託經營模式檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030312071004100", + "bill_ref": "887G14717-879", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「我國青年發展政策之檢討及研擬青年發展法研究」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030312071004200", + "bill_ref": "887G14717-880", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「重新提出我國棒球發展政策乙案」書面資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030312071004300", + "bill_ref": "887G14717-881", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送2017臺北世界大學運動會軟硬體經費及場館興整建事宜書面說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030226071003800", + "bill_ref": "887G14717-882", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關「組織改造後體育署執行跨年度延續性計畫經費編列情形及辦理成效」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030312071004600", + "bill_ref": "887G14717-885", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「了解青年從事派遣或臨時工作情況及提升大專畢業生競爭力、就業能力」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030312071004700", + "bill_ref": "887G14717-886", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關檢討體育人才培育政策,訂定中長程體育人才培育計畫乙案,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030312071004800", + "bill_ref": "887G14717-887", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「研擬推動提升我國中小學參與體育活動策略」之說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030312071004500", + "bill_ref": "887G14717-884", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送國立海洋生物博物館開發及委託經營模式檢討報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00165.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00165.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030312071004900", + "bill_ref": "887G14717-888", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關應主動提供經費及技術上協助,並積極會同中央研究院完成中部數位典藏中心之落成之報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030312071005000", + "bill_ref": "887G14717-889", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算該部主管第2項文化資產局決議(三),檢送辦理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030312071005100", + "bill_ref": "887G14717-890", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,檢送有關參照日本古建資料彙編,優先建置「國定古蹟國家檔案資料庫」之說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030312071005200", + "bill_ref": "887G14717-891", + "proposed_by": "文化部", + "summary": "函送「價值產值化計畫─文化創意產業委託投資執行情形」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030312071005300", + "bill_ref": "887G14717-892", + "proposed_by": "文化部", + "summary": "函送「價值產值化計畫─文創產業發展現狀與檢討」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030312071005400", + "bill_ref": "887G14717-893", + "proposed_by": "國防部", + "summary": "函送「102年度派員出國計畫執行概況檢討」書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030312071005500", + "bill_ref": "887G14717-894", + "proposed_by": "勞動部", + "summary": "函,為本院第8屆第4會期第18次會議審議公教人員保險法修正案時通過3項附帶決議,關於勞工保險生育給付標準應配合修正提高為2個月乙節,復如說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030312071005600", + "bill_ref": "887G14717-895", + "proposed_by": "衛生福利部", + "summary": "函送「失智症預防與防治之研究規劃」書面資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030312071005700", + "bill_ref": "887G14717-896", + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送相關書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030312071005800", + "bill_ref": null, + "proposed_by": "法務部", + "summary": "函,為103年度中央政府總預算決議,檢送針對檢察官職務評定制度所提之報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030317071000100", + "bill_ref": "1554G14922", + "proposed_by": "行政院大陸委員會、交通部", + "summary": "函送完成簽署之「臺灣與澳門間航空運輸協議」影本,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030325071001500", + "bill_ref": "887G14717-920", + "proposed_by": "內政部", + "summary": "函送修正「民眾抗爭事件處理程序及聯繫作業要點」第三點、第四點及第十一點規定,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030310071003000", + "bill_ref": "1554G14914", + "proposed_by": "行政院", + "summary": "函,為核定該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸地震監測合作協議」及「海峽兩岸氣象合作協議」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030225071000100", + "bill_ref": "887G14717-371", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「資料使用費」之統計資料使用費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030225071000200", + "bill_ref": "887G14717-372", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「場地設施使用費」之資料加值應用場地設施使用費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030225071000300", + "bill_ref": "887G14717-373", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算決議,針對「使用規費收入」下「服務費」之資料加值應用服務費收入凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030225071000400", + "bill_ref": "887G14717-374", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(一),針對該部預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030225071000700", + "bill_ref": "887G14717-375", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030225071000800", + "bill_ref": "887G14717-376", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030225071000900", + "bill_ref": "887G14717-377", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(四),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030225071001000", + "bill_ref": "887G14717-378", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030225071001100", + "bill_ref": "887G14717-379", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(六),針對「科技發展工作」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030225071000600", + "bill_ref": "887G14717-380", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七),針對「以醫療科技評估建置衛生資源分配機制」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030225071001400", + "bill_ref": "887G14717-381", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八),針對「衛生與社會福利統計應用研究及健康加值應用雲端化服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030225071001500", + "bill_ref": "887G14717-382", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(九),針對「衛生與社會福利統計應用研究及健康加值應用雲端化服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030225071001700", + "bill_ref": "887G14717-383", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十),針對「數位資訊醫療之推動與整合」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030225071001800", + "bill_ref": "887G14717-384", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十一),針對「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030225071001900", + "bill_ref": "887G14717-385", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十二),針對「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030225071002000", + "bill_ref": "887G14717-386", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十三),針對「醫衛生命科技研究計畫」之獎補助費(人事費除外)預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030225071002100", + "bill_ref": "887G14717-387", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十四),針對「各疾病研究領域之生物分子鏢靶新藥研究與開發計畫」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030225071002400", + "bill_ref": "887G14717-388", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十五),針對「社會保險行政工作」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030225071002200", + "bill_ref": "887G14717-389", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十六),針對「全民健康保險業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030225071002300", + "bill_ref": "887G14717-390", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十七),針對「長期照護保險籌備工作」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030225071002500", + "bill_ref": "887G14717-391", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十八),針對「低收入戶健保費補助」預算凍結5億元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030225071002600", + "bill_ref": "887G14717-392", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十九),針對「辦理急難救助工作」之馬上關懷專案預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030225071002700", + "bill_ref": "887G14717-393", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十),針對「基本行政工作維持」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030225071002800", + "bill_ref": "887G14717-394", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十一),針對「醫政業務」預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00202.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030225071002900", + "bill_ref": "887G14717-395", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十二),針對「加強心理健康促進工作」辦理全國自殺防治中心業務預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030225071003300", + "bill_ref": "887G14717-396", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十三),針對「護理及健康照護業務」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030225071003400", + "bill_ref": "887G14717-397", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十四),針對「強化護理人力培育與提升專業知能」之業務費預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030225071003500", + "bill_ref": "887G14717-398", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十五),針對「中醫藥業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030225071003600", + "bill_ref": "887G14717-399", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十六),針對「中醫藥業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030225071003700", + "bill_ref": "887G14717-400", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(二十七),針對「醫院營運輔導」預算凍結二十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030225071000500", + "bill_ref": "887G14717-401", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十六),針對「推動衛生福利科技發展與管理」之獎補助費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030225071001200", + "bill_ref": "887G14717-402", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十七),針對「提升臨床試驗國際競爭力計畫」之獎補助費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030225071001300", + "bill_ref": "887G14717-403", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十八),針對「建構偏鄉資訊醫療照護網及健康照護發展計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00211.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00211.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030225071001600", + "bill_ref": "887G14717-404", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(七十九),針對「數位資訊醫療之推動與整合」及「建立雲端醫療照護服務計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00212.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030225071003800", + "bill_ref": "887G14717-405", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十),針對「醫政業務」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00213.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030225071003900", + "bill_ref": "887G14717-406", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十一),針對「醫政業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030225071005400", + "bill_ref": "887G14717-407", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十二),針對「醫政業務」之業務費預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030225071003000", + "bill_ref": "887G14717-408", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十三),針對「護理及健康照護業務」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030225071003100", + "bill_ref": "887G14717-409", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十四),針對「護理及健康照護業務」之業務費(長照十年計畫除外)預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030225071003200", + "bill_ref": "887G14717-410", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十五),針對「落實長照十年計畫」預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030225071005500", + "bill_ref": "887G14717-411", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(八十六),針對「醫院營運輔導」補助醫療藥品基金(人事費除外)預算凍結五分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030225071005800", + "bill_ref": "887G14717-412", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(一),針對「科技發展工作」預算凍結3,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030225071005600", + "bill_ref": "887G14717-413", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二),針對「食品安全管制科技發展計畫」之提升國內食品衛生水準,確保食品之安全性,以維護國人健康之委辦費預算凍結2,500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030225071005700", + "bill_ref": "887G14717-414", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(三),針對「食品安全管制科技發展計畫」之落實源頭管理,進行食品攙偽及物種鑑別之研究,基因改造食品之調查等等計畫預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030225071005900", + "bill_ref": "887G14717-415", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(四),針對「基本工作維持」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030225071006300", + "bill_ref": "887G14717-416", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(五),針對「食品藥物管理業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030225071006400", + "bill_ref": "887G14717-417", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(六),針對「食品藥物管理業務」預算凍結1,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030225071006500", + "bill_ref": "887G14717-418", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(七),針對「藥品及新興生技藥品管理業務」之委辦費預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030225071006700", + "bill_ref": "887G14717-419", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(八),針對「藥品及新興生技藥品管理業務」之辦理藥品查驗登記業務之委辦費預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030225071006800", + "bill_ref": "887G14717-420", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(九),針對「醫療器材及化粧品管理業務」之業務費預算凍結39萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030225071006600", + "bill_ref": "887G14717-421", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十),針對「區管理中心業務」辦理輸入食品查驗業務預算凍結3,000萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030225071004000", + "bill_ref": "887G14717-422", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十一),針對「區管理中心業務」之委辦費預算凍結350萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030225071004100", + "bill_ref": "887G14717-423", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(十二),針對「區管理中心業務」辦理輸入食品查驗業務之大陸地區旅費預算凍結20萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030225071006000", + "bill_ref": "887G14717-424", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十八),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030225071006100", + "bill_ref": "887G14717-425", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十九),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030225071006200", + "bill_ref": "887G14717-426", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(三十),針對「食品藥物管理業務」之業務費預算凍結十分之一,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030225071004200", + "bill_ref": "887G14717-427", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(一),針對「一般行政」(不包括人員維持)預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030225071004400", + "bill_ref": "887G14717-428", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(二),針對「健保業務」預算凍結300萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030225071004300", + "bill_ref": "887G14717-429", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三),針對「健保業務」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030225071004500", + "bill_ref": "887G14717-430", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第5項決議(一),針對國民健康署「基本行政工作維持」預算凍結500萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030225071004600", + "bill_ref": "887G14717-431", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(一),針對「推展身心障礙者福利服務」之業務費預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030225071004700", + "bill_ref": "887G14717-432", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二),針對「推展身心障礙者福利服務」辦理ICF行銷與民眾教育宣導之一般事務費預算凍結50萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030225071004800", + "bill_ref": "887G14717-433", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(三),針對「推展身心障礙福利服務」辦理身心障礙者個人照顧及家庭支持服務等工作預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030225071004900", + "bill_ref": "887G14717-434", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(四),針對「推展身心障礙福利服務」補助各類身心障礙福利機構辦理教養、養護服務,提升服務品質預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030225071005000", + "bill_ref": "887G14717-435", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(五),針對「推展兒童及少年福利服務」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030225071005200", + "bill_ref": "887G14717-436", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(六),針對「推展家庭支持服務」預算凍結100萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030225071005100", + "bill_ref": "887G14717-437", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(七),針對「推展家庭支持服務」之業務費預算凍結200萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030225071005300", + "bill_ref": "887G14717-438", + "proposed_by": "衛生福利部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(八),針對「推展家庭支持服務」之業務費預算凍結50萬元,應向本院社會福利及衛生環境委員會專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030306071000600", + "bill_ref": "887G14717-642", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局擬定工業區土地活化對策並提出專案報告乙案,業已備妥相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030306071000500", + "bill_ref": "887G14717-643", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局應檢討「台美產業合作推動辦公室」執行台美產業合作目標數偏低,且促進美資在台投資成效不彰乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030306071000700", + "bill_ref": "887G14717-644", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,有關工業局「全球產業合作推動及商務科技化示範應用計畫」,宜針對近年日資在台投資下降情形,視為警訊並謀思改進措施乙案,檢送專案報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030306071000800", + "bill_ref": "887G14717-645", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局所管農業信用保證基金每年收回金額偏低,累積鉅額之待追索債權,應積極了解狀況,以紓目前困境乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030306071000900", + "bill_ref": "887G14717-646", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局現職公務員兼任董監事,按月領有兼職費及出席費,應檢討其合理性乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030306071001000", + "bill_ref": "887G14717-647", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局應檢討出國計畫之合理性與必要性乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030306071001100", + "bill_ref": "887G14717-648", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局應針對資本適足率未達標準之信用部加強監督與管理乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030306071001200", + "bill_ref": "887G14717-649", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局農業金融業務編列捐助全國農業金庫股份有限公司辦理「農漁會信用部之輔導及績效評鑑」等成效如何尚待商榷乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030317071000800", + "bill_ref": "887G14717-837", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,要求落實辦理進口稻米登記與流向追蹤作業暨重新研議稻米生產履歷制度推動政策,並提出專案報告乙案,業已備妥相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030317071001000", + "bill_ref": "887G14717-716", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對桃園區農業改良場歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030317071000900", + "bill_ref": "887G14717-717", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業科技研究發展」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00257.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00257.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030226071003300", + "bill_ref": "887G14717-499", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送該部「國際及兩岸教育交流」之「辦理國際華語文教育」預算解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00258.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00258.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030226071003400", + "bill_ref": "887G14717-500", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結青年發展署「青年公共參與」600萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00259.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00259.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030226071003500", + "bill_ref": "887G14717-501", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結青年發展署「青年國際及體驗學習」1,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030226071003600", + "bill_ref": "887G14717-502", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「加強學校體育活動及教學發展」之國家足球發展計畫─學生足球運動解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030226071003700", + "bill_ref": "887G14717-503", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國家體育建設」中「推展全民運動」2,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030226071003900", + "bill_ref": "887G14717-504", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導私立大專校院整體發展獎助」1億5,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030226071004000", + "bill_ref": "887G14717-505", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「資訊與科技教育行政及督導」中「資訊科技融入教學」經費1億7,850萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00264.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00264.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030226071004100", + "bill_ref": "887G14717-506", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導海外臺灣學校及大陸地區臺商學校整體發展」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030226071004200", + "bill_ref": "887G14717-507", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「技術職業教育行政及督導」之「強化技職教育學制及特色」2億3,107萬1,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030226071004300", + "bill_ref": "887G14717-508", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,凍結「高級中等學校教育」之辦理輪調式建教合作學生基礎訓練等300萬元,俟向本院教育及文化委員會提出書面報告後始得動支乙案,檢送解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00267.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00267.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030226071004400", + "bill_ref": "887G14717-509", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「學生事務與特殊教育行政及督導」之「學生輔導及性別平等教育」經費6,071萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030226071004500", + "bill_ref": "887G14717-510", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導私立大專校院整體發展獎助」鼓勵私立大學校院健全發展等經費五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030317071001100", + "bill_ref": "887G14717-719", + "proposed_by": "公務人員保障暨培訓委員會", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」項下「人員維持」之「加班值班費」經費611萬元及「訓練進修業務規劃與宣導費用」預算,各凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030218071000700", + "bill_ref": null, + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算該會主管第9項決議(九)該會應於3個月內針對罷免不得宣傳等相關規定提出修法建議;與決議(十)凍結「選舉業務」預算五分之一,經研擬相關法律修正案,向本院內政委員會報告經同意後始得動支等,檢送相關修法建議條文,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030224071002700", + "bill_ref": "887G14717-366", + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會「選舉業務」預算1,000萬元,凍結五分之一,俟向本院內政委員會報告經同意後,始得動支乙案,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 269, + "subitem": null, + "item": null, + "bill_id": "1030304071001600", + "bill_ref": "887G14717-610", + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會及所屬「辦理及督導地方公職人員選舉」編列「業務費-辦理投開票工作人員訓儲及監察業務人講習」395萬元,凍結30%,俟向本院內政委員會提出專案報告並經同意後始得動支乙案,檢送相關書面報告資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 270, + "subitem": null, + "item": null, + "bill_id": "1030224071003800", + "bill_ref": "887G14717-368", + "proposed_by": "銓敘部", + "summary": "函,為103年度中央政府總預算決議,針對該部「人事法制及銓敘」經費編列787萬6,000元,凍結五分之ㄧ乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 271, + "subitem": null, + "item": null, + "bill_id": "1030226071002900", + "bill_ref": "887G14717-489", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「一般行政」項下「業務費」之「房屋建築養護費」經費110萬元,俟向本院司法及法制委員會提出說明及檢討報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 272, + "subitem": null, + "item": null, + "bill_id": "1030226071003000", + "bill_ref": "887G14171-490", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「法制業務」項目經費五分之一,俟研議適法作為,向本院司法及法制委員會提出報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 273, + "subitem": null, + "item": null, + "bill_id": "1030226071003100", + "bill_ref": "887G14717-491", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,針對「施政業務及督導」經費1,295萬9,000元,凍結五分之一,俟向本院司法及法制委員會提出學術交流計畫等相關報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 274, + "subitem": null, + "item": null, + "bill_id": "1030307071005600", + "bill_ref": "887G14717-712", + "proposed_by": "考選部", + "summary": "函,為103年度中央政府總預算決議,凍結「研究發展及宣導」預算之五分之一,俟研議改善方案,向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00278.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00278.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 275, + "subitem": null, + "item": null, + "bill_id": "1030307071005700", + "bill_ref": "887G14717-713", + "proposed_by": "考選部", + "summary": "函,為103年度中央政府總預算決議,凍結「試題研編及審查」預算之五分之一,俟向本院司法及法制委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 276, + "subitem": null, + "item": null, + "bill_id": "1030320071001100", + "bill_ref": "1665G11499-9", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "函,為院會交付審查經濟部、國防部會銜函送修正「現役軍人家屬用電優待付費辦法」第四條及第十四條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 277, + "subitem": null, + "item": null, + "bill_id": "1030320071001200", + "bill_ref": "1687G6944-12", + "proposed_by": "本院經濟、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「老年農民福利津貼申領及核發辦法」第五條及第九條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 278, + "subitem": null, + "item": null, + "bill_id": "1030320071001300", + "bill_ref": "1475G3620-15", + "proposed_by": "本院經濟、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查行政院農業委員會、行政院衛生署會銜函送修正「實際從事農業工作者申請參加全民健康保險認定標準及資格審查辦法」第一條、第二條條文及第三條附件二乙案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 279, + "subitem": null, + "item": null, + "bill_id": "1030320071000100", + "bill_ref": "810G6020-10", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「清除豬瘟暨口蹄疫所需疫苗之種類及其管理辦法」第十一條及第十一條之一條文案等12案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 280, + "subitem": null, + "item": null, + "bill_id": "1030320071000200", + "bill_ref": "1053G8827-21", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送修正「汽電共生系統實施辦法」第二十一條條文及第六條附件二乙案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 281, + "subitem": null, + "item": null, + "bill_id": "1030320071000300", + "bill_ref": "972G3499-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「漁會總幹事遴選辦法」第三條及第六條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 282, + "subitem": null, + "item": null, + "bill_id": "1030320071000400", + "bill_ref": "1798G12110-6", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送修正「再生能源發電設備設置管理辦法」案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 283, + "subitem": null, + "item": null, + "bill_id": "1030320071000500", + "bill_ref": "972G3498-7", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「漁會選舉罷免辦法」第十六條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 284, + "subitem": null, + "item": null, + "bill_id": "1030320071000600", + "bill_ref": "474G2066-19", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送修正「專利法施行細則」案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 285, + "subitem": null, + "item": null, + "bill_id": "1030320071000700", + "bill_ref": "1053G10332-1961", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部所送公告「中華民國一百零二年度再生能源電能躉購費率及其計算公式」案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 286, + "subitem": null, + "item": null, + "bill_id": "1030320071000800", + "bill_ref": "959G8355-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「基層農會會員資格審查及認定辦法」第二條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 287, + "subitem": null, + "item": null, + "bill_id": "1030320071000900", + "bill_ref": "1455G13174-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「公糧業者管理辦法」第三條條文案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 288, + "subitem": null, + "item": null, + "bill_id": "1030320071001000", + "bill_ref": "1053G10332-1962", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送該會95年10月11日農防字第0951473111號公告,經於101年9月7日以農防字第1011473960號公告修正案等11案,經提本院第8屆第4會期第6次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 289, + "subitem": null, + "item": null, + "bill_id": "1030320071007500", + "bill_ref": "956G10887-9", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會所送修正「優良農產品驗證管理辦法」部分條文案,經提本院第8屆第4會期第8次會議報告後決定展延審查期限,復逾立法院職權行使法第61條所定之展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00293.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00293.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 290, + "subitem": null, + "item": null, + "bill_id": "1030324071000100", + "bill_ref": "887G11600-1137", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送該部「98年第4季中央政府預算補助社會團體、人民團體、財團法人及個人補助經費概況表」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 291, + "subitem": null, + "item": null, + "bill_id": "1030324071000200", + "bill_ref": "887G11818-1680", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送該部「99年第1季中央政府預算補助社會團體、人民團體、財團法人及個人補助經費概況表」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 292, + "subitem": null, + "item": null, + "bill_id": "1030324071000600", + "bill_ref": "887G11818-1682", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送「99年度中央政府總預算案,有關未依身心障礙者權益保障法足額進用身心障礙者之政府機關,應依該法第102條對該機關公務員予以懲處」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 293, + "subitem": null, + "item": null, + "bill_id": "1030324071000700", + "bill_ref": "887G11818-1683", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送「為99年度中央政府總預算決議,請該局、行政院公共工程委員會及行政院勞工委員會等機關研議保障派遣勞工權益一案,檢送涉及該局部分之辦理情形」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 294, + "subitem": null, + "item": null, + "bill_id": "1030324071000800", + "bill_ref": "887G12255-1636", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送「為100年度中央政府總預算決議,該局應檢討中央各機關員額編制及運用臨時人員、派遣勞工等整體人力配置情形,並提出員額精簡檢討報告」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 295, + "subitem": null, + "item": null, + "bill_id": "1030324071000900", + "bill_ref": "887G12255-1637", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院人事行政局函送為100年度中央政府總預算決議,行政院應提「公務員兼職及兼職費支給檢討情形」專案報告乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 296, + "subitem": null, + "item": null, + "bill_id": "1030324071001000", + "bill_ref": "887G11600-1139", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送該院主管98年度第4季「補捐助團體及個人經費執行情形表」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 297, + "subitem": null, + "item": null, + "bill_id": "1030324071001100", + "bill_ref": "887G12255-1638", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院秘書長函送「為100年度中央政府總預算歲出第4款第1項對該院所作之第(四)項決議,請該院就司法改革藍圖及司法計畫專案報告案,請安排報告日程,請查照案」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 298, + "subitem": null, + "item": null, + "bill_id": "1030324071001400", + "bill_ref": "887G12255-1639", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送該部「財團法人法律扶助基金會100年度預算書及其董事長、執行首長、一級單位主管之職權說明、個人簡歷及薪資等資料」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 299, + "subitem": null, + "item": null, + "bill_id": "1030324071001500", + "bill_ref": "887G12255-1640", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會100年度預算書」乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 300, + "subitem": null, + "item": null, + "bill_id": "1030324071001600", + "bill_ref": "887G11144-889", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查總統府函送為97年度中央政府總預算案,通過凍結該府「資政及國策顧問人事費」預算,請專案報告之決議,為配合第十二任總統用人,請安排報告,請查照案乙案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 301, + "subitem": null, + "item": null, + "bill_id": "1030324071000300", + "bill_ref": "887G11600-1138", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會98年度決算書」乙案,已逾決算法第28條所定審議期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 302, + "subitem": null, + "item": null, + "bill_id": "1030324071000400", + "bill_ref": "887G11818-1681", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會99年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 303, + "subitem": null, + "item": null, + "bill_id": "1030324071000500", + "bill_ref": "887G12255-1635", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「財團法人臺灣更生保護會、福建更生保護會及犯罪被害人保護協會100年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 304, + "subitem": null, + "item": null, + "bill_id": "1030324071001200", + "bill_ref": "887G11818-1684", + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人法律扶助基金會99年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 305, + "subitem": null, + "item": null, + "bill_id": "1030324071001300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「財團法人法律扶助基金會100年度決算書」乙案,已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 306, + "subitem": null, + "item": null, + "bill_id": "1030317071001200", + "bill_ref": "1053G10332-1960", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「電動機車用二次鋰電池/組商品之相關檢驗規定」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 307, + "subitem": null, + "item": null, + "bill_id": "1030319071000900", + "bill_ref": "216G5293-12", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院函為修正「僑外投資負面表列—禁止及限制僑外人投資業別項目」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00311.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00311.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 308, + "subitem": null, + "item": null, + "bill_id": "1030319071001000", + "bill_ref": "966G8579-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農業事業廢棄物再利用管理辦法」第三條、第四條及第五條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 309, + "subitem": null, + "item": null, + "bill_id": "1030319071001100", + "bill_ref": "810G2835-42", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「動物用藥品檢驗標準」第一百八十二條之二十一及第一百八十二條之二十二條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 310, + "subitem": null, + "item": null, + "bill_id": "1030319071001200", + "bill_ref": "1383G12750-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「公用天然氣事業營業章程範本」第二十四條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 311, + "subitem": null, + "item": null, + "bill_id": "1030319071001300", + "bill_ref": "1375G8964-4", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查公平交易委員會函為「行政院公平交易委員會委員會議資訊保密及公開辦法」名稱修正為「公平交易委員會委員會議資訊保密及公開辦法」,並修正條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 312, + "subitem": null, + "item": null, + "bill_id": "1030403071000600", + "bill_ref": "1635G14660-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「行政院農業委員會及所屬各機關公務人員交代條例施行細則」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 313, + "subitem": null, + "item": null, + "bill_id": "1030403071000700", + "bill_ref": "1783G14681-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「行政院農業委員會茶業改良場受託辦理茶葉品質檢驗及鑑識收費標準」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 314, + "subitem": null, + "item": null, + "bill_id": "1030416071000600", + "bill_ref": "618G2758-14", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為「公司申請登記資本額查核辦法」名稱修正為「會計師查核簽證公司登記資本額辦法」,並修正條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 315, + "subitem": null, + "item": null, + "bill_id": "1030416071000700", + "bill_ref": "1652G14679-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函送「經濟部及所屬各行政機關公務人員交代條例施行細則」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 316, + "subitem": null, + "item": null, + "bill_id": "1030416071000800", + "bill_ref": "1539G12374-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「經濟部推動研究機構進行產業創新及研究發展補助辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 317, + "subitem": null, + "item": null, + "bill_id": "1030416071000900", + "bill_ref": "959G2165-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農會法定公積公益金及各級農會推廣互助訓練經費保管運用辦法」案,已逾立法院職權行使法第61條所定審查期限,提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 318, + "subitem": null, + "item": null, + "bill_id": "1030416071001000", + "bill_ref": "956G7283-5", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「農業用地作農業使用認定及核發證明辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 319, + "subitem": null, + "item": null, + "bill_id": "1030416071001100", + "bill_ref": "956G4530-12", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「休閒農業輔導管理辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00323.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00323.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 320, + "subitem": null, + "item": null, + "bill_id": "1030416071001200", + "bill_ref": "966G8364-14", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「經濟部事業廢棄物再利用管理辦法」部分條文及第三條附表案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00324.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00324.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 321, + "subitem": null, + "item": null, + "bill_id": "1030416071001300", + "bill_ref": "1554G11750-10", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「大陸地區人民來臺投資許可辦法」第八條、第九條及第十一條條文案,已逾立法院職權行使法第61條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00325.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00325.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 322, + "subitem": null, + "item": null, + "bill_id": "1030416071001400", + "bill_ref": "1554G11750-11", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為中華民國102年11月14日修正發布之「大陸地區人民來臺投資許可辦法」,除第八條第二項外,定自102年11月14日施行案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 323, + "subitem": null, + "item": null, + "bill_id": "1030416071001500", + "bill_ref": "1053G10332-1999", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「動物及動物產品輸入檢疫條件」第三點及附件一之二十三乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 324, + "subitem": null, + "item": null, + "bill_id": "1030416071001700", + "bill_ref": "1053G8380-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「石油業儲油設備代行檢查機構設置管理辦法」第七條條文案,已逾立法院職權行使法第61條所定審查期限,函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 325, + "subitem": null, + "item": null, + "bill_id": "1030416071001800", + "bill_ref": "1534G8929-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「出進口績優廠商表揚辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 326, + "subitem": null, + "item": null, + "bill_id": "1030416071001600", + "bill_ref": "1475G3620-16", + "proposed_by": "本院經濟、內政兩委員會", + "summary": "函,為院會交付審查行政院農業委員會、內政部函為修正「從事農業工作農民申請參加農民健康保險認定標準及資格審查辦法」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 327, + "subitem": null, + "item": null, + "bill_id": "1030417071001200", + "bill_ref": "1374G10061-213", + "proposed_by": "(密)本院社會福利及衛生環境、外交及國防兩委員會", + "summary": "函,為院會交付審查行政院衛生署函送該署食品藥物管理局與英國藥物及保健產品管理局之「臺英保密瞭解備忘錄」簽署約本中、英文影本,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00331.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00331.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 328, + "subitem": null, + "item": null, + "bill_id": "1030317071001300", + "bill_ref": "1604G13463-1", + "proposed_by": "本院社會福利及衛生環境、司法及法制兩委員會", + "summary": "函,為院會交付審查行政院衛生署、法務部會銜函送「全民健康保險保險對象收容於矯正機關者就醫管理辦法」,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00332.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00332.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 329, + "subitem": null, + "item": null, + "bill_id": "1030317071001400", + "bill_ref": "969G7989-3", + "proposed_by": "本院社會福利及衛生環境、經濟兩委員會", + "summary": "函,為院會交付審查行政院衛生署、經濟部會銜函送修正「食品工廠建築及設備設廠標準」部分條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00333.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00333.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 330, + "subitem": null, + "item": null, + "bill_id": "1030403071000400", + "bill_ref": "1604G13489-1", + "proposed_by": "本院社會福利及衛生環境、經濟兩委員會", + "summary": "函,為院會交付審查行政院衛生署、公平交易委員會函送「全民健康保險藥品交易定型化契約應記載及不得記載事項」,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 331, + "subitem": null, + "item": null, + "bill_id": "1030317071001500", + "bill_ref": "468G10020-8", + "proposed_by": "本院社會福利及衛生環境委員會函,為", + "summary": "院會交付審查行政院勞工委員會函為修正「勞工退休金條例施行細則」第三十四條條文等13案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00335.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00335.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 332, + "subitem": null, + "item": null, + "bill_id": "1030324071001700", + "bill_ref": "1604G11954-27", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院衛生署函,為修正「全民健康保險醫療費用支付標準」部分診療項目等12案,已逾立法院職權行使法第61條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 333, + "subitem": null, + "item": null, + "bill_id": "1030403071000500", + "bill_ref": "1604G5151-14", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院衛生署函為「全民健康保險醫事服務機構醫療服務審查辦法」名稱修正為「全民健康保險醫療費用申報與核付及醫療服務審查辦法」,並修正條文等14案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 334, + "subitem": null, + "item": null, + "bill_id": "1030403071000300", + "bill_ref": "887G12255-1641", + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院勞工委員會函送勞工保險局100年度第4季止預算執行情形報告案等10案,經提本院第8屆第4會期第9次會議報告後決定:展延審查期限;復逾立法院職權行使法第61條所定審查期限,茲依規定請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00338.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00338.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 335, + "subitem": null, + "item": null, + "bill_id": "1030416071001900", + "bill_ref": "887G11144-812", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付本會審查行政院海岸巡防署函送該署海洋巡防總局「98至101年100噸級巡防救難艇汰換計畫」計畫書等22案,均已逾年度預算執行期間,報請院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00339.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00339.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 336, + "subitem": null, + "item": null, + "bill_id": "1030416071002000", + "bill_ref": "447G13408-2", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查內政部函送「住宅法施行細則」等21案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 337, + "subitem": null, + "item": null, + "bill_id": "1030416071100100", + "bill_ref": "887G11818-1688", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查內政部函送「內政部本(99)年度第一季內政資訊業務歲出預算執行報告」等33案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00341.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00341.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 338, + "subitem": null, + "item": null, + "bill_id": "1030416071002100", + "bill_ref": "248G4524-5", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查內政部函送修正「獎勵土地所有權人辦理市地重劃辦法」部分條文等22案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00342.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00342.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 339, + "subitem": null, + "item": null, + "bill_id": "1030416071002200", + "bill_ref": "1581G7499-5", + "proposed_by": "本院內政、財政兩委員會", + "summary": "函,為院會交付審查內政部、財政部函送修正「促進民間參與公共建設公有土地出租及設定地上權租金優惠辦法」第二條條文案,因已屆滿展延審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00343.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00343.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 340, + "subitem": null, + "item": null, + "bill_id": "1030416071002300", + "bill_ref": "1053G14658-1", + "proposed_by": "本院內政、經濟兩委員會", + "summary": "函,為院會交付審查內政部、經濟部函送「新建建築物節約能源設計標準」案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00344.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00344.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 341, + "subitem": null, + "item": null, + "bill_id": "1030416071002400", + "bill_ref": "956G7983-4", + "proposed_by": "本院內政、經濟兩委員會", + "summary": "函,為院會交付審查內政部、行政院農業委員會函為修正「農業用地興建農舍辦法」案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00345.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00345.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 342, + "subitem": null, + "item": null, + "bill_id": "1030417087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳宜臻等11人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 343, + "subitem": null, + "item": null, + "bill_id": "1030417087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等27人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00347.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00347.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 344, + "subitem": null, + "item": null, + "bill_id": "1030417087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李桐豪等18人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00348.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00348.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 345, + "subitem": null, + "item": null, + "bill_id": "1030417087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱志偉等14人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00349.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00349.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 346, + "subitem": null, + "item": null, + "bill_id": "1030417087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等22人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00350.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00350.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 347, + "subitem": null, + "item": null, + "bill_id": "1030417087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員羅淑蕾等19人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 348, + "subitem": null, + "item": null, + "bill_id": "1030417087800700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等13人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 349, + "subitem": null, + "item": null, + "bill_id": "1030417087800800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等24人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 350, + "subitem": null, + "item": null, + "bill_id": "1030417087800900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等21人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 351, + "subitem": null, + "item": null, + "bill_id": "1030417087801000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等17人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 352, + "subitem": null, + "item": null, + "bill_id": "1030417087801100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等29人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00356.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 353, + "subitem": null, + "item": null, + "bill_id": "1030417087801200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李昆澤等12人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00357.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00357.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 354, + "subitem": null, + "item": null, + "bill_id": "1030417087803500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳碧涵等21人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/07/LCEWA01_080507_00358.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/07/LCEWA01_080507_00358.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030417070300400", + "bill_ref": null, + "proposed_by": "本院司法及法制、內政兩委員會", + "summary": "報告審查「總統咨請本院同意顏大和為最高法院檢察署檢察總長案」案。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-06", + "name": "第8屆第5會期第6次會議", + "summary": "一、18日上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢。三、22日下午1時50分至2時30分為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 60640, + "chair": null, + "date": "2014-04-18", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 60641, + "chair": null, + "date": "2014-04-22", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030313070202100", + "bill_ref": "775L16147", + "proposed_by": "本院委員劉建國等20人", + "summary": "擬具「藥事法第八十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00006.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030313070202200", + "bill_ref": "874L16148", + "proposed_by": "本院委員劉建國等20人", + "summary": "擬具「化粧品衛生管理條例增訂第二十六條之二條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00007.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030313070202300", + "bill_ref": "1545L16149", + "proposed_by": "本院委員劉建國等20人", + "summary": "擬具「醫療法第五十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00008.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030310070200900", + "bill_ref": "1032L16122", + "proposed_by": "本院委員劉建國等21人", + "summary": "擬具「身心障礙者權益保障法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00009.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030310070200600", + "bill_ref": "1032L16119", + "proposed_by": "本院委員蔣乃辛等27人", + "summary": "擬具「身心障礙者權益保障法第五條之一及第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00010.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030310070200500", + "bill_ref": "468L16118", + "proposed_by": "本院委員蔣乃辛等27人", + "summary": "擬具「勞工保險條例第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00011.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030310070201000", + "bill_ref": "468L16123", + "proposed_by": "本院委員楊瓊瓔等24人", + "summary": "擬具「勞工保險條例第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00012.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030310070201100", + "bill_ref": "1542L16124", + "proposed_by": "本院委員楊瓊瓔等24人", + "summary": "擬具「性別工作平等法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00013.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030313070200600", + "bill_ref": "225L16132", + "proposed_by": "本院委員楊瓊瓔等18人", + "summary": "擬具「所得稅法第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00014.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030310070200700", + "bill_ref": "962L16120", + "proposed_by": "本院委員林淑芬等24人", + "summary": "擬具「水污染防治法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00015.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030310070200800", + "bill_ref": "1053L16121", + "proposed_by": "本院委員林淑芬等21人", + "summary": "擬具「土壤及地下水污染整治法第五十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00016.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030310070201200", + "bill_ref": "1352L16125", + "proposed_by": "本院委員蔡煌瑯等21人", + "summary": "擬具「勞資爭議處理法第四十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00017.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030310070201300", + "bill_ref": "67L16126", + "proposed_by": "本院委員蔡煌瑯等19人", + "summary": "擬具「姓名條例第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00018.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030313070200100", + "bill_ref": "775L16127", + "proposed_by": "本院委員田秋堇等22人", + "summary": "擬具「藥師法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00019.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030313070201500", + "bill_ref": "1032L16142", + "proposed_by": "本院委員田秋堇等18人", + "summary": "擬具「身心障礙者權益保障法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00020.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030313070203600", + "bill_ref": "1390L16162", + "proposed_by": "本院委員田秋堇等26人", + "summary": "擬具「人體器官移植條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00021.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030313070202400", + "bill_ref": "1390L16150", + "proposed_by": "本院委員江惠貞等22人", + "summary": "擬具「人體器官移植條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00022.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030313070200200", + "bill_ref": "1722L16128", + "proposed_by": "本院委員孫大千等22人", + "summary": "擬具「食品安全衛生管理法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00023.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030313070200300", + "bill_ref": "380L16129", + "proposed_by": "本院委員孫大千等22人", + "summary": "擬具「鐵路法第六十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00024.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030313070200400", + "bill_ref": "616L16130", + "proposed_by": "本院委員孫大千等22人", + "summary": "擬具「使用牌照稅法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00025.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030313070200500", + "bill_ref": "1073L16131", + "proposed_by": "本院委員孫大千等23人", + "summary": "擬具「幼兒教育及照顧法第三十一條及第三十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00026.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030313070200700", + "bill_ref": "468L16133", + "proposed_by": "本院委員楊麗環等29人", + "summary": "擬具「勞工保險條例第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00027.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030313070200800", + "bill_ref": "468L16134", + "proposed_by": "本院委員李慶華等22人", + "summary": "擬具「勞工保險條例第四條及第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00028.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030313070200900", + "bill_ref": "1542L16135", + "proposed_by": "本院委員李慶華等29人", + "summary": "擬具「性別工作平等法第四條、第十五條及第三十八條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00029.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030313070201800", + "bill_ref": "1578L16136", + "proposed_by": "本院委員李慶華等22人", + "summary": "擬具「國民年金法第三十二條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00030.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030313070201000", + "bill_ref": "447L16137", + "proposed_by": "本院委員李應元等17人", + "summary": "擬具「住宅法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00031.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1030313070201100", + "bill_ref": "616L16138", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「使用牌照稅法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00032.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1030313070203100", + "bill_ref": "225L16157", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「所得稅法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00033.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1030313070201200", + "bill_ref": "161L16139", + "proposed_by": "本院委員廖正井等34人", + "summary": "擬具「刑事訴訟法增訂第一百十九條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00034.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1030313070201300", + "bill_ref": "161L16140", + "proposed_by": "本院委員廖正井等32人", + "summary": "擬具「刑事訴訟法施行法增訂第七條之七條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00035.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00035.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1030313070201400", + "bill_ref": "597L16141", + "proposed_by": "本院委員廖正井等49人", + "summary": "擬具「外役監條例第四條、第九條及第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00036.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00036.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1030313070201600", + "bill_ref": "55L16143", + "proposed_by": "本院委員羅淑蕾等26人", + "summary": "擬具「民用航空法第三十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00037.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1030313070201700", + "bill_ref": "1544L16144", + "proposed_by": "本院委員李昆澤等18人", + "summary": "擬具「地方制度法第八十三條之七條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00038.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00038.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1030313070201900", + "bill_ref": "1701L16145", + "proposed_by": "本院委員潘維剛等34人", + "summary": "擬具「船員法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00039.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00039.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1030313070202000", + "bill_ref": "647L16146", + "proposed_by": "本院委員吳宜臻等18人", + "summary": "擬具「法院組織法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00040.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00040.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1030313070202500", + "bill_ref": "1044L16151", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「公職人員選舉罷免法第五條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00041.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1030313070202600", + "bill_ref": "1044L16152", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「中央選舉委員會組織法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00042.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00042.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1030313070202700", + "bill_ref": "977L16153", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「工會法第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00043.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1030313070202800", + "bill_ref": "1033L16154", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「特殊境遇家庭扶助條例第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00044.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1030313070202900", + "bill_ref": "1450L16155", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「消費者保護法第十九條及第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00045.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1030313070203000", + "bill_ref": "1684L16156", + "proposed_by": "本院委員江啟臣等26人", + "summary": "擬具「身心障礙者權利公約施行法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00046.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00046.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1030313070203200", + "bill_ref": "1606L16158", + "proposed_by": "本院委員何欣純等19人", + "summary": "擬具「政府資訊公開法第十八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00047.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00047.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1030313070203300", + "bill_ref": "1082L16159", + "proposed_by": "本院委員何欣純等20人", + "summary": "擬具「文化資產保存法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00048.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1030313070203400", + "bill_ref": "1455L16160", + "proposed_by": "本院委員潘孟安等23人", + "summary": "擬具「糧食管理法第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00049.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1030313070203500", + "bill_ref": "8L16161", + "proposed_by": "本院委員潘孟安等22人", + "summary": "擬具「終身學習法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00050.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1030313070203700", + "bill_ref": "38L16163", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「赦免法增訂第六條之一、第六條之二及第六條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00051.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00051.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1030313070204000", + "bill_ref": "1140L16165", + "proposed_by": "本院委員楊玉欣等38人", + "summary": "擬具「罕見疾病防治及藥物法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00052.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1030313070203800", + "bill_ref": "468L16164", + "proposed_by": "本院委員鄭汝芬等33人", + "summary": "擬具「勞工保險條例第三十二條及第七十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00053.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1030313070203900", + "bill_ref": "468L16173", + "proposed_by": "本院委員林德福等20人", + "summary": "擬具「勞工保險條例第三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00054.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1030313070204100", + "bill_ref": "52L16166", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「簡易人壽保險法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00055.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1030313070204200", + "bill_ref": "462L16167", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「強制汽車責任保險法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00056.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1030313070204300", + "bill_ref": "1539L16168", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「票券金融管理法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00057.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1030313070204400", + "bill_ref": "1692L16169", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「洗錢防制法第十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00058.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1030313070204500", + "bill_ref": "1777L16170", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「電子票證發行管理條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00059.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1030313070204600", + "bill_ref": "1043L16171", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「金融消費者保護法第二條及第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00060.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1030313070204700", + "bill_ref": "801L16172", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「金融控股公司法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00061.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1030313070204800", + "bill_ref": "1138L16174", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「殯葬管理條例第五十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00062.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00062.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1030313070204900", + "bill_ref": "1662L16175", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「信託業法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00063.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00063.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1030313070205000", + "bill_ref": "1539L16176", + "proposed_by": "本院委員林德福等21人", + "summary": "擬具「證券投資信託及顧問法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00064.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1030317070200900", + "bill_ref": "271L16185", + "proposed_by": "本院委員賴士葆等17人", + "summary": "擬具「加值型及非加值型營業稅法第四十二條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00065.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00065.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1030317070201000", + "bill_ref": "464L16186", + "proposed_by": "本院委員賴士葆等17人", + "summary": "擬具「保險法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00066.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1030317070200800", + "bill_ref": "184L16184", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「貨物稅條例第十二條及第十二條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00067.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1030317070201100", + "bill_ref": "1679L16187", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「總統職務交接條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00068.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1030317070200100", + "bill_ref": "1503L16177", + "proposed_by": "本院委員李桐豪等23人", + "summary": "擬具「精神衛生法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00069.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1030317070200200", + "bill_ref": "1560L16178", + "proposed_by": "本院委員李桐豪等20人", + "summary": "擬具「生技新藥產業發展條例增訂第十二條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00070.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030317070200300", + "bill_ref": "1539L16179", + "proposed_by": "本院委員李桐豪等19人", + "summary": "擬具「產業創新條例增訂第六十七條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00071.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00071.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030317070200400", + "bill_ref": "618L16180", + "proposed_by": "本院委員顏寬恒等27人", + "summary": "擬具「公司法第七十九條及第三百二十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00072.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030317070200500", + "bill_ref": "1762L16181", + "proposed_by": "本院委員黃昭順等30人", + "summary": "擬具「國軍老舊眷村改建條例第二十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00073.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030317070200600", + "bill_ref": "1061L16182", + "proposed_by": "本院委員黃昭順等29人", + "summary": "擬具「陸海空軍軍官士官服役條例第三十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00074.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00074.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030317070200700", + "bill_ref": "1559L16183", + "proposed_by": "本院委員黃昭順等29人", + "summary": "擬具「教師待遇條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00075.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00075.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030317070201200", + "bill_ref": "67L16188", + "proposed_by": "本院委員許添財等16人", + "summary": "擬具「姓名條例第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00076.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030317070201400", + "bill_ref": "1155L16189", + "proposed_by": "本院委員趙天麟等22人", + "summary": "擬具「醫事檢驗師法第四十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00077.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030324070200100", + "bill_ref": "775L16202", + "proposed_by": "本院委員趙天麟等23人", + "summary": "擬具「藥師法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00078.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030317070201300", + "bill_ref": "1604L16190", + "proposed_by": "本院委員趙天麟等22人", + "summary": "擬具「全民健康保險法第十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00079.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030319070200300", + "bill_ref": "1604L16193", + "proposed_by": "本院委員盧秀燕等26人", + "summary": "擬具「全民健康保險法第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00080.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030319070200100", + "bill_ref": "467L16191", + "proposed_by": "本院委員魏明谷等18人", + "summary": "擬具「護照條例第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00081.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030319070200200", + "bill_ref": "1542L16192", + "proposed_by": "本院委員魏明谷等18人", + "summary": "擬具「性別工作平等法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00082.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030320070200100", + "bill_ref": "1542L16198", + "proposed_by": "本院委員江惠貞等19人", + "summary": "擬具「性別工作平等法第四條、第十四條及第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00083.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030319070200700", + "bill_ref": "1722L16197", + "proposed_by": "本院委員江惠貞等18人", + "summary": "擬具「食品安全衛生管理法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00084.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030319070200400", + "bill_ref": "1121L16194", + "proposed_by": "本院委員王惠美等22人", + "summary": "擬具「勞動基準法第八十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00085.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030319070200500", + "bill_ref": "1037L16195", + "proposed_by": "本院委員蔡正元等22人", + "summary": "擬具「社會救助法第五條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00086.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030319070200600", + "bill_ref": "380L16196", + "proposed_by": "本院委員蔡正元等20人", + "summary": "擬具「鐵路法第六十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00087.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030321070200100", + "bill_ref": "1032L16199", + "proposed_by": "本院委員李昆澤等19人", + "summary": "擬具「身心障礙者權益保障法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00088.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030321070200200", + "bill_ref": "1552L16200", + "proposed_by": "本院委員李昆澤等21人", + "summary": "擬具「停車場法第三十二條及第四十條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00089.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030321070200300", + "bill_ref": "447L16201", + "proposed_by": "本院委員李昆澤等19人", + "summary": "擬具「住宅法第四十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00090.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030326070200100", + "bill_ref": "246L16203", + "proposed_by": "本院委員邱志偉等19人", + "summary": "擬具「中華民國刑法第二百二十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00091.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030326070200200", + "bill_ref": "308L16204", + "proposed_by": "本院委員邱志偉等19人", + "summary": "擬具「毒品危害防制條例第二十五條及第三十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00092.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030327070200100", + "bill_ref": "1150L16205", + "proposed_by": "本院委員劉建國等19人", + "summary": "擬具「民法第八百二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00093.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030327070200200", + "bill_ref": "845L16206", + "proposed_by": "本院委員劉建國等18人", + "summary": "擬具「衛生福利部組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00094.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030327070200300", + "bill_ref": "1578L16207", + "proposed_by": "本院委員劉建國等20人", + "summary": "擬具「國民年金法第三十二條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00095.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030327070200400", + "bill_ref": "647L16208", + "proposed_by": "本院委員劉建國等20人", + "summary": "擬具「多氯聯苯受害者救濟法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00096.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00096.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030327070200500", + "bill_ref": "1722L16209", + "proposed_by": "本院委員劉建國等20人", + "summary": "擬具「食品安全衛生管理法第三十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00097.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030327070200600", + "bill_ref": "1545L16210", + "proposed_by": "本院委員劉建國等19人", + "summary": "擬具「醫療法第一百零二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00098.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030403070200300", + "bill_ref": "23L16217", + "proposed_by": "本院委員尤美女等30人", + "summary": "擬具「立法院職權行使法增訂第十三條之一、第十三條之二及第十三條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00099.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030403070200400", + "bill_ref": "1394L16216", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「條約締結法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00100.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030401070200100", + "bill_ref": "1746L16212", + "proposed_by": "本院委員賴士葆等19人", + "summary": "擬具「菸酒管理法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00101.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030401070200200", + "bill_ref": "161L16213", + "proposed_by": "本院委員薛凌等26人", + "summary": "擬具「刑事訴訟法第一百十一條及第一百十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00102.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030403070200100", + "bill_ref": "462L16214", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「強制汽車責任保險法第四十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00103.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00103.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030403070200500", + "bill_ref": "1149L16218", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「電影法第十條、第十三條及第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00104.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030403070200600", + "bill_ref": "1429L16219", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「發展大眾運輸條例第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00105.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030403070200700", + "bill_ref": "822L16220", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「發展觀光條例第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00106.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030403070200800", + "bill_ref": "1722L16221", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「食品安全衛生管理法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00107.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030403070200900", + "bill_ref": "1450L16222", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「消費者保護法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00108.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030403070201000", + "bill_ref": "336L16223", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「內政部消防署組織條例第十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00109.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030403070201100", + "bill_ref": "1221L16224", + "proposed_by": "本院委員陳亭妃等17人", + "summary": "擬具「教育人員任用條例第二十二條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00110.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030403070201200", + "bill_ref": "1558L16225", + "proposed_by": "本院委員江惠貞等25人", + "summary": "擬具「心理師法第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00111.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030403070201300", + "bill_ref": "616L16226", + "proposed_by": "本院委員陳根德等17人", + "summary": "擬具「使用牌照稅法第三十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00112.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030403070201400", + "bill_ref": "981L16227", + "proposed_by": "本院委員曾巨威等31人", + "summary": "擬具「稅捐稽徵法第三十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00113.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030403070201500", + "bill_ref": "1746L16228", + "proposed_by": "本院委員王育敏等21人", + "summary": "擬具「菸酒管理法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00114.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030407070200100", + "bill_ref": "1033L16230", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「特殊境遇家庭扶助條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00115.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030409070200100", + "bill_ref": "56L16231", + "proposed_by": "本院委員陳根德等18人", + "summary": "擬具「財務罰鍰處理暫行條例第三條及第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00116.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030409070200200", + "bill_ref": "1722L16232", + "proposed_by": "本院委員簡東明等24人", + "summary": "擬具「原住民族文化園區組織法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00117.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030409070200300", + "bill_ref": "468L16233", + "proposed_by": "本院委員江惠貞等25人", + "summary": "擬具「勞工退休金條例第二十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00118.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030409070200400", + "bill_ref": "1462L16234", + "proposed_by": "本院委員曾巨威等18人", + "summary": "擬具「菸害防制法第四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00119.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030409070200500", + "bill_ref": "1462L16235", + "proposed_by": "本院委員曾巨威等18人", + "summary": "擬具「菸酒稅法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00120.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030409070200600", + "bill_ref": "815L16236", + "proposed_by": "本院委員黃偉哲等16人", + "summary": "擬具「漁業法第四十八條之一及第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00121.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030409070200700", + "bill_ref": "462L16237", + "proposed_by": "本院委員李昆澤等19人", + "summary": "擬具「公路法第二十四條及第六十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00122.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030409070200800", + "bill_ref": "243L16238", + "proposed_by": "本院委員江啟臣等22人", + "summary": "擬具「民事訴訟法第五百十一條及第五百十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00123.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030410070200100", + "bill_ref": "1150L16239", + "proposed_by": "本院委員陳節如等20人", + "summary": "擬具「民法第一千一百十一條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00124.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030410070200200", + "bill_ref": "1150L16240", + "proposed_by": "本院委員陳節如等20人", + "summary": "擬具「民法親屬編增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00125.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030410070200300", + "bill_ref": "666L16241", + "proposed_by": "本院委員邱文彥等79人", + "summary": "擬具「景觀法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00126.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030410070200400", + "bill_ref": "1722L16242", + "proposed_by": "本院委員管碧玲等16人", + "summary": "擬具「國營事業管理法增訂第十一條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00127.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030410070200500", + "bill_ref": "754L16243", + "proposed_by": "本院委員管碧玲等16人", + "summary": "擬具「國有財產法第五十二條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00128.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030410070200600", + "bill_ref": "464L16244", + "proposed_by": "本院委員李應元等22人", + "summary": "擬具「保險法第一百四十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00129.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030410070200700", + "bill_ref": "1013L16245", + "proposed_by": "本院委員楊玉欣等23人", + "summary": "擬具「高級中等教育法第四十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00130.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030410070200800", + "bill_ref": "1013L16246", + "proposed_by": "本院委員楊玉欣等25人", + "summary": "擬具「國民教育法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00131.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030410070200900", + "bill_ref": "184L16247", + "proposed_by": "本院委員楊玉欣等27人", + "summary": "擬具「貨物稅條例第十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00132.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030410070201000", + "bill_ref": "462L16248", + "proposed_by": "本院委員蔡錦隆等20人", + "summary": "擬具「公路法第四十條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00133.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030410070201100", + "bill_ref": "1138L16249", + "proposed_by": "本院委員張嘉郡等20人", + "summary": "擬具「殯葬管理條例增訂第二十一條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00134.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030414070200500", + "bill_ref": "1021L16253", + "proposed_by": "本院委員蔣乃辛等19人", + "summary": "擬具「科學工業園區設置管理條例第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00135.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030414070200100", + "bill_ref": "1138L16251", + "proposed_by": "本院委員蔣乃辛等20人", + "summary": "擬具「殯葬管理條例第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00136.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030414070200200", + "bill_ref": "1409L16252", + "proposed_by": "本院委員蔣乃辛等24人", + "summary": "擬具「社會秩序維護法第九十一條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00137.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030414070200400", + "bill_ref": "874L16255", + "proposed_by": "本院委員蔣乃辛等26人", + "summary": "擬具「化粧品衛生管理條例第六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00138.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030414070200300", + "bill_ref": "932L16254", + "proposed_by": "本院委員蔣乃辛等20人", + "summary": "擬具「兒童及少年福利與權益保障法第五十三條、第五十四條及第一百條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00139.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030414070200600", + "bill_ref": "775L16256", + "proposed_by": "本院委員趙天麟等19人", + "summary": "擬具「藥事法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00140.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030310070100100", + "bill_ref": "1013G14913", + "proposed_by": "行政院", + "summary": "函請審議「學生輔導法草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00198.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030311070100100", + "bill_ref": "1021G14915", + "proposed_by": "行政院", + "summary": "函請審議廢止「行政院國家科學委員會組織條例」、「科學工業園區管理局組織條例」、「行政院國家科學委員會中部科學工業園區管理局組織法」及「南部科學工業園區管理局組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00199.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030317070100100", + "bill_ref": "1554G14920", + "proposed_by": "行政院", + "summary": "函請審議「臺灣地區與大陸地區人民關係條例部分條文修正草案」;並請同意撤回101年6月4日函送本院審議之「臺灣地區與大陸地區人民關係條例第十八條、第十八條之一及第八十七條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00200.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030317070100200", + "bill_ref": "1669G14921", + "proposed_by": "行政院", + "summary": "函請審議「香港澳門關係條例部分條文修正草案」;並請同意撤回101年6月4日函送本院審議之「香港澳門關係條例第十四條、第十四條之一及第四十七條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00201.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030317071000200", + "bill_ref": "271G14923", + "proposed_by": "行政院", + "summary": "函請審議「加值型及非加值型營業稅法第十一條及第三十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00202.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030317070100300", + "bill_ref": "225G14924", + "proposed_by": "行政院", + "summary": "函請審議「所得稅法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00203.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030317070100400", + "bill_ref": "1684G14925", + "proposed_by": "行政院", + "summary": "函請審議「入出國及移民法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00204.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030403070100100", + "bill_ref": "1722G14947", + "proposed_by": "行政院", + "summary": "函請審議廢止「行政院原住民族委員會組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00205.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030407070100100", + "bill_ref": "616G14949", + "proposed_by": "行政院", + "summary": "函請審議「使用牌照稅法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00206.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030407070100200", + "bill_ref": "1433G14950", + "proposed_by": "行政院", + "summary": "函請審議「人類免疫缺乏病毒傳染防治及感染者權益保障條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00207.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030408070100100", + "bill_ref": "1554G14951", + "proposed_by": "行政院", + "summary": "函請審議「臺灣地區與大陸地區人民關係條例第六十五條條文修正草案」案。   ", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00208.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030408070100200", + "bill_ref": "1781G14952", + "proposed_by": "行政院", + "summary": "函請審議「陸海空軍懲罰法修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00209.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030327070100100", + "bill_ref": "829G14938", + "proposed_by": "司法院", + "summary": "函請審議「行政訴訟法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00212.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030327070100200", + "bill_ref": "829G14939", + "proposed_by": "司法院", + "summary": "函請審議「行政訴訟法施行法增訂部分條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00213.doc" + }, + "sitting_introduced": "08-05-YS-06" + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030310071003000", + "bill_ref": "1554G14914", + "proposed_by": "行政院", + "summary": "函,為核定該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸地震監測合作協議」及「海峽兩岸氣象合作協議」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030121071000800", + "bill_ref": "99G11903-4", + "proposed_by": "行政院", + "summary": "函,為修正「運動發展基金收支保管及運用辦法」第五條及第十六條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030121071001000", + "bill_ref": "815G4722-10", + "proposed_by": "行政院", + "summary": "函,為修正「漁業動力用油優惠油價標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030121071001700", + "bill_ref": "99G14856", + "proposed_by": "行政院", + "summary": "函送「中央研究院科學研究基金收支保管及運用辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030206070100100", + "bill_ref": "1053G10332-1931", + "proposed_by": "行政院", + "summary": "函,為103年1月8日修正公布之「所得稅法」第九十四條之一及第一百零二條之一條文,定自103年1月8日施行,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030211071000100", + "bill_ref": "887G10040-970", + "proposed_by": "行政院國家科學委員會", + "summary": "函送該會暨所屬102年度第4季補(捐)助民間團體及個人經費資料表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030211071000200", + "bill_ref": "887G10040-971", + "proposed_by": "金融監督管理委員會", + "summary": "函送中央政府莫拉克颱風災後重建特別預算102年度截至12月底止對國內團體補助(含公益支出)情形季報表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030116071000300", + "bill_ref": "1053G10332-1913", + "proposed_by": "金融監督管理委員會", + "summary": "函,為依「證券交易法」第十四條之二及第十四條之四規定授權訂定設置獨立董事及審計委員會之適用範圍,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030116071000400", + "bill_ref": "727G3440-19", + "proposed_by": "金融監督管理委員會", + "summary": "函送「發行人募集與發行有價證券處理準則」第八條、第十八條、第六十三條條文及相關附表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030116071000500", + "bill_ref": "727G4052-9", + "proposed_by": "金融監督管理委員會", + "summary": "函,為修正「公司募集發行有價證券公開說明書應行記載事項準則」第二十條、第二十六條、第三十四條條文及相關附表及「公開發行公司年報應行記載事項準則」第十九條附表二十三,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030116071000600", + "bill_ref": "727G8922-4", + "proposed_by": "金融監督管理委員會", + "summary": "函,為修正「公開發行公司公開財務預測資訊處理準則」第二十條、第二十六條及第二十八條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030121071000500", + "bill_ref": "462G10326-6", + "proposed_by": "金融監督管理委員會", + "summary": "函,為修正「強制汽車責任保險各種準備金管理辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030121071003900", + "bill_ref": "810G3778-9", + "proposed_by": "金融監督管理委員會", + "summary": "函,為修正「信用卡業務機構管理辦法」第二條及第二十六條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030129071001200", + "bill_ref": "727G5304-11", + "proposed_by": "金融監督管理委員會", + "summary": "函,為修正「公開發行銀行財務報告編製準則」第十條、第二十七條、第三十條條文及相關附表、「金融控股公司財務報告編製準則」第十四條、第三十條條文及相關附表、「公開發行票券金融公司財務報告編製準則」第十條、第二十九條條文及相關附表、「銀行資本適足性及資本等級管理辦法」第九條、第十八條條文暨「票券金融公司資本適足性管理辦法」第四條、第十五條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030320070100100", + "bill_ref": null, + "proposed_by": "(密)金融監督管理委員會", + "summary": "函,為本院決議該會應於每年4月1日前提供所屬周邊單位之董事長、總經理,及專任人員由公務員退休轉任者之薪資、獎金、月退俸及優惠存款等資料乙案,檢送相關資料,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030114071000500", + "bill_ref": "1013G14852", + "proposed_by": "教育部", + "summary": "函送「高級中等學校辦理學生國外學歷採認辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030116071000800", + "bill_ref": "870G14853", + "proposed_by": "教育部", + "summary": "函送「入學高級中等學校同等學力認定標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030116071001000", + "bill_ref": "1016G12730-3", + "proposed_by": "教育部", + "summary": "函,為修正「高級中等教育階段辦理非學校型態實驗教育辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030121071001300", + "bill_ref": "1016G2013-3", + "proposed_by": "教育部", + "summary": "函,為「高級中學學生輔導辦法」名稱修正為「高級中等學校學生輔導辦法」,並修正條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030121071001900", + "bill_ref": "987G14858", + "proposed_by": "教育部", + "summary": "函送「短期補習班設立及管理準則」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030121071002000", + "bill_ref": "1013G14859", + "proposed_by": "教育部", + "summary": "函送「高級中等學校群科學程設立變更停辦辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030121071003200", + "bill_ref": "1013G14860", + "proposed_by": "教育部", + "summary": "函送「高級中等學校教科用書審定辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030121071004200", + "bill_ref": "1013G14861", + "proposed_by": "教育部", + "summary": "函送「高級中等學校推廣教育實施辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030121071004300", + "bill_ref": "1013G14862", + "proposed_by": "教育部", + "summary": "函送「高級中等學校軍訓教官職掌介派遷調進修申訴辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030121071004400", + "bill_ref": "1013G14863", + "proposed_by": "教育部", + "summary": "函送「高級中等學校實習課程實施辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030129071000100", + "bill_ref": "1013G14865", + "proposed_by": "教育部", + "summary": "函送「高級中等學校經濟弱勢學生就學費用補助辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030129071000200", + "bill_ref": "1013G14864", + "proposed_by": "教育部", + "summary": "函送「高級中等學校教師每週教學節數標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030129071000800", + "bill_ref": "1013G14866", + "proposed_by": "教育部", + "summary": "函送「高級中等學校學生學習評量辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030129071000900", + "bill_ref": "1013G14867", + "proposed_by": "教育部", + "summary": "函送「高級中等學校進修部學生學習評量辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030129071001000", + "bill_ref": "1013G14868", + "proposed_by": "教育部", + "summary": "函送「高級中等學校辦理實驗教育辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030206071000900", + "bill_ref": "1013G14872", + "proposed_by": "教育部", + "summary": "函送「自學進修高級中等教育學力鑑定考試辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030206071001500", + "bill_ref": "963G11609-3", + "proposed_by": "教育部", + "summary": "函,為「私立高級中等以下學校及其分校分部設立變更停辦辦法」名稱修正為「高級中等以下學校及其分校分部設立變更停辦辦法」,並修正條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030114071000600", + "bill_ref": "1053G10332-1911", + "proposed_by": "經濟部", + "summary": "函,為修正「輸入石油探採石油及製造石化原料工業副產石油製品售與石油煉製業之石油基金收取金額」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030121071000700", + "bill_ref": "474G2066-12", + "proposed_by": "經濟部", + "summary": "函,為修正「專利規費收費辦法」第四條及第十一條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030121071000900", + "bill_ref": "1053G8827-20", + "proposed_by": "經濟部", + "summary": "函,為修正「汽電共生系統實施辦法」第二十一條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030121071002700", + "bill_ref": "1053G8381-4", + "proposed_by": "經濟部", + "summary": "函,為修正「加氣站設置管理規則」第十一條之一、第十九條及第二十一條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030121071002900", + "bill_ref": "1053G8381-5", + "proposed_by": "經濟部", + "summary": "函,為修正「加油站設置管理規則」第十三條、第二十六條及第二十八條之二條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030121071002800", + "bill_ref": "1053G10332-1923", + "proposed_by": "經濟部", + "summary": "函送「應施檢驗安定器內藏式發光二極體(LED)燈泡商品之相關檢驗規定」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030121071003600", + "bill_ref": "1053G10332-1922", + "proposed_by": "經濟部", + "summary": "函,為修正「戰略性高科技貨品種類、特定戰略性高科技貨品種類及輸出管制地區」之「歐盟軍商兩用貨品及技術出口管制清單」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030121071004500", + "bill_ref": "1255G12503-2", + "proposed_by": "經濟部", + "summary": "函,為修正「工廠設立許可或核准登記附加負擔辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030129071000400", + "bill_ref": "887G13333-1956", + "proposed_by": "經濟部", + "summary": "函送所屬加工出口區管理處102年度第4季對補助民間團體及個人之補捐助案件彙總表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030206071001100", + "bill_ref": "1783G6419-18", + "proposed_by": "經濟部", + "summary": "函,為修正「度量衡規費收費標準」第二十八條附表九,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030317071000700", + "bill_ref": null, + "proposed_by": "(密)經濟部", + "summary": "函,為103年度中央政府總預算決議,有關財政部關務署與陸方召開經合會海關合作工作小組會議事宜,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030403071000100", + "bill_ref": null, + "proposed_by": "(密)經濟部", + "summary": "函,為103年度中央政府總預算決議,有關該部投資業務處與陸方召開經合會投資工作小組工作會議一事,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030403071000200", + "bill_ref": null, + "proposed_by": "(密)經濟部", + "summary": "函,為103年度中央政府總預算決議,有關財政部關務署與陸方召開經合會海關合作工作小組會議一事,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030312071000100", + "bill_ref": null, + "proposed_by": "(密)經濟部", + "summary": "函,為103年度中央政府總預算決議,有關該部投資業務處與陸方召開經合會投資工作小組工作會議事宜,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030114071000700", + "bill_ref": "271G2932-11", + "proposed_by": "財政部", + "summary": "函,為修正「統一發票使用辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00260.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00260.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030121071001100", + "bill_ref": "887G12800-1128", + "proposed_by": "財政部", + "summary": "函送臺北、北區及南區國稅局等3機關更正102年第2、3季於各媒體辦理政策宣導相關廣告明細表及更正前後對照表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00261.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00261.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030114071000800", + "bill_ref": "1053G10332-1912", + "proposed_by": "衛生福利部", + "summary": "函送「一百零三年全民健康保險保險對象應自行負擔之住院費用上限」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00262.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00262.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030116071000700", + "bill_ref": "1053G11685-1", + "proposed_by": "衛生福利部", + "summary": "函,為「行政院衛生署疾病管制局生物製劑收費標準」名稱修正為「衛生福利部疾病管制署生物製劑收費標準」,並修正第二條、第五條條文及第四條附表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00263.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00263.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030116071000900", + "bill_ref": "932G9992-4", + "proposed_by": "衛生福利部", + "summary": "函,為修正「兒童及少年福利機構設置標準」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00264.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00264.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030117071001400", + "bill_ref": "1053G10643-37", + "proposed_by": "衛生福利部", + "summary": "函,為「殘留農藥安全容許量標準」名稱修正為「農藥殘留容許量標準」,並修正條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00265.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00265.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030121071001200", + "bill_ref": "1053G10332-1916", + "proposed_by": "衛生福利部", + "summary": "函,為修正「藥商得於郵購買賣通路販賣之醫療器材及應行登記事項」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030121071002300", + "bill_ref": "932G9954-6", + "proposed_by": "衛生福利部", + "summary": "函,為修正「兒童及少年醫療補助辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00267.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00267.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030121071002400", + "bill_ref": "1032G6632-2", + "proposed_by": "衛生福利部", + "summary": "函,為「內政部兒童及少年福利機構評鑑及獎勵辦法」名稱修正為「衛生福利部兒童及少年福利機構評鑑及獎勵辦法」,並修正第三條及第四條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00268.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00268.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030121071002500", + "bill_ref": "1053G10332-1919", + "proposed_by": "衛生福利部", + "summary": "函送修正「傳染病分類及第四類與第五類傳染病之防治措施」之勘誤表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00269.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00269.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030121071004600", + "bill_ref": "1353G12270-1", + "proposed_by": "衛生福利部", + "summary": "函,為修正「醫療法人必要財產最低標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00270.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00270.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030121071004700", + "bill_ref": "775G10006-8", + "proposed_by": "衛生福利部", + "summary": "函,為修正「醫療器材管理辦法」第四條、第八條條文及第三條附件一,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00271.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00271.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030129071000600", + "bill_ref": "1053G10332-1926", + "proposed_by": "衛生福利部", + "summary": "函送「特殊營養食品應向中央主管機關辦理查驗登記」及「輸入錠狀、膠囊狀食品應向中央主管機關辦理查驗登記」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00272.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00272.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 269, + "subitem": null, + "item": null, + "bill_id": "1030129071000700", + "bill_ref": "1053G10332-1927", + "proposed_by": "衛生福利部", + "summary": "函,為廢止「特殊營養食品及輸入錠狀、膠囊狀食品,應向本署辦理查驗登記及其作業要點」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00273.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00273.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 270, + "subitem": null, + "item": null, + "bill_id": "1030129071001300", + "bill_ref": "1053G10332-1928", + "proposed_by": "衛生福利部", + "summary": "函送「膏滋劑及糖漿劑劑型之中藥成藥製劑外包裝及仿單加刊注意事項」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00274.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00274.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 271, + "subitem": null, + "item": null, + "bill_id": "1030129071001400", + "bill_ref": null, + "proposed_by": "衛生福利部", + "summary": "函,為「醫療機構執行感染控制措施查核辦法」名稱修正為「醫療機構執行感染控制措施及查核辦法」,並修正條文,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 272, + "subitem": null, + "item": null, + "bill_id": "1030206071000700", + "bill_ref": "1053G10332-1930", + "proposed_by": "衛生福利部", + "summary": "函,為修正「食品微生物之檢驗方法-單核球增多性李斯特菌之檢驗」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00276.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00276.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 273, + "subitem": null, + "item": null, + "bill_id": "1030206071000800", + "bill_ref": null, + "proposed_by": "衛生福利部", + "summary": "函,為修正「預防接種受害救濟基金徵收及審議辦法」部分條文,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 274, + "subitem": null, + "item": null, + "bill_id": "1030206071001300", + "bill_ref": "1578G11431-6", + "proposed_by": "衛生福利部", + "summary": "函,為修正「國民年金法施行細則」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00278.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00278.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 275, + "subitem": null, + "item": null, + "bill_id": "1030114071000900", + "bill_ref": "810G10312-10", + "proposed_by": "行政院農業委員會", + "summary": "函,為修正「動物用藥品許可查驗規費收費標準」第五條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00279.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00279.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 276, + "subitem": null, + "item": null, + "bill_id": "1030114071001000", + "bill_ref": "811G3703-5", + "proposed_by": "行政院農業委員會", + "summary": "函,為修正「農藥使用及農產品農藥殘留抽驗辦法」第七條、第九條及第九條之一條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00280.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00280.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 277, + "subitem": null, + "item": null, + "bill_id": "1030114071001100", + "bill_ref": "810G2835-41", + "proposed_by": "行政院農業委員會", + "summary": "函,為修正「動物用藥品檢驗標準」第一百八十二條之五、第一百八十二條之六及第一百八十二條之十四條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00281.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00281.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 278, + "subitem": null, + "item": null, + "bill_id": "1030121071003000", + "bill_ref": "1053G10332-1924", + "proposed_by": "行政院農業委員會", + "summary": "函送「瓢唇蘭亞族(含天鵝蘭屬)為適用植物品種及種苗法之植物種類」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00282.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00282.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 279, + "subitem": null, + "item": null, + "bill_id": "1030129071000500", + "bill_ref": "1783G14762-2", + "proposed_by": "行政院農業委員會", + "summary": "函送「行政院農業委員會桃園區農業改良場辦理農藥田間試驗收費標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00283.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00283.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 280, + "subitem": null, + "item": null, + "bill_id": "1030129071001500", + "bill_ref": "1053G10332-1929", + "proposed_by": "行政院農業委員會", + "summary": "函,為修正「中華民國輸入植物或植物產品檢疫規定」乙、有條件輸入植物或植物產品之檢疫條件第一點規定,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00284.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00284.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 281, + "subitem": null, + "item": null, + "bill_id": "1030114071001200", + "bill_ref": "849G10065-12", + "proposed_by": "內政部", + "summary": "函,為修正「警察人員陞遷辦法」第二條、第二十一條、第三十二條條文及相關附件,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00285.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00285.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 282, + "subitem": null, + "item": null, + "bill_id": "1030117071001500", + "bill_ref": "849G1744-9", + "proposed_by": "內政部", + "summary": "函,為修正「各機關學校團體駐衛警察設置管理辦法」第八條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00286.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00286.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 283, + "subitem": null, + "item": null, + "bill_id": "1030116071000200", + "bill_ref": "285G4832-4", + "proposed_by": "內政部", + "summary": "函,為修正「地價調查估計規則」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00287.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00287.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 284, + "subitem": null, + "item": null, + "bill_id": "1030121071000600", + "bill_ref": "1301G8014-6", + "proposed_by": "內政部", + "summary": "函,為修正「義勇消防組織編組訓練演習服勤辦法」第六條、第八條條文及第三條附表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00288.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00288.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 285, + "subitem": null, + "item": null, + "bill_id": "1030121071002100", + "bill_ref": "666G7823-14", + "proposed_by": "內政部", + "summary": "函,為修正「都市計畫法臺灣省施行細則」第三十四條之三及第四十二條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00289.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00289.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 286, + "subitem": null, + "item": null, + "bill_id": "1030117071001600", + "bill_ref": "671G5665-8", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為修正「國軍退除役官兵就養安置辦法」部分條文及第三條附件二,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00290.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00290.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 287, + "subitem": null, + "item": null, + "bill_id": "1030121071003100", + "bill_ref": "887G13333-1954", + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函送102年第4季政策宣導預算支用情形彙整表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00291.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00291.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 288, + "subitem": null, + "item": null, + "bill_id": "1030116071000100", + "bill_ref": "1483G5769-6", + "proposed_by": "國防部、內政部、教育部", + "summary": "函,為修正「大學儲備軍官訓練團選訓服役實施辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00292.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00292.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 289, + "subitem": null, + "item": null, + "bill_id": "1030410071000100", + "bill_ref": null, + "proposed_by": "(密)國防部", + "summary": "函,為103年度中央政府總預算決議,檢送陸軍相關工程書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 290, + "subitem": null, + "item": null, + "bill_id": "1030121071000100", + "bill_ref": "821G14855", + "proposed_by": "司法院", + "summary": "函送「司法院辦理補(捐)助駐法院家事服務中心辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00294.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00294.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 291, + "subitem": null, + "item": null, + "bill_id": "1030121071003500", + "bill_ref": "445G13358-3", + "proposed_by": "司法院", + "summary": "函,為修正「法官遴選辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00295.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00295.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 292, + "subitem": null, + "item": null, + "bill_id": "1030121071000200", + "bill_ref": "1053G10332-1914", + "proposed_by": "行政院環境保護署", + "summary": "函送「戴奧辛及呋喃檢測方法-同位素標幟稀釋氣相層析/高解析質譜法(NIEA M801.13B)」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00296.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00296.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 293, + "subitem": null, + "item": null, + "bill_id": "1030121071000300", + "bill_ref": "1053G10332-1915", + "proposed_by": "行政院環境保護署", + "summary": "函,為廢止「戴奧辛及呋喃檢測方法-同位素標幟稀釋氣相層析/高解析質譜法(NIEA M801.12B)」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00297.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00297.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 294, + "subitem": null, + "item": null, + "bill_id": "1030121071001400", + "bill_ref": "970G11702-6", + "proposed_by": "行政院環境保護署", + "summary": "函,為修正「新購電動輔助自行車補助辦法」第五條及第十條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00298.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00298.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 295, + "subitem": null, + "item": null, + "bill_id": "1030121071001500", + "bill_ref": "970G11702-7", + "proposed_by": "行政院環境保護署", + "summary": "函,為修正「新購電動自行車補助辦法」第五條及第十條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00299.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00299.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 296, + "subitem": null, + "item": null, + "bill_id": "1030121071001600", + "bill_ref": "1053G10332-1918", + "proposed_by": "行政院環境保護署", + "summary": "函送「蘇澳溪水區及水體分類」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00300.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00300.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 297, + "subitem": null, + "item": null, + "bill_id": "1030121071003400", + "bill_ref": "1053G10332-1921", + "proposed_by": "行政院環境保護署", + "summary": "函送「空氣中揮發性有機化合物檢測方法-不銹鋼採樣筒/氣相層析質譜儀法(NIEA A715.15B)」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00301.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00301.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 298, + "subitem": null, + "item": null, + "bill_id": "1030121071003300", + "bill_ref": "1053G10332-1920", + "proposed_by": "行政院環境保護署", + "summary": "函,為廢止「空氣中揮發性有機化合物檢測方法-不銹鋼採樣筒/氣相層析質譜儀法(NIEA A715.14B)」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00302.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00302.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 299, + "subitem": null, + "item": null, + "bill_id": "1030129071001100", + "bill_ref": "962G6122-5", + "proposed_by": "行政院環境保護署", + "summary": "函,為修正「飲用水水質標準」第三條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00303.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00303.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 300, + "subitem": null, + "item": null, + "bill_id": "1030121071000400", + "bill_ref": "887G12800-1127", + "proposed_by": "蒙藏委員會", + "summary": "函送該會主管(含財團法人蒙藏基金會)102年第4季媒體廣告季報表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00304.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00304.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 301, + "subitem": null, + "item": null, + "bill_id": "1030121070100100", + "bill_ref": "1053G10332-1917", + "proposed_by": "僑務委員會", + "summary": "函,為廢止「一百零二年度永久居留權取得困難之國家或地區及其居留資格認定基準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00305.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00305.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 302, + "subitem": null, + "item": null, + "bill_id": "1030121071003700", + "bill_ref": "899G2601-12", + "proposed_by": "僑務委員會", + "summary": "函,為修正「僑務委員會編制表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00306.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00306.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 303, + "subitem": null, + "item": null, + "bill_id": "1030121071001800", + "bill_ref": "1570G14857", + "proposed_by": "交通部", + "summary": "函送「觀光旅館業個人資料檔案安全維護計畫辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00307.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00307.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 304, + "subitem": null, + "item": null, + "bill_id": "1030121071002200", + "bill_ref": "1783G14755-1", + "proposed_by": "交通部", + "summary": "函,為更正前送「交通部觀光局東部海岸國家風景區管理處所屬景區入園清潔維護費收費標準」第三條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00308.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00308.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 305, + "subitem": null, + "item": null, + "bill_id": "1030121071002600", + "bill_ref": "462G6687-9", + "proposed_by": "交通部", + "summary": "函,為修正「離島地區居民航空票價補貼辦法」第三條及第四條條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00309.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00309.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 306, + "subitem": null, + "item": null, + "bill_id": "1030121071003800", + "bill_ref": "1089G2401-1", + "proposed_by": "行政院主計總處、銓敘部", + "summary": "函,為修正「主計機構人員設置管理條例施行細則」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00310.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00310.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 307, + "subitem": null, + "item": null, + "bill_id": "1030121071004100", + "bill_ref": null, + "proposed_by": "臺灣省諮議會", + "summary": "函送102年度第4季於各媒體辦理政策宣導相關之廣告彙整表,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 308, + "subitem": null, + "item": null, + "bill_id": "1030121071004800", + "bill_ref": "887G13333-1955", + "proposed_by": "中央選舉委員會", + "summary": "函送該會及所屬102年度第4季辦理政策宣導相關廣告執行情形季報表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00312.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00312.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 309, + "subitem": null, + "item": null, + "bill_id": "1030206071001200", + "bill_ref": "1574G9616-1", + "proposed_by": "中央選舉委員會", + "summary": "函,為修正「全國性公民投票經費募集許可及管理辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00313.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00313.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 310, + "subitem": null, + "item": null, + "bill_id": "1030219071001500", + "bill_ref": "1783G14899", + "proposed_by": "文化部", + "summary": "函送「國立臺灣工藝研究發展中心材料分析與技術諮詢收費標準」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00314.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00314.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 311, + "subitem": null, + "item": null, + "bill_id": "1030129071001800", + "bill_ref": "887G12800-1129", + "proposed_by": "中央銀行", + "summary": "函送該行暨中央印製、造幣兩廠102年度政策宣導之廣告預算執行情形表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00315.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00315.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 312, + "subitem": null, + "item": null, + "bill_id": "1030206071000600", + "bill_ref": "887G12800-1130", + "proposed_by": "國立故宮博物院", + "summary": "函送102年10至12月政策宣導之廣告預算執行資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00316.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00316.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 313, + "subitem": null, + "item": null, + "bill_id": "1030206071001000", + "bill_ref": "1192G3788-11", + "proposed_by": "行政院勞工委員會", + "summary": "函,為修正「技術士技能檢定及發證辦法」部分條文,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00317.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00317.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 314, + "subitem": null, + "item": null, + "bill_id": "1030121071004000", + "bill_ref": "1339G9739-11", + "proposed_by": "考試院", + "summary": "函,為修正「公務人員高等考試三級考試暨普通考試規則」第二條附表一、附表二及第四條附表三、附表四,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00318.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00318.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 315, + "subitem": null, + "item": null, + "bill_id": "1030129071000300", + "bill_ref": "463G7590-8", + "proposed_by": "考試院、行政院", + "summary": "函,為修正「交通事業人員員級晉升高員級資位訓練辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00319.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00319.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 316, + "subitem": null, + "item": null, + "bill_id": "1030129071001600", + "bill_ref": "11G5349-2", + "proposed_by": "考試院、行政院", + "summary": "函,為修正「公務人員安全及衛生防護辦法」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00320.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00320.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 317, + "subitem": null, + "item": null, + "bill_id": "1030307070100100", + "bill_ref": null, + "proposed_by": "考試院", + "summary": "函送亟需本院第8屆第5會期優先審議法案一覽表,請惠予優先審議,以利政務推展,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 318, + "subitem": null, + "item": null, + "bill_id": "1030312071000200", + "bill_ref": null, + "proposed_by": "(密)國家安全局", + "summary": "函,為103年度中央政府總預算決議,檢送「政府對兩岸服務貿易協議之安全風險評估及維管措施」報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 319, + "subitem": null, + "item": null, + "bill_id": "1030214071001400", + "bill_ref": "887G14717-86", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「派員出國計畫」預算凍結1,000萬元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 320, + "subitem": null, + "item": null, + "bill_id": "1030214071001500", + "bill_ref": "887G14717-88", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「一般學術研究及評議」預算凍結6,000萬元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 321, + "subitem": null, + "item": null, + "bill_id": "1030214071001600", + "bill_ref": "887G14717-89", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「國家生技研究園區」預算凍結1億元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 322, + "subitem": null, + "item": null, + "bill_id": "1030313071000600", + "bill_ref": "666L14193-2", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付會同社會福利及衛生環境委員會審查委員陳節如等18人擬具「都市更新條例第十九條及第二十七條條文修正草案」案,請改交內政委員會審查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00326.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00326.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 323, + "subitem": null, + "item": null, + "bill_id": "1030313071000100", + "bill_ref": "1581L15639-2", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付審查委員廖正井等24人擬具「促進民間參與公共建設法第五條條文修正草案」案,鑑於促進民間參與公共建設業務已移撥至財政部,該案已非屬交通委員會負責審查之議案,請院會改交權責所屬委員會審查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00327.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00327.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 324, + "subitem": null, + "item": null, + "bill_id": "1030313071000400", + "bill_ref": "887G12255-1633", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付審查國家通訊傳播委員會函送100年第4季該會主管之通訊傳播監督管理基金及有線廣播電視事業發展基金「公款補(捐)助情形季報表」,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00328.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00328.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 325, + "subitem": null, + "item": null, + "bill_id": "1030313071000500", + "bill_ref": "887G12255-1634", + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付處理交通部函為100年度中央政府總預算附屬單位預算之決議,有關該部臺灣鐵路管理局辦理臺北車站廁所改建,每坪單價超過14萬元,其預算編列過於浮濫,要求進行專案報告案,已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00329.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00329.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 326, + "subitem": null, + "item": null, + "bill_id": "1030313071000300", + "bill_ref": "887G12721-1", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院函送「財團法人中華經濟研究院101年度預算書」案等5案,均已逾年度預算執行期間,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00330.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00330.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 327, + "subitem": null, + "item": null, + "bill_id": "1030313071000200", + "bill_ref": null, + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院函送「財團法人工業技術研究院100年度決算及工作執行成果報告」案等4案,均已逾決算法第28條所定審議期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 328, + "subitem": null, + "item": null, + "bill_id": "1030310071003100", + "bill_ref": "1383G12747-2", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「天然氣導管配管專業人員管理辦法」第二條及第三條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00332.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00332.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 329, + "subitem": null, + "item": null, + "bill_id": "1030310071003300", + "bill_ref": "1539G12715-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「公用天然氣事業供氣計畫之內容格式與提報期限及其他相關事項」案,已逾立法院職權行使法第61條所定審查期限,茲依規定函請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00333.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00333.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 330, + "subitem": null, + "item": null, + "bill_id": "1030310071003200", + "bill_ref": "1383G12753-3", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「公用天然氣導管承裝業管理辦法」第四條及第二十二條條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00334.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00334.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 331, + "subitem": null, + "item": null, + "bill_id": "1030310071003400", + "bill_ref": "956G10887-8", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函為修正「優良農產品驗證管理辦法」第四條附件四乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00335.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00335.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 332, + "subitem": null, + "item": null, + "bill_id": "1030310071003500", + "bill_ref": "1053G10332-1953", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查行政院農業委員會函送「烏石漁港區域」案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00336.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00336.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 333, + "subitem": null, + "item": null, + "bill_id": "1030409078800100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為中華民國全國工業總會針對行政院所核「工會法修正草案」及「勞資爭議處理法修正草案」研提修正意見請願文書案,經審查結果,不成為議案案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00337.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00337.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 334, + "subitem": null, + "item": null, + "bill_id": "1030409087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等16人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00338.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00338.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 335, + "subitem": null, + "item": null, + "bill_id": "1030409087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等18人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00339.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00339.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 336, + "subitem": null, + "item": null, + "bill_id": "1030410080000100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等13人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00340.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00340.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 337, + "subitem": null, + "item": null, + "bill_id": "1030409087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等14人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00341.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00341.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 338, + "subitem": null, + "item": null, + "bill_id": "1030409087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等30人於第8屆第4會期第9次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00342.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00342.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 339, + "subitem": null, + "item": null, + "bill_id": "1030409087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等22人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00343.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00343.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 340, + "subitem": null, + "item": null, + "bill_id": "1030409087800700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等19人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00344.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00344.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 341, + "subitem": null, + "item": null, + "bill_id": "1030409087800800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等18人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00345.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00345.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 342, + "subitem": null, + "item": null, + "bill_id": "1030409087800900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蘇清泉等20人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00346.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00346.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 343, + "subitem": null, + "item": null, + "bill_id": "1030409087801000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蘇清泉等12人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00347.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00347.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 344, + "subitem": null, + "item": null, + "bill_id": "1030409087801100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳碧涵等17人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00348.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00348.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 345, + "subitem": null, + "item": null, + "bill_id": "1030409087801200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等20人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00349.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00349.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 346, + "subitem": null, + "item": null, + "bill_id": "1030409087801300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等18人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00350.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00350.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 347, + "subitem": null, + "item": null, + "bill_id": "1030409087801400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員羅淑蕾等19人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00351.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00351.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 348, + "subitem": null, + "item": null, + "bill_id": "1030409087801500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員羅淑蕾等13人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00352.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00352.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 349, + "subitem": null, + "item": null, + "bill_id": "1030409087801600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃志雄等17人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00353.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00353.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 350, + "subitem": null, + "item": null, + "bill_id": "1030409087801700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃志雄等11人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00354.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00354.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 351, + "subitem": null, + "item": null, + "bill_id": "1030409087801800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃志雄等12人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00355.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00355.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 352, + "subitem": null, + "item": null, + "bill_id": "1030409087801900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江啟臣等24人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00356.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00356.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 353, + "subitem": null, + "item": null, + "bill_id": "1030409087802000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江啟臣等17人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00357.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00357.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 354, + "subitem": null, + "item": null, + "bill_id": "1030409087802100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員簡東明等17人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00358.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00358.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 355, + "subitem": null, + "item": null, + "bill_id": "1030409087802200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員孔文吉等14人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00359.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00359.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 356, + "subitem": null, + "item": null, + "bill_id": "1030409087802300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江惠貞等13人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00360.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00360.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 357, + "subitem": null, + "item": null, + "bill_id": "1030409087802400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院台灣團結聯盟黨團於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00361.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00361.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 358, + "subitem": null, + "item": null, + "bill_id": "1030409087802500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等20人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00362.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00362.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 359, + "subitem": null, + "item": null, + "bill_id": "1030409087802600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等13人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00363.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00363.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 360, + "subitem": null, + "item": null, + "bill_id": "1030409087802700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員顏寬恒等26人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00364.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00364.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 361, + "subitem": null, + "item": null, + "bill_id": "1030409087802800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃偉哲等12人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00365.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00365.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 362, + "subitem": null, + "item": null, + "bill_id": "1030409087802900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳怡潔等11人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00366.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00366.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 363, + "subitem": null, + "item": null, + "bill_id": "1030409087803000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳宜臻等11人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00367.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00367.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 364, + "subitem": null, + "item": null, + "bill_id": "1030409087803100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員徐欣瑩等24人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00368.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00368.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 365, + "subitem": null, + "item": null, + "bill_id": "1030409087803200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等15人於第8屆第5會期第1次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00369.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00369.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 366, + "subitem": null, + "item": null, + "bill_id": "1030409087803300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等20人於第8屆第5會期第2次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00370.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00370.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 367, + "subitem": null, + "item": null, + "bill_id": "1030409087803400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員盧嘉辰等15人於第8屆第5會期第3次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00371.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00371.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 368, + "subitem": null, + "item": null, + "bill_id": "1030320079900100", + "bill_ref": null, + "proposed_by": "本院議事處", + "summary": "彙報各黨團參加本(第5)會期經費稽核委員會委員名單。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00372.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00372.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 369, + "subitem": null, + "item": null, + "bill_id": "1030320079900200", + "bill_ref": null, + "proposed_by": "本院議事處", + "summary": "彙報各黨團推薦學者專家擔任「國家金融安定基金管理委員會」委員名單。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/06/LCEWA01_080506_00373.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/06/LCEWA01_080506_00373.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-05", + "name": "第8屆第5會期第5次會議", + "summary": "103年4月11日院會宣告散會。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 60361, + "chair": null, + "date": "2014-04-11", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 60485, + "chair": null, + "date": "2014-04-11", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 60360, + "chair": null, + "date": "2014-04-15", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 60486, + "chair": null, + "date": "2014-04-15", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030313070100100", + "bill_ref": "647G14919", + "proposed_by": "總統", + "summary": "咨,為最高法院檢察署檢察總長黃世銘任期於本(103)年4月18日屆滿,茲依據法院組織法第66條第8項之規定,提名顏大和為最高法院檢察署檢察總長,咨請同意案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/05/LCEWA01_080505_00004.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/05/LCEWA01_080505_00004.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030408070100300", + "bill_ref": "647G14919-1", + "proposed_by": "總統咨", + "summary": ",為本(103)年3月13日華總一禮字第10310002504號咨諒達。茲因原最高法院檢察署檢察總長黃世銘請辭獲准,並於4月3日令免,請依前咨儘速行使同意權後見復。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/05/LCEWA01_080505_00005.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/05/LCEWA01_080505_00005.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1020930070201200", + "bill_ref": "1374L15430", + "proposed_by": "本院委員鄭麗君等25人", + "summary": "擬具「臺灣與中國簽署條約及協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00014.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1020524070200800", + "bill_ref": "1374L15231", + "proposed_by": "本院委員姚文智等21人", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00080.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030106070200500", + "bill_ref": "1374L16070", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00032.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030327070200700", + "bill_ref": "1374L16211", + "proposed_by": "本院委員尤美女等42人", + "summary": "擬具「兩岸協定締結條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/05/LCEWA01_080505_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/05/LCEWA01_080505_00009.doc" + }, + "sitting_introduced": "08-05-YS-05" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030403070200200", + "bill_ref": "1374L16215", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「兩岸協議監督條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/05/LCEWA01_080505_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/05/LCEWA01_080505_00010.doc" + }, + "sitting_introduced": "08-05-YS-05" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030407070200200", + "bill_ref": "1374L16229", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/05/LCEWA01_080505_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/05/LCEWA01_080505_00011.doc" + }, + "sitting_introduced": "08-05-YS-05" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030403070100200", + "bill_ref": "1374G14948", + "proposed_by": "行政院", + "summary": "函請審議「臺灣地區與大陸地區訂定協議處理及監督條例草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/05/LCEWA01_080505_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/05/LCEWA01_080505_00012.doc" + }, + "sitting_introduced": "08-05-YS-05" + }] + }, { + "id": "08-05-YS-04", + "name": "第8屆第5會期第4次會議", + "summary": "一、14日上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢。三、18日下午1時50分至2時30分為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59681, + "chair": null, + "date": "2014-03-14", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 59682, + "chair": null, + "date": "2014-03-18", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030304070200100", + "bill_ref": "310L16099", + "proposed_by": "本院委員林淑芬等18人", + "summary": "擬具「海岸法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00006.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030306070200100", + "bill_ref": "464L16100", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「保險法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00007.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030306070200200", + "bill_ref": "39L16101", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「房屋稅條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00008.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030306070200300", + "bill_ref": "285L16102", + "proposed_by": "本院委員李應元等16人", + "summary": "擬具「土地稅法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00009.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030306070200400", + "bill_ref": "271L16103", + "proposed_by": "本院委員李應元等17人", + "summary": "擬具「加值型及非加值型營業稅法第十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00010.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030306070200500", + "bill_ref": "184L16104", + "proposed_by": "本院委員丁守中等23人", + "summary": "擬具「貨物稅條例第十二條之二條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00011.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030306070200600", + "bill_ref": "756L16105", + "proposed_by": "本院委員李昆澤等21人", + "summary": "擬具「道路交通管理處罰條例第九十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00012.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030306070200700", + "bill_ref": "447L16106", + "proposed_by": "本院委員李昆澤等21人", + "summary": "擬具「住宅法第十二條及第四十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00013.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030306070200800", + "bill_ref": "225L16107", + "proposed_by": "本院委員楊瓊瓔等18人", + "summary": "擬具「所得稅法第十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00014.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030306070200900", + "bill_ref": "184L16108", + "proposed_by": "本院委員盧秀燕等16人", + "summary": "擬具「特種貨物及勞務稅條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00015.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030306070201000", + "bill_ref": "246L16109", + "proposed_by": "本院委員李俊俋等18人", + "summary": "擬具「中華民國刑法第一百三十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00016.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030306070201100", + "bill_ref": "1033L16110", + "proposed_by": "本院委員楊玉欣等27人", + "summary": "擬具「特殊境遇家庭扶助條例第四條、第七條及第十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00017.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030306070201200", + "bill_ref": "1033L16111", + "proposed_by": "本院委員楊玉欣等36人", + "summary": "擬具「實物給付條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00018.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030306070201400", + "bill_ref": "932L16112", + "proposed_by": "本院委員陳怡潔等16人", + "summary": "擬具「兒童及少年福利與權益保障法第九十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00019.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030306070201300", + "bill_ref": "1746L16113", + "proposed_by": "本院委員陳怡潔等17人", + "summary": "擬具「菸酒管理法第三十三條及第三十七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00020.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030310070200100", + "bill_ref": "1542L16114", + "proposed_by": "本院委員王育敏等24人", + "summary": "擬具「性別工作平等法第四條及第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00021.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030310070200200", + "bill_ref": "1684L16115", + "proposed_by": "本院委員王育敏等25人", + "summary": "擬具「兒童權利公約施行法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00022.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030310070200400", + "bill_ref": "161L16117", + "proposed_by": "本院委員呂學樟等23人", + "summary": "擬具「刑事妥速審判法第五條及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00023.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030310070200300", + "bill_ref": "445L16116", + "proposed_by": "本院委員吳宜臻等16人", + "summary": "擬具「法官法第三十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00024.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030106070200500", + "bill_ref": "1374L16070", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00032.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1020930070201200", + "bill_ref": "1374L15430", + "proposed_by": "本院委員鄭麗君等25人", + "summary": "擬具「臺灣與中國簽署條約及協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00014.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1020524070200800", + "bill_ref": "1374L15231", + "proposed_by": "本院委員姚文智等21人", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00080.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030306070100100", + "bill_ref": "963G14907", + "proposed_by": "行政院", + "summary": "函請審議「私立學校法第八十三條及第八十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00085.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030306070100200", + "bill_ref": "1259G14908", + "proposed_by": "行政院", + "summary": "函請審議「特殊教育法第十條、第十七條及第三十二條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00086.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030306070100300", + "bill_ref": "1605G14909", + "proposed_by": "行政院", + "summary": "函請審議「教育經費編列與管理法第三條之一、第九條及第十八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00087.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030306070100400", + "bill_ref": "1559G14910", + "proposed_by": "行政院", + "summary": "函請審議「教師法第三十六條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00088.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030306070100500", + "bill_ref": "576G14911", + "proposed_by": "行政院", + "summary": "函請審議「學校法人及其所屬私立學校教職員退休撫卹離職資遣條例第三十九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00089.doc" + }, + "sitting_introduced": "08-05-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030306070100600", + "bill_ref": "887G14912", + "proposed_by": "行政院農業委員會", + "summary": "函送財團法人農業科技研究院103年度預算書及財團法人相關資料表,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00092.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030221071000200", + "bill_ref": "887G14717-231", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」原列4億7,551萬元,推動文創企業上市櫃400萬元、辦理投融資徵件與投後管理1,300萬元,凍結五分之一,並應分析台灣文創產業扶植狀況個別案件之狀況,向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00093.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030221071000300", + "bill_ref": "887G14717-232", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「綜合規劃業務」中「辦理文化藝術新秀創作發表計畫」500萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00094.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030221071000400", + "bill_ref": "887G14717-233", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「文化設施規劃與設置」中「充實縣市文化設施」2億元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00095.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030221071000500", + "bill_ref": "887G14717-234", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「新故鄉社區營造」原列1億5,972萬8,000元之十分之一,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00096.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00096.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030221071000600", + "bill_ref": "887G14717-235", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「村落文化發展計畫」原列1億1,357萬元之五分之一,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00097.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030221071000700", + "bill_ref": "887G14717-236", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「價值產值化計畫」之辦理多元資金挹注計畫1,000萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00098.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030221071000800", + "bill_ref": "887G14717-237", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「臺灣文學館業務」中「文學推展」500萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00099.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030221071000900", + "bill_ref": "887G14717-238", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「基本行政工作維持」原列1億1,245萬8,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00100.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030221071001000", + "bill_ref": "887G14717-239", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「資訊系統維護暨安全管理」原列8,004萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00101.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030221071001100", + "bill_ref": "887G14717-240", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,「針對資訊系統維護暨安全管理」原列8,004萬元,凍結其中藝學網、藝文部落格、文化入口網、文創商品園區維護、文化雲行銷與推廣、文化資源內容英譯、雲端機房租賃與文化雲各項子系統功能擴充與導入等各案共2,060萬元之五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00102.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030221071001200", + "bill_ref": null, + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「文化交流業務」原列3億1,421萬2,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030221071001300", + "bill_ref": "887G14717-242", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「資訊系統維護暨安全管理」原列8,004萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00104.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030221071001400", + "bill_ref": "887G14717-243", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」編列成立文化全球佈局專案辦公室500萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00105.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030221071001500", + "bill_ref": "887G14717-244", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「文化活動資訊調查與統計」下辦理文化活動相關資訊審核、統計業務、編印出版文化統計及全國藝文資訊系統資料蒐集及運用,原列500萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00106.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030221071001600", + "bill_ref": "887G14717-245", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」原列2億4,563萬2,000元,凍結五分之一,俟向本院教育及文化委員會提出專案報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00107.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030221071001700", + "bill_ref": "887G14717-246", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「文化創意產業發展業務」項下「價值產值化計畫」原列4億7,551萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00108.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030221071001800", + "bill_ref": "887G14717-247", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」之海外文化據點營運拓展計畫,原列1億5,203萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00109.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030221071001900", + "bill_ref": "887G14717-248", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」編列文創咖啡廳相關經費1,560萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00110.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030221071002000", + "bill_ref": "887G14717-249", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「文化交流業務─國際文化交流推展─海外文化據點營運拓展計畫」編列1億5,203萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00111.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030221071002100", + "bill_ref": "887G14717-250", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」編列輔導成立藝文產業育成中心相關經費2,500萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00112.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030221071002200", + "bill_ref": "887G14717-251", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」編列「海外據點場址租賃、經營及相關運作等及推動新設實體文化據點」4,000萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00113.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030221071002300", + "bill_ref": "887G14717-252", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」編列「辦理多元資金挹注計畫」相關經費1億4,367萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00114.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030221071002400", + "bill_ref": "887G14717-253", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」之辦理多元資金挹注計畫,原列1億4,367萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00115.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030221071002500", + "bill_ref": "887G14717-254", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」編列「歐美非地區文化據點年度計畫推動與文化事務辦理」8,550萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00116.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030221071002600", + "bill_ref": "887G14717-255", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」辦理多元資金挹注計畫1億4,367萬元、市場流通及拓展計畫8,700萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00117.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030221071002700", + "bill_ref": "887G14717-256", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」之文化外交網絡能量擴充計畫,原列4,494萬2,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030221071002800", + "bill_ref": "887G14717-257", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」編列海外臺灣書院相關內容推廣或事務辦理等294萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030221071002900", + "bill_ref": "887G14717-258", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「價值產值化計畫」編列鼓勵與協助文創核心創作者及獨立工作者進駐文創聚落相關經費2,500萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030221071003000", + "bill_ref": "887G14717-259", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「國際文化交流推展」編列辦理全球跨區域文化意見領袖邀訪524萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030221071003100", + "bill_ref": "887G14717-260", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「影視及流行音樂發展業務」原列33億1,946萬9,000元,除「臺灣經典電影數位修復及加值利用計畫」外之32億9,636萬9,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030221071003200", + "bill_ref": "887G14717-261", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」原列6,500萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030221071003300", + "bill_ref": "887G14717-262", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「影視及流行音樂策劃與發展」編列19億3,692萬2,000元,除「臺灣經典電影數位修復及加值利用計畫」、「北部流行音樂中心計畫」與「海洋文化及流行音樂中心計畫」外之2億1,382萬2,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030221071003400", + "bill_ref": "887G14717-263", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」下推動大陸地區交流平臺及文化前瞻論壇計畫1,275萬5,000元、赴大陸地區或港澳地區參加兩岸文化交流活動224萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030221071003500", + "bill_ref": "887G14717-264", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「影視及流行音樂策劃與發展」編列「高畫質電視推展計畫」1億3,000萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030221071003600", + "bill_ref": "887G14717-265", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」編列「推動大陸地區交流平臺及文化前瞻論壇計畫」1,275萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030221071003700", + "bill_ref": "887G14717-266", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,有關「對財團法人公視基金會捐助」原列9億元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030221071003800", + "bill_ref": "887G14717-267", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸文化交流推展」編列赴大陸地區或港澳地區參加兩岸文化交流活動、考察訪視文化行政部門運作及籌備兩岸論壇活動辦理事宜224萬5,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030221071003900", + "bill_ref": "887G14717-268", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,有關「對財團法人中央廣播電臺捐助」原列4億4,254萬7,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030221071004000", + "bill_ref": "887G14717-269", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「兩岸交流事務推展」原列358萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030221071004100", + "bill_ref": "887G14717-270", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「人文及文學發展業務」編列辦理國民記憶庫計畫3,000萬元,除獎勵金外2,800萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030221071004200", + "bill_ref": "887G14717-271", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「電影事業輔導」中「電影產業旗艦計畫」5,000萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030221071004300", + "bill_ref": "887G14717-272", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「出版業務推動與輔導」原列4億3,886萬8,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030221071004400", + "bill_ref": "887G14717-273", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「推動電視內容產業旗艦計畫」1,200萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030221071004500", + "bill_ref": "887G14717-274", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「出版業務推動與輔導」項下「出版事業之輔導」編列8,828萬4,000元及「圖文出版發展計畫」編列5,000萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030221071004600", + "bill_ref": "887G14717-275", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「廣播電視事業輔導」中「高畫質電視推展計畫」1,000萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030221071004700", + "bill_ref": "887G14717-276", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「出版業務推動與輔導」之「出版事業之輔導」原列8,828萬4,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00138.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030221071004800", + "bill_ref": "887G14717-277", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「數位媒體發展中心計畫」1,000萬元,俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030221071004900", + "bill_ref": "887G14717-278", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「圖文出版發展計畫」出版資訊整合業務及網站維運,原列235萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030221071005000", + "bill_ref": "887G14717-279", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,凍結「流行音樂產業輔導」4,700萬元(含「流行音樂產業發展行動計畫」流行音樂計畫專案推動辦公室之業務執行、維運等500萬元),俟向本院教育及文化委員會提出專案報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030221071005100", + "bill_ref": "887G14717-280", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,有關「對財團法人中央通訊社捐助」原列3億0,058萬4,000元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030221071005200", + "bill_ref": "887G14717-281", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「電影產業旗艦計畫」,原列4億3,154萬2,000元,凍結五分之一,待影視及流行音樂產業局向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030221071005300", + "bill_ref": "887G14717-282", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「視覺及表演藝術之策劃與發展」下文化部全球布局行動方案中國際藝術村線上交流平台100萬元、補助國內藝術村營運扶植計畫3,000萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030221071005400", + "bill_ref": "887G14717-283", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,「推動電視內容產業旗艦計畫」原列9,715萬9,000元,凍結五分之一,待影視及流行音樂產業局向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030221071005500", + "bill_ref": "887G14717-284", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「視覺及表演藝術之策劃與發展」編列「國際藝術村及藝文團體等線上交流平臺維護」100 萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030221071005600", + "bill_ref": "887G14717-285", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「廣播電視事業輔導」下「高畫質電視推展計畫」編列3億8,600萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00147.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030221071005700", + "bill_ref": "887G14717-286", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「視覺及表演藝術之策劃與發展」編列「藝術銀行計畫」8,950萬元,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030221071005800", + "bill_ref": "887G14717-287", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「數位媒體發展中心計畫」原列3,986萬4,000元,凍結五分之一,待影視及流行音樂產業局向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030221071005900", + "bill_ref": "887G14717-288", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「視覺及表演藝術之策劃與發展」編列「臺灣展演藝術科技化旗艦計畫」3,570萬7,000元,除「獎補助費」外,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030221071006000", + "bill_ref": "887G14717-289", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「流行音樂產業輔導」原列3億7,752萬元,凍結五分之一,待影視及流行音樂產業局向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030221071006100", + "bill_ref": "887G14717-290", + "proposed_by": "文化部", + "summary": "函,為103年度中央政府總預算決議,針對「視覺及表演藝術之策劃與發展」編列「價值產值化計畫─打造藝術產業媒合交易平台」5,000萬元,除「獎補助費」外,凍結五分之一,俟向本院教育及文化委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030221071006500", + "bill_ref": "887G14717-291", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(一),凍結「人員維持至其他給與」500萬元,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030221071006600", + "bill_ref": "887G14717-292", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(三),凍結「路政業務規劃及督導」5,856萬1,000元之四分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030221071006700", + "bill_ref": "887G14717-293", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五),凍結「強化全民路權與用路安全觀念」項下「業務費」1,305萬元之四分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030221071006800", + "bill_ref": "887G14717-294", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(九),凍結「鐵路建設計畫」236億7,220萬元之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030221071006900", + "bill_ref": "887G14717-295", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十),凍結「都市大眾捷運系統建設計畫」192億4,900萬元(不含「提升交通運輸系統規劃先期作業計畫」)之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030221071007000", + "bill_ref": "887G14717-296", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(十一),凍結「提升交通運輸系統規劃先期作業計畫」1億0,500萬元之四分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030221071007100", + "bill_ref": "887G14717-297", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(四十七),凍結「汽車燃料使用費經徵管理」1,198萬1,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030221071007200", + "bill_ref": "887G14717-298", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(四十八),凍結「道路交通安全」2億7,045萬7,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030221071007700", + "bill_ref": "887G14717-302", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(四十九),凍結「道路交通安全工作督導與查核」402萬5,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030221071007300", + "bill_ref": "887G14717-299", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十),凍結「軌道工程興建管理」3億7,422萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030221071007400", + "bill_ref": "887G14717-300", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十一),凍結「航政港政業務管理及執行」11億8,128萬3,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030221071007800", + "bill_ref": "887G14717-303", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十二),凍結「航政港政業務管理及執行」項下「人員維持」7億6,290萬6,000元之十分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030221071007900", + "bill_ref": "887G14717-304", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十三),凍結「航政港政業務管理及執行」項下「基本行政工作維持」之「設備及投資-機械設備費」4,800萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00165.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00165.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030221071007500", + "bill_ref": "887G14717-301", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十四),凍結「臺鐵整體購置及汰換車輛計畫(2001至2014年)」125億元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030221071008000", + "bill_ref": "887G14717-305", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十五),凍結「臺鐵南迴鐵路臺東潮州段電氣化工程建設計畫」2億元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030221071008100", + "bill_ref": "887G14717-306", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第1項決議(五十六),凍結「都市大眾捷運系統建設計畫」193億5,400萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030221071008200", + "bill_ref": "887G14717-307", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第2項決議(二十二),民用航空局歲出預算3億1,185萬2,000元,除人事、行政費外凍結五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030221071008300", + "bill_ref": "887G14717-308", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第2項決議(二十三),凍結民用航空局歲出預算3億1,185萬2,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030221071008400", + "bill_ref": "887G14717-309", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(五),凍結「氣象測報」1億8,569萬9,000元之二十分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030221071008500", + "bill_ref": "887G14717-310", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第3項決議(二十四),凍結「氣象科技研究」1億6,471萬5,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030221071008600", + "bill_ref": "887G14717-311", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(一),凍結觀光局及所屬歲出預算40億5,717萬6,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030221071008700", + "bill_ref": "887G14717-312", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三),凍結「資訊管理」2,611萬1,000元之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030221071008800", + "bill_ref": "887G14717-313", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(五),凍結「觀光業務調查與規劃」2,122萬9,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00175.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00175.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030221071008900", + "bill_ref": "887G14717-314", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(六),凍結「觀光資源保育與開發」5,178萬9,000元之四分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030221071009000", + "bill_ref": "887G14717-315", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(八),凍結「國民旅遊事業管理與推廣」2,899萬元之十分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030221071009100", + "bill_ref": "887G14717-316", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(九),凍結「旅館及民宿之管理與輔導」預算856萬1,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00178.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00178.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030221071009200", + "bill_ref": "887G14717-317", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(十),凍結「東北角暨宜蘭海岸國家風景區開發與管理」、「東部海岸國家風景區開發與管理」、「澎湖國家風景區開發與管理」、「大鵬灣國家風景區開發與管理」、「馬祖國家風景區開發與管理」、「北海岸及觀音山國家風景區開發與管理」、「雲嘉南濱海國家風景區開發與管理」計畫經費4,161萬4,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030221071009300", + "bill_ref": "887G14717-318", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(十一),凍結「國家風景區建設計畫」之「重要觀光景點建設中程計畫(101至104年度)─東部海岸國家風景區建設計畫」2億4,000萬元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030221071009400", + "bill_ref": "887G14717-319", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三十六),凍結觀光局及所屬「業務費」4億4,352萬7,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030221071009500", + "bill_ref": "887G14717-320", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三十七),凍結「觀光業務」項下「觀光國際事務」6,000萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030221071009600", + "bill_ref": "887G14717-321", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三十八),凍結「國家風景區開發與管理」28億7,308萬9,000元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030221071009700", + "bill_ref": "887G14717-322", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第4項決議(三十九),凍結「日月潭國家風景區建設計畫」2億8,000萬元之五分之一,需向本院交通委員會提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030221071009800", + "bill_ref": "887G14717-323", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第5項決議(十二),凍結運輸研究所歲出預算4億1,796萬3,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030221071009900", + "bill_ref": "887G14717-324", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二十四),凍結「公路公共運輸提昇計畫」42億5,069萬3,000元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030221071010000", + "bill_ref": "887G14717-325", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二十五),凍結「公路新建及養護計畫」之「公路系統新建及改善計畫」299億3,630萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030221071010100", + "bill_ref": "887G14717-326", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二十六),凍結「公路系統新建及改善計畫」之「業務費」1億1,800萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030221071010200", + "bill_ref": "887G14717-327", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二十八),凍結「公路系統新建及改善計畫」中「業務費」1億1,800萬元之五分之一,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030221071010300", + "bill_ref": "887G14717-328", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(二十九),凍結「公路系統新建及改善計畫-交通資訊服務雲基礎建設與應用計畫」之1億8,000萬元,需向本院交通、內政、司法及法制三委員會聯席會議提出報告經同意後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030221071010400", + "bill_ref": "887G14717-329", + "proposed_by": "交通部", + "summary": "函,為103年度中央政府總預算該部主管第6項決議(三十),凍結「公路新建及養護計畫」項下「公路養護計畫」57億6,486萬9,000元之五分之一乙案,需向本院交通委員會提出報告後始得動支乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030226071001700", + "bill_ref": "887G14717-691", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第1項司法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030226071001900", + "bill_ref": "887G14717-479", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第7項公務員懲戒委員會通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030226071002000", + "bill_ref": "887G14717-481", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第16項臺灣士林地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030227071002200", + "bill_ref": "887G14717-494", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第17項臺灣新北地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030227071002500", + "bill_ref": "887G14717-495", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第18項臺灣桃園地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030227071002400", + "bill_ref": "887G14717-496", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第19項臺灣新竹地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030226071002300", + "bill_ref": "887G14717-483", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第21項臺灣臺中地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030226071002800", + "bill_ref": "887G14717-488", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第22項臺灣南投地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030227071002300", + "bill_ref": "887G14717-497", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第23項臺灣彰化地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030227071002100", + "bill_ref": "887G14717-498", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第24項臺灣雲林地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030226071002700", + "bill_ref": "887G14717-487", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第28項臺灣屏東地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00202.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00202.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030226071002500", + "bill_ref": "887G14717-485", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第29項臺灣臺東地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030226071002600", + "bill_ref": "887G14717-486", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第30項臺灣花蓮地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030226071001800", + "bill_ref": "887G14717-480", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第31項臺灣宜蘭地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030226071002100", + "bill_ref": "887G14717-482", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第32項臺灣基隆地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030226071002400", + "bill_ref": "887G14717-484", + "proposed_by": "司法院", + "summary": "函,為103年度中央政府總預算案歲出第4款第33項臺灣澎湖地方法院通過決議第(一)項預算凍結案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030226071002900", + "bill_ref": "887G14717-489", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「一般行政」項下「業務費」之「房屋建築養護費」經費110萬元,俟向本院司法及法制委員會提出說明及檢討報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030226071003000", + "bill_ref": "887G14171-490", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,凍結「法制業務」項目經費五分之一,俟研議適法作為,向本院司法及法制委員會提出報告,經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030226071003100", + "bill_ref": "887G14717-491", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,針對「施政業務及督導」經費1,295萬9,000元,凍結五分之一,俟向本院司法及法制委員會提出學術交流計畫等相關報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030226071003200", + "bill_ref": "887G14717-492", + "proposed_by": "考試院", + "summary": "函,為103年度中央政府總預算決議,有關該院應於4個月內會同相關機關檢討培訓資源運用分配之合理性,並依據培訓需求研擬整合方案乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00211.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00211.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030225071008600", + "bill_ref": "887G14717-456", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對「經濟及公共建設業務」項下「原住民技藝研習中心營運管理經費」凍結200萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00212.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030225071008700", + "bill_ref": "887G14717-457", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對「經濟及公共建設業務」中「特色道路及飲用水設施改善計畫經費」凍結5,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00213.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030225071008800", + "bill_ref": "887G14717-458", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對「土地規劃管理利用業務」中「原住民保留地管理輔導經費」凍結500萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030225071008900", + "bill_ref": "887G14717-459", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對「原住民族教育協調與發展經費」及「原住民族文化維護與發展經費」共凍結3,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030225071009000", + "bill_ref": "887G14717-460", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對「原住民教育推展」編列捐助財團法人原住民族文化事業基金會新台幣計4億3,800萬元,凍結2,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030225071009100", + "bill_ref": "887G14717-461", + "proposed_by": "行政院原住民族委員會", + "summary": "函,為103年度中央政府總預算決議,針對「規劃輔導原住民族經濟及產業發展經費」凍結5,000萬元乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030225071007900", + "bill_ref": "887G14717-449", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「高級中等學校教育」之「補助高職發展務實致用之特色課程」預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030225071008100", + "bill_ref": "887G14717-451", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「私立學校教學獎助」中「輔導私立大專校院財務及會計行政」300萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030225071008000", + "bill_ref": "887G14717-450", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「產學合作及技職教師研習」項下彈性薪資方案原列2,500萬元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030225071008200", + "bill_ref": "887G14717-452", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「輔導私立大專校院財務及會計行政」948萬9,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030225071008300", + "bill_ref": "887G14717-453", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「產學合作及技職教師研習」項下發展典範科技大學計畫,原列12億1,090萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030225071008400", + "bill_ref": "887G14717-454", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「技術職業教育行政及督導」原列59億8,818萬6,000元之五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030225071008500", + "bill_ref": "887G14717-455", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送「國際及兩岸教育交流」編列17億1,240萬8,000元,其中「辦理兩岸學術交流相關事務」原列1,797萬6,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030226071000100", + "bill_ref": "887G14717-462", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「促進投資」項下「吸引台商回台投資之服務」及「駐外投資服務工作」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030226071000200", + "bill_ref": "887G14717-463", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對能源局「一般行政」項下「業務費」預算凍結十分之一乙案,業已備妥「能源之旅」活動開支總檢討專案報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030226071000300", + "bill_ref": "887G14717-464", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結科學工業園區管理局及所屬「園區業務推展」之「投資推廣」300萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030226071000400", + "bill_ref": "887G14717-465", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結中部科學工業園區管理局及所屬「一般行政」175萬1,000元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030226071000500", + "bill_ref": "887G14717-466", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結南部科學工業園區管理局及所屬「園區業務推展」之「綜合企劃」100萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030226071000600", + "bill_ref": "887G14717-467", + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,檢送凍結科學工業園區管理局及所屬「園區業務推展」之「綜合企劃」286萬6,000元之解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030226071000700", + "bill_ref": "887G14717-468", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「一般行政」中「基本行政工作維持」之職務官舍管理等相關費用5萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030226071000800", + "bill_ref": "887G14717-469", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文物管理及展覽」之「圖書管理研究及展覽」840萬8,000元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030226071000900", + "bill_ref": "887G14717-470", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署、海洋巡防總局及海岸巡防總局設備費用凍結1億元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030226071001000", + "bill_ref": "887G14717-471", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署及海洋巡防總局大陸地區旅費124萬6,000元全數凍結,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030226071001100", + "bill_ref": "887G14717-472", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署海岸及海域巡防業務─通訊資訊管理作業項下編列海巡岸際雷達系統換裝計畫3,000萬元,凍結500萬元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030226071001200", + "bill_ref": "887G14717-473", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對該署海岸及海域巡防業務─海巡建設計畫項下編列南沙太平島交通基礎整建工程計畫10億226萬1,000元,凍結2億元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030226071001300", + "bill_ref": "887G14717-474", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海洋巡防總局一般行政項下編列人事費-加班值班費2億7,249萬元,凍結1,000萬元,俟向本院內政委員會報告並經同意後,始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030226071001400", + "bill_ref": "887G14717-475", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海洋巡防總局海洋巡防業務項下艦艇建造及維修經費,凍結5,000萬元,俟向本院內政委員會報告並經同意後,始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030226071001500", + "bill_ref": "887G14717-476", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海岸巡防總局及所屬海岸巡防規劃及管理、地區海岸巡防工作編列港口安全檢查計1,651萬8,000元,凍結200萬元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030226071001600", + "bill_ref": "887G14717-477", + "proposed_by": "行政院海岸巡防署", + "summary": "函,為103年度中央政府總預算決議,針對海岸巡防總局及所屬地區海岸巡防工作編列7億4,321萬6,000元,凍結5,000萬元,俟向本院內政委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030217071000400", + "bill_ref": "887G14717-96", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局推動「生技產業輔導與推廣」計畫時應力求突破,並向本院經濟委員會提出具體改善工作計畫乙案,檢送相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030217071000500", + "bill_ref": "887G14717-97", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局辦理「生技醫藥產業發展推動」業務內容不明確,應提出詳細計畫乙案,檢送相關報告資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030217071000600", + "bill_ref": "887G14717-98", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對要求加工出口區管理處改善現行管理費計收方式乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030217071000700", + "bill_ref": "887G14717-99", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關修正全國中等學校運動會舉辦準則時,應擴增應辦項目,以提升學生參與多元運動項目興趣之書面資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030217071000800", + "bill_ref": "887G14717-100", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關體育署身為我國最高體育主管機關,應儘速擬定國內各項主流運動之運動選手培訓計畫,並輔導補助各縣市政府或國營企業成立各項業餘運動隊伍,以培訓我國各項運動人才乙案,檢送說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030217071000900", + "bill_ref": "887G14717-101", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關體育署應研擬專案宣導計畫,宣導告知企業如何參與贊助及節稅,以提升其贊助體育活動意願乙案,檢送說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030217071001000", + "bill_ref": "887G14717-102", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關體育署應重新審議水球項目列入全國運動會之正式比賽項目乙案,檢送說明,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030217071001500", + "bill_ref": "887G14717-103", + "proposed_by": "教育部", + "summary": "函,為配合辦理103年度中央政府總預算決議,針對體育署泳起來專案,自102年度起不得新建游泳池;惟102年通過決議案以前,已依體育署泳起來專案相關規定辦法所提出之新建游泳池申請案,不在此限,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030217071001100", + "bill_ref": "887G14717-104", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,有關學校棒球教練及培訓經費乙案,檢送體育署處理情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030217071001200", + "bill_ref": "887G14717-105", + "proposed_by": "行政院國家科學委員會", + "summary": "函送針對重大政策或議題機動性成立專案研究小組,匡列經費,研議與檢討改進辦法之說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030217071001300", + "bill_ref": "887G14717-106", + "proposed_by": "行政院國家科學委員會", + "summary": "函送於組織改造完成前,研擬「各機關科技影響評估報告辦理要點」,提報行政院科技會報之辦理說明資料,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/04/LCEWA01_080504_00251.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/04/LCEWA01_080504_00251.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030217071001400", + "bill_ref": null, + "proposed_by": "中央研究院", + "summary": "函送就行政院「台灣生技產業起飛行動方案」之生技人才培訓計畫書面說明報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030304071000100", + "bill_ref": null, + "proposed_by": "本院內政委員會", + "summary": "函,為院會前交付審查內政部函送「財團法人賑災基金會待處置房地產相關資料及處置計畫」案,請改交社會福利及衛生環境委員會審查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030306071000300", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院環境保護署函送「土壤及地下水污染整治基金補助研究及模場試驗專案作業辦法」等19案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030306071000400", + "bill_ref": null, + "proposed_by": "本院經濟委員會", + "summary": "函,為院會交付審查經濟部函為修正「興辦工業人使用毗連非都市土地擴展計畫申請審查辦法」第五條、第十條條文及第五條附表案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030306087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員孔文吉等18人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030306087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員孔文吉等11人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030306087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員孔文吉等20人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030306087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等13人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030306087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江啟臣等13人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030306087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳碧涵等26人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030306087800700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱文彥等24人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030306087800800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱文彥等39人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030306087800900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱文彥等28人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030306087801000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員姚文智等11人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030306087801100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等37人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030306087801200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等31人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030306087801300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等22人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030306087801400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等18人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030306087801500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員徐欣瑩等25人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030306087801600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員許添財等12人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030306087801700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員許添財等12人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 269, + "subitem": null, + "item": null, + "bill_id": "1030306087801800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳宜臻等14人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 270, + "subitem": null, + "item": null, + "bill_id": "1030306087801900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等15人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 271, + "subitem": null, + "item": null, + "bill_id": "1030306087802000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員魏明谷等11人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 272, + "subitem": null, + "item": null, + "bill_id": "1020306080000100", + "bill_ref": null, + "proposed_by": "本院委員", + "summary": "吳育昇、吳秉叡當選第8屆第5會期程序委員會召集委員。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-03", + "name": "第8屆第5會期第3次會議", + "summary": "一、7日上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢。三、11日下午1時50分至2時30分為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59460, + "chair": null, + "date": "2014-03-07", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 59461, + "chair": null, + "date": "2014-03-11", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030225070200100", + "bill_ref": "962L16093", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「水污染防治法第三十一條及第四十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00006.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030225070200200", + "bill_ref": "970L16094", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「空氣污染防制法第十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00007.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030225070200300", + "bill_ref": "1121L16095", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「勞動基準法增訂第七十四條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00008.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030225070200400", + "bill_ref": "1422L16096", + "proposed_by": "本院委員劉建國等17人", + "summary": "擬具「環境影響評估法第十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00009.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030226070200100", + "bill_ref": "1562L16097", + "proposed_by": "本院委員鄭天財等26人", + "summary": "擬具「有線廣播電視法第五十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00010.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030226070200200", + "bill_ref": "380L16098", + "proposed_by": "本院委員鄭天財等26人", + "summary": "擬具「鐵路法第六十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00011.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030106070200500", + "bill_ref": "1374L16070", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00032.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1020930070201200", + "bill_ref": "1374L15430", + "proposed_by": "本院委員鄭麗君等25人", + "summary": "擬具「臺灣與中國簽署條約及協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00014.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1020524070200800", + "bill_ref": "1374L15231", + "proposed_by": "本院委員姚文智等21人", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00080.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1030224070100100", + "bill_ref": "464G14904", + "proposed_by": "行政院", + "summary": "函請審議「保險法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00071.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00071.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1030224070100200", + "bill_ref": "1032G14905", + "proposed_by": "行政院", + "summary": "函請審議「身心障礙者權益保障法第三十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00072.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030225070100100", + "bill_ref": "1416G14906", + "proposed_by": "行政院", + "summary": "函請審議廢止「行政院勞工委員會組織條例」、「行政院勞工委員會職業訓練局組織條例」、「勞工保險監理委員會組織條例」、「勞工保險局組織條例」、「行政院勞工委員會勞工安全衛生研究所組織條例」、「勞工退休基金監理會組織法」(附編制表)及「行政院勞工委員會職業訓練局職業訓練中心組織通則」(附編制表)等案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00073.doc" + }, + "sitting_introduced": "08-05-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030218071001300", + "bill_ref": "887G14717-121", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會、職業訓練局及所屬因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00076.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030218071001400", + "bill_ref": "887G14717-122", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會及勞工退休基金監理會之業務費(除收支併列部分外)預算凍結四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00077.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030218071001500", + "bill_ref": "887G14717-123", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管決議(三),針對該會、職業訓練局及所屬因應貿易自由化就業發展及協助預算凍結五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00078.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030218071001600", + "bill_ref": "887G14717-124", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管決議(四),針對該會、職業訓練局及所屬因應貿易自由化就業發展及協助預算凍結五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00079.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030218071001700", + "bill_ref": "887G14717-125", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(一),凍結「勞工保險業務」預算1億元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00080.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030218071001800", + "bill_ref": "887G14717-126", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二),凍結「勞工保險業務」預算1億元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00081.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030218071001900", + "bill_ref": "887G14717-127", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三),凍結「研議承保及現金給付業務」預算六分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00082.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00082.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030218071002000", + "bill_ref": "887G14717-128", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(四),凍結「研議承保及現金給付業務」預算六分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00083.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00083.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030218071002100", + "bill_ref": "887G14717-129", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(五),凍結「研議職業災害保險業務」預算六分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00084.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00084.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030218071002200", + "bill_ref": "887G14717-130", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(六),凍結「基本行政工作維持」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00085.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00085.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030218071002300", + "bill_ref": "887G14717-131", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(七),凍結「基本行政工作維持」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00086.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00086.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030218071002400", + "bill_ref": "887G14717-132", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八),凍結「一般行政」項下「勞工資訊業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00087.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00087.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030218071002500", + "bill_ref": "887G14717-133", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九),凍結「勞資關係業務」項下「強化勞資夥伴關係」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00088.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00088.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030218071002600", + "bill_ref": "887G14717-134", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十),凍結「勞資關係業務」項下「強化勞資夥伴關係」預算20萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00089.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00089.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030218071002700", + "bill_ref": "887G14717-135", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十一),凍結「勞動條件業務」業務費預算200萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00090.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00090.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030218071002800", + "bill_ref": "887G14717-136", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十二),凍結「勞動條件業務」業務費預算200萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00091.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030218071002900", + "bill_ref": "887G14717-137", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十三),凍結「勞動條件業務」業務費預算200萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00092.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030218071003000", + "bill_ref": "887G14717-138", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十四),凍結「勞動條件業務」業務費預算200萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00093.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00093.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030218071003100", + "bill_ref": "887G14717-139", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十五),凍結「健全合理工資、工時制度」預算30萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00094.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00094.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030218071003200", + "bill_ref": "887G14717-140", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十六),凍結「健全合理工資、工時制度」預算30萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00095.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00095.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030218071003300", + "bill_ref": null, + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十七),凍結「勞動條件業務」業務費預算200萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030218071003400", + "bill_ref": "887G14717-142", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十八),凍結「勞工福利業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00097.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00097.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030218071003500", + "bill_ref": "887G14717-143", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(十九),凍結「勞工福利業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00098.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00098.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030218071003600", + "bill_ref": "887G14717-144", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十),凍結「勞工福利業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00099.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030218071003700", + "bill_ref": "887G14717-145", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十一),凍結「勞工福利業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00100.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00100.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030218071003800", + "bill_ref": "887G14717-146", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十二),凍結「因應貿易自由化,提升勞工福祉」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00101.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00101.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030218071003900", + "bill_ref": "887G14717-147", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十三),凍結「勞工安全衛生業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00102.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00102.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030218071004000", + "bill_ref": "887G14717-148", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十四),凍結「勞工安全衛生業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00103.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00103.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030218071004100", + "bill_ref": "887G14717-149", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十五),凍結「勞工安全衛生業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00104.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00104.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030218071004200", + "bill_ref": "887G14717-150", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十六),凍結「勞工安全衛生業務」預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00105.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00105.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030218071004300", + "bill_ref": "887G14717-151", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十七),凍結「勞工檢查業務」(不含「危險性機械及設備檢查與管理」)預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00106.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00106.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030218071004400", + "bill_ref": "887G14717-152", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十八),凍結「勞工檢查業務」(不含「危險性機械及設備檢查與管理」)預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00107.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00107.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030218071004500", + "bill_ref": "887G14717-153", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(二十九),凍結「勞工檢查業務」(不含「危險性機械及設備檢查與管理」)預算十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00108.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00108.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030218071004600", + "bill_ref": "887G14717-154", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三十),凍結「推動研究發展」、「強化計畫管考」及「強化勞動力規劃及組織效能」預算20萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00109.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00109.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030218071004700", + "bill_ref": "887G14717-155", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三十一),凍結「檢查所管理」預算300萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00110.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00110.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030218071004800", + "bill_ref": "887G14717-156", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(三十二),凍結「檢查所管理」預算300萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00111.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00111.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030218071004900", + "bill_ref": "887G14717-157", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十一),凍結業務費(除收支併列部分外)預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00112.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00112.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030218071005200", + "bill_ref": "887G14717-158", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十二),凍結業務費(除收支併列部分外)預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00113.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00113.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030218071005300", + "bill_ref": "887G14717-159", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十三),凍結業務費(除收支併列部分外)預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00114.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00114.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030218071005400", + "bill_ref": "887G14717-160", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十四),凍結「一般行政」(除人事費及行政費外)預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00115.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00115.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030218071005500", + "bill_ref": "887G14717-161", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十五),凍結「一般行政」(除人事費及行政費外)預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00116.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00116.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030218071005600", + "bill_ref": "887G14717-162", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十六),凍結「基本行政工作維持」預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00117.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00117.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030218071005700", + "bill_ref": "887G14717-163", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十七),凍結「勞工資訊業務」預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00118.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00118.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030218071005800", + "bill_ref": "887G14717-164", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十八),凍結「勞資關係業務」預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00119.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00119.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030218071005900", + "bill_ref": "887G14717-165", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(八十九),凍結「健全勞資爭議處理制度」業務費預算四分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00120.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00120.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030218071006000", + "bill_ref": "887G14717-166", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九十),凍結「勞資關係業務」項下辦理勞動契約及非典型勞動權益宣導會預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00121.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00121.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030218071006100", + "bill_ref": "887G14717-167", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九十一),凍結「勞動條件業務」預算1,000萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00122.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00122.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030218071006200", + "bill_ref": "887G14717-168", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九十二),凍結「因應貿易自由化,提升勞工福祉」預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00123.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00123.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030218071006300", + "bill_ref": "887G14717-169", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九十三),凍結「勞工檢查業務」(除收支併列部分外)預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00124.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00124.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030218071006400", + "bill_ref": "887G14717-170", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(一),針對職業訓練局及所屬因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00125.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00125.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030218071006500", + "bill_ref": "887G14717-171", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二),針對「綜合規劃」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00126.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00126.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030218071006600", + "bill_ref": "887G14717-172", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(三),針對「綜合規劃」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00127.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00127.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030218071006700", + "bill_ref": "887G14717-173", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(四),針對「訓練發展」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00128.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00128.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030218071006800", + "bill_ref": "887G14717-174", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(五),針對「綜合規劃」、「訓練發展」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00129.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00129.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030218071006900", + "bill_ref": "887G14717-175", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(六),針對「就業服務」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00130.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00130.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030218071007000", + "bill_ref": "887G14717-176", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(七),針對「身心障礙者業務」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。資", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00131.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00131.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030218071007100", + "bill_ref": "887G14717-177", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(八),針對「綜合規劃」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00132.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00132.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030218071007200", + "bill_ref": "887G14717-178", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(九),凍結「職業訓練業務」預算二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00133.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00133.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030218071007300", + "bill_ref": "887G14717-179", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十),凍結「職業訓練業務」預算二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00134.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00134.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030218071007400", + "bill_ref": "887G14717-180", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十一),凍結「外國人聘僱許可及管理」預算二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00135.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00135.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030218071007500", + "bill_ref": "887G14717-181", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十二),針對「就業服務」推動並督導就業服務業務預算凍結十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00136.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00136.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030218071007600", + "bill_ref": "887G14717-182", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十三),針對「泰山職訓中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00137.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00137.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030218071007700", + "bill_ref": "887G14717-183", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十四),針對「北區職訓中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00138.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00138.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030218071007800", + "bill_ref": "887G14717-184", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十五),針對「中區職訓中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00139.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00139.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030218071007900", + "bill_ref": "887G14717-185", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十六),針對「南區職訓中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00140.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00140.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030218071008000", + "bill_ref": "887G14717-186", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十七),針對「桃園職訓中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00141.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00141.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030219071001400", + "bill_ref": "887G14717-187", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十八),針對「臺南職訓中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00142.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00142.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030219071000100", + "bill_ref": "887G14717-188", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(十九),針對「職訓中心管理」扣除「辦理職前訓練」後之預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030219071000200", + "bill_ref": "887G14717-189", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十),針對「北基宜花金馬區就服中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030219071000300", + "bill_ref": "887G14717-190", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十一),針對「桃竹苗區就服中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030219071000400", + "bill_ref": "887G14717-191", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十二),針對「中彰投區就服中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00146.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00146.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030219071000500", + "bill_ref": "887G14717-192", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十三),針對「雲嘉南區就服中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00147.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00147.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030219071000600", + "bill_ref": "887G14717-193", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十四),針對「高屏澎東區就服中心管理」因應貿易自由化就業發展及協助預算凍結二十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00148.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00148.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030219071000700", + "bill_ref": "887G14717-194", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(二十五),針對「就服中心管理」扣除「辦理就業服務」後之預算凍結十分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00149.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00149.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030219071000800", + "bill_ref": "887G14717-195", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第2項決議(四十六),凍結職業訓練局及所屬「一般行政」預算五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00150.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00150.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030219071000900", + "bill_ref": "887G14717-196", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(一),凍結「勞工退休基金監理業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00151.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00151.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030219071001000", + "bill_ref": "887G14717-197", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(二),凍結「勞工退休基金監理業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00152.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00152.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030219071001100", + "bill_ref": "887G14717-198", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(三),凍結「勞工退休基金監理業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00153.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00153.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030219071001200", + "bill_ref": "887G14717-199", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(四),凍結「勞工退休基金監理業務」預算100萬元,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00154.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00154.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030219071001300", + "bill_ref": "887G14717-200", + "proposed_by": "行政院勞工委員會", + "summary": "函,為103年度中央政府總預算該會主管第4項決議(五),針對勞工退休基金監理會「一般行政」(除人事費及行政費外)預算凍結五分之一,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00155.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00155.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030220071000100", + "bill_ref": "887G14717-201", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對建築研究所凍結辦理耐震標章之評定審查、研究、宣導推廣等所有相關預算二分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00156.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00156.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030220071000200", + "bill_ref": "887G14717-202", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「一般行政─基本行政工作維持」原列7,888萬6,000元(法定預算數為7,838萬7,000元)凍結十分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00157.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00157.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030220071000300", + "bill_ref": "887G14717-203", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「移民輔導人口販運防制及居留定居管理」預算編列5億4,892萬元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00158.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00158.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030220071000400", + "bill_ref": "887G14717-204", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「執行移出輔導及國際事務工作」預算原列4,034萬5千元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00159.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00159.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030220071000500", + "bill_ref": "887G14717-205", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對役政署「替代役役男服勤及生活管理之督導─業務費」原列350萬元,凍結30%,俟向本院內政委員會提出檢討報告後始得動支乙案,檢送解凍檢討報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00160.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00160.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030220071001800", + "bill_ref": "887G14717-216", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬編列「建置使用WIFI手持式行動裝置定位系統」500萬元,凍結四分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00161.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00161.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030220071001600", + "bill_ref": "887G14717-217", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬辦理「警政發展方案(第1期)─充實科技犯罪偵防設備計畫」,原列1億2,853萬7,000元(法定預算數1億2,803萬7,000元),凍結十分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00162.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00162.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030220071001700", + "bill_ref": "887G14717-218", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「移民發展及工程建設計畫」編列6,390萬元,凍結三分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00163.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00163.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030224071002100", + "bill_ref": "887G14717-351", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「交通安全維護及交通秩序規劃」編列經費1,106萬1,000元,凍結五分之一,俟向本院內政委員會提出檢討報告及防治計畫經同意後始得動支乙案,檢送相關資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00164.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00164.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030224071002200", + "bill_ref": "887G14717-352", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「陽明山國家公園經營管理─07營建工程」其中「園區易崩坍地區或災害搶修水土保持及公共設施安全補強工程」等7項工程原列6,300萬元,凍結五分之一,俟向本院內政委員會報告後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00165.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00165.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030224071002300", + "bill_ref": "887G14717-353", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」項下「城鎮風貌型塑計畫」原列8億元,凍結五分之一,俟向本院內政委員會報告後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00166.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00166.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030224071002400", + "bill_ref": "887G14717-354", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」項下「城鎮風貌型塑計畫」預算凍結五分之一,俟向本院內政委員會提出報告後始得動支乙案,檢送解凍報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00167.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00167.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030224071002500", + "bill_ref": "887G14717-355", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「建立整體性入出國及移民管理資訊系統」中「推動新住民資訊素養教育計畫」原列3,500萬元,凍結三分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00168.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00168.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030224071002600", + "bill_ref": "887G14717-356", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署及所屬「入出國及移民管理業務」項下「通訊費」原列4,956萬5,000元,凍結500萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00169.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00169.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030224071002800", + "bill_ref": "887G14717-357", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「殯葬管理」編列「殯葬設施示範計畫」第3期計畫經費1億1,506萬元,刪減300萬元,餘凍結20%,俟向本院內政委員會報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00170.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00170.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030224071002900", + "bill_ref": "887G14717-358", + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「營建業務」預算凍結1億元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00171.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00171.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030220071000600", + "bill_ref": "887G14717-206", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結體育署「輔導2017臺北世界大學運動會籌備計畫」解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00172.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00172.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030220071000700", + "bill_ref": "887G14717-207", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送該部「產學合作及技職教師研習」原列21億2,036萬7,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00173.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00173.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030220071000800", + "bill_ref": "887G14717-208", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「技術職業教育行政及督導」之「輔導改進技專校院之管理發展」預算解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00174.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00174.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030220071000900", + "bill_ref": "887G14717-209", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「終身教育行政及督導」項下「推行家庭教育」預算五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00175.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00175.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030220071001000", + "bill_ref": "887G14717-210", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結該部「推展一般教育及編印文教書刊」中辦理教育部法規疑義之研議闡釋等400萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00176.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00176.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030220071001900", + "bill_ref": "887G14717-219", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「國立社教館所維持及發展輔助」項下用於獎補助費─輔助國立海洋生物博物館經費1億0,390萬8,000元之三分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00177.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00177.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030220071002000", + "bill_ref": "887G14717-220", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關「師資培育與藝術教育行政及督導」項下「推行藝術教育」,原列1億0,197萬9,000元,凍結五分之一解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00178.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00178.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030220071001200", + "bill_ref": "887G14717-211", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,凍結該部水利署「水資源開發及維護」項下「無自來水地區供水改善計畫第二期」預算相關項目計2案,業已備妥資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00179.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00179.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030220071002900", + "bill_ref": "887G14717-229", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」分支計畫「資訊管理」辦理經濟地理資訊圖資建置計畫預算凍結十分之一乙案,檢送辦理情形,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00180.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00180.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030220071003000", + "bill_ref": "887G14717-230", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對水利署「水資源科技發展」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00181.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00181.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030224071003000", + "bill_ref": "887G14717-362", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「水利行政及水權業務─設備及投資─公共建設及設施費」預算凍結十分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00182.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00182.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030224071003100", + "bill_ref": "887G14717-363", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「延攬海外科技人才」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00183.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00183.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030224071003200", + "bill_ref": "887G14717-364", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對投資業務處編列委辦費(促進投資科目項下)預算凍結二分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00184.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00184.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030224071003300", + "bill_ref": "887G14717-365", + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對中央地質調查所「地質科技研究發展」預算凍結五分之一,俟向本院經濟委員會報告後始得動支乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00185.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00185.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030220071001100", + "bill_ref": "887G14717-212", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對動植物防疫檢疫局歲出預算凍結1000萬元乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00186.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00186.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030220071001300", + "bill_ref": "887G14717-213", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對漁業署及所屬「漁業管理」項下「養殖漁業管理」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00187.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00187.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030220071001400", + "bill_ref": "887G14717-241", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局「農業金融業務」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00188.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00188.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030220071001500", + "bill_ref": "887G14717-215", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業金融局歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00189.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00189.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030220071002100", + "bill_ref": "887G14717-221", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對畜產試驗所歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00190.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00190.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030220071002200", + "bill_ref": "887G14717-222", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業試驗所歲出除人事、行政經費外,預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00191.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00191.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030220071002300", + "bill_ref": "887G14717-223", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」項下「改善政府動物管制收容設施計畫」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00192.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00192.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030220071002400", + "bill_ref": "887G14717-224", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對動植物防疫檢疫局歲出預算,除人事、行政經費外,凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00193.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00193.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030224071003400", + "bill_ref": "887G14717-359", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」項下「加強農田水利建設」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00194.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00194.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030224071003500", + "bill_ref": "887G14717-360", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業發展」項下「農田水利會營運改善」原列5億8,091萬元凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00195.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00195.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030224071003600", + "bill_ref": "887G14717-361", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對「農業管理」項下「農田水利管理」預算22億6,467萬5,000元,凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00196.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00196.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030224071003900", + "bill_ref": "887G14717-369", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對茶業改良場「茶業技術研究改良」預算凍結五分之一乙案,業已備妥相關報告資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00197.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00197.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030220071002500", + "bill_ref": "887G14717-225", + "proposed_by": "行政院公共工程委員會", + "summary": "函,為103年度中央政府總預算決議,要求該會提送政府採購電子化之建置期程、相關計畫等書面資料備查,始得動支相關預算乙案,檢送書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00198.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00198.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030220071002600", + "bill_ref": "887G14717-226", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「安全管理維護」3,209萬元之五分之一預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00199.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00199.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030220071002700", + "bill_ref": "887G14717-227", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「基本行政工作維持」之指導委員會會議資料等相關費用2萬5,000元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00200.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00200.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030220071002800", + "bill_ref": "887G14717-228", + "proposed_by": "國立故宮博物院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「文物加值運用與管理」200萬元預算解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00201.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00201.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030221071006200", + "bill_ref": null, + "proposed_by": "(密)國防部", + "summary": "函,為該部103年度「科學研究」預算凍結六分之一乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030224071000100", + "bill_ref": "887G14717-331", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」預算凍結1,000萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00203.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00203.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030224071000200", + "bill_ref": "887G14717-332", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「一般行政」預算凍結500萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00204.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00204.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030224071000300", + "bill_ref": "887G14717-333", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「國防政策規劃與督導」預算凍結3,000萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00205.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00205.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030224071000400", + "bill_ref": "887G14717-334", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「國防政策規劃與督導」項下「業務費」之「物品」預算凍結100萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00206.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00206.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030224071000500", + "bill_ref": "887G14717-335", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「基本行政工作維持」之「業務費」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00207.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00207.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030224071000600", + "bill_ref": "887G14717-336", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「國防資源管理」之「業務費」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00208.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00208.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030224071000700", + "bill_ref": "887G14717-337", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「國防資源管理」之「物品」及「一般事務費」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00209.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00209.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030224071000800", + "bill_ref": "887G14717-338", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對參謀本部預算凍結1,000萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00210.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00210.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030224071000900", + "bill_ref": "887G14717-339", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「軍事行政」項下「政戰綜合作業」預算凍結1,000萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00211.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00211.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030224071001000", + "bill_ref": "887G14717-340", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「教育訓練業務」項下「作戰綜合作業」預算凍結200萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00212.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00212.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030224071001100", + "bill_ref": "887G14717-341", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「後勤及通資業務」項下「偵蒐雷達維護案」預算凍結3,000萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00213.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00213.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030224071001200", + "bill_ref": "887G14717-342", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「環保業務」項下「環保設施維護」之「業務費」預算凍結400萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00214.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00214.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030224071001300", + "bill_ref": "887G14717-343", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「人事行政」之「業務費」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00215.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00215.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030224071001400", + "bill_ref": "887G14717-344", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「政戰綜合作業」之「業務費」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00216.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00216.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030224071001500", + "bill_ref": "887G14717-345", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「軍事單位裝備零附件購製及保修」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00217.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00217.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030224071001600", + "bill_ref": "887G14717-346", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「裝步戰鬥車」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00218.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00218.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030224071001700", + "bill_ref": "887G14717-347", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「一般裝備」項下新增「國軍通用化學防護效期軍品整備計畫」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00219.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00219.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030224071001800", + "bill_ref": "887G14717-348", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「軍品研發」之「軍備局中山科學研究院國防科技學術合作計畫」預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00220.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00220.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030224071001900", + "bill_ref": "887G14717-349", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「軍事行政」項下「人事行政」預算凍結600萬元乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00221.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00221.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030224071002000", + "bill_ref": "887G14717-350", + "proposed_by": "國防部", + "summary": "函,為103年度中央政府總預算決議,針對「軍事行政」項下督察作業費預算凍結五分之一乙案,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00222.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00222.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030224071002700", + "bill_ref": "887G14717-366", + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算決議,針對該會「選舉業務」預算1,000萬元,凍結五分之一,俟向本院內政委員會報告經同意後,始得動支乙案,檢送相關書面報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00223.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00223.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030224071003700", + "bill_ref": "887G14717-367", + "proposed_by": "公平交易委員會", + "summary": "函,為103年度中央政府總預算決議,凍結該會「基本行政工作維持」、「公平交易業務」等9項預算乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00224.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00224.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030224071003800", + "bill_ref": "887G14717-368", + "proposed_by": "銓敘部", + "summary": "函,為103年度中央政府總預算決議,針對該部「人事法制及銓敘」經費編列787萬6,000元,凍結五分之ㄧ乙案,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00225.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00225.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030221071000100", + "bill_ref": null, + "proposed_by": "本院經費稽核委員會", + "summary": "函,為本(118)屆經費稽核委員會任期屆滿,檢送工作報告,請院會改選下屆委員,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00226.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00226.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030221070100100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送亟需本院在第8屆第5會期完成立法程序之急迫性法案,請惠予優先審議通過,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00227.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00227.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030221071006300", + "bill_ref": "1220G13512-1", + "proposed_by": "本院內政委員會", + "summary": "函,為院會交付審查中央選舉委員會函送「中央選舉委員會選舉專業獎章頒給辦法」等10案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00228.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00228.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030221071006400", + "bill_ref": "1574G9584-4", + "proposed_by": "本院內政、司法及法制兩委員會", + "summary": "函,為院會交付審查行政院函為修正「行政院公民投票審議委員會組織規程」第八條條文案,因已逾法定3個月審查期限,視為已經審查,請提報院會存查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00229.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00229.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030227087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等16人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00230.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00230.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030227087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等34人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00231.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00231.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030227087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江惠貞等12人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00232.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00232.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030227087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員簡東明等15人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00233.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00233.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030227087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員簡東明等23人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00234.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00234.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030227087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員盧嘉辰等17人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00235.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00235.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030227087800700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃偉哲等12人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00236.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00236.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030227087800800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃偉哲等11人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00237.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00237.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030227087800900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃偉哲等19人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00238.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00238.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030227087801000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等16人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00239.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00239.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030227087801100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等20人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00240.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00240.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030227087801200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等22人於第8屆第4會期第10次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00241.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00241.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030227087801300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等30人於第8屆第4會期第9次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00242.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00242.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030227087801400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等24人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00243.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00243.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030227087801500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱志偉等11人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00244.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00244.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030227087801600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等19人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00245.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00245.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030227087801700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王進士等20人於第8屆第4會期第17次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00246.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00246.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030227087801800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院台灣團結聯盟黨團於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00247.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00247.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030227087801900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃志雄等19人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00248.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00248.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030227087802000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蕭美琴等13人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00249.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00249.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030227087802100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員羅明才等23人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00250.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00250.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030227087802200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳宜臻等16人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030227087802300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳宜臻等12人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00252.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00252.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030227087802400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等20人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00253.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00253.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030227087802500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江啟臣等21人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00254.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00254.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030227087802600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江啟臣等21人於第8屆第4會期第13 次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00255.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00255.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030227087802700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等21人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/03/LCEWA01_080503_00256.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/03/LCEWA01_080503_00256.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1020307079900100", + "bill_ref": null, + "proposed_by": "本院人事處", + "summary": "函送「立法院第8屆第5會期各委員會召集委員名單」,請查照案。", + "doc": { + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/04/LCEWA01_080404_00320.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-02", + "name": "第8屆第5會期第2次會議", + "summary": "一、上午9時至10時為國是論壇時間。二、對行政院院長提出施政方針及施政報告,繼續質詢。三、下午1時50分至2時30分為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59300, + "chair": null, + "date": "2014-03-04", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030218070200100", + "bill_ref": "666L16088", + "proposed_by": "本院委員陳其邁等22人", + "summary": "擬具「土地徵收條例修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030220070200100", + "bill_ref": "308L16089", + "proposed_by": "本院委員楊麗環等49人", + "summary": "擬具「毒品危害防制條例第二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00007.doc" + }, + "sitting_introduced": "08-05-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030220070200200", + "bill_ref": "1375L16090", + "proposed_by": "本院委員潘孟安等18人", + "summary": "擬具「公平交易法第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00008.doc" + }, + "sitting_introduced": "08-05-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030220070200300", + "bill_ref": "468L16091", + "proposed_by": "本院委員潘孟安等18人", + "summary": "擬具「就業保險法第二十二條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00009.doc" + }, + "sitting_introduced": "08-05-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030224070200100", + "bill_ref": "1539L16092", + "proposed_by": "本院委員賴士葆等23人", + "summary": "擬具「產業創新條例部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00010.doc" + }, + "sitting_introduced": "08-05-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1020418070200400", + "bill_ref": "1044L14925", + "proposed_by": "本院委員丁守中等26人", + "summary": "擬具「不在籍投票法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00057.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1020418070200600", + "bill_ref": "1044L14927", + "proposed_by": "本院委員鄭天財等24人", + "summary": "擬具「公職人員選舉罷免法第十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00058.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1020418070200700", + "bill_ref": "1679L14928", + "proposed_by": "本院委員鄭天財等25人", + "summary": "擬具「總統副總統選舉罷免法第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/11/LCEWA01_080311_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/11/LCEWA01_080311_00059.doc" + }, + "sitting_introduced": "08-03-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030106070200500", + "bill_ref": "1374L16070", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00032.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00032.doc" + }, + "sitting_introduced": "08-04-YS-18" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1010303070201500", + "bill_ref": "1434L12953", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「政黨及其附隨組織取得財產清查及處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/03/LCEWA01_080103_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/03/LCEWA01_080103_00048.doc" + }, + "sitting_introduced": "08-01-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1021118070200400", + "bill_ref": "660L15654", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「電業法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00050.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1021014070201200", + "bill_ref": "1422L15516", + "proposed_by": "本院委員田秋堇等19人", + "summary": "擬具「環境基本法第二十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00018.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1021021070200400", + "bill_ref": "1554L15360", + "proposed_by": "本院委員李俊俋等20人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條、第九十三條之一及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00059.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00059.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1011211070200400", + "bill_ref": "1688L14476", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「中華民國總統府組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/14/LCEWA01_080214_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/14/LCEWA01_080214_00025.doc" + }, + "sitting_introduced": "08-02-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1011218070200100", + "bill_ref": "215L14533", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「審計法第三十四條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/15/LCEWA01_080215_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/15/LCEWA01_080215_00037.doc" + }, + "sitting_introduced": "08-02-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1020103070200200", + "bill_ref": "23L14620", + "proposed_by": "本院委員李俊俋等16人", + "summary": "擬具「立法委員行為法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00018.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1020103070200400", + "bill_ref": "23L14623", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院各委員會組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00019.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1020103070200500", + "bill_ref": "9L14624", + "proposed_by": "本院委員李俊俋等17人", + "summary": "擬具「立法院議事規則刪除第六十一條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/17/LCEWA01_080217_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/17/LCEWA01_080217_00020.doc" + }, + "sitting_introduced": "08-02-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1020926070201500", + "bill_ref": "1607L15407", + "proposed_by": "本院委員李俊俋等31人", + "summary": "擬具「中華民國憲法增修條文第四條、第四條之一及第七條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00068.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00068.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1021003070201600", + "bill_ref": "23L15469", + "proposed_by": "本院委員李俊俋等19人", + "summary": "擬具「立法院職權行使法增訂部分條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00034.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00034.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1020925070200400", + "bill_ref": "1554L15391", + "proposed_by": "本院委員段宜康等27人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條及第五條之三條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00060.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00060.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1021120070200600", + "bill_ref": "310L15670", + "proposed_by": "本院委員段宜康等20人", + "summary": "擬具「國家安全會議組織法修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00031.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1020926070200400", + "bill_ref": "1554L15395", + "proposed_by": "本院委員尤美女等24人", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第四條之二、第五條及第九十五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00061.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1020926070200200", + "bill_ref": "23L15393", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00069.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00069.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1020926070200500", + "bill_ref": "1044L15396", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「公職人員選舉罷免法第七十三條及第九十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00070.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1011206070200600", + "bill_ref": "1215L14455", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「政治檔案法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/13/LCEWA01_080213_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/13/LCEWA01_080213_00041.doc" + }, + "sitting_introduced": "08-02-YS-13" + }, { + "motion_class": "announcement", + "agenda_item": 28, + "subitem": null, + "item": null, + "bill_id": "1021003070200900", + "bill_ref": "23L15468", + "proposed_by": "本院委員尤美女等21人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00033.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00033.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 29, + "subitem": null, + "item": null, + "bill_id": "1020926070200600", + "bill_ref": "1044L15397", + "proposed_by": "本院委員許添財等19人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00072.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00072.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 30, + "subitem": null, + "item": null, + "bill_id": "1010224070200400", + "bill_ref": "23L12894", + "proposed_by": "本院委員李應元等24人", + "summary": "擬具「立法院程序委員會組織規程第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/02/LCEWA01_080102_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/02/LCEWA01_080102_00014.doc" + }, + "sitting_introduced": "08-01-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 31, + "subitem": null, + "item": null, + "bill_id": "1021003070201000", + "bill_ref": "1044L15462", + "proposed_by": "本院委員李昆澤等17人", + "summary": "擬具「公職人員選舉罷免法第八十三條、第八十六條及第一百十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00041.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00041.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 32, + "subitem": null, + "item": null, + "bill_id": "1010403070200100", + "bill_ref": "1374L13213", + "proposed_by": "本院委員蕭美琴等25人", + "summary": "擬具「難民法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/07/LCEWA01_080107_00092.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/07/LCEWA01_080107_00092.doc" + }, + "sitting_introduced": "08-01-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 33, + "subitem": null, + "item": null, + "bill_id": "1011228070200200", + "bill_ref": "23L14599", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「立法院各委員會組織法第八條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00044.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 34, + "subitem": null, + "item": null, + "bill_id": "1010426070200200", + "bill_ref": "1434L13439", + "proposed_by": "本院委員鄭麗君等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00064.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00064.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 35, + "subitem": null, + "item": null, + "bill_id": "1020524070201700", + "bill_ref": "759L15239", + "proposed_by": "本院委員鄭麗君等22人", + "summary": "擬具「臺灣電力公司龍門核能電廠停建特別條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00078.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 36, + "subitem": null, + "item": null, + "bill_id": "1020930070201200", + "bill_ref": "1374L15430", + "proposed_by": "本院委員鄭麗君等25人", + "summary": "擬具「臺灣與中國簽署條約及協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/05/LCEWA01_080405_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/05/LCEWA01_080405_00014.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 37, + "subitem": null, + "item": null, + "bill_id": "1011108070201000", + "bill_ref": "1434L14265", + "proposed_by": "本院委員姚文智等20人", + "summary": "擬具「國家安全法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/09/LCEWA01_080209_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/09/LCEWA01_080209_00044.doc" + }, + "sitting_introduced": "08-02-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 38, + "subitem": null, + "item": null, + "bill_id": "1020524070200800", + "bill_ref": "1374L15231", + "proposed_by": "本院委員姚文智等21人", + "summary": "擬具「臺灣與中國締結協議處理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00080.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 39, + "subitem": null, + "item": null, + "bill_id": "1021211070200500", + "bill_ref": "1013L15886", + "proposed_by": "本院委員邱志偉等20人", + "summary": "擬具「高級中等教育法第五十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00023.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 40, + "subitem": null, + "item": null, + "bill_id": "1010503070202600", + "bill_ref": "23L13514", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院組織法刪除第七條條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00052.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00052.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 41, + "subitem": null, + "item": null, + "bill_id": "1010503070202800", + "bill_ref": "23L13516", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬廢止「立法院程序委員會組織規程」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00054.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00054.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 42, + "subitem": null, + "item": null, + "bill_id": "1010503070202700", + "bill_ref": "23L13515", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00053.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00053.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 43, + "subitem": null, + "item": null, + "bill_id": "1010503070203000", + "bill_ref": "9L13518", + "proposed_by": "本院委員邱議瑩等20人", + "summary": "擬具「立法院議事規則部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/11/LCEWA01_080111_00056.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/11/LCEWA01_080111_00056.doc" + }, + "sitting_introduced": "08-01-YS-11" + }, { + "motion_class": "announcement", + "agenda_item": 44, + "subitem": null, + "item": null, + "bill_id": "1010521070200600", + "bill_ref": "1554L13673", + "proposed_by": "本院委員陳明文等22人", + "summary": "擬具「中資來台投資管理條例草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/14/LCEWA01_080114_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/14/LCEWA01_080114_00024.doc" + }, + "sitting_introduced": "08-01-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 45, + "subitem": null, + "item": null, + "bill_id": "1021030070200500", + "bill_ref": "9L15560", + "proposed_by": "本院委員陳明文等16人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/09/LCEWA01_080409_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/09/LCEWA01_080409_00043.doc" + }, + "sitting_introduced": "08-04-YS-09" + }, { + "motion_class": "announcement", + "agenda_item": 46, + "subitem": null, + "item": null, + "bill_id": "1021226070200600", + "bill_ref": "9L16031", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院議事規則第六十一條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00043.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00043.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 47, + "subitem": null, + "item": null, + "bill_id": "1021226070200900", + "bill_ref": "23L16032", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院組織法第十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00044.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00044.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 48, + "subitem": null, + "item": null, + "bill_id": "1021226070200700", + "bill_ref": "23L16033", + "proposed_by": "本院委員陳其邁等25人", + "summary": "擬具「立法院職權行使法第七十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/17/LCEWA01_080417_00045.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/17/LCEWA01_080417_00045.doc" + }, + "sitting_introduced": "08-04-YS-17" + }, { + "motion_class": "announcement", + "agenda_item": 49, + "subitem": null, + "item": null, + "bill_id": "1021213070200100", + "bill_ref": "1607L15906", + "proposed_by": "本院委員陳其邁等31人", + "summary": "擬具「中華民國憲法增修條文部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00049.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00049.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 50, + "subitem": null, + "item": null, + "bill_id": "1021213070200200", + "bill_ref": "1679L15907", + "proposed_by": "本院委員陳其邁等19人", + "summary": "擬具「總統副總統選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/15/LCEWA01_080415_00050.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/15/LCEWA01_080415_00050.doc" + }, + "sitting_introduced": "08-04-YS-15" + }, { + "motion_class": "announcement", + "agenda_item": 51, + "subitem": null, + "item": null, + "bill_id": "1020917070200100", + "bill_ref": "23L15370", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「立法院組織法第三條及第十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00008.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 52, + "subitem": null, + "item": null, + "bill_id": "1020917070200200", + "bill_ref": "1044L15371", + "proposed_by": "本院委員陳其邁等26人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00009.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 53, + "subitem": null, + "item": null, + "bill_id": "1011227070200600", + "bill_ref": "23L14595", + "proposed_by": "本院委員薛凌等19人", + "summary": "擬具「立法院職權行使法第六十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/16/LCEWA01_080216_00037.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/16/LCEWA01_080216_00037.doc" + }, + "sitting_introduced": "08-02-YS-16" + }, { + "motion_class": "announcement", + "agenda_item": 54, + "subitem": null, + "item": null, + "bill_id": "1020918070200500", + "bill_ref": "23L15377", + "proposed_by": "本院委員林佳龍等25人", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00010.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 55, + "subitem": null, + "item": null, + "bill_id": "1020918070200600", + "bill_ref": "1044L15378", + "proposed_by": "本院委員林佳龍等28人", + "summary": "擬具「公職人員選舉罷免法第七十三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/03/LCEWA01_080403_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/03/LCEWA01_080403_00011.doc" + }, + "sitting_introduced": "08-04-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 56, + "subitem": null, + "item": null, + "bill_id": "1011005070200500", + "bill_ref": "23L14009", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/04/LCEWA01_080204_00061.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/04/LCEWA01_080204_00061.doc" + }, + "sitting_introduced": "08-02-YS-04" + }, { + "motion_class": "announcement", + "agenda_item": 57, + "subitem": null, + "item": null, + "bill_id": "1011119070200100", + "bill_ref": "23L14327", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院職權行使法第三十七條、第四十三條及第四十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/10/LCEWA01_080210_00048.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/10/LCEWA01_080210_00048.doc" + }, + "sitting_introduced": "08-02-YS-10" + }, { + "motion_class": "announcement", + "agenda_item": 58, + "subitem": null, + "item": null, + "bill_id": "1021008070200300", + "bill_ref": "23L15483", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第三條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/07/LCEWA01_080407_00099.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/07/LCEWA01_080407_00099.doc" + }, + "sitting_introduced": "08-04-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 59, + "subitem": null, + "item": null, + "bill_id": "1011029070200200", + "bill_ref": "23L14179", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法增訂第六條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00066.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00066.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 60, + "subitem": null, + "item": null, + "bill_id": "1011029070200100", + "bill_ref": "23L14180", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「立法院組織法第九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/02/07/LCEWA01_080207_00067.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/02/07/LCEWA01_080207_00067.doc" + }, + "sitting_introduced": "08-02-YS-07" + }, { + "motion_class": "announcement", + "agenda_item": 61, + "subitem": null, + "item": null, + "bill_id": "1021209070200300", + "bill_ref": "1554L15871", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第五條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/14/LCEWA01_080414_00091.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/14/LCEWA01_080414_00091.doc" + }, + "sitting_introduced": "08-04-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 62, + "subitem": null, + "item": null, + "bill_id": "1020304070200200", + "bill_ref": "1554L14689", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/03/LCEWA01_080303_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/03/LCEWA01_080303_00023.doc" + }, + "sitting_introduced": "08-03-YS-03" + }, { + "motion_class": "announcement", + "agenda_item": 63, + "subitem": null, + "item": null, + "bill_id": "1020513070200100", + "bill_ref": "1554L15085", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「臺灣地區與大陸地區人民關係條例增訂第七十三條之一條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/03/14/LCEWA01_080314_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/03/14/LCEWA01_080314_00017.doc" + }, + "sitting_introduced": "08-03-YS-14" + }, { + "motion_class": "announcement", + "agenda_item": 64, + "subitem": null, + "item": null, + "bill_id": "1021118070200700", + "bill_ref": "1044L15652", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法部分條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00055.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00055.doc" + }, + "sitting_introduced": "08-04-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 65, + "subitem": null, + "item": null, + "bill_id": "1010514070201200", + "bill_ref": "1525L13602", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬廢止「戰士授田憑據處理條例」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/01/12/LCEWA01_080112_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/01/12/LCEWA01_080112_00081.doc" + }, + "sitting_introduced": "08-01-YS-12" + }, { + "motion_class": "announcement", + "agenda_item": 66, + "subitem": null, + "item": null, + "bill_id": "1030218070100100", + "bill_ref": "1775G14898", + "proposed_by": "行政院", + "summary": "函請審議「公益勸募條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00070.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00070.doc" + }, + "sitting_introduced": "08-05-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 67, + "subitem": null, + "item": null, + "bill_id": "1020530070100400", + "bill_ref": "467G14611", + "proposed_by": "行政院", + "summary": "函請審議「護照條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00058.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00058.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 68, + "subitem": null, + "item": null, + "bill_id": "1020530070100300", + "bill_ref": "1563G14610", + "proposed_by": "行政院", + "summary": "函請審議「檔案法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/02/LCEWA01_080402_00057.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/02/LCEWA01_080402_00057.doc" + }, + "sitting_introduced": "08-04-YS-02" + }, { + "motion_class": "announcement", + "agenda_item": 69, + "subitem": null, + "item": null, + "bill_id": "1030205071000100", + "bill_ref": "887G12800-1132", + "proposed_by": "教育部", + "summary": "函,為101年度中央政府總預算附屬單位預算決議,檢送有關大專院校專任教師比率及任用檢討書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00073.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00073.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 70, + "subitem": null, + "item": null, + "bill_id": "1030214071001100", + "bill_ref": "887G14717-83", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關「技職教育行政革新與國際交流及評鑑」項下發展技職校院評鑑制度解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00074.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00074.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 71, + "subitem": null, + "item": null, + "bill_id": "1030214071001300", + "bill_ref": "887G14717-85", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關凍結「青年生涯輔導」預算2,000萬元解凍書面報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00075.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00075.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 72, + "subitem": null, + "item": null, + "bill_id": "1030214071001200", + "bill_ref": "887G14717-84", + "proposed_by": "教育部", + "summary": "函,為103年度中央政府總預算決議,檢送有關「推動山野教育計畫」專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00076.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00076.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 73, + "subitem": null, + "item": null, + "bill_id": "1030211071000300", + "bill_ref": "887G13333-1963", + "proposed_by": "行政院農業委員會", + "summary": "函,為102年度中央政府總預算決議,檢送有關該會應訂定蛋品標示規範之專案報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00077.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00077.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 74, + "subitem": null, + "item": null, + "bill_id": "1030213071001100", + "bill_ref": "887G14717-38", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業藥物毒物試驗所應落實蔬果藥物毒物安全檢測及輔導農民用藥安全工作並提專案報告乙案,檢送相關資料,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00078.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00078.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 75, + "subitem": null, + "item": null, + "bill_id": "1030213071001400", + "bill_ref": "887G14717-41", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業藥物毒物試驗所應落實蔬果藥物毒物殘留及市售農藥品安全檢測之成效進行全面檢討並提報告乙案,檢送相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00079.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00079.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 76, + "subitem": null, + "item": null, + "bill_id": "1030213071002300", + "bill_ref": "887G14717-50", + "proposed_by": "行政院農業委員會", + "summary": "函,為103年度中央政府總預算決議,針對農業藥物毒物試驗所「農業藥物及植物保護試驗研究」預算,除人事、行政經費外,凍結五分之一乙案,檢送相關資料,請列入議程,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00080.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00080.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 77, + "subitem": null, + "item": null, + "bill_id": "1030212071000100", + "bill_ref": "887G14717-24", + "proposed_by": "中央選舉委員會", + "summary": "函送「行政院公民投票審議委員會之定位及修法規劃」報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00081.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00081.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 78, + "subitem": null, + "item": null, + "bill_id": "1030212071000200", + "bill_ref": null, + "proposed_by": "中央選舉委員會", + "summary": "函送「直轄市縣市選舉委員會常兼人員兼職費書面報告」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 79, + "subitem": null, + "item": null, + "bill_id": "1030218071000700", + "bill_ref": null, + "proposed_by": "中央選舉委員會", + "summary": "函,為103年度中央政府總預算該會主管第9項決議(九)該會應於3個月內針對罷免不得宣傳等相關規定提出修法建議;與決議(十)凍結「選舉業務」預算五分之一,經研擬相關法律修正案,向本院內政委員會報告經同意後始得動支等,檢送相關修法建議條文,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 80, + "subitem": null, + "item": null, + "bill_id": "1030213071000100", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送技工、工友及駕駛人員精簡辦法相關專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 81, + "subitem": null, + "item": null, + "bill_id": "1030213071000200", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「中高階公務人員密集英語訓練」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 82, + "subitem": null, + "item": null, + "bill_id": "1030213071000300", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「選送優秀公務人員出國進修學位」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 83, + "subitem": null, + "item": null, + "bill_id": "1030213071000400", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「選送組團出國專題研究辦理情形」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 84, + "subitem": null, + "item": null, + "bill_id": "1030213071000500", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「高階公務人員出國短期研習辦理情形」專案報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 85, + "subitem": null, + "item": null, + "bill_id": "1030213071000700", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送「公務人力培訓績效指標具體改善計畫」專案報告,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 86, + "subitem": null, + "item": null, + "bill_id": "1030207071003100", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,有關凍結「公務人員培訓與考用-辦理選送公務人員出國研習業務」預算五分之一,並應提出專案報告乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 87, + "subitem": null, + "item": null, + "bill_id": "1030207071003200", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,有關凍結「規劃訓練進修」費用六分之一,並應提出專案報告乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 88, + "subitem": null, + "item": null, + "bill_id": "1030213071000600", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,有關應提「公務人力培訓績效指標具體改善計畫」專案報告乙案,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 89, + "subitem": null, + "item": null, + "bill_id": "1030213071000900", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對消防署及所屬「一般事務費─辦理國際暨兩岸防災策略研討會經費」原列124萬2,000元,凍結二分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 90, + "subitem": null, + "item": null, + "bill_id": "1030213071001000", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「刑事辦案工作費用」原列6,540萬7,000元,凍結1,308萬1,000元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 91, + "subitem": null, + "item": null, + "bill_id": "1030213071001200", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對消防署及所屬「災害防救深耕第2期計畫」原列6,936萬元,凍結693萬6,000元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 92, + "subitem": null, + "item": null, + "bill_id": "1030213071001300", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「其他業務獎金」(保安警察第一總隊部分)原列275萬1,000元,凍結四分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 93, + "subitem": null, + "item": null, + "bill_id": "1030213071002000", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對「戶政業務」編列5,182萬8,000元,凍結1,000萬元,俟向本院內政委員會進行專案報告並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 94, + "subitem": null, + "item": null, + "bill_id": "1030213071004200", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「提升員警體適能相關活動」原列861萬7,000元,凍結200萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 95, + "subitem": null, + "item": null, + "bill_id": "1030213071004300", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「加強警察教育訓練業務」原列8,824萬3,000元,凍結十分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 96, + "subitem": null, + "item": null, + "bill_id": "1030214071000100", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對消防署及所屬「辦理防救災專用衛星、微波通訊系統等相關事務經費-防救災專用微波通訊系統、直升機微波影像傳輸等系統」預算凍結500萬元,俟向本院內政委員會提出檢討報告經同意後始得動支乙案,檢送解凍檢討報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 97, + "subitem": null, + "item": null, + "bill_id": "1030214071000200", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署「辦理維護社會治安工作調查費」經費601萬9,000元凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 98, + "subitem": null, + "item": null, + "bill_id": "1030214071000400", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算該部主管第7項決議(二十四),俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 99, + "subitem": null, + "item": null, + "bill_id": "1030214071000500", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「偵辦與督導刑案偵破及檢肅治平對象」預算凍結2,000萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 100, + "subitem": null, + "item": null, + "bill_id": "1030214071000600", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對消防署及所屬「參加第28屆亞洲消防首長年會」原列17萬1,000元,全數凍結,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 101, + "subitem": null, + "item": null, + "bill_id": "1030214071000700", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「補助外籍配偶照顧輔導基金」原列3億3,000萬元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 102, + "subitem": null, + "item": null, + "bill_id": "1030214071000800", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「移民輔導人口販運防制及居留定居管理」預算凍結5,000萬元,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 103, + "subitem": null, + "item": null, + "bill_id": "1030214071000300", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對入出國及移民署「違反入出國及移民相關法規之調查處理」原列2,556萬3千元,凍結五分之一,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 104, + "subitem": null, + "item": null, + "bill_id": "1030218071000300", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對警政署及所屬「偵辦與督導刑案偵破及檢肅治平對象」原列1億6,214萬7,000元,減列214萬7,000元,其餘凍結十分之ㄧ,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 105, + "subitem": null, + "item": null, + "bill_id": "1030218071000400", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對營建署及所屬「墾丁國家公園經營管理」中「經營管理計畫」原列1億327萬3,000元,凍結四分之一,俟向本院內政委員會提出專案報告,並經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 106, + "subitem": null, + "item": null, + "bill_id": "1030218071000500", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對空中勤務總隊「參加會議、會勘直升機起降場、督導勤務演訓、赴各隊辦理直升機階檢」原列377萬5,000元,凍結30%,俟向本院內政委員會提出專案報告經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 107, + "subitem": null, + "item": null, + "bill_id": "1030218071000600", + "bill_ref": null, + "proposed_by": "內政部", + "summary": "函,為103年度中央政府總預算決議,針對空中勤務總隊編列「實施教育訓練費─辦理復飛、救難飛行、飛行人員學科訓練」經費329萬元,凍結25%,俟向本院內政委員會提出精進人員職能訓練之規劃措施及檢討報告,經同意後始得動支乙案,檢送解凍專案報告,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 108, + "subitem": null, + "item": null, + "bill_id": "1030213071001500", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「協助產業升級與轉型」項下產業創新價值卓越計畫凍結計畫預算十分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 109, + "subitem": null, + "item": null, + "bill_id": "1030213071001600", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「協助產業升級與轉型」業務費凍結十分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 110, + "subitem": null, + "item": null, + "bill_id": "1030213071001700", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「塑造產業人才與永續環境」經費凍結五分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 111, + "subitem": null, + "item": null, + "bill_id": "1030213071001800", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「大陸地區旅費」預算凍結二分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 112, + "subitem": null, + "item": null, + "bill_id": "1030213071001900", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「補助地方政府及民間開發工業區更新示範計畫」凍結預算五分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 113, + "subitem": null, + "item": null, + "bill_id": "1030213071002100", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對貿易調查委員會「貿易調查業務」預算凍結五分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 114, + "subitem": null, + "item": null, + "bill_id": "1030213071002200", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「智慧電動車產業推動計畫」凍結1,924萬5,000元乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 115, + "subitem": null, + "item": null, + "bill_id": "1030213071002400", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「因應貿易自由化加強產業輔導計畫」預算5億5,000萬元,凍結五分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 116, + "subitem": null, + "item": null, + "bill_id": "1030213071002500", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「食品產業價值鏈整合及加值推動計畫」凍結GMP協會推廣費用433萬4,000元乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 117, + "subitem": null, + "item": null, + "bill_id": "1030213071002600", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「全球產業合作推動及商務科技化示範應用計畫」預算凍結十分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 118, + "subitem": null, + "item": null, + "bill_id": "1030213071002700", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對「加工出口區業務」預算凍結五分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 119, + "subitem": null, + "item": null, + "bill_id": "1030214071000900", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對礦務局「礦業及土石永續發展」預算凍結二分之一乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 120, + "subitem": null, + "item": null, + "bill_id": "1030214071001000", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對加工出口區轉型發展相關事宜,檢送書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 121, + "subitem": null, + "item": null, + "bill_id": "1030218071000100", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,針對工業局「工業技術升級輔導之塑造產業人才與永續環境」之預算凍結10%乙案,檢送相關報告資料,請列入議程,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 122, + "subitem": null, + "item": null, + "bill_id": "1030213071002800", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「財團法人國家同步輻射研究中心發展計畫」原列3億5,000萬元,凍結五分之一,應向本院教育及文化委員會提出報告後,始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 123, + "subitem": null, + "item": null, + "bill_id": "1030213071002900", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「台灣光源計畫」原列6億4,000萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 124, + "subitem": null, + "item": null, + "bill_id": "1030213071003000", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「太空科技發展與服務計畫」原列17億2,815萬8,000元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 125, + "subitem": null, + "item": null, + "bill_id": "1030213071003100", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關中部科學工業園區管理局及所屬「高等研究園區開發業務」原列9,684萬8,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 126, + "subitem": null, + "item": null, + "bill_id": "1030213071003200", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「科技政策研究與知識庫服務計畫」原列2億9,705萬元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 127, + "subitem": null, + "item": null, + "bill_id": "1030213071003300", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「財團法人國家實驗研究院發展計畫」之「晶片設計實作計畫」,原列2億8,803萬7,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 128, + "subitem": null, + "item": null, + "bill_id": "1030213071003400", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「財團法人國家實驗研究院發展計畫」之「儀器科技發展計畫」,原列4億1,700萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 129, + "subitem": null, + "item": null, + "bill_id": "1030213071003500", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「儀器科技發展計畫」─獎補助費─對國內團體之捐助原列4億1,700萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 130, + "subitem": null, + "item": null, + "bill_id": "1030213071003700", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「災害防救科技發展與運用計畫」─獎補助費─對國內團體之捐助原列l億6,084萬6,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 131, + "subitem": null, + "item": null, + "bill_id": "1030213071003800", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「高速計算與網路應用研究計畫」原列7億6,814萬元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 132, + "subitem": null, + "item": null, + "bill_id": "1030213071003900", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「高速計算與網路應用研究計畫」─獎補助費─對國內團體之捐助原列7億6,814萬元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 133, + "subitem": null, + "item": null, + "bill_id": "1030213071004000", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「奈米元件研究與技術人才培育服務計畫」原列4億8,291萬6,000元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 134, + "subitem": null, + "item": null, + "bill_id": "1030213071004100", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「晶片設計實作計畫」─獎補助費─對國內團體之捐助原列2億8,803萬7,000元,凍結五分之一,應向本院教育及文化委員會提出報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 135, + "subitem": null, + "item": null, + "bill_id": "1030213071003600", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「儀器科技發展計畫」下生醫科技研發與驗證原列l億8,200萬元,凍結五分之一,應向本院教育及文化委員會進行報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 136, + "subitem": null, + "item": null, + "bill_id": "1030217071000100", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「高等研究園區開發業務」預算凍結500萬元,應向本院教育及文化委員會提出專案報告乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 137, + "subitem": null, + "item": null, + "bill_id": "1030217071000200", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「科技政策研究與知識庫服務計畫」預算凍結3,000萬元,應向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 138, + "subitem": null, + "item": null, + "bill_id": "1030217071000300", + "bill_ref": null, + "proposed_by": "行政院國家科學委員會", + "summary": "函,為103年度中央政府總預算決議,有關「海洋科技發展計畫」預算凍結3,000萬元,應向本院教育及文化委員會提出專案報告經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 139, + "subitem": null, + "item": null, + "bill_id": "1030214071001400", + "bill_ref": "887G14717-86", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「派員出國計畫」預算凍結1,000萬元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00143.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00143.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 140, + "subitem": null, + "item": null, + "bill_id": "1030214071001500", + "bill_ref": "887G14717-88", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「一般學術研究及評議」預算凍結6,000萬元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00144.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00144.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 141, + "subitem": null, + "item": null, + "bill_id": "1030214071001600", + "bill_ref": "887G14717-89", + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「國家生技研究園區」預算凍結1億元之解凍專案報告,請安排報告,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/02/LCEWA01_080502_00145.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/02/LCEWA01_080502_00145.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 142, + "subitem": null, + "item": null, + "bill_id": "1030214071001700", + "bill_ref": null, + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關「人文及社會科學研究」預算凍結500萬元之解凍書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 143, + "subitem": null, + "item": null, + "bill_id": "1030214071001800", + "bill_ref": null, + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關凍結「設備及投資」中「資訊軟硬體設備費」預算300萬元之解凍書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 144, + "subitem": null, + "item": null, + "bill_id": "1030214071001900", + "bill_ref": null, + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送有關凍結「設備及投資」中「雜項設備費」預算100萬元之解凍書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 145, + "subitem": null, + "item": null, + "bill_id": "1030218071000200", + "bill_ref": null, + "proposed_by": "中央研究院", + "summary": "函,為103年度中央政府總預算決議,檢送凍結「設備及投資」中「機械設備費」預算500萬元解凍書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 146, + "subitem": null, + "item": null, + "bill_id": "1030214071002000", + "bill_ref": null, + "proposed_by": "行政院原子能委員會", + "summary": "函,為103年度中央政府總預算該會主管第1項決議(九),檢送應提之書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 147, + "subitem": null, + "item": null, + "bill_id": "1030218071000800", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「志工服務照顧榮民作業」項下「獎補助費」預算500萬元,俟向本院外交及國防委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 148, + "subitem": null, + "item": null, + "bill_id": "1030218071000900", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「基本行政工作維持」榮民節活動經費、文教宣慰活動及媒體聯繫作業等預算200萬元,俟向本院外交及國防委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 149, + "subitem": null, + "item": null, + "bill_id": "1030218071001000", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「對榮民及特定醫療體系之補助」預算4,532萬5,000元,俟向本院外交及國防委員會報告並經同意後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 150, + "subitem": null, + "item": null, + "bill_id": "1030218071001100", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「就養榮民給與等經費」預算101億5,157萬4,000元之五分之一,俟向本院外交及國防委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 151, + "subitem": null, + "item": null, + "bill_id": "1030218071001200", + "bill_ref": null, + "proposed_by": "國軍退除役官兵輔導委員會", + "summary": "函,為103年度中央政府總預算決議,凍結「就養榮民給與等經費」項下就養榮民眷屬補助費2億6,399萬7,000元之五分之一,俟向本院外交及國防委員會報告後始得動支乙案,請安排報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 152, + "subitem": null, + "item": null, + "bill_id": "1030211071000600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函,為依據「國家金融安定基金設置及管理條例」第5條第3項之規定,請本院各黨團推薦學者、專家6位擔任下屆「國家金融安定基金管理委員會」委員,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 153, + "subitem": null, + "item": null, + "bill_id": "1030211071000400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會以換文方式確認「海峽兩岸空運補充協議修正文件七」,請查照案。   ", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 154, + "subitem": null, + "item": null, + "bill_id": "1030108070100200", + "bill_ref": null, + "proposed_by": "(密)衛生福利部", + "summary": "函送亞東關係協會與公益財團法人交流協會簽署之「建立藥物法規合作框架協議」中、英文約本,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 155, + "subitem": null, + "item": null, + "bill_id": "1030108071000200", + "bill_ref": null, + "proposed_by": "(密)行政院原子能委員會", + "summary": "函送我國與美國簽署之「駐美國台北經濟文化代表處與美國在台協會核能和平利用合作協定」我方國名輪先及美方國名輪先之協定中、英文本及附屬信件,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 156, + "subitem": null, + "item": null, + "bill_id": "1030211071000700", + "bill_ref": null, + "proposed_by": "(密)國家安全局", + "summary": "函送「國家情報工作102年度總結報告」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 157, + "subitem": null, + "item": null, + "bill_id": "1030207071001000", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函送「第三方支付服務定型化契約應記載及不得記載事項」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 158, + "subitem": null, + "item": null, + "bill_id": "1030212071000300", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,有關原能會應會同經濟部責成台電公司,加速推動蘭嶼貯存場檢整工人及蘭嶼居民每年1次全身健康檢查與蘭嶼居民流行病學調查,並就計畫執行現況與確切計畫時程提出書面報告乙案,檢送規劃情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 159, + "subitem": null, + "item": null, + "bill_id": "1030213071004400", + "bill_ref": null, + "proposed_by": "經濟部", + "summary": "函,為103年度中央政府總預算決議,有關該部加工出口區管理處應逐年降低保警人數,自行聘雇保全乙案,檢送書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 160, + "subitem": null, + "item": null, + "bill_id": "1030218071005100", + "bill_ref": null, + "proposed_by": "經濟部、外交部", + "summary": "函送我國與日本簽署之「亞東關係協會與公益財團法人交流協會電子商務合作協議」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 161, + "subitem": null, + "item": null, + "bill_id": "1030211071000500", + "bill_ref": null, + "proposed_by": "交通部", + "summary": "函送該部國道新建工程局代辦金門縣政府「金門大橋工程監督報告」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 162, + "subitem": null, + "item": null, + "bill_id": "1030205071000200", + "bill_ref": null, + "proposed_by": "公平交易委員會", + "summary": "函送與巴拿馬共和國「消費者保護暨競爭防衛署」完成簽署之競爭法適用協定中文、西班牙文及英文約本影本,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 163, + "subitem": null, + "item": null, + "bill_id": "1030205071000300", + "bill_ref": null, + "proposed_by": "教育部", + "summary": "函送102年度補助各直轄市、縣(市)政府辦理輔導人力成效評估報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 164, + "subitem": null, + "item": null, + "bill_id": "1030129071001700", + "bill_ref": null, + "proposed_by": "教育部", + "summary": "函送「高級中等學校課程綱要課程審議會組成及運作辦法」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 165, + "subitem": null, + "item": null, + "bill_id": "1030205071000400", + "bill_ref": null, + "proposed_by": "考試院秘書長", + "summary": "函送該院102年度下半年出國考察行程詳細內容及成效表,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 166, + "subitem": null, + "item": null, + "bill_id": "1030205071000500", + "bill_ref": null, + "proposed_by": "外交部", + "summary": "函,為「駐台拉維夫台北經濟文化辦事處與駐台北以色列經濟文化辦事處間代表處或領事據點駐外人員之眷屬從事有償工作協議」已簽署生效,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 167, + "subitem": null, + "item": null, + "bill_id": "1030205071000700", + "bill_ref": null, + "proposed_by": "外交部", + "summary": "函,為「中華民國政府與布吉納法索政府關於醫療援款特別協議」業已完成換文續約程序,檢送該協議之中、法文版影本,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 168, + "subitem": null, + "item": null, + "bill_id": "1030218071005000", + "bill_ref": null, + "proposed_by": "(密)外交部", + "summary": "函送我與聖克里斯多福及尼維斯簽署「育才計畫瞭解備忘錄」,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 169, + "subitem": null, + "item": null, + "bill_id": "1030205071000600", + "bill_ref": null, + "proposed_by": "金融監督管理委員會", + "summary": "函復有關本國金融機構對不動產放款業務過度擴張,增長銀行授信風險及助長房價情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 170, + "subitem": null, + "item": null, + "bill_id": "1030205071000800", + "bill_ref": null, + "proposed_by": "國防部", + "summary": "函,為本院修正軍事教育條例部分條文時通過附帶決議,檢送相關書面報告,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 171, + "subitem": null, + "item": null, + "bill_id": "1030213071000800", + "bill_ref": null, + "proposed_by": "行政院人事行政總處", + "summary": "函,為103年度中央政府總預算決議,檢送有關人力發展中心建置行動學習系統及製作TED類型課程之辦理情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 172, + "subitem": null, + "item": null, + "bill_id": "1030113071000100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送修正「法務部調查局臺灣省調查處編制表」、「法務部調查局臺北市調查處編制表」、「法務部調查局新北市調查處編制表」、「法務部調查局臺中市調查處編制表」、「法務部調查局臺南市調查處編制表」、「法務部調查局高雄市調查處編制表」、「法務部調查局福建省調查處編制表」及「法務部調查局航業調查處編制表」等案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 173, + "subitem": null, + "item": null, + "bill_id": "1030113071000200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院函送修正依「毒品危害防制條例」第2條第3項規定應行公告調整、增減之「毒品之分級及品項」部分分級及品項,並自即日生效乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 174, + "subitem": null, + "item": null, + "bill_id": "1030113071000300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送修正「行政法院訴訟當事人在途期間標準」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 175, + "subitem": null, + "item": null, + "bill_id": "1030113071000400", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「專門職業及技術人員高等考試律師考試規則」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 176, + "subitem": null, + "item": null, + "bill_id": "1030113071000500", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「司法院人事審議委員會委員遴選辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 177, + "subitem": null, + "item": null, + "bill_id": "1030113071000600", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院、考試院函送「法務部檢察官人事審議委員會審議規則」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 178, + "subitem": null, + "item": null, + "bill_id": "1030113071000700", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院、考試院會銜函送「司法院人事審議委員會審議規則」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 179, + "subitem": null, + "item": null, + "bill_id": "1030113071000900", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院、行政院函送修正「更生債務人申請直轄市或縣市政府協助作成更生方案辦法第一條、第七條及第八條條文」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 180, + "subitem": null, + "item": null, + "bill_id": "1030113071001100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「檢察官全面評核實施辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 181, + "subitem": null, + "item": null, + "bill_id": "1030113071001200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院、司法院、行政院函送「法官曾任公務年資採計提敘俸級認定辦法」、「現職法官改任換敘及行政教育研究人員轉任法官提敘辦法」及「實任法官轉任司法行政人員及回任實任法官換敘辦法」等案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 182, + "subitem": null, + "item": null, + "bill_id": "1030113071001300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「公務人員退休撫卹基金監理委員會委員產生辦法第二條、第三條及第八條條文」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 183, + "subitem": null, + "item": null, + "bill_id": "1030113071001400", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「法官遴選辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 184, + "subitem": null, + "item": null, + "bill_id": "1030113071001500", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送廢止「司法院人事審議委員會審議規則」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 185, + "subitem": null, + "item": null, + "bill_id": "1030113071001600", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付本會審查司法院函送「各級法院法官自律實施辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 186, + "subitem": null, + "item": null, + "bill_id": "1030114071000100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送「檢察官職務評定辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 187, + "subitem": null, + "item": null, + "bill_id": "1030114071000200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院、行政院、考試院函送「法官法施行細則」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 188, + "subitem": null, + "item": null, + "bill_id": "1030114071000400", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送「各級法院法官評核辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 189, + "subitem": null, + "item": null, + "bill_id": "1030113071000800", + "bill_ref": null, + "proposed_by": "本院司法及法制、教育及文化兩委員會", + "summary": "函,為院會交付審查教育部函送修正「財團法人中華民國私立學校教職員退休撫卹離職資遣儲金管理委員會組織及管理辦法」部分條文乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 190, + "subitem": null, + "item": null, + "bill_id": "1030113071001000", + "bill_ref": null, + "proposed_by": "本院司法及法制、教育及文化兩委員會", + "summary": "函,為院會交付審查教育部函送「學校法人及其所屬私立學校教職員退休撫卹離職資遣儲金自主投資實施辦法」乙案,經本院第8屆第3會期第14次會議報告後決定:「展延審查期限」,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 191, + "subitem": null, + "item": null, + "bill_id": "1030107071000100", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付審查交通部函送「公民營事業機構投資興建或租賃經營商港設施作業辦法」等7案,均經院會同意展延審查乙次,復逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 192, + "subitem": null, + "item": null, + "bill_id": "1030108071000100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院勞工委員會函送該會就業安定基金101年4月執行預算法第62條之1所定「政策宣導」之「廣告」預算動支情形等21案,已逾預算執行年度或立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 193, + "subitem": null, + "item": null, + "bill_id": "1030110071000300", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付審查交通部函送財團法人台灣電信協會、財團法人台灣郵政協會、財團法人台灣網路資訊中心、財團法人中華顧問工程司、財團法人中華航空事業發展基金會暨財團法人台灣敦睦聯誼會等6家100年度決算書案等7案,均已逾年度預算執行期間,提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 194, + "subitem": null, + "item": null, + "bill_id": "1030107071000200", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付審查交通部函送修正「航港建設基金收支保管及運用辦法」等23案,均已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 195, + "subitem": null, + "item": null, + "bill_id": "1030110071000200", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "函,為院會交付審查交通部函送「交通部及所屬各機關(構)公務人員交代條例施行細則」,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 196, + "subitem": null, + "item": null, + "bill_id": "1030110071000100", + "bill_ref": null, + "proposed_by": "本院交通、內政兩委員會", + "summary": "函,為院會交付審查交通部、內政部為一、修正「高速公路及快速公路交通管制規則」第二條及第九條條文及二、修正「違反道路交通管理事件統一裁罰基準及處理細則」第二條附表等2案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 197, + "subitem": null, + "item": null, + "bill_id": "1030206071000300", + "bill_ref": null, + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查國防部函送一、修正「常備兵補充兵服役規則」部分條文案。二、修正「國軍老舊眷村改建零星餘戶處理辦法」部分條文案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 198, + "subitem": null, + "item": null, + "bill_id": "1030114071000300", + "bill_ref": null, + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付本會審查行政院國軍退除役官兵輔導委員會函送為廢止「行政院國軍退除役官兵輔導委員會主管財團法人設立許可及監督準則」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 199, + "subitem": null, + "item": null, + "bill_id": "1030206071000400", + "bill_ref": null, + "proposed_by": "本院外交及國防委員會", + "summary": "函,為院會交付審查國家安全局函送「情報機關派遣駐外或各省(市)縣(市)情報人員待遇支給標準」,並自中華民國102年2月1日施行等3案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 200, + "subitem": null, + "item": null, + "bill_id": "1030117071000100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院函送「天然災害停止辦公及上課作業辦法」名稱修正為「天然災害停止上班及上課作業辦法」,並修正條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 201, + "subitem": null, + "item": null, + "bill_id": "1030117071000200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送修正「法院訴訟當事人在途期間標準」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 202, + "subitem": null, + "item": null, + "bill_id": "1030117071000300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送修正「行政法院訴訟當事人在途期間標準」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 203, + "subitem": null, + "item": null, + "bill_id": "1030117071000400", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「專門職業及技術人員高等考試專利師考試規則」第六條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 204, + "subitem": null, + "item": null, + "bill_id": "1030117071000500", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送「專門職業及技術人員高等暨普通考試醫事人員考試規則」名稱修正為「專門職業及技術人員高等考試醫事人員考試規則」,並修正部分條文及相關附表乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 205, + "subitem": null, + "item": null, + "bill_id": "1030117071000600", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院、行政院會銜函送修正「公務人員因公涉訟輔助辦法」部分條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 206, + "subitem": null, + "item": null, + "bill_id": "1030117071000700", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送修正「行政訴訟裁判費以外必要費用徵收辦法」第五條、第六條及第十五條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 207, + "subitem": null, + "item": null, + "bill_id": "1030117071000800", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院研究發展考核委員會函送修正「檔案閱覽抄錄複製收費標準」第五條之一條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 208, + "subitem": null, + "item": null, + "bill_id": "1030117071000900", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送修正「智慧財產法院訴訟當事人在途期間標準」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 209, + "subitem": null, + "item": null, + "bill_id": "1030117071001000", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送修正「檢察機關訴訟當事人在途期間標準」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 210, + "subitem": null, + "item": null, + "bill_id": "1030117071001200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院函送修正「毒品之分級及品項」部分分級及品項,並自即日生效乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 211, + "subitem": null, + "item": null, + "bill_id": "1030117071001300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「公務人員高等考試三級考試暨普通考試規則」第四條附表三及附表四乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 212, + "subitem": null, + "item": null, + "bill_id": "1030205071000900", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「公務人員高等考試一級考試規則」第八條及第九條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 213, + "subitem": null, + "item": null, + "bill_id": "1030205071001000", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送修正「律師職前訓練規則」部分條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 214, + "subitem": null, + "item": null, + "bill_id": "1030205071001100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院函送修正「改任智慧財產法院法官遴選暨在職研習辦法」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 215, + "subitem": null, + "item": null, + "bill_id": "1030205071001200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部函送修正「犯罪被害人保護機構組織及監督辦法」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 216, + "subitem": null, + "item": null, + "bill_id": "1030205071001300", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「公務人員特種考試國家安全局國家安全情報人員考試規則」第六條附表二乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 217, + "subitem": null, + "item": null, + "bill_id": "1030205071001400", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查行政院函送修正「行政院處務規程」第十七條及第二十一條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 218, + "subitem": null, + "item": null, + "bill_id": "1030205071001500", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「外語口試規則」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 219, + "subitem": null, + "item": null, + "bill_id": "1030205071001600", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查司法院、考試院會銜函送「遴選未具擬任職務任用資格人員轉任法官辦法」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 220, + "subitem": null, + "item": null, + "bill_id": "1030205071001700", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「特種考試交通事業人員考試規則」第一條、第十三條條文、第五條附表一、附表四及第七條附表七乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 221, + "subitem": null, + "item": null, + "bill_id": "1030205071001800", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「考試院各種證書暨證明書規費收費標準」第二條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 222, + "subitem": null, + "item": null, + "bill_id": "1030205071001900", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查法務部、內政部、行政院衛生署、國防部函送修正「性侵害犯罪防治法第二十二條之一加害人強制治療作業辦法」第二條及第十條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 223, + "subitem": null, + "item": null, + "bill_id": "1030205071002000", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「公務人員特種考試司法人員考試規則」部分條文及相關附表乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 224, + "subitem": null, + "item": null, + "bill_id": "1030205071002100", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送「公務人員品德修養及工作潛能激勵辦法」名稱修正為「公務人員品德修養及工作績效激勵辦法」,並修正條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 225, + "subitem": null, + "item": null, + "bill_id": "1030205071002200", + "bill_ref": null, + "proposed_by": "本院司法及法制委員會", + "summary": "函,為院會交付審查考試院函送修正「公務人員特種考試法務部調查局調查人員考試規則」第五條附表二乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 226, + "subitem": null, + "item": null, + "bill_id": "1030117071001100", + "bill_ref": null, + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "函,為院會交付審查國防部函送修正「國防部暨所屬機關編制表」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 227, + "subitem": null, + "item": null, + "bill_id": "1030205071002300", + "bill_ref": null, + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "函,為院會交付審查僑務委員會函送「駐外僑務人員編制表」,並自101年9月1日生效乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 228, + "subitem": null, + "item": null, + "bill_id": "1030205071002400", + "bill_ref": null, + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "函,為院會交付審查行政院國軍退除役官兵輔導委員會函送修正「臺北榮民總醫院桃園分院編制表」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 229, + "subitem": null, + "item": null, + "bill_id": "1030205071002500", + "bill_ref": null, + "proposed_by": "本院司法及法制、外交及國防兩委員會", + "summary": "函,為院會交付審查國家安全局函送修正「國家安全局處務規程」第十九條及第二十八條條文乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 230, + "subitem": null, + "item": null, + "bill_id": "1030206071000100", + "bill_ref": null, + "proposed_by": "本院司法及法制 、財政兩委員會", + "summary": "函,為院會交付審查銓敘部、財政部會銜函送修正「關務人員與財政部關政單位人員相互轉任辦法」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 231, + "subitem": null, + "item": null, + "bill_id": "1030206071000200", + "bill_ref": null, + "proposed_by": "本院司法及法制、社會福利及衛生環境兩委員會", + "summary": "函,為院會交付審查行政院衛生署函送修正「行政院衛生署食品藥物管理局編制表」乙案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 232, + "subitem": null, + "item": null, + "bill_id": "1030206071000500", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為院會交付審查行政院勞工委員會函送「職業養成訓練及轉業訓練委任或委託辦法」等18案,已逾立法院職權行使法第61條所定審查期限,請提報院會存查,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 233, + "subitem": null, + "item": null, + "bill_id": "1030206078800200", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為賴正直先生有關軍公教人員享有優惠存款18%利息,而對請領老人、老農津貼者多所限制,殊為不公乙事之請願文書案,經審查結果,不成為議案案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 234, + "subitem": null, + "item": null, + "bill_id": "1030206078800300", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為賴正直先生有關申領勞保老年給付、老農津貼資格設限乙事之請願文書案,經審查結果,不成為議案案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 235, + "subitem": null, + "item": null, + "bill_id": "1030206078800400", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為羅慶輝先生為軍公教人員享有優惠存款18%利息,老農應有19%,並將老農津貼提高至1萬元之請願文書案,經審查結果,不成為議案案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 236, + "subitem": null, + "item": null, + "bill_id": "1030206078800100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "函,為邱崑龍先生建請修法讓年滿65歲老人均可請領老農津貼之請願文書案,經審查結果,不成為議案案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 237, + "subitem": null, + "item": null, + "bill_id": "1030220087800100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等20人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 238, + "subitem": null, + "item": null, + "bill_id": "1030220087800200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員陳淑慧等21人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 239, + "subitem": null, + "item": null, + "bill_id": "1030220087800300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蘇清泉等24人於第8屆第4會期第10次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 240, + "subitem": null, + "item": null, + "bill_id": "1030220087800400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等17人於第8屆第4會期第11次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 241, + "subitem": null, + "item": null, + "bill_id": "1030220087800500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蔣乃辛等18人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 242, + "subitem": null, + "item": null, + "bill_id": "1030220087800600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等26人於第8屆第4會期第11次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 243, + "subitem": null, + "item": null, + "bill_id": "1030220087800700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員楊玉欣等21人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 244, + "subitem": null, + "item": null, + "bill_id": "1030220087800800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員盧嘉辰等17人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 245, + "subitem": null, + "item": null, + "bill_id": "1030220087800900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員盧嘉辰等19人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 246, + "subitem": null, + "item": null, + "bill_id": "1030220087801000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江惠貞等20人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 247, + "subitem": null, + "item": null, + "bill_id": "1030220087801100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江惠貞等15人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 248, + "subitem": null, + "item": null, + "bill_id": "1030220087801200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員江惠貞等16人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 249, + "subitem": null, + "item": null, + "bill_id": "1030220087801300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員許添財等14人於第8屆第4會期第7次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 250, + "subitem": null, + "item": null, + "bill_id": "1030220087801400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員尤美女等22人於第8屆第4會期第9次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 251, + "subitem": null, + "item": null, + "bill_id": "1030220087801500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員黃志雄等12人於第8屆第4會期第11次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 252, + "subitem": null, + "item": null, + "bill_id": "1030220087801600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員顏寬恒等15人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 253, + "subitem": null, + "item": null, + "bill_id": "1030220087801700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員孔文吉等30人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 254, + "subitem": null, + "item": null, + "bill_id": "1030220087801800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員吳育昇等14人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 255, + "subitem": null, + "item": null, + "bill_id": "1030220087801900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員徐欣瑩等35人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 256, + "subitem": null, + "item": null, + "bill_id": "1030220087802000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員簡東明等16人於第8屆第4會期第13次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 257, + "subitem": null, + "item": null, + "bill_id": "1030220087802100", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院台灣團結聯盟黨團於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 258, + "subitem": null, + "item": null, + "bill_id": "1030220087802200", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員魏明谷等12人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 259, + "subitem": null, + "item": null, + "bill_id": "1030220087802300", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員李貴敏等18人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 260, + "subitem": null, + "item": null, + "bill_id": "1030220087802400", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員蕭美琴等13人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 261, + "subitem": null, + "item": null, + "bill_id": "1030220087802500", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王育敏等23人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 262, + "subitem": null, + "item": null, + "bill_id": "1030220087802600", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員邱文彥等36人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 263, + "subitem": null, + "item": null, + "bill_id": "1030220087802700", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員何欣純等11人於第8屆第4會期第15次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 264, + "subitem": null, + "item": null, + "bill_id": "1030220087802800", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員賴士葆等19人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 265, + "subitem": null, + "item": null, + "bill_id": "1030220087802900", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員葉津鈴等13人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 266, + "subitem": null, + "item": null, + "bill_id": "1030220087803000", + "bill_ref": null, + "proposed_by": "行政院", + "summary": "函送本院委員王進士等21人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 267, + "subitem": null, + "item": null, + "bill_id": "1030220087803100", + "bill_ref": null, + "proposed_by": "考試院", + "summary": "函送本院委員吳宜臻等14人於第8屆第4會期第10次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 268, + "subitem": null, + "item": null, + "bill_id": "1030220087803200", + "bill_ref": null, + "proposed_by": "司法院", + "summary": "函送本院委員李貴敏等13人於第8屆第4會期第16次會議所提臨時提案之研處情形,請查照案。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05-YS-01", + "name": "第8屆第5會期第1次會議", + "summary": "一、21日上午9時至10時為國是論壇時間。二、行政院院長提出施政方針及施政報告,並備質詢。三、25日下午1時50分至2時30分為處理臨時提案時間。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59240, + "chair": null, + "date": "2014-02-21", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 59241, + "chair": null, + "date": "2014-02-25", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030110070200100", + "bill_ref": "1539L16073", + "proposed_by": "本院委員楊麗環等50人", + "summary": "擬具「產業創新條例第二十六條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00006.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030110070200200", + "bill_ref": "962L16074", + "proposed_by": "本院委員楊麗環等50人", + "summary": "擬具「水污染防治法第四十條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00007.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030113070200100", + "bill_ref": "801L16075", + "proposed_by": "本院委員陳根德等38人", + "summary": "擬具「銀行法第四十七條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00008.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 5, + "subitem": null, + "item": null, + "bill_id": "1030113070200200", + "bill_ref": "1749L16076", + "proposed_by": "本院委員蔡煌瑯等20人", + "summary": "擬具「動物保護法第十四條之一條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00009.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00009.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 6, + "subitem": null, + "item": null, + "bill_id": "1030113070200300", + "bill_ref": "1619L16077", + "proposed_by": "本院委員尤美女等22人", + "summary": "擬具「長期照顧服務法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00010.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00010.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 7, + "subitem": null, + "item": null, + "bill_id": "1030114070200100", + "bill_ref": "618L16078", + "proposed_by": "本院委員賴士葆等28人", + "summary": "擬具「公司法增訂第二百零八條之二及第二百零八條之三條文草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00011.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00011.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 8, + "subitem": null, + "item": null, + "bill_id": "1030213070200100", + "bill_ref": "1394L16087", + "proposed_by": "本院委員江啟臣等19人", + "summary": "擬具「條約締結法草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00012.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00012.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 9, + "subitem": null, + "item": null, + "bill_id": "1030107070100100", + "bill_ref": "159G14847", + "proposed_by": "行政院", + "summary": "函請審議「兵役法施行法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00013.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00013.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 10, + "subitem": null, + "item": null, + "bill_id": "1030108070100100", + "bill_ref": "703G14848", + "proposed_by": "行政院", + "summary": "函請審議「動物傳染病防治條例第十七條及第二十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00014.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00014.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 11, + "subitem": null, + "item": null, + "bill_id": "1030113070100100", + "bill_ref": "618G14849", + "proposed_by": "行政院", + "summary": "函請審議「公司法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00015.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00015.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 12, + "subitem": null, + "item": null, + "bill_id": "1030113070100200", + "bill_ref": "786G14850", + "proposed_by": "行政院", + "summary": "函請審議「圖書館法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00016.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00016.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 13, + "subitem": null, + "item": null, + "bill_id": "1030114070100100", + "bill_ref": "1720G14851", + "proposed_by": "行政院", + "summary": "函請審議廢止「內政部警政署組織條例」、「內政部警政署刑事警察局組織條例」、「內政部警政署航空警察局組織條例」、「內政部警政署國道公路警察局組織條例」、「內政部警政署鐵路警察局組織條例」、「內政部警政署港務警察局組織通則」、「內政部警政署保安警察總隊組織通則」、「內政部警政署臺灣保安警察總隊組織條例」、「內政部警政署國家公園警察大隊組織條例」、「內政部警政署警察電訊所組織條例」、「內政部警政署民防防情指揮管制所組織條例」、「內政部警政署警察廣播電臺組織條例」、「內政部警政署警察機械修理廠組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00017.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00017.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 14, + "subitem": null, + "item": null, + "bill_id": "1030123070100100", + "bill_ref": "1390G14870", + "proposed_by": "行政院", + "summary": "函請審議「人體器官移植條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00018.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00018.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 15, + "subitem": null, + "item": null, + "bill_id": "1030123070100200", + "bill_ref": "1685G14871", + "proposed_by": "行政院", + "summary": "函請審議「國立大學校院校務基金設置條例修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00019.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00019.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 16, + "subitem": null, + "item": null, + "bill_id": "1030123070100300", + "bill_ref": "1215G14875", + "proposed_by": "行政院", + "summary": "函請審議廢止「行政院經濟建設委員會組織條例」、「行政院研究發展考核委會組織條例」及「檔案管理局組織條例」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00020.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00020.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 17, + "subitem": null, + "item": null, + "bill_id": "1030129070100200", + "bill_ref": "956G14876", + "proposed_by": "行政院", + "summary": "函請審議「區域計畫法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00021.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00021.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 18, + "subitem": null, + "item": null, + "bill_id": "1030129070100300", + "bill_ref": "1749G14877", + "proposed_by": "行政院", + "summary": "函請審議「野生動物保育法部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00022.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00022.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 19, + "subitem": null, + "item": null, + "bill_id": "1030129070100400", + "bill_ref": "1749G14878", + "proposed_by": "行政院", + "summary": "函請審議「動物保護法第十四條之一及第三十條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00023.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00023.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 20, + "subitem": null, + "item": null, + "bill_id": "1030129070100500", + "bill_ref": "887G14879", + "proposed_by": "行政院", + "summary": "函請審議「102年度中央政府總預算第二預備金動支數額表」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00024.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00024.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 21, + "subitem": null, + "item": null, + "bill_id": "1030212070100100", + "bill_ref": "1138G14892", + "proposed_by": "行政院", + "summary": "函請審議「殯葬管理條例第八條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00025.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00025.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 22, + "subitem": null, + "item": null, + "bill_id": "1030212070100200", + "bill_ref": "1021G14893", + "proposed_by": "行政院", + "summary": "函請審議「科學工業園區設置管理條例第九條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00026.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00026.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 23, + "subitem": null, + "item": null, + "bill_id": "1030213070100100", + "bill_ref": "1409G14894", + "proposed_by": "行政院", + "summary": "函請審議「社會秩序維護法第九十一條之一條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00027.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00027.doc" + }, + "sitting_introduced": "08-05-YS-01" + }, { + "motion_class": "announcement", + "agenda_item": 24, + "subitem": null, + "item": null, + "bill_id": "1030123071000100", + "bill_ref": "1775G16056-2", + "proposed_by": "本院經濟委員會", + "summary": "函,為院會前交付審查之委員王育敏等24人擬具「公益公司法草案」,改交經濟、社會福利及衛生環境兩委員會審查,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00028.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00028.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 25, + "subitem": null, + "item": null, + "bill_id": "1030129070100100", + "bill_ref": null, + "proposed_by": "本院人事處", + "summary": "函送「立法院第8屆第5會期各委員會召集委員選舉時間、地點表」,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00029.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00029.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 26, + "subitem": null, + "item": null, + "bill_id": "1030205079900100", + "bill_ref": null, + "proposed_by": "本院人事處", + "summary": "函,為台灣團結聯盟全國不分區委員許忠信、黃文玲二位委員均於民國103年2月1日起辭去立法委員職務,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00030.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00030.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 27, + "subitem": null, + "item": null, + "bill_id": "1030212079900100", + "bill_ref": null, + "proposed_by": "本院人事處", + "summary": "函,為第8屆全國不分區台灣團結聯盟立法委員賴振昌先生及周倪安女士已於民國103年2月10日(星期一)上午8時45分到院宣誓就職,請查照案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/01/LCEWA01_080501_00031.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/01/LCEWA01_080501_00031.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05-TRA-13", + "name": "立法院第8屆第5會期交通委員會第13次全體委員會議", + "summary": "(5月28日上午9時至12時)邀請國家通訊傳播委員會主任委員石世豪、內政部警政署署長王卓鈞率同所屬列席就「防堵手機簡訊詐騙及電信小額付費安全機制改善」提出報告,並備質詢。(5月28日及5月29日兩天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 61725, + "chair": "蔡其昌", + "date": "2014-05-28", + "time_start": "13:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61727, + "chair": "蔡其昌", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61726, + "chair": "蔡其昌", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61940, + "chair": "蔡其昌", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-12", + "name": "立法院第8屆第5會期交通委員會第12次全體委員會議一、併案審查:", + "summary": "(一)行政院函請審議「民用航空法部分條文修正草案」案。\n(二)委員李昆澤等18人擬具「民用航空法第二條條文修正草案」案。\n(三)委員陳亭妃等22人擬具「民用航空法第二十三條及第二十八條條文修正草案」案。\n(四)委員李昆澤等26人擬具「民用航空法第二十八條及第六十三條之二條文修正草案」案。\n(五)委員羅淑蕾等26人擬具「民用航空法第三十七條條文修正草案」案。\n(六)委員丁守中等21人擬具「民用航空法第五十五條條文修正草案」案。\n(七)委員劉建國等16人擬具「民用航空法第九十三條之一條文修正草案」案。\n(八)委員林德福等20人擬具「民用航空法第九十九條之一條文修正草案」案。\n(九)委員楊曜等23人擬具「民用航空法增訂第一百十二條之八條文草案」案。\n(十)委員邱志偉等17人擬具「民用航空法第一百十九條之二條文修正草案」案。\n二、審查委員潘維剛等34人擬具「船員法部分條文修正草案」案。", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 61528, + "chair": "楊麗環", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-11", + "name": "立法院第8屆第5會期交通委員會第11次全體委員會議", + "summary": "邀請交通部部長葉匡時率同所屬列席就「臺鐵及高鐵行車安全之管理、事故分析以及改善預防措施」提出報告,並備質詢;並請台灣高速鐵路股份有限公司董事長范志強列席備詢。(5月12日及5月15日二天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 61341, + "chair": "蔡其昌", + "date": "2014-05-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61340, + "chair": "蔡其昌", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-10", + "name": "立法院第8屆第5會期交通委員會第10次全體委員會議", + "summary": "繼續併案審查:\n一、行政院函請審議「飛航事故調查法部分條文修正草案」案。\n二、委員楊麗環等17人擬具「飛航事故調查法部分條文修正草案」案。\n三、委員李昆澤等17人擬具「飛航事故調查法第二條、第三條及第五條之一條文修正草案」案。(業已詢答完畢,進行逐條審查。)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 61184, + "chair": "楊麗環", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61961, + "chair": "楊麗環", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-09", + "name": "立法院第8屆第5會期交通委員會第9次全體委員會議", + "summary": "邀請交通部部長葉匡時率同所屬列席就「國道收費員轉置工作進度暨ETC資訊安全及個資安全防護」提出報告,並備質詢;並請遠通電收公司總經理張永昌列席備詢。(4月28日及5月1日二天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 60983, + "chair": "蔡其昌", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60985, + "chair": "蔡其昌", + "date": "2014-05-01", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-08", + "name": "立法院第8屆第5會期交通委員會第8次全體委員會議", + "summary": "處理103年度中央政府總預算有關交通部及所屬單位預算動支等38案。(4月21日及23日二天一次會)(報告及詢答)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 60765, + "chair": "楊麗環", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60766, + "chair": "楊麗環", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-07", + "name": "立法院第8屆第5會期交通委員會第7次全體委員會議", + "summary": "邀請交通部部長葉匡時列席就「ETC系統儲值繳費問題暨國道高速公路局委託中華民國運輸學會辦理國道電子收費『ETC系統重複扣款稽核委員會』執行情形」提出報告,並備質詢。(4月14日及16日二天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60480, + "chair": "蔡其昌", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60493, + "chair": "蔡其昌", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60482, + "chair": "蔡其昌", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60494, + "chair": "蔡其昌", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60680, + "chair": "蔡其昌", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-06", + "name": "立法院第8屆第5會期交通委員會第6次全體委員會議", + "summary": "邀請國家通訊傳播委員會主任委員石世豪列席就「行動寬頻(4G)業務申設進度」提出報告,並備質詢。(4月7日及4月9日二天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 60182, + "chair": "楊麗環", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60184, + "chair": "楊麗環", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-05", + "name": "立法院第8屆第5會期交通委員會第5次全體委員會議", + "summary": "繼續併案審查:一、行政院函請審議「飛航事故調查法部分條文修正草案」案。二、委員楊麗環等17人擬具「飛航事故調查法部分條文修正草案」案。三、委員李昆澤等17人擬具「飛航事故調查法第二條、第三條及第五條之一條文修正草案」案。(業已詢答完畢,進行逐條審查)(3月24日、26日及27日三天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59917, + "chair": "楊麗環", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59911, + "chair": "楊麗環", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59916, + "chair": "楊麗環", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60127, + "chair": "蔡其昌", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60128, + "chair": "蔡其昌", + "date": "2014-03-31", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60124, + "chair": "蔡其昌", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60125, + "chair": "蔡其昌", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-04", + "name": "立法院第8屆第5會期交通委員會第4次全體委員會議", + "summary": "一、併案審查:\n (一)委員陳亭妃等23人擬具「大眾捷運法第二十四條之二條文修正草案」案。\n (二)委員李昆澤等22人擬具「大眾捷運法第二十八條條文修正草案」案。\n二、併案審查:\n (一)委員陳亭妃等23人擬具「發展大眾運輸條例第四條條文修正草案」案。\n (二)委員陳亭妃等22人擬具「發展大眾運輸條例增訂第四條之一條文草案」案。\n (3月17日、19日及20日三天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59750, + "chair": "蔡其昌", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59751, + "chair": "蔡其昌", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59752, + "chair": "蔡其昌", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-03", + "name": "立法院第8屆第5會期交通委員會第3次全體委員會議", + "summary": "併案審查:一、行政院函請審議「飛航事故調查法部分條文修正草案」案。二、委員楊麗環等17人擬具「飛航事故調查法部分條文修正草案」案。三、委員李昆澤等17人擬具「飛航事故調查法第二條、第三條及第五條之一條文修正草案」案。\n(提案說明詢答後進行審查)(3月10日、12日及13日三天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59555, + "chair": "楊麗環", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59553, + "chair": "楊麗環", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59554, + "chair": "楊麗環", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-02", + "name": "立法院第8屆第5會期交通委員會第2次全體委員會議", + "summary": "邀請交通部部長葉匡時列席報告業務概況,並備質詢。(3月5日及3月6日二天一次會)", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59404, + "chair": "楊麗環", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59405, + "chair": "蔡其昌", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-TRA-01", + "name": "立法院第8屆第5會期交通委員會第1次全體委員會議", + "summary": "選舉第8屆第5會期本會召集委員", + "committee": ["TRA"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59346, + "chair": "由出席互推", + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61529, + "chair": "楊麗環", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61627, + "chair": "楊麗環", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05T02-YS-03", + "name": "第8屆第5會期第2次臨時會第3次會議", + "summary": "討論事項:\n本院國民黨黨團,針對第8屆第5會期第5次院會報告事項第四案委員鄭麗君等25人擬具「臺灣與中國簽署條約及協議處理條例草案」、第五案委員姚文智等21人擬具「臺灣與中國締結協議處理條例草案」、第六案民進黨黨團擬具「臺灣與中國締結協議處理條例草案」、第七案委員尤美女等42人擬具「兩岸協定締結條例草案」、第八案委員李應元等16人擬具「兩岸協議監督條例草案」、第九案台灣團結聯盟黨團擬具「臺灣與中國締結協議處理條例草案」及第十案行政院函請審議「臺灣地區與大陸地區訂定協議處理及監督條例草案」之決定,提出復議案等7案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 3, + "dates": [{ + "calendar_id": 63520, + "chair": null, + "date": "2014-08-08", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030506080000100", + "bill_ref": null, + "proposed_by": "本院國民黨黨團", + "summary": ",針對第8屆第5會期第5次院會報告事項第四案委員鄭麗君等25人擬具「臺灣與中國簽署條約及協議處理條例草案」、第五案委員姚文智等21人擬具「臺灣與中國締結協議處理條例草案」、第六案民進黨黨團擬具「臺灣與中國締結協議處理條例草案」、第七案委員尤美女等42人擬具「兩岸協定締結條例草案」、第八案委員李應元等16人擬具「兩岸協議監督條例草案」、第九案台灣團結聯盟黨團擬具「臺灣與中國締結協議處理條例草案」及第十案行政院函請審議「臺灣地區與大陸地區訂定協議處理及監督條例草案」之決定,提出復議,請公決案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1020520070300100", + "bill_ref": "269G;L13491;13706-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告併案審查行政院函請審議「外國人投資條例部分條文修正草案」及委員孫大千等26人擬具「外國人投資條例增訂第七條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1020520070300200", + "bill_ref": "269G13493-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告審查行政院函請審議「華僑回國投資條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1030529070301600", + "bill_ref": null, + "proposed_by": "本院經濟委員會", + "summary": "報告併案審查行政院函請審議「公平交易法修正草案」、委員蘇震清等23人擬具「公平交易法部分條文修正草案」、委員丁守中等19人擬具「公平交易法增訂第二十三條之五條文草案」、委員丁守中等21人擬具「公平交易法增訂第二十四條之一條文草案」及委員潘孟安等18人擬具「公平交易法第七條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 1, + "item": null, + "bill_id": "1030528070300100", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「民用航空法部分條文修正草案」、委員李昆澤等18人擬具「民用航空法第二條條文修正草案」、委員陳亭妃等22人擬具「民用航空法第二十三條及第二十八條條文修正草案」、委員李昆澤等26人擬具「民用航空法第二十八條及第六十三條之二條文修正草案」、委員羅淑蕾等26人擬具「民用航空法第三十七條條文修正草案」、委員丁守中等21人擬具「民用航空法第五十五條條文修正草案」、委員劉建國等16人擬具「民用航空法第九十三條之一條文修正草案」、委員林德福等20人擬具「民用航空法第九十九條之一條文修正草案」、委員楊曜等23人擬具「民用航空法增訂第一百十二條之八條文草案」及委員邱志偉等17人擬具「民用航空法第一百十九條之二條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 6, + "subitem": 1, + "item": null, + "bill_id": "1030731070300100", + "bill_ref": null, + "proposed_by": "本院內政委員會", + "summary": "報告併案審查民進黨黨團、委員李俊俋等21人、台灣團結聯盟黨團分別擬具「公職人員選舉罷免法第五十九條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 7, + "subitem": 1, + "item": null, + "bill_id": "1030731070300200", + "bill_ref": null, + "proposed_by": "本院內政委員會", + "summary": "報告審查台灣團結聯盟黨團擬具「公職人員選舉罷免法第六十二條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05T02-YS-02", + "name": "第8屆第5會期第2次臨時會第2次會議", + "summary": "討論事項:\n本院國民黨黨團,針對第8屆第5會期第5次院會報告事項第四案委員鄭麗君等25 人擬具「臺灣與中國簽署條約及協議處理條例草案」、第五案委員姚文智等21 人擬具「臺灣與中國締結協議處理條例草案」、第六案民進黨黨團擬具「臺灣與中國締結協議處理條例草案」、第七案委員尤美女等42 人擬具「兩岸協定締結條例草案」、第八案委員李應元等16 人擬具「兩岸協議監督條例草案」、第九案台灣團結聯盟黨團擬具「臺灣與中國締結協議處理條例草案」及第十案行政院函請審議「臺灣地區與大陸地區訂定協議處理及監督條例草案」之決定\n,提出復議案等8案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 2, + "dates": [{ + "calendar_id": 63420, + "chair": null, + "date": "2014-08-01", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 63421, + "chair": null, + "date": "2014-08-05", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05T02-YS-01", + "name": "第8屆第5會期第2次臨時會第1次會議", + "summary": "一、同意權之行使事項\n二、討論事項:\n本院國民黨黨團,針對第8屆第5會期第5次院會報告事項第四案委員鄭麗君等25 人擬具「臺灣與中國簽署條約及協議處理條例草案」、第五案委員姚文智等21 人擬具「臺灣與中國締結協議處理條例草案」、第六案民進黨黨團擬具「臺灣與中國締結協議處理條例草案」、第七案委員尤美女等42人擬具「兩岸協定締結條例草案」、第八案委員李應元等16人擬具「兩岸協議監督條例草案」、第九案台灣團結聯盟黨團擬具「臺灣與中國締結協議處理條例草案」及第十案行政院函請審議「臺灣地區與大陸地區訂定協議處理及監督條例草案」之決定,提出復議案等9案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 1, + "dates": [{ + "calendar_id": 63360, + "chair": null, + "date": "2014-07-29", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "announcement", + "agenda_item": 2, + "subitem": null, + "item": null, + "bill_id": "1030725070200100", + "bill_ref": "1044L16971", + "proposed_by": "本院民進黨黨團", + "summary": "擬具「公職人員選舉罷免法第五十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/02/01/LCEWA01_08050201_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/02/01/LCEWA01_08050201_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 3, + "subitem": null, + "item": null, + "bill_id": "1030728070200100", + "bill_ref": "1044L16973", + "proposed_by": "本院委員李俊俋等21人", + "summary": "擬具「公職人員選舉罷免法第五十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/02/01/LCEWA01_08050201_00007.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/02/01/LCEWA01_08050201_00007.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "announcement", + "agenda_item": 4, + "subitem": null, + "item": null, + "bill_id": "1030724070200100", + "bill_ref": "1044L16970", + "proposed_by": "本院台灣團結聯盟黨團", + "summary": "擬具「公職人員選舉罷免法第五十九條條文修正草案」,請審議案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/02/01/LCEWA01_08050201_00008.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/02/01/LCEWA01_08050201_00008.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030506080000100", + "bill_ref": null, + "proposed_by": "本院國民黨黨團", + "summary": ",針對第8屆第5會期第5次院會報告事項第四案委員鄭麗君等25人擬具「臺灣與中國簽署條約及協議處理條例草案」、第五案委員姚文智等21人擬具「臺灣與中國締結協議處理條例草案」、第六案民進黨黨團擬具「臺灣與中國締結協議處理條例草案」、第七案委員尤美女等42人擬具「兩岸協定締結條例草案」、第八案委員李應元等16人擬具「兩岸協議監督條例草案」、第九案台灣團結聯盟黨團擬具「臺灣與中國締結協議處理條例草案」及第十案行政院函請審議「臺灣地區與大陸地區訂定協議處理及監督條例草案」之決定,提出復議,請公決案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1030611070300100", + "bill_ref": null, + "proposed_by": "本院外交及國防、社會福利及衛生環境兩委員會", + "summary": "報告併案審查委員江啟臣等26人、民進黨黨團、委員尤美女等22人、委員徐少萍等18人、委員楊玉欣等36人及委員鄭麗君等22人分別擬具「身心障礙者權利公約施行法草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1020520070300100", + "bill_ref": "269G;L13491;13706-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告併案審查行政院函請審議「外國人投資條例部分條文修正草案」及委員孫大千等26人擬具「外國人投資條例增訂第七條之一條文草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00321.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00321.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1020520070300200", + "bill_ref": "269G13493-1", + "proposed_by": "本院經濟、外交及國防兩委員會", + "summary": "報告審查行政院函請審議「華僑回國投資條例部分條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/12/LCEWA01_080412_00322.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/12/LCEWA01_080412_00322.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 5, + "subitem": 1, + "item": null, + "bill_id": "1030529070301600", + "bill_ref": null, + "proposed_by": "本院經濟委員會", + "summary": "報告併案審查行政院函請審議「公平交易法修正草案」、委員蘇震清等23人擬具「公平交易法部分條文修正草案」、委員丁守中等19人擬具「公平交易法增訂第二十三條之五條文草案」、委員丁守中等21人擬具「公平交易法增訂第二十四條之一條文草案」及委員潘孟安等18人擬具「公平交易法第七條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 6, + "subitem": 1, + "item": null, + "bill_id": "1030528070300100", + "bill_ref": null, + "proposed_by": "本院交通委員會", + "summary": "報告併案審查行政院函請審議「民用航空法部分條文修正草案」、委員李昆澤等18人擬具「民用航空法第二條條文修正草案」、委員陳亭妃等22人擬具「民用航空法第二十三條及第二十八條條文修正草案」、委員李昆澤等26人擬具「民用航空法第二十八條及第六十三條之二條文修正草案」、委員羅淑蕾等26人擬具「民用航空法第三十七條條文修正草案」、委員丁守中等21人擬具「民用航空法第五十五條條文修正草案」、委員劉建國等16人擬具「民用航空法第九十三條之一條文修正草案」、委員林德福等20人擬具「民用航空法第九十九條之一條文修正草案」、委員楊曜等23人擬具「民用航空法增訂第一百十二條之八條文草案」及委員邱志偉等17人擬具「民用航空法第一百十九條之二條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 7, + "subitem": 1, + "item": null, + "bill_id": "1030612070300100", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告審查委員蘇清泉等21人擬具「護理人員法第二十四條條文修正草案」案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 8, + "subitem": 1, + "item": null, + "bill_id": "1021230070300800", + "bill_ref": "635G;L14790;14977-1", + "proposed_by": "本院財政委員會", + "summary": "報告併案審查行政院函請審議「關稅法部分條文修正草案」及委員蔡其昌等20人擬具「關稅法第十七條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/04/18/LCEWA01_080418_00266.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/04/18/LCEWA01_080418_00266.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 9, + "subitem": 1, + "item": null, + "bill_id": "1030728070300100", + "bill_ref": null, + "proposed_by": "本院民進黨黨團", + "summary": ",針對國家資源投入成立之漢翔航空公司,是為我國國防工業自主能量核心之一,然而,經濟部現擬逕行執行十餘年前保留之漢翔航空公司之釋股預算,經濟部定於七月三十日起展開釋股之競標開賣、公開拍賣等,釋出54%股份,經濟部現不顧立法院經濟委員會釋股之執行計畫應經同意後,始得進行之決議;為維護國家安全、國防工業自主,爰請經濟部部長及相關部會首長,針對漢翔航空公司民營化計畫、釋股預算之執行,進行專案報告;漢翔航空公司之民營化及釋股預算執行,涉及國家安全之維護、國防工業之自主發展(90年6月6日立法院第四屆第五會期第十七次會議、92年5月30日立法院第五屆第三會期第十四次會議及103年度本院審查漢翔航空公司預算曾作主決議,經同意後,始得釋股,進行民營化。)。是否有當?請公決案。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05T02-IAD-01", + "name": "立法院第8屆第5會期第2次臨時會內政委員會第1次全體委員會議:", + "summary": "一、審查本院民進黨黨團擬具「公職人員選舉罷免法第五十九條條文修正草案」案。\n二、審查本院委員李俊俋等21人擬具「公職人員選舉罷免法第五十九條條文修正草案」案。\n三、審查本院台灣團結聯盟黨團擬具「公職人員選舉罷免法第五十九條條文修正草案」案。\n四、審查本院台灣團結聯盟黨團擬具「公職人員選舉罷免法第六十二條條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 1, + "dates": [{ + "calendar_id": 63402, + "chair": "陳其邁", + "date": "2014-07-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05T02-ECO-IAD-FIN-01", + "name": "立法院第8屆第5會期第2次臨時會經濟、財政、內政委員會第1次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 1, + "dates": [{ + "calendar_id": 63460, + "chair": "黃昭順", + "date": "2014-08-04", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05T02-ECO-02", + "name": "立法院第8屆第5會期第2次臨時會經濟、財政、內政三委員會第2次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 2, + "dates": [{ + "calendar_id": 63511, + "chair": "黃昭順", + "date": "2014-08-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05T02-ECO-01", + "name": "立法院第8屆第5會期第2次臨時會經濟、財政、內政三委員會第1次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 2, + "sitting": 1, + "dates": [{ + "calendar_id": 63380, + "chair": "林岱樺", + "date": "2014-07-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 63510, + "chair": "黃昭順", + "date": "2014-08-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05T01-YS-05", + "name": "第8屆第5會期第1次臨時會第5次會議", + "summary": "同意權之行使事項(上午進行對監察院院長、副院長同意權案投票;下午進行對監察委員同意權案投票)", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 5, + "dates": [{ + "calendar_id": 63260, + "chair": null, + "date": "2014-07-04", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05T01-YS-04", + "name": "第8屆第5會期第1次臨時會第4次會議", + "summary": "本院民進黨黨團,針對第8屆第5會期第1次臨時會第1次會議\n「監察院人事同意權案」審查時程之決定,提出復議案等4案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 4, + "dates": [{ + "calendar_id": 63206, + "chair": null, + "date": "2014-06-27", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030623080000500", + "bill_ref": null, + "proposed_by": "本院民進黨黨團,", + "summary": "針對第8屆第5會期第1次臨時會第1次會議「監察院人事同意權案」審查時程之決定,提出復議,請公決案。", + "doc": null, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1030528070300600", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「藥師法第十一條條文修正草案」及委員江惠貞等20人、委員田秋堇等22人、委員趙天麟等23人、委員蘇清泉等24人、委員徐少萍等19人分別擬具「藥師法第十一條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/01/04/LCEWA01_08050104_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/01/04/LCEWA01_08050104_00006.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 3, + "subitem": 1, + "item": null, + "bill_id": "1030526070300200", + "bill_ref": "1687G14799-1", + "proposed_by": "本院社會福利及衛生環境、經濟、內政三委員會", + "summary": "報告審查行政院函請審議「老年農民福利津貼暫行條例第三條條文修正草案」案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/pdf/08/05/12/LCEWA01_080512_00653.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/02/word/08/05/12/LCEWA01_080512_00653.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 4, + "subitem": 1, + "item": null, + "bill_id": "1030521070300300", + "bill_ref": null, + "proposed_by": "本院社會福利及衛生環境委員會", + "summary": "報告併案審查行政院函請審議「醫療糾紛處理及醫療事故補償法草案」、委員江惠貞等20人、委員劉建國等18人、委員蘇清泉等23人、委員徐少萍等17人、委員陳節如等19人、委員林世嘉等21人、委員田秋堇等27人分別擬具「醫療糾紛處理及醫療事故補償法草案」、委員蔡錦隆等24人、委員吳宜臻等24人分別擬具「醫療事故補償法草案」、委員蔡錦隆等24人擬具「醫事爭議處理法草案」及委員吳宜臻等24人擬具「醫療糾紛處理法草案」案。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05T01-YS-03", + "name": "第8屆第5會期第1次臨時會第3次會議", + "summary": "本院民進黨黨團,針對第8屆第5會期第1次臨時會第1次會議「監察院人事同意權案審查時程」之決定,提出復議案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 3, + "dates": [{ + "calendar_id": 63162, + "chair": null, + "date": "2014-06-24", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030623080000500", + "bill_ref": null, + "proposed_by": "本院民進黨黨團,", + "summary": "針對第8屆第5會期第1次臨時會第1次會議「監察院人事同意權案」審查時程之決定,提出復議,請公決案。", + "doc": null, + "sitting_introduced": null + }] + }, { + "id": "08-05T01-YS-02", + "name": "第8屆第5會期第1次臨時會第2次會議", + "summary": "同意權之行使事項(上午進行對考試院院長、副院長同意權案投票;下午進行對考試委員同意權案投票)", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 2, + "dates": [{ + "calendar_id": 63080, + "chair": null, + "date": "2014-06-20", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05T01-YS-01", + "name": "第8屆第5會期第1次臨時會第1次會議", + "summary": "本院民進黨黨團、台灣團結聯盟黨團,針對第8屆第5會期第11次會議程報告事項第二案總統咨,為考試院第十一屆院長、副院長及考試委員任期於本(103)年8月31日屆滿,依據憲法增修條文第6條第2項規定,提名伍錦霖為考試院第十二屆院長,高永光為考試院第十二屆副院長,何寄澎、李選、張明珠、陳皎眉、趙麗雲、蔡良文、詹中原、浦忠成、黃錦堂、王亞男、張素瓊、馮正民、蕭全政、周志龍、黃婷婷、周萬來、謝秀能、周玉山、楊雅惠19人為考試院第十二屆考試委員,咨請同意案之決定,提出復議案等2案。", + "committee": null, + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 1, + "dates": [{ + "calendar_id": 63040, + "chair": null, + "date": "2014-06-13", + "time_start": "14:30:00", + "time_end": "18:00:00" + }], + "motions": [{ + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 1, + "item": null, + "bill_id": "1030611080000100", + "bill_ref": null, + "proposed_by": "本院民進黨黨團,", + "summary": "針對第8屆第5會期第11次會議程報告事項第二案總統咨,為考試院第十一屆院長、副院長及考試委員任期於本(103)年8月31日屆滿,依據憲法增修條文第6條第2項規定,提名伍錦霖為考試院第十二屆院長,高永光為考試院第十二屆副院長,何寄澎、李選、張明珠、陳皎眉、趙麗雲、蔡良文、詹中原、浦忠成、黃錦堂、王亞男、張素瓊、馮正民、蕭全政、周志龍、黃婷婷、周萬來、謝秀能、周玉山、楊雅惠19人為考試院第十二屆考試委員,咨請同意案之決定,提出復議,請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/01/01/LCEWA01_08050101_00003.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/01/01/LCEWA01_08050101_00003.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 1, + "subitem": 2, + "item": null, + "bill_id": "1030611080000200", + "bill_ref": null, + "proposed_by": "本院台灣團結聯盟黨團,", + "summary": "針對第8屆第5會期第11次議程報告事項第二案總統咨,為考試院第十一屆院長、副院長及考試委員任期於本(103)年8月31日屆滿,依據憲法增修條文第6條第2項規定,提名伍錦霖為考試院第十二屆院長,高永光為考試院第十二屆副院長,何寄澎、李選、張明珠、陳皎眉、趙麗雲、蔡良文、詹中原、浦忠成、黃錦堂、王亞男、張素瓊、馮正民、蕭全政、周志龍、黃婷婷、周萬來、謝秀能、周玉山、楊雅惠19人為考試院第十二屆考試委員,咨請同意案之決定,提出復議,請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/01/01/LCEWA01_08050101_00004.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/01/01/LCEWA01_08050101_00004.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 1, + "item": null, + "bill_id": "1030611080000300", + "bill_ref": null, + "proposed_by": "本院民進黨黨團,", + "summary": "針對第8屆第5會期第11次會議程報告事項第三案總統咨,為監察院第四屆院長、副院長及監察委員任期於本(103)年7月31日屆滿,依據憲法增修條文第7條第2項規定,提名張博雅、孫大川、江綺雯、章仁香、高鳳仙、江明蒼、方萬富、林雅鋒、楊美鈴、余騰芳、李月德、劉德勳、陳慶財、薛春明、程仁宏、李炳南、陳小紅、施鴻志、蔡培村、王惠珀、包宗和、康照洲、尹祚芊、沈美真、許國文、許文彬、范良銹、仉桂美、王美玉29人為監察院第五屆監察委員;並以張博雅為院長、孫大川為副院長,咨請同意案之決定,提出復議,請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/01/01/LCEWA01_08050101_00005.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/01/01/LCEWA01_08050101_00005.doc" + }, + "sitting_introduced": null + }, { + "motion_class": "discussion", + "agenda_item": 2, + "subitem": 2, + "item": null, + "bill_id": "1030611080000400", + "bill_ref": null, + "proposed_by": "本院台灣團結聯盟黨團,", + "summary": "針對第8屆第5會期第11次議程報告事項第三案總統咨,為監察院第四屆院長、副院長及監察委員任期於本(103)年7月31日屆滿,依據憲法增修條文第7條第2項規定,提名張博雅、孫大川、江綺雯、章仁香、高鳳仙、江明蒼、方萬富、林雅鋒、楊美鈴、余騰芳、李月德、劉德勳、陳慶財、薛春明、程仁宏、李炳南、陳小紅、施鴻志、蔡培村、王惠珀、包宗和、康照洲、尹祚芊、沈美真、許國文、許文彬、范良銹、仉桂美、王美玉29人為監察院第五屆監察委員;並以張博雅為院長、孫大川為副院長,咨請同意案之決定,提出復議,請公決案。", + "doc": { + "pdf": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/pdf/08/05/01/01/LCEWA01_08050101_00006.pdf", + "doc": "http://lci.ly.gov.tw/LyLCEW/agenda1/03/word/08/05/01/01/LCEWA01_08050101_00006.doc" + }, + "sitting_introduced": null + }] + }, { + "id": "08-05T01-WHL-02", + "name": "第8屆第5會期第1次臨時會第2次全院委員會會議", + "summary": "總統咨,茲依據憲法增修條文第7條第2項規定,提名張博雅、孫大川、江綺雯、章仁香、高鳳仙、江明蒼、方萬富、林雅鋒、楊美鈴、余騰芳、李月德、劉德勳、陳慶財、薛春明、程仁宏、李炳南、陳小紅、施鴻志、蔡培村、王惠珀、包宗和、康照洲、尹祚芊、沈美真、許國文、許文彬、范良銹、仉桂美、王美玉29人為監察院第五屆監察委員;並以張博雅為院長、孫大川為副院長,咨請同意案。", + "committee": ["WHL"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 2, + "dates": [{ + "calendar_id": 63221, + "chair": null, + "date": "2014-07-01", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 63222, + "chair": null, + "date": "2014-07-02", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 63223, + "chair": null, + "date": "2014-07-03", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05T01-WHL-01", + "name": "第8屆第5會期第1次臨時會第1次全院委員會會議", + "summary": "「行使考試院院長、副院長及考試委員同意權」公聽會", + "committee": ["WHL"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 1, + "dates": [{ + "calendar_id": 63062, + "chair": null, + "date": "2014-06-16", + "time_start": "09:00:00", + "time_end": "13:00:00" + }, { + "calendar_id": 63061, + "chair": null, + "date": "2014-06-17", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 63063, + "chair": null, + "date": "2014-06-18", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 63064, + "chair": null, + "date": "2014-06-19", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05T01-ECO-IAD-FIN-01", + "name": "立法院第8屆第5會期第1次臨時會經濟、財政、內政三委員會第1次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": 1, + "sitting": 1, + "dates": [{ + "calendar_id": 63183, + "chair": "黃昭順", + "date": "2014-06-26", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-32", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第32次全體委員會議", + "summary": "一、併案審查本院委員徐少萍等22人、委員吳育仁等27人分別擬具「勞動基準法第三十條條文修正草案」、委員李俊俋等21人擬具「勞動基準法第三十條及第三十六條條文修正草案」、台灣團結聯盟黨團擬具「勞動基準法第三十條及第八十六條條文修正草案」等4案。\n二、繼續併案審查本院委員高志鵬等22人、委員潘孟安等18人分別擬具「勞工保險條例第六十七條條文修正草案」、委員李貴敏等34人擬具「勞工保險條例部分條文修正草案」等3案。\n三、審查本院委員江惠貞等25人擬具「勞動派遣法草案」。\n四、審查人民請願案1案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 32, + "dates": [{ + "calendar_id": 61833, + "chair": "徐少萍", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-31", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第31次全體委員會議", + "summary": "一、併案審查本院委員賴士葆等28人、委員楊玉欣等38人、委員廖國棟等19人分別擬具「罕見疾病防治及藥物法部分條文修正草案」、委員賴士葆等19人擬具「罕見疾病防治及藥物法第三條條文修正草案]、委員潘維剛等24人擬具「罕見疾病防治及藥物法第二十六條條文修正草案」等5案。\n二、審查本院委員蘇清泉等21人擬具「護理人員法第24條條文修正草案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 31, + "dates": [{ + "calendar_id": 61832, + "chair": "徐少萍", + "date": "2014-05-28", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-30", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第30次全體委員會議", + "summary": "(上午)\n繼續併案審查行政院函請審議「藥師法第十一條條文修正草案」、本院委員江惠貞等20人、委員田秋堇等22人、委員趙天麟等23人、委員蘇清泉等24人、委員徐少萍等19人分別擬具「藥師法第十一條條文修正草案」等6案。\n(下午)\n一、併案審查本院委員陳亭妃等18人擬具「志願服務法第二十條條文修正草案」、委員徐少萍等20人擬具「志願服務法第十五條條文修正草案」等2案。\n二、併案審查本院委員王育敏等24人擬具「社會工作人員執業安全條例草案」、委員李昆澤等21人擬具「社會工作人員執業安全維護法草案」、委員何欣純等18人擬具「社會工作人員人身安全保障條例草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 30, + "dates": [{ + "calendar_id": 61827, + "chair": "徐少萍", + "date": "2014-05-26", + "time_start": "10:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-29", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第29次全體委員會議(議程更新)", + "summary": "一、繼續併案審查本院委員蘇清泉等22人擬具「醫療法第五十九條及第六十條條文修正草案」、委員劉建國等20人擬具「醫療法第五十九條條文修正草案」、委員劉建國等19人擬具「醫療法第一百零二條條文修正草案」等3案。\n二、繼續併案審查本院委員蔡錦隆等24人擬具「身心障礙者權益保障法第一百條條文修正草案」、委員田秋堇等18人、委員李昆澤等19人分別擬具「身心障礙者權益保障法第六十條條文修正草案」、委員蔣乃辛等27人擬具「身心障礙者權益保障法第五條之一及第六十條條文修正草案」、委員江惠貞等25人、台灣團結聯盟黨團分別擬具「身心障礙者權益保障法第六十條及第一百條條文修正草案」等6案。\n三、繼續審查行政院函請審議「社會救助法增訂部分條文草案」。\n四、繼續併案審查本院委員林佳龍等34人擬具「食物銀行法草案」、委員楊玉欣等36人擬具「實物給付條例草案」、委員劉建國等24人擬具「實物給付服務條例草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 29, + "dates": [{ + "calendar_id": 61547, + "chair": "劉建國", + "date": "2014-05-22", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61628, + "chair": "劉建國", + "date": "2014-05-22", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61626, + "chair": "劉建國", + "date": "2014-05-22", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-28", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第28次全體委員會議", + "summary": "一、邀請衛生福利部次長、內政部次長、勞動部次長、內政部警政署署長等就「從遊民定義、就業輔導措施、居住安排協助及防止不當驅趕等四個面向,檢視我國遊民現況、服務措施及法規限制」列席報告,並備質詢。\n二、併案審查本院委員蔡錦隆等24人擬具「身心障礙者權益保障法第一百條條文修正草案」、委員田秋堇等18人、委員李昆澤等19人分別擬具「身心障礙者權益保障法第六十條條文修正草案」、委員蔣乃辛等27人擬具「身心障礙者權益保障法第五條之一及第六十條條文修正草案」、委員江惠貞等25人、台灣團結聯盟黨團分別擬具「身心障礙者權益保障法第六十條及第一百條條文修正草案」等6案。\n三、審查行政院函請審議「社會救助法增訂部分條文草案」。\n四、併案審查本院委員林佳龍等34人擬具「食物銀行法草案」、委員楊玉欣等36人擬具「實物給付條例草案」、委員劉建國等24人擬具「實物給付服務條例草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 28, + "dates": [{ + "calendar_id": 61545, + "chair": "劉建國", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-27", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第27次全體委員會議", + "summary": "一、邀請勞動部潘部長世偉、衛生福利部次長、外交部次長、經濟部次長等就「越南反中暴動之後,政府對在越南受波及國人之勞動人權、就業保障、生命財產與身心健康之具體保護措施與求償作為;以及返國國人對國內就業市場之影響」列席報告,並備質詢。\n二、邀請勞動部潘部長世偉、經濟部次長等就「勞動基準法相關規範之工資及基本工資之定義、項目、結構、調整等與現行企業經營薪資結構之異同,以及法定正常工時與基本工時之競合關係」列席報告,並備質詢。\n三、併案審查本院委員劉建國等17人擬具「醫事檢驗師法第五十一條條文修正草案」、委員江惠貞等21人、委員李桐豪等27人分別擬具「醫事檢驗師法第三條條文修正草案」、委員趙天麟等22人、委員蘇清泉等29人分別擬具「醫事檢驗師法第四十九條條文修正草案」等5案。\n四、繼續併案審查本院委員蘇清泉等22人擬具「醫療法第五十九條及第六十條條文修正草案」、委員劉建國等20人擬具「醫療法第五十九條條文修正草案」、委員劉建國等19人擬具「醫療法第一百零二條條文修正草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 27, + "dates": [{ + "calendar_id": 61544, + "chair": "劉建國", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61548, + "chair": "劉建國", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-26", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第26次全體委員會議", + "summary": "繼續併案審查行政院函請審議「資源循環利用法草案」、本院委員林淑芬等22人擬具「廢棄物減量及循環利用法草案」、委員江惠貞等40人擬具「廢棄資源循環利用法草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 26, + "dates": [{ + "calendar_id": 61360, + "chair": "徐少萍", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-25", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第25次全體委員會議", + "summary": "(上午)\n一、審查中華民國103年度中央政府總預算案附屬單位預算有關衛生福利部主管作業基金(醫療藥品基金、管制藥品製藥工廠作業基金、全民健康保險基金及國民年金保險基金)及特別收入基金(健康照護基金及社會福利基金)等預算案。\n二、併案審查本院委員江惠貞等29人、委員謝國樑等16人、委員趙天麟等19人、委員林岱樺等19人分別擬具「藥事法部分條文修正草案」、委員劉建國等20人擬具「藥事法第八十一條條文修正草案」等5案。\n(下午)\n繼續併案審查行政院函請審議「人體器官移植條例部分條文修正草案」、本院委員楊玉欣等25人擬具「人體器官移植條例第六條條文修正草案」、委員田秋堇等26人擬具「人體器官移植條例部分條文修正草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 25, + "dates": [{ + "calendar_id": 61347, + "chair": "徐少萍", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61365, + "chair": "徐少萍", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-24", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第24次全體委員會議", + "summary": "邀請勞動部潘部長世偉、國家發展委員會、經濟部、科技部、行政院人事行政總處、行政院主計總處等派員就「一、《職業災害勞工保護法》之執行狀況與相關問題之策進連同近年重大工殤問題與爭議;二、『育嬰留職停薪津貼制度』滿五週年之實施現狀、相關問題檢討與未來展望;三、『從臺北市政府調高員工基本薪資探討目前全國勞工基本工資的合理性與調整制度的改革』專題報告,並針對『臺灣勞動市場是否可能實施區域性基本工資』」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 24, + "dates": [{ + "calendar_id": 61342, + "chair": "徐少萍", + "date": "2014-05-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-23", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第23次全體委員會議", + "summary": "一、邀請衛生福利部邱部長文達、勞動部次長、教育部、國防部、國軍退除役官兵輔導委員會、財政部、行政院主計總處、審計部等派員就「如何改善『血汗醫院』問題、政府機關所屬醫院預決算和審計,以及建立財團法人醫療院所財務透明化機制」列席報告,並備質詢。\n二、繼續併案審查行政院函請審議「醫療糾紛處理及醫療事故補償法草案」、本院委員江惠貞等20人、委員劉建國等18人、委員蘇清泉等23人、委員徐少萍等17人、委員陳節如等19人、委員林世嘉等21人、委員田秋堇等27人分別擬具「醫療糾紛處理及醫療事故補償法草案」、委員蔡錦隆等24人、委員吳宜臻等24人分別擬具「醫療事故補償法草案」、委員蔡錦隆等24人擬具「醫事爭議處理法草案」及委員吳宜臻等24人擬具「醫療糾紛處理法草案」等12案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 23, + "dates": [{ + "calendar_id": 61220, + "chair": "劉建國", + "date": "2014-05-08", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-22", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第22次全體委員會議", + "summary": "一、邀請勞動部潘部長世偉、行政院原子能委員會副主任委員、經濟部次長、台灣電力股份有限公司總經理、經濟部工業局局長等就「(一)歷年來勞動部對核電廠及其相關上下游工廠進行勞動檢查和工安事件之調查報告;(二)為因應《職業安全衛生法》即將上路施行,台灣電力股份有限公司對核電廠員工及進出該廠人員必要之安全衛生設施、措施和預防工作之進度報告」列席報告,並備質詢。\n二、併案審查本院委員許智傑等22人擬具「勞資爭議處理法第三條條文修正草案」、委員李昆澤等24人擬具「勞資爭議處理法第六條條文修正草案」、委員蔡煌瑯等21人擬具「勞資爭議處理法第四十七條條文修正草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 22, + "dates": [{ + "calendar_id": 61213, + "chair": "劉建國", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-21", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第21次全體委員會議", + "summary": "一、邀請行政院環境保護署魏署長國彥、行政院原子能委員會主任委員、經濟部次長、台灣電力股份有限公司總經理、國家中山科學研究院院長、行政院原子能委員會核能研究所所長等就「(一)核廢料總檢討:我國核電廠自開始商轉之後,各核電廠目前累計迄今核廢料之數量(公噸、桶)、標準作業處置方式、暫時及永久場址和處置費用;以及預估未來核電廠停役之核廢料數量、標準作業處置方式、暫時及永久場址和處置費用,以及上述對環境監測和環境衝擊評估報告;(二)低放射性廢棄物:歷年來核電廠減容中心處理可燃及可壓低放射性廢棄物之數量、標準作業處理方式、底渣去處、處置費用,以及對環境監測和環境衝擊評估」列席報告,並備質詢。\n二、審查本院委員吳宜臻等17人擬具「環境影響評估法第三條及第十六條之一條文修正草案」。\n三、審查本院委員劉建國等17人擬具「環境影響評估法第十二條條文修正草案」。\n四、繼續審查本院委員王育敏等41人、委員李昆澤等21人、委員丁守中等20人、委員趙天麟等20人、委員葉津鈴等17人、委員林淑芬等24人分別擬具「水污染防治法部分條文修正草案」、委員林淑芬等17人擬具「水污染防治法第十條條文修正草案」、委員田秋堇等16人擬具「水污染防治法第十六條、第二十二條及第三十四條條文修正草案」、民進黨黨團擬具「水污染防治法第三十四條之一、第三十七條及第三十九條條文修正草案」、委員黃昭順等40人擬具「水污染防治法第三十五條及第六十六條之一條文修正草案」、委員羅淑蕾等17人、委員李俊俋等22人、委員楊曜等20人、委員陳根德等19人、委員許忠信等21人、委員楊麗環等50人分別擬具「水污染防治法第四十條條文修正草案」、委員蔣乃辛等26人擬具「水污染防治法第二十七條之一及第四十條條文修正草案」、委員江惠貞等19人擬具「水污染防治法第三十四條及第三十六條條文修正草案」、委員劉建國等17人擬具「水污染防治法第三十一條及第四十條條文修正草案」等19案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 21, + "dates": [{ + "calendar_id": 61203, + "chair": "劉建國", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-20", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第20次全體委員會議", + "summary": "一、邀請衛生福利部邱部長文達就「行政院衛生署改制為衛生福利部後,社會福利政策策進與社福資源不均問題之改善提出報告,並從社會福利與社會救助政策暨臺灣新住民、性別平等、問題家庭兒少與弱勢族群福祉及照顧等方面進行分析,提出10年之願景、目標及具體計畫」列席報告,並備質詢。\n二、邀請衛生福利部邱部長文達就「衛生福利部附屬醫療及社會福利機構管理會對其所屬醫院及社會福利機構之管理角色提出檢討報告,並針對營運成效與服務品質提升提出現階段之具體策略與措施」列席報告,並備質詢。\n三、併案審查本院委員江惠貞等20人、委員趙天麟等23人、委員田秋堇等22人分別擬具「藥師法第十一條條文修正草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 20, + "dates": [{ + "calendar_id": 61019, + "chair": "徐少萍", + "date": "2014-05-01", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-19", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第19次全體委員會議", + "summary": "邀請行政院環境保護署魏署長國彥、經濟部次長、行政院農業委員會副主任委員、交通部、內政部等派員就「推動環境資源資料整合辦理情形」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 19, + "dates": [{ + "calendar_id": 61018, + "chair": "徐少萍", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-18", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第18次全體委員會議(議程更新)", + "summary": "邀請勞動部潘部長世偉、國家發展委員會副主任委員、經濟部次長、教育部次長、科技部等派員就「目前我國勞動市場之薪資低落、工時過長與人才外流等相關問題現狀與改善策略」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 18, + "dates": [{ + "calendar_id": 61029, + "chair": "徐少萍", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-17", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第17次全體委員會議(議程更新)", + "summary": "邀請衛生福利部邱部長文達、行政院環境保護署魏署長國彥、行政院原子能委員會副主任委員、經濟部次長、臺灣電力股份有限公司總經理、行政院農業委員會農糧署署長、交通部、內政部、科技部、國防部等派員就「我國核災應變機制暨核四逃命圈內之人員疏散、核災輻傷醫療、環境和食物安全等問題」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 17, + "dates": [{ + "calendar_id": 60904, + "chair": "劉建國", + "date": "2014-04-24", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60776, + "chair": "劉建國", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-16", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第16次全體委員會議", + "summary": "邀請行政院環境保護署魏署長國彥、外交部次長、行政院大陸委員會副主任委員、法務部等派員就「一、美國環保署署長麥卡錫女士(Administrator Gina McCarthy)訪臺暨行政院環境保護署宣布成立『國際環境夥伴計畫』(International Environmental Partnership)對臺美環保合作及該計畫內容對我國環保工作之機遇、挑戰與影響評估;二、《兩岸環境保護合作協議》之利弊評估與洽簽協商進度」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 16, + "dates": [{ + "calendar_id": 60775, + "chair": "劉建國", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-15", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第15次全體委員會議", + "summary": "一、邀請勞動部潘部長世偉、外交部次長、行政院大陸委員會副主任委員、交通部民用航空局副局長、經濟部、教育部、法務部等派員就「近5年來我國國人赴『海外工作』之概況(含類型、國別、人數、行業別及工作時間等統計資料)及其相關勞動權益保障問題」列席報告,並備質詢。\n二、審查本院委員潘孟安等18人擬具「就業保險法第二十二條條文修正草案」。\n三、併案審查本院委員楊麗環等18人擬具「家事勞工權益保障法草案」、委員林淑芬等24人擬具「家事服務法草案」等2案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 60768, + "chair": "劉建國", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-14", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第14次全體委員會議", + "summary": "(4月14日) 一、併案審查行政院函請審議「大量解僱勞工保護法第二條條文修正草案」、本院委員邱志偉等20人擬具「大量解僱勞工保護法第二條條文修正草案」、委員盧嘉辰等18人擬具「大量解僱勞工保護法第二條及第四條條文修正草案」、委員李桐豪等25人擬具「大量解僱勞工保護法第十二條條文修正草案」、委員王育敏等27人擬具「大量解僱勞工保護法第十八條條文修正草案」等5案。 二、併案審查本院委員吳宜臻等24人、委員高志鵬等22人、委員潘孟安等18人分別擬具「勞動基準法第五十六條條文修正草案」、委員孫大千等23人、委員賴士葆等24人、委員謝國樑等20人、委員劉建國等16人、委員羅淑蕾等20人、委員陳根德等20人分別擬具「勞動基準法第二十八條條文修正草案」、委員吳育仁等19人擬具「勞動基準法第二十八條及第七十五條條文修正草案」、委員林淑芬等21人擬具「勞動基準法第二十八條及第七十九條之二條文修正草案」、委員徐少萍等24人擬具「勞動基準法第二十八條及第七十六條之一條文修正草案」、委員王育敏等20人擬具「勞動基準法部分條文修正草案」、委員尤美女等16人、委員魏明谷等17人、委員林世嘉等23人、委員蔣乃辛等23人、委員吳育仁等21人分別擬具「勞動基準法第七十九條條文修正草案」、委員李昆澤等21人擬具「勞動基準法第七十九條及第八十條之一條文修正草案」等19案。 三、審查人民請願案2案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 60500, + "chair": "徐少萍", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60505, + "chair": "徐少萍", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61606, + "chair": "徐少萍", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60521, + "chair": "徐少萍", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60506, + "chair": "徐少萍", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61605, + "chair": "徐少萍", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-13", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第13次全體委員會議", + "summary": "一、邀請衛生福利部邱部長文達就「生育事故爭議事件試辦計畫之成效、延長及擴大辦理至其他科別之計畫」列席報告,並備質詢。\n二、繼續審查本院委員吳宜臻等23人擬具「生產風險補償條例草案」。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 60241, + "chair": "劉建國", + "date": "2014-04-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-12", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第12次全體委員會議(議程更新)", + "summary": "邀請衛生福利部邱部長文達、中央研究院院長、經濟部次長、行政院大陸委員會副主任委員等就「《海峽兩岸醫藥衛生合作協議》實施迄今對我國生技產業發展之利弊」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 60181, + "chair": "劉建國", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60240, + "chair": "劉建國", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-11", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第11次全體委員會議", + "summary": "邀請衛生福利部邱部長文達、經濟部次長、國家發展委員會副主任委員就「一、《海峽兩岸服務貿易協議》附件一服務貿易特定承諾表:臺灣方面非金融服務部門的開放承諾—(八)『健康與社會服務業』評估;二、自由經濟示範區『國際醫療(健康)』評估」列席報告,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 60180, + "chair": "劉建國", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-10", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第10次全體委員會議", + "summary": "併案審查行政院函請審議「資源循環利用法草案」、本院委員林淑芬等22人擬具「廢棄物減量及循環利用法草案」、委員江惠貞等40人擬具「廢棄資源循環利用法草案」等3案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 59937, + "chair": "劉建國", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60104, + "chair": "徐少萍", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-09", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第9次全體委員會議", + "summary": "一、邀請行政院環境保護署魏署長國彥報告業務概況及立法計畫,並備質詢。\n二、審查本院委員蔡正元等16人擬具「海洋污染防治法第十三條及第三十三條條文修正草案」。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 59931, + "chair": "劉建國", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60106, + "chair": "徐少萍", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-08", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第8次全體委員會議", + "summary": "一、繼續併案審查本院委員蔣乃辛等19人、委員王惠美等26人分別擬具「勞工保險條例第七十四條之二條文修正草案」、委員蔣乃辛等24人擬具「勞工保險條例增訂第二十七條之一條文草案」等3案。\n二、繼續審查本院委員吳育仁等22人擬具「團體協約法第六條條文修正草案」。\n三、繼續審查本院委員吳育仁等18人擬具「勞資爭議處理法第二十五條條文修正草案」。\n四、繼續併案審查本院委員邱志偉等24人、委員王育敏等24人分別擬具「性別工作平等法第三十八條條文修正草案」、委員黃偉哲等20人擬具「性別工作平等法第三十八條及第三十八條之一條文修正草案」、委員陳淑慧等21人、委員陳歐珀等19人分別擬具「性別工作平等法第三十八條、第三十八條之一及第四十條條文修正草案」、本院委員何欣純等17人、委員林鴻池等25人、委員江惠貞等18人分別擬具「性別工作平等法第三條條文修正草案」等8案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 59767, + "chair": "徐少萍", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59762, + "chair": "徐少萍", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59768, + "chair": "徐少萍", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59766, + "chair": "徐少萍", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59761, + "chair": "徐少萍", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59930, + "chair": "劉建國", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60100, + "chair": "徐少萍", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-07", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第7次全體委員會議", + "summary": "一、邀請勞動部潘部長世偉、內政部、行政院農業委員會、法務部等單位首長就「針對行蹤不明之外勞如何強化預防及查緝相關作為」列席報告,並備質詢。\n二、併案審查本院委員蔣乃辛等19人、委員王惠美等26人分別擬具「勞工保險條例第七十四條之二條文修正草案」等2案。\n三、審查本院委員蔣乃辛等24人「勞工保險條例增訂第二十七條之一條文草案」。\n四、審查本院委員吳育仁等22人擬具「團體協約法第六條條文修正草案」。\n五、審查本院委員吳育仁等18人擬具「勞資爭議處理法第二十五條條文修正草案」。\n六、併案審查本院委員邱志偉等24人、委員王育敏等24人分別擬具「性別工作平等法第三十八條條文修正草案」、委員黃偉哲等20人擬具「性別工作平等法第三十八條及第三十八條之一條文修正草案」、委員陳淑慧等21人、委員陳歐珀等19人分別擬具「性別工作平等法第三十八條、第三十八條之一及第四十條條文修正草案」、本院委員何欣純等17人、委員林鴻池等25人、委員江惠貞等18人分別擬具「性別工作平等法第三條條文修正草案」等8案。\n七、審查人民請願案1案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 59760, + "chair": "徐少萍", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-06", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第6次全體委員會議", + "summary": "一、審查中華民國103年度中央政府總預算案附屬單位預算有關行政院環境保護署主管特別收入基金(環境保護基金)及信託基金(資源回收管理基金─信託基金部分、清潔人員執行職務死亡濟助基金)等預算案(預算詢答)。\n二、邀請行政院環境保護署魏署長國彥、衛生福利部、經濟部、行政院農業委員會等派員就「行政院環境保護署近期召開土壤污染監測標準公聽會擬鬆綁標準」列席報告,並備質詢。\n三、審查本院委員林佳龍等21人、委員趙天麟等19人分別擬具「空氣污染防制法第十二條條文修正草案」、委員陳其邁等19人擬具「空氣污染防制法第十六條及第十九條之一條文修正草案」、委員劉建國等21人擬具「空氣污染防制法第十二條及第十四條條文修正草案」、委員李應元等19人擬具「空氣污染防制法第十七條條文修正草案」、委員葉宜津等17人擬具「空氣污染防制法第四十條條文修正草案」、委員許忠信等21人擬具「空氣污染防制法第五十六條條文修正草案」等7案。\n四、審查本院委員王育敏等41人、委員李昆澤等21人、委員丁守中等20人、委員趙天麟等20人、委員葉津鈴等17人分別擬具「水污染防治法部分條文修正草案」、委員林淑芬等17人擬具「水污染防治法第十條條文修正草案」、委員田秋堇等16人擬具「水污染防治法第十六條、第二十二條及第三十四條條文修正草案」、民進黨黨團擬具「水污染防治法第三十四條之一、第三十七條及第三十九條條文修正草案」、委員黃昭順等40人擬具「水污染防治法第三十五條及第六十六條之一條文修正草案」、委員羅淑蕾等17人、委員李俊俋等22人、委員楊曜等20人、委員陳根德等19人、委員許忠信等21人、委員楊麗環等50人分別擬具「水污染防治法第四十條條文修正草案」、委員蔣乃辛等26人擬具「水污染防治法第二十七條之一及第四十條條文修正草案」、委員江惠貞等19人擬具「水污染防治法第三十四條及第三十六條條文修正草案」等17案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 59607, + "chair": "劉建國", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59620, + "chair": "劉建國", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59644, + "chair": "劉建國", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59700, + "chair": "劉建國", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-05", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第5次全體委員會議(議程更新)", + "summary": "一、審查中華民國103年度中央政府總預算案附屬單位預算有關行政院勞工委員會主管勞工保險局營業基金預算案及非營業基金(特別收入基金—就業安定基金)、信託基金(勞工退休基金《舊制》)、勞工退休基金《新制》、積欠工資墊償基金等預算案(預算詢答)。\n二、審查本院委員陳超明等23人擬具「勞工保險條例第二十條、第三十一條及第三十二條條文修正草案」、委員葉宜津等23人擬具「勞工保險條例部分條文修正草案」、委員何欣純等18人擬具「勞工保險條例第二十條及第三十二條條文修正草案」、委員蔡其昌等22人擬具「勞工保險條例第三十一條及第三十二條條文修正草案」、委員趙天麟等23人、委員劉建國等24人分別擬具「勞工保險條例第三十二條條文修正草案」等6案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59602, + "chair": "劉建國", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59621, + "chair": "劉建國", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59643, + "chair": "劉建國", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-04", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第4次全體委員會議", + "summary": "一、邀請衛生福利部邱部長文達、經濟部、法務部、行政院農業委員會、行政院環境保護署、行政院消費者保護處等派員就「近期重大食品安全事件之稽查及後續處辦情形」列席報告,並備質詢。\n二、併案審查本院委員魏明谷等24人、委員林淑芬等19人分別擬具「油症受害者救濟法草案」等2案。\n三、審查行政院函請審議「傳染病防治法第二條及第二十三條條文修正草案」及本院委員蘇震清等19人擬具「傳染病防治法第三十條條文修正草案」、委員劉建國等18人擬具「傳染病防治法第五十一條條文修正草案」、委員李俊俋等21人擬具「傳染病防治法第六條條文修正草案」、委員江惠貞等21人、委員李桐豪等27人分別擬具「傳染病防治法第二條條文修正草案」等6案。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59601, + "chair": "劉建國", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-03", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第3次全體委員會議", + "summary": "邀請衛生福利部邱部長文達報告業務概況(含本院委員會會議通過臨時提案之辦理情形)及立法計畫,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59406, + "chair": "徐少萍", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-02", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第2次全體委員會議", + "summary": "邀請勞動部潘部長世偉報告業務概況(含第一會期至第四會期委員會會議通過臨時提案之辦理情形)及立法計畫,並備質詢。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59401, + "chair": "劉建國", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-SWE-01", + "name": "立法院第8屆第5會期社會福利及衛生環境委員會第1次全體委員會議", + "summary": "選舉第8屆第5會期本會召集委員。", + "committee": ["SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59351, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61828, + "chair": "徐少萍", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "10:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-19", + "name": "第8屆第5會期第19次會議", + "summary": "審定本院第8屆第5會期第2次臨時會第3次會議議事日程", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 19, + "dates": [{ + "calendar_id": 63442, + "chair": "吳育昇", + "date": "2014-08-05", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-18", + "name": "第8屆第5會期第18次會議", + "summary": "審定本院第8屆第5會期第1次臨時會第5次會議議事日程\n\n註:議程草案另行分送", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 18, + "dates": [{ + "calendar_id": 63201, + "chair": "吳育昇", + "date": "2014-06-27", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-17", + "name": "第8屆第5會期第17次會議", + "summary": "審定本院第8屆第5會期第1次臨時會第4次會議議事日程", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 17, + "dates": [{ + "calendar_id": 63161, + "chair": "吳育昇", + "date": "2014-06-24", + "time_start": "12:00:00", + "time_end": "14:00:00" + }, { + "calendar_id": 63181, + "chair": "吳育昇", + "date": "2014-06-26", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-16", + "name": "第8屆第5會期第16次會議", + "summary": "審定本院第8屆第5會期第1次臨時會第3次會議議事日程", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 16, + "dates": [{ + "calendar_id": 63141, + "chair": "吳育昇", + "date": "2014-06-23", + "time_start": "12:00:00", + "time_end": "13:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-15", + "name": "第8屆第5會期第15次會議", + "summary": "一、審定本院第8屆第5會期第1次臨時會第3次會議議事日程\n二、審定本院第8屆第5會期第1次臨時會第2次全院委員會議事日程", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 63101, + "chair": "吳秉叡", + "date": "2014-06-20", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-14", + "name": "第8屆第5會期第14次會議", + "summary": "一、審定本院第8屆第5會期第1次臨時會第2次會議議事日程(暫訂)\n二、審定本院第8屆第5會期第1次臨時會第1次全院委員會議事日程(暫訂)\n\n註:開會時間:103年6月13日(星期五)下午\n  (於本院第1次臨時會第1次會議散會後隨即召開)", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 63042, + "chair": "吳育昇", + "date": "2014-06-13", + "time_start": "15:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-13", + "name": "第8屆第5會期第13次會議", + "summary": "審定本院第8屆第5會期第1次臨時會第1次會議議事日程", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 63022, + "chair": "吳育昇", + "date": "2014-06-13", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-12", + "name": "第8屆第5會期第12次會議", + "summary": "審定本院第8屆第5會期第12次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 61662, + "chair": "吳育昇", + "date": "2014-05-27", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-11", + "name": "第8屆第5會期第11次會議", + "summary": "審定本院第8屆第5會期第11次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 61481, + "chair": "吳秉叡", + "date": "2014-05-20", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-10", + "name": "第8屆第5會期第10次會議", + "summary": "審定本院第8屆第5會期第10次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 61300, + "chair": "吳育昇", + "date": "2014-05-13", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-09", + "name": "第8屆第5會期第9次會議", + "summary": "審定本院第8屆第5會期第9次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 61143, + "chair": "吳秉叡", + "date": "2014-05-06", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-08", + "name": "第8屆第5會期程序委員會第8次會", + "summary": "事日程及", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 61243, + "chair": "吳育昇", + "date": "2014-04-29", + "time_start": "12:00:00", + "time_end": "14:00:00" + }, { + "calendar_id": 60960, + "chair": "吳育昇", + "date": "2014-04-29", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-07", + "name": "第8屆第5會期第7次會議", + "summary": "審定本院第8屆第5會期第7次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60740, + "chair": "吳秉叡", + "date": "2014-04-22", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-06", + "name": "第8屆第5會期第6次會議", + "summary": "審定本院第8屆第5會期第6次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 59860, + "chair": "吳秉叡", + "date": "2014-03-25", + "time_start": "12:00:00", + "time_end": "14:00:00" + }, { + "calendar_id": 60461, + "chair": "吳育昇", + "date": "2014-04-15", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-05", + "name": "第8屆第5會期第5次會議", + "summary": "審定本院第8屆第5會期第5次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59701, + "chair": "吳育昇", + "date": "2014-03-18", + "time_start": "12:00:00", + "time_end": "13:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-04", + "name": "第8屆第5會期第4次會議", + "summary": "一、選舉第8屆第5會期本會召集委員\n二、審定本院第8屆第5會期第4次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59523, + "chair": null, + "date": "2014-03-11", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-03", + "name": "第8屆第5會期第3次會議", + "summary": "審定本院第8屆第5會期第3次會議議事日程及人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59340, + "chair": "吳育昇", + "date": "2014-03-04", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-02", + "name": "第8屆第5會期第2次會議", + "summary": "審定本院第8屆第5會期第2次會議議事日程及人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59260, + "chair": "陳其邁", + "date": "2014-02-25", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-PRO-01", + "name": "第8屆第5會期第1次會議", + "summary": "審定本院第8屆第5會期第1次會議議事日程及人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59220, + "chair": "吳育昇", + "date": "2014-02-18", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-IAD-SWE-01", + "name": "立法院第8屆第5會期司法及法制、內政、社會福利及衛生環境委員會第1次聯席會議", + "summary": "併案審查(一)行政院函請審議「家庭暴力防治法部分條文修正草案」、(二)委員趙天麟等23人擬具「家庭暴力防治法第五十條條文修正草案」、(三)委員李貴敏等28人擬具「家庭暴力防治法增訂第三十六條之一及第三十六條之二條文草案」、(四)委員李俊俋等18人擬具「家庭暴力防治法第十六條條文修正草案」、(五)委員蔣乃辛等24人擬具「家庭暴力防治法第八條及第十四條條文修正草案」、(六)委員孫大千等20人擬具「家庭暴力防治法部分條文修正草案」、(七)委員蔣乃辛等27人擬具「家庭暴力防治法第三十六條條文修正草案」、(八)委員馬文君等24人擬具「家庭暴力防治法第十四條條文修正草案」、(九)委員吳宜臻等24人擬具「家庭暴力防治法部分條文修正草案」、(十)委員王育敏等30人擬具「家庭暴力防治法部分條文修正草案」、(十一)委員蔡其昌等21人擬具「家庭暴力防治法第三十六條條文修正草案」、(十二)委員謝國樑等27人擬具「家庭暴力防治法第十四條、第三十四條及第六十一條條文修正草案」、(十三)委員邱志偉等22人擬具「家庭暴力防治法第二十條、第三十六條及第五十條之一條文修正草案」、(十四)委員蔣乃辛等27人擬具「家庭暴力防治法增訂第五十條之一及第六十一條之一條文草案」、(十五)委員潘維剛等30人擬具「家庭暴力防治法第十九條及第三十六條條文修正草案」、(十六)委員蕭美琴等22人擬具「家庭暴力防治法第十四條條文修正草案」、(十七)委員李桐豪等27人擬具「家庭暴力防治法第四條條文修正草案」、(十八)委員李昆澤等23人擬具「家庭暴力防治法第四條及第五十條條文修正草案」、(十九)委員鄭汝芬等37人擬具「家庭暴力防治法第十五條條文修正草案」及(二十)委員鄭汝芬等23人擬具「家庭暴力防治法部分條文修正草案」案。\n(3月31日、4月2日,兩天一次會)", + "committee": ["JUD", "IAD", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60109, + "chair": "廖正井", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60110, + "chair": "廖正井", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-IAD-01", + "name": "立法院第8屆第5會期司法及法制、內政委員會第1次聯席會議", + "summary": "審查「總統咨請本院同意顏大和為最高法院檢察署檢察總長」案。", + "committee": ["JUD", "IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60562, + "chair": "廖正井", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-EDU-01", + "name": "立法院第8屆第5會期司法及法制、教育及文化委員會第1次聯席會議", + "summary": "併案審查(一)行政院函請審議「核能安全委員會組織法草案」案及(二)委員田秋堇等21人擬具「核能管制委員會組織法草案」案。", + "committee": ["JUD", "EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60771, + "chair": "呂學樟", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-ECO-04", + "name": "立法院第8屆第5會期司法及法制、經濟委員會第4次聯席會議", + "summary": "審查委員謝國樑等17人擬具「企業賄賂防制法草案」案。", + "committee": ["JUD", "ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 61921, + "chair": "廖正井", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-ECO-03", + "name": "立法院第8屆第5會期司法及法制、經濟委員會第3次聯席會議", + "summary": "繼續併案審查(一)行政院函請審議「農田水利會組織通則修正草案」、(二)委員劉櫂豪等23人擬具「農田水利會組織通則第十九條之一條文修正草案」及(三)委員黃偉哲等18人擬具「農田水利會組織通則第十五條之一、第十七條及第十九條之一條文修正草案」案。", + "committee": ["JUD", "ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 61523, + "chair": "廖正井", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-ECO-02", + "name": "立法院第8屆第5會期司法及法制、經濟委員會第2次聯席會議議事日程", + "summary": "併案審查(一)司法院、行政院函請審議「智慧財產案件審理法第四條、第十九條及第二十三條條文修正草案」、(二)委員呂學樟等36人擬具「智慧財產案件審理法增訂第二十二條之一條文草案」及(三)委員李貴敏等38人擬具「智慧財產案件審理法第二十三條及第三十一條條文修正草案」案。", + "committee": ["JUD", "ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 60209, + "chair": "呂學樟", + "date": "2014-04-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60340, + "chair": "呂學樟", + "date": "2014-04-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-ECO-01", + "name": "立法院第8屆第5會期司法及法制、經濟委員會第1次聯席會議", + "summary": "併案審查(一)行政院函請審議「農田水利會組織通則修正草案」、(二)委員劉櫂豪等23人擬具「農田水利會組織通則第十九條之一條文修正草案」及(三)委員黃偉哲等18人擬具「農田水利會組織通則第十五條之一、第十七條及第十九條之一條文修正草案」案。", + "committee": ["JUD", "ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59383, + "chair": "廖正井", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59424, + "chair": "廖正井", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59384, + "chair": "廖正井", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59423, + "chair": "廖正井", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-19", + "name": "立法院第8屆第5會期司法及法制委員會第19次全體委員會議", + "summary": "一、處理中華民國103年度中央政府總預算案關於考試院及所屬預算凍結項目共7案。\n二、處理中華民國103年度中央政府總預算案關於行政院人事行政總處及所屬預算凍結項目共4案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 19, + "dates": [{ + "calendar_id": 61920, + "chair": "廖正井", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61748, + "chair": "廖正井", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-18", + "name": "立法院第8屆第5會期司法及法制委員會第18次全體委員會議", + "summary": "103年5月26日(星期一)\n一、併案審查(一)司法院函請審議「行政訴訟法部分條文修正草案」、(二)委員黃偉哲等26人擬具「行政訴訟法第二百七十三條條文修正草案」、(三)委員黃偉哲等24人擬具「行政訴訟法增訂第一百三十五條之一條文草案」及(四)委員李俊俋等16人擬具「行政訴訟法第七十三條條文修正草案」案。\n二、審查司法院函請審議「行政訴訟法施行法增訂部分條文草案」案。\n103年5月28日(星期三)\n三、處理中華民國103年度中央政府總預算案關於司法院及所屬預算凍結及專案報告項目共31案。(本案於立法院第8屆第5會期第11次會議未經復議,始予審查)\n四、併案審查(一)委員潘孟安等17人擬具「法律扶助法第十六條條文修正草案」、(二)委員趙天麟等29人擬具「法律扶助法第三條及第十四條條文修正草案」、(三)委員潘孟安等21人擬具「法律扶助法第十六條條文修正草案」、(四)委員蔣乃辛等25人擬具「法律扶助法第三條及第十四條條文修正草案」、(五)委員李昆澤等22人擬具「法律扶助法第十四條條文修正草案」、(六)委員尤美女等29人擬具「法律扶助法部分條文修正草案」及(七)委員楊玉欣等29人擬具「法律扶助法第三條及第十四條條文修正草案」案。\n(5月26日、28日兩天一次會)", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 18, + "dates": [{ + "calendar_id": 61743, + "chair": "廖正井", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61781, + "chair": "廖正井", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61745, + "chair": "廖正井", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61780, + "chair": "廖正井", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61980, + "chair": "廖正井", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-17", + "name": "立法院第8屆第5會期司法及法制委員會第17次全體委員會議", + "summary": "併案審查(一)委員廖正井等49人擬具「外役監條例第四條、第九條及第十四條條文修正草案」、(二)委員黃偉哲等17人擬具「外役監條例第四條條文修正草案」、(三)委員邱志偉等18人擬具「外役監條例第四條條文修正草案」及(四)委員邱志偉等17人擬具「外役監條例第四條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 17, + "dates": [{ + "calendar_id": 61524, + "chair": "廖正井", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-16", + "name": "立法院第8屆第5會期司法及法制委員會第16次全體委員會議", + "summary": "一、併案審查(一)委員廖正井等34人擬具「刑事訴訟法增訂第一百十九條之一條文草案」及(二)委員薛凌等26人擬具「刑事訴訟法第一百十一條及第一百十九條條文修正草案」案。\n二、審查委員廖正井等32人擬具「刑事訴訟法施行法增訂第七條之七條文草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 16, + "dates": [{ + "calendar_id": 61536, + "chair": "廖正井", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61522, + "chair": "廖正井", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-15", + "name": "立法院第8屆第5會期司法及法制委員會第15次全體委員會議", + "summary": "一、邀請行政院人事行政總處人事長列席報告業務概況,並備質詢。\n二、審查行政院函請審議廢止(一)「行政院人事行政局組織條例」、(二)「公務人員住宅及福利委員會組織條例」、(三)「公務人力發展中心組織條例」及(四)「行政院人事行政局地方行政研習中心組織條例」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 61343, + "chair": "呂學樟", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61420, + "chair": "呂學樟", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-14", + "name": "立法院第8屆第5會期司法及法制委員會第14次全體委員會議", + "summary": "一、繼續併案審查(一)行政院函請審議「個人資料保護法部分條文修正草案」、(二)委員尤美女等21人擬具「個人資料保護法第六條條文修正草案」、(三)委員吳宜臻等23人擬具「個人資料保護法部分條文修正草案」、(四)委員李貴敏等28人擬具「個人資料保護法部分條文修正草案」、(五)委員蔡其昌等19人擬具「個人資料保護法第二十條條文修正草案」及(六)委員李桐豪等20人擬具「個人資料保護法第十一條條文修正草案」案。\n二、審查委員賴士葆等19人擬具「電腦處理個人資料保護法第三條條文修正草案對照表」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 61197, + "chair": "呂學樟", + "date": "2014-05-08", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61202, + "chair": "呂學樟", + "date": "2014-05-08", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-13", + "name": "立法院第8屆第5會期司法及法制委員會第13次全體委員會議", + "summary": "繼續併案審查(一)司法院、行政院函請審議「法院組織法部分條文修正草案」、(二)委員尤美女等23人擬具「法院組織法部分條文修正草案」、(三)委員李俊俋等21人擬具「法院組織法第九十九條條文修正草案」、(四)委員謝國樑等22人擬具「法院組織法部分條文修正草案」、(五)委員鄭天財等31人擬具「法院組織法第二十三條、第三十九條及第五十三條條文修正草案」、(六)本院台灣團結聯盟黨團擬具「法院組織法第九十八條及第九十九條條文修正草案」及(七)委員吳宜臻等18人擬具「法院組織法部分條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 61196, + "chair": "呂學樟", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61198, + "chair": "呂學樟", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-12", + "name": "立法院第8屆第5會期司法及法制委員會第12次全體委員會議", + "summary": "繼續併案審查(一)行政院函請審議「羈押法修正草案」、(二)委員尤美女等33人擬具「羈押法修正草案」及(三)委員高志鵬等23人擬具「羈押法第十二條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 61022, + "chair": "廖正井", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61028, + "chair": "廖正井", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-11", + "name": "立法院第8屆第5會期司法及法制委員會第11次全體委員會議", + "summary": "繼續併案審查(一)行政院、司法院函請審議「中華民國刑法部分條文修正草案」、(二)委員丁守中等31人擬具「中華民國刑法第三百四十九條條文修正草案」、(三)委員黃偉哲等17人擬具「中華民國刑法第三百三十九條條文修正草案」、(四)委員李昆澤等23人擬具「中華民國刑法第三百四十四條及第三百四十四條之一條文修正草案」、(五)委員蔣乃辛等27人擬具「中華民國刑法第三百四十四條及第三百四十四條之一條文修正草案」、(六)委員馬文君等20人擬具「中華民國刑法第二百八十五條條文修正草案」、(七)委員蔣乃辛等21人擬具「中華民國刑法部分條文修正草案」、(八)委員黃偉哲等25人擬具「中華民國刑法第二百五十一條條文修正草案」、(九)委員丁守中等21人擬具「中華民國刑法第五條、第三百三十九條及第三百四十一條條文修正草案」、(十)委員謝國樑等21人擬具「中華民國刑法第二百五十一條及第三百三十九條之四條文修正草案」、(十一)委員蘇震清等20人擬具「中華民國刑法第二百五十一條條文修正草案」、(十二)委員潘維剛等24人擬具「中華民國刑法第三百四十九條條文修正草案」、(十三)委員邱志偉等19人擬具「中華民國刑法第三百四十四條條文修正草案」、(十四)委員邱志偉等19人擬具「中華民國刑法部分條文修正草案」及(十五) 委員徐欣瑩等63人擬具「中華民國刑法第三百四十四條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 61020, + "chair": "廖正井", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-10", + "name": "立法院第8屆第5會期司法及法制委員會第10次全體委員會議", + "summary": "併案審查(一)委員賴士葆等16人擬具「強制執行法第一條條文修正草案」案、(二)委員賴士葆等19人擬具「強制執行法第八十一條條文修正草案」案、(三)委員蕭美琴等18人擬具「強制執行法第五十三條及第一百二十二條條文修正草案」案、(四)委員陳亭妃等22人擬具「強制執行法部分條文修正草案」案及(五)委員丁守中等28人擬具「強制執行法第七十七條及第八十一條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 60772, + "chair": "呂學樟", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-09", + "name": "立法院第8屆第5會期司法及法制委員會第9次全體委員會議", + "summary": "(上午9時至11時)\n一、審查委員呂學樟等23人擬具「刑事妥速審判法第五條及第七條條文修正草案」案。\n(上午11時至12時、下午2時30分至5時30分)\n二、繼續審查行政院函請審議「中華民國刑法第三百四十七條條文修正草案」案。\n三、繼續併案審查(一)委員陳根德等16人擬具「中華民國刑法第一百三十一條條文修正草案」及(二)委員蔡正元等19人擬具「中華民國刑法第一百三十一條條文修正草案」案。\n四、繼續併案審查(一)委員蔡正元等16人擬具「貪污治罪條例第六條條文修正草案」及(二)委員陳根德等20人擬具「貪污治罪條例第六條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 60770, + "chair": "呂學樟", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60901, + "chair": "呂學樟", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-08", + "name": "立法院第8屆第5會期司法及法制委員會第8次全體委員會議", + "summary": "併案審查(一)委員李貴敏等26人擬具「證人保護法第二條條文修正草案」、(二)委員吳育昇等21人擬具「證人保護法第十四條條文修正草案」及(三)委員廖正井等22人擬具「證人保護法第二條及第二十一條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 60502, + "chair": "廖正井", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-07", + "name": "立法院第8屆第5會期司法及法制委員會第7次全體委員會議", + "summary": "併案審查(一)委員李應元等20人擬具「刑事訴訟法第二百五十三條之二及第四百五十五條之二條文修正草案」、(二)委員廖正井等24人擬具「刑事訴訟法第二百五十三條之二條文修正草案」及(三)委員廖正井等26人擬具「刑事訴訟法第三百七十條及第三百八十七條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60501, + "chair": "廖正井", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-06", + "name": "立法院第8屆第5會期司法及法制委員會第6次全體委員會議", + "summary": "一、審查行政院函請審議「中華民國刑法第三百四十七條條文修正草案」案。\n二、併案審查(一)委員陳根德等16人擬具「中華民國刑法第一百三十一條條文修正草案」及(二)委員蔡正元等19人擬具「中華民國刑法第一百三十一條條文修正草案」案。\n三、併案審查(一)委員蔡正元等16人擬具「貪污治罪條例第六條條文修正草案」及(二)委員陳根德等20人擬具「貪污治罪條例第六條條文修正草案」案。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 59922, + "chair": "呂學樟", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60208, + "chair": "呂學樟", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-05", + "name": "立法院第8屆第5會期司法及法制委員會第5次全體委員會議", + "summary": "邀請行政院人事行政總處人事長列席報告業務概況及立法計畫,並備質詢。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59742, + "chair": "廖正井", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59763, + "chair": "廖正井", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59921, + "chair": "廖正井", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60108, + "chair": "廖正井", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-04", + "name": "立法院第8屆第5會期司法及法制委員會第4次全體委員會議", + "summary": "一、邀請法務部部長率所屬單位主管列席報告業務概況及立法計畫,並備質詢。\n二、審查中華民國103年度中央政府總預算案附屬單位預算非營業部分關於法務部主管「法務部矯正機關作業基金」收支部分。\n三、審查法務部函送財團法人臺灣更生保護會、財團法人福建更生保護會及財團法人犯罪被害人保護協會103年度預算書案。\n(3月17日、19日兩天一次會)", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59740, + "chair": "廖正井", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59765, + "chair": "廖正井", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59741, + "chair": "廖正井", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59764, + "chair": "廖正井", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-03", + "name": "立法院第8屆第5會期司法及法制委員會第3次全體委員會議", + "summary": "繼續併案審查(一)司法院、行政院函請審議「智慧財產法院組織法部分條文修正草案」、(二)委員李貴敏等40人擬具「智慧財產法院組織法第三條條文修正草案」及(三)委員呂學樟等22人擬具「智慧財產法院組織法第十二條條文修正草案」案。(星期三、四兩天一次會)", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59558, + "chair": "呂學樟", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59565, + "chair": "呂學樟", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59605, + "chair": "呂學樟", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59559, + "chair": "呂學樟", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59566, + "chair": "呂學樟", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59604, + "chair": "呂學樟", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-02", + "name": "立法院第8屆第5會期司法及法制委員會第2次全體委員會議", + "summary": "邀請司法院秘書長列席說明立法計畫。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59581, + "chair": "呂學樟", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59606, + "chair": "呂學樟", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59557, + "chair": "呂學樟", + "date": "2014-03-11", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59923, + "chair": "呂學樟", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-JUD-01", + "name": "立法院第8屆第5會期司法及法制委員會第1次全體委員會議", + "summary": "選舉第8屆第5會期本會召集委員。", + "committee": ["JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59322, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-FND-ECO-FIN-EDU-TRA-JUD-SWE-05", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第5次聯席會議議事日程:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。\n(本次會議僅處理議事錄,不進行詢答)", + "committee": ["IAD", "FND", "ECO", "FIN", "EDU", "TRA", "JUD", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 60040, + "chair": "陳其邁", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "10:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-FND-ECO-FIN-EDU-TRA-JUD-SWE-03", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第3次聯席會議:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。(必要時延長開會時間)", + "committee": ["IAD", "FND", "ECO", "FIN", "EDU", "TRA", "JUD", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 60060, + "chair": "張慶忠", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-FND-ECO-FIN-EDU-TRA-JUD-SWE-02", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第2次聯席會議:", + "summary": "繼續審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["IAD", "FND", "ECO", "FIN", "EDU", "TRA", "JUD", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 60132, + "chair": "張慶忠", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60164, + "chair": "張慶忠", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60200, + "chair": "張慶忠", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-FND-ECO-FIN-EDU-TRA-JUD-SWE-01", + "name": "立法院第8屆第5會期內政、外交及國防、經濟、財政、教育及文化、交通、司法及法制、社會福利及衛生環境委員會第1次聯席會議(重行審查):", + "summary": "審查行政院函,為該院大陸委員會授權財團法人海峽交流基金會與大陸海峽兩岸關係協會簽署之「海峽兩岸服務貿易協議」一案,業已核定,請查照案(含協議本文、附件一服務貿易特定承諾表、附件二關於服務提供者的具體規定)。", + "committee": ["IAD", "FND", "ECO", "FIN", "EDU", "TRA", "JUD", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60131, + "chair": "張慶忠", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60163, + "chair": "張慶忠", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-26", + "name": "立法院第8屆第5會期內政委員會第26次全體委員會議:", + "summary": "一、審查行政院函請審議「工業團體法部分條文修正草案」案。\n二、審查本院委員楊瓊瓔等21人擬具「工業團體法第9條條文修正草案」案。\n三、審查本院委員丁守中等19人擬具「工業團體法第13條條文修正草案」案。\n四、審查行政院函請審議「商業團體法部分條文修正草案」案。\n五、審查本院委員楊瓊瓔等21人擬具「商業團體法第9條及第74條之1條文修正草案」案。\n六、審查本院委員陳淑慧等36人擬具「教育會法部分條文修正草案」案。\n七、審查行政院函請審議「教育會法部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 26, + "dates": [{ + "calendar_id": 61841, + "chair": "張慶忠", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-25", + "name": "立法院第8屆第5會期內政委員會第25次全體委員會議:", + "summary": "一、邀請行政院海岸巡防署署長王進旺率同所屬列席報告業務概況,並備質詢。\n二、103年度中央政府總預算有關行政院海岸巡防署預算報告案1案。\n三、處理103年度中央政府總預算有關行政院海岸巡防署預算凍結項目報告案計8案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 25, + "dates": [{ + "calendar_id": 61842, + "chair": "張慶忠", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61902, + "chair": "張慶忠", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61808, + "chair": "張慶忠", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-24", + "name": "立法院第8屆第5會期內政委員會第24次全體委員會議:", + "summary": "處理103年度中央政府總預算有關內政部及所屬預算凍結項目報告案計51案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 24, + "dates": [{ + "calendar_id": 61844, + "chair": "張慶忠", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61800, + "chair": "張慶忠", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61802, + "chair": "張慶忠", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61806, + "chair": "張慶忠", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-23", + "name": "立法院第8屆第5會期內政委員會第23次全體委員會議:", + "summary": "處理103年度中央政府總預算有關內政部及所屬預算凍結項目報告案計30案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 23, + "dates": [{ + "calendar_id": 61845, + "chair": "張慶忠", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61805, + "chair": "張慶忠", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61742, + "chair": "張慶忠", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-22", + "name": "立法院第8屆第5會期內政委員會第22次全體委員會議:", + "summary": "一、審查委員林滄敏等19人擬具「營造業法第3條及第61條條文修正草案」案。\n二、審查本院委員陳其邁等17人擬具「營造業法第3條及第61條條文修正草案」案。\n三、審查本院委員陳超明等28人擬具「營造業法第7條條文修正草案」案。\n四、審查本院委員吳秉叡等17人擬具「營造業法第17條條文修正草案」案。\n五、審查本院委員蘇清泉等19人擬具「營造業法第30條及第62條條文修正草案」案。\n六、審查本院委員吳秉叡等17人擬具「營造業法第55條條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 22, + "dates": [{ + "calendar_id": 61563, + "chair": "陳其邁", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61683, + "chair": "陳其邁", + "date": "2014-05-22", + "time_start": "11:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61682, + "chair": "陳其邁", + "date": "2014-05-22", + "time_start": "11:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61681, + "chair": "陳其邁", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "11:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-21", + "name": "立法院第8屆第5會期內政委員會第21次全體委員會議:", + "summary": "一、邀請行政院秘書長李四川就「內閣成員擁有他國永久居留權情形」進行專題報告並備質詢。\n二、審查本院委員潘孟安等18人擬具「國籍法第二十條條文修正草案」案。\n三、繼續審查本院委員李俊俋等16人擬具「公職人員選舉罷免法第一條及第一百三十三條條文修正草案」案。\n四、繼續審查本院委員丁守中等17人擬具「公職人員選舉罷免法第十四條條文修正草案」案。\n五、繼續審查本院委員陳其邁等22人擬具「公職人員選舉罷免法部分條文修正草案」案。\n六、繼續審查本院委員吳育昇等29人擬具「公職人員選舉罷免法第二十四條及第二十七條條文修正草案」案。\n七、繼續審查本院委員蕭美琴等19人擬具「公職人員選舉罷免法第二十四條條文修正草案」案。\n八、繼續審查本院委員陳亭妃等19人擬具「公職人員選舉罷免法第三十八條條文修正草案」案。\n九、繼續審查本院親民黨黨團擬具「公職人員選舉罷免法第五十三條條文修正草案」案。\n十、繼續審查本院委員邱議瑩等23人擬具「公職人員選舉罷免法第五十七條條文修正草案」案。\n十一、繼續審查本院委員陳其邁等23人擬具「公職人員選舉罷免法第七十五條條文修正草案」案。\n十二、審查本院委員李俊俋等21人擬具「公職人員選舉罷免法第五條、第八十六條及第一百一十條條文修正草案」案。\n十三、審查本院委員薛凌等22人擬具「公職人員選舉罷免法第二十四條條文修正草案」案。\n十四、審查本院委員陳超明等23人擬具「公職人員選舉罷免法第二十六條條文修正草案」案。\n十五、審查本院委員薛凌等21人擬具「公職人員選舉罷免法第一百十二條條文修正草案」案。\n十六、審查本院委員陳其邁等22人擬具「公職人員選舉罷免法增訂部分條文草案」案。\n十七、繼續審查本院委員李俊俋等16人擬具「總統副總統選舉罷免法第一條及第一百十六條條文修正草案」案。\n十八、審查本院委員丁守中等21人擬具「總統副總統選舉罷免法第十一條條文修正草案」案。\n十九、審查行政院函請審議「總統副總統選舉罷免法部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 21, + "dates": [{ + "calendar_id": 61533, + "chair": "陳其邁", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61542, + "chair": "陳其邁", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61562, + "chair": "陳其邁", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-20", + "name": "立法院第8屆第5會期內政委員會第20次全體委員會議:", + "summary": "邀請內政部部長陳威仁就「澎湖南方四島擬劃設為國家公園」進行專題報告並備質詢,並請行政院農業委員會、交通部、行政院海岸巡防署、國家發展委員會、行政院環境保護署列席備詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 20, + "dates": [{ + "calendar_id": 61463, + "chair": "張慶忠", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-19", + "name": "立法院第8屆第5會期內政委員會第19次全體委員會議:", + "summary": "邀請內政部部長陳威仁就「利用網路平台違反『政治獻金法』及『集會遊行法』等違法行為」進行專題報告並備質詢;另請財政部、金融監督管理委員會、國家通訊傳播委員會、監察院、衛生福利部列席備詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 19, + "dates": [{ + "calendar_id": 61441, + "chair": "張慶忠", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-18", + "name": "立法院第8屆第5會期內政委員會第18次全體委員會議:", + "summary": "一、審查本院委員李應元等16人擬具「臺灣地區與大陸地區人民關係條例刪除第二十六條條文草案」案。\n二、審查本院委員李俊俋等21人擬具「臺灣地區與大陸地區人民關係條例第二十六條條文修正草案」案。\n三、繼續審查本院委員陳其邁等22人擬具「臺灣地區與大陸地區人民關係條例第九十五條之三條文修正草案」案。\n四、繼續審查本院委員李俊俋等17人擬具「臺灣地區與大陸地區人民關係條例刪除第九十五條之三條文草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 18, + "dates": [{ + "calendar_id": 61211, + "chair": "陳其邁", + "date": "2014-05-08", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-17", + "name": "立法院第8屆第5會期內政委員會第17次全體委員會議:", + "summary": "邀請原住民族委員會主任委員林江義、財團法人原住民族文化事業基金會董事長周惠民率同所屬列席報告業務概況,並備質詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 17, + "dates": [{ + "calendar_id": 61210, + "chair": "陳其邁", + "date": "2014-05-07", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61215, + "chair": "陳其邁", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61260, + "chair": "陳其邁", + "date": "2014-05-07", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-16", + "name": "立法院第8屆第5會期內政委員會第16次全體委員會議:", + "summary": "邀請行政院大陸委員會主任委員王郁琦、財團法人海峽交流基金會董事長林中森率同所屬列席報告業務概況及第四會期本會各次會議臨時提案辦理情形,並備質詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 16, + "dates": [{ + "calendar_id": 61204, + "chair": "陳其邁", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-15", + "name": "立法院第8屆第5會期內政委員會第15次全體委員會議:", + "summary": "繼續審查\n一、行政院函請審議「都市更新條例修正草案」案。\n二、本院委員林淑芬等22人擬具「都市更新條例修正草案」案。\n三、本院委員姚文智等31人擬具「都市更新條例修正草案」案。\n四、本院委員邱文彥等27人擬具「都市更新條例修正草案」案。\n五、本院委員李俊俋等23人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n六、本院委員陳亭妃等21人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n七、本院委員許添財等18人擬具「都市更新條例部分條文修正草案」案。\n八、本院委員丁守中等27人擬具「都市更新條例部分條文修正草案」案。\n九、本院委員李應元等36人擬具「都市更新條例部分條文修正草案」案。\n十、本院委員尤美女等22人擬具「都市更新條例部分條文修正草案」案。\n十一、本院委員陳其邁等24人擬具「都市更新條例部分條文修正草案」案。\n十二、本院委員張慶忠等22人擬具「都市更新條例部分條文修正草案」案。\n十三、本院委員姚文智等17人擬具「都市更新條例部分條文修正草案」案。\n十四、本院委員陳其邁等20人擬具「都市更新條例第十條條文修正草案」案。\n十五、本院委員蔡正元等16人擬具「都市更新條例第二十七條條文修正草案」案。\n十六、本院委員邱文彥等21人擬具「都市更新條例部分條文修正草案」案。\n十七、本院委員林淑芬等25人擬具「都市更新條例第二十七條條文修正草案」案。\n十八、本院委員田秋堇等23人擬具「都市更新條例部分條文修正草案」案。\n十九、本院委員姚文智等23人擬具「都市更新條例部分條文修正草案」案。\n二十、審查本院委員邱文彥等30人擬具「都市更新條例部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 61061, + "chair": "張慶忠", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-14", + "name": "立法院第8屆第5會期內政委員會第14次全體委員會議:", + "summary": "邀請行政院秘書長李四川、內政部部長陳威仁、中央選舉員會主任委員張博雅就「我國公民投票制度與實行經驗對決定重大公共議題、解決社會分歧之侷限及檢討」進行專題報告並備質詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 60920, + "chair": "陳其邁", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-13", + "name": "立法院第8屆第5會期內政委員會第13次全體委員會議", + "summary": ":邀請內政部部長陳威仁就「馬政府住宅政策失靈,導致購屋痛苦指數居高不下。居住不正義,政府如何解決?」進行專題報告並備質詢;另邀請財政部、國防部、衛生福利部、勞動部、金融監督管理委員會、國家發展委員會、中央銀行派員備詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 60860, + "chair": "陳其邁", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60922, + "chair": "陳其邁", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-12", + "name": "立法院第8屆第5會期內政委員會第12次全體委員會議", + "summary": ":討論立法院內政委員會「海峽兩岸服務貿易協議調閱專案小組」運作要點草案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 60781, + "chair": "陳其邁", + "date": "2014-04-21", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-11", + "name": "立法院第8屆第5會期內政委員會第11次全體委員會議:", + "summary": "繼續審查\n一、行政院函請審議「都市更新條例修正草案」案。\n二、本院委員林淑芬等22人擬具「都市更新條例修正草案」案。\n三、本院委員姚文智等31人擬具「都市更新條例修正草案」案。\n四、本院委員邱文彥等27人擬具「都市更新條例修正草案」案。\n五、本院委員李俊俋等23人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n六、本院委員陳亭妃等21人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n七、本院委員許添財等18人擬具「都市更新條例部分條文修正草案」案。\n八、本院委員丁守中等27人擬具「都市更新條例部分條文修正草案」案。\n九、本院委員李應元等36人擬具「都市更新條例部分條文修正草案」案。\n十、本院委員尤美女等22人擬具「都市更新條例部分條文修正草案」案。\n十一、本院委員陳其邁等24人擬具「都市更新條例部分條文修正草案」案。\n十二、本院委員張慶忠等22人擬具「都市更新條例部分條文修正草案」案。\n十三、本院委員姚文智等17人擬具「都市更新條例部分條文修正草案」案。\n十四、本院委員陳其邁等20人擬具「都市更新條例第十條條文修正草案」案。\n十五、本院委員蔡正元等16人擬具「都市更新條例第二十七條條文修正草案」案。\n十六、本院委員邱文彥等21人擬具「都市更新條例部分條文修正草案」案。\n十七、本院委員林淑芬等25人擬具「都市更新條例第二十七條條文修正草案」案。\n十八、本院委員田秋堇等23人擬具「都市更新條例部分條文修正草案」案。\n十九、本院委員姚文智等23人擬具「都市更新條例部分條文修正草案」案。\n二十、審查本院委員邱文彥等30人擬具「都市更新條例部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 60580, + "chair": "張慶忠", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60600, + "chair": "張慶忠", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60702, + "chair": "張慶忠", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61212, + "chair": "張慶忠", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-10", + "name": "立法院第8屆第5會期內政委員會第10次全體委員會議:", + "summary": "一、審查本院委員陳其邁等22人擬具「臺灣地區與大陸地區人民關係條例第九十五條之三條文修正草案」案。\n二、審查本院委員李俊俋等17人擬具「臺灣地區與大陸地區人民關係條例刪除第九十五條之三條文草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 60320, + "chair": "陳其邁", + "date": "2014-04-10", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60381, + "chair": "陳其邁", + "date": "2014-04-10", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60420, + "chair": "陳其邁", + "date": "2014-04-10", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-09", + "name": "立法院第8屆第5會期內政委員會第9次全體委員會議:", + "summary": "邀請行政院大陸委員會主任委員王郁琦、財團法人海峽交流基金會董事長林中森及經濟部常務次長卓士昭就「海峽兩岸服務貿易協議洽簽過程中,資訊公開、產業溝通、公民參與及國會監督等爭議之檢討及改進之道」進行專題報告並備質詢;另請國家發展委員會、勞動部、內政部、交通部、衛生福利部、文化部、教育部、行政院環境保護署、行政院農業委員會、國家通訊傳播委員會、金融監督管理委員會、行政院公共工程委員會、公平交易委員會、法務部、國防部、國家安全局、財政部、行政院主計總處、行政院資通安全辦公室、行政院消費者保護處、總統府人權諮詢委員會派員列席備詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 60260, + "chair": "陳其邁", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60623, + "chair": "陳其邁", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61363, + "chair": null, + "date": "2014-05-09", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61364, + "chair": null, + "date": "2014-05-13", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-08", + "name": "立法院第8屆第5會期內政委員會第8次全體委員會議:", + "summary": "一、審查行政院函請審議「公職人員選舉罷免法部分條文修正草案」案。\n二、審查行政院函請審議「政治獻金法第十二條條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 60202, + "chair": "張慶忠", + "date": "2014-04-03", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60203, + "chair": "張慶忠", + "date": "2014-04-03", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60687, + "chair": "張慶忠", + "date": "2014-04-03", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61102, + "chair": null, + "date": "2014-05-02", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 61103, + "chair": null, + "date": "2014-05-06", + "time_start": "09:00:00", + "time_end": "18:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-07", + "name": "立法院第8屆第5會期內政委員會第7次全體委員會議:", + "summary": "繼續審查\n一、行政院函請審議「都市更新條例修正草案」案。\n二、本院委員林淑芬等22人擬具「都市更新條例修正草案」案。\n三、本院委員姚文智等31人擬具「都市更新條例修正草案」案。\n四、本院委員邱文彥等27人擬具「都市更新條例修正草案」案。\n五、本院委員李俊俋等23人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n六、本院委員陳亭妃等21人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n七、本院委員許添財等18人擬具「都市更新條例部分條文修正草案」案。\n八、本院委員丁守中等27人擬具「都市更新條例部分條文修正草案」案。\n九、本院委員李應元等36人擬具「都市更新條例部分條文修正草案」案。\n十、本院委員尤美女等22人擬具「都市更新條例部分條文修正草案」案。\n十一、本院委員陳其邁等24人擬具「都市更新條例部分條文修正草案」案。\n十二、本院委員張慶忠等22人擬具「都市更新條例部分條文修正草案」案。\n十三、本院委員姚文智等17人擬具「都市更新條例部分條文修正草案」案。\n十四、本院委員陳其邁等20人擬具「都市更新條例第十條條文修正草案」案。\n十五、本院委員蔡正元等16人擬具「都市更新條例第二十七條條文修正草案」案。\n十六、本院委員邱文彥等21人擬具「都市更新條例部分條文修正草案」案。\n十七、本院委員林淑芬等25人擬具「都市更新條例第二十七條條文修正草案」案。\n十八、本院委員田秋堇等23人擬具「都市更新條例部分條文修正草案」案。\n十九、本院委員姚文智等23人擬具「都市更新條例部分條文修正草案」案。\n二十、審查本院委員邱文彥等30人擬具「都市更新條例部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60162, + "chair": "張慶忠", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60107, + "chair": "張慶忠", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60688, + "chair": "張慶忠", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-05", + "name": "立法院第8屆第5會期內政委員會第5次全體委員會議:", + "summary": "邀請行政院秘書長李四川、副秘書長陳慶財、副秘書長蕭家淇、內政部部長陳威仁、警政署署長王卓鈞、各保安警察總隊總隊長、刑事警察局局長林德華、臺北市政府警察局局長黃昇勇、臺北市政府警察局中正第一分局分局長方仰寧、國家安全局、法務部等就「3月18日至今反服貿學運活動之立法院警力維安勤務檢討」及「3月24日清晨警方於行政院強勢驅離學生導致流血衝突事件」進行專題報告並備質詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 60042, + "chair": "陳其邁", + "date": "2014-03-26", + "time_start": "10:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-04", + "name": "立法院第8屆第5會期內政委員會第4次全體委員會議:", + "summary": "繼續審查一、行政院函請審議「都市更新條例修正草案」案。二、本院委員林淑芬等22人擬具「都市更新條例修正草案」案。三、本院委員姚文智等31人擬具「都市更新條例修正草案」案。四、本院委員邱文彥等27人擬具「都市更新條例修正草案」案。五、本院委員李俊俋等23人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。六、本院委員陳亭妃等21人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。七、本院委員許添財等18人擬具「都市更新條例部分條文修正草案」案。八、本院委員丁守中等27人擬具「都市更新條例部分條文修正草案」案。九、本院委員李應元等36人擬具「都市更新條例部分條文修正草案」案。十、本院委員尤美女等22人擬具「都市更新條例部分條文修正草案」案。十一、本院委員陳其邁等24人擬具「都市更新條例部分條文修正草案」案。十二、本院委員張慶忠等22人擬具「都市更新條例部分條文修正草案」案。十三、本院委員姚文智等17人擬具「都市更新條例部分條文修正草案」案。十四、本院委員陳其邁等20人擬具「都市更新條例第十條條文修正草案」案。十五、本院委員蔡正元等16人擬具「都市更新條例第二十七條條文修正草案」案。十六、本院委員邱文彥等21人擬具「都市更新條例部分條文修正草案」案。十七、本院委員林淑芬等25人擬具「都市更新條例第二十七條條文修正草案」案。十八、本院委員田秋堇等23人擬具「都市更新條例部分條文修正草案」案。十九、本院委員姚文智等23人擬具「都市更新條例部分條文修正草案」案。二十、審查本院委員邱文彥等30人擬具「都市更新條例部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59577, + "chair": "陳其邁", + "date": "2014-03-13", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59770, + "chair": "張慶忠", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59784, + "chair": "張慶忠", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60686, + "chair": null, + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-03", + "name": "立法院第8屆第5會期內政委員會第3次全體委員會議", + "summary": "一、繼續審查:\n(一)行政院函請審議「都市更新條例修正草案」案。\n(二)本院委員林淑芬等22人擬具「都市更新條例修正草案」案。\n(三)本院委員姚文智等31人擬具「都市更新條例修正草案」案。\n(四)本院委員邱文彥等27人擬具「都市更新條例修正草案」案。\n(五)本院委員李俊俋等23人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n(六)本院委員陳亭妃等21人擬具「都市更新條例第十六條及第三十六條條文修正草案」案。\n(七)本院委員許添財等18人擬具「都市更新條例部分條文修正草案」案。\n(八)本院委員丁守中等27人擬具「都市更新條例部分條文修正草案」案。\n(九)本院委員李應元等36人擬具「都市更新條例部分條文修正草案」案。\n(十)本院委員尤美女等22人擬具「都市更新條例部分條文修正草案」案。\n(十一)本院委員陳其邁等24人擬具「都市更新條例部分條文修正草案」案。\n(十二)本院委員張慶忠等22人擬具「都市更新條例部分條文修正草案」案。\n(十三)本院委員姚文智等17人擬具「都市更新條例部分條文修正草案」案。\n(十四)本院委員陳其邁等20人擬具「都市更新條例第十條條文修正草案」案。\n(十五)本院委員蔡正元等16人擬具「都市更新條例第二十七條條文修正草案」案。\n(十六)本院委員邱文彥等21人擬具「都市更新條例部分條文修正草案」案。\n(十七)本院委員林淑芬等25人擬具「都市更新條例第二十七條條文修正草案」案。\n(十八)本院委員田秋堇等23人擬具「都市更新條例部分條文修正草案」案。\n(十九)本院委員姚文智等23人擬具「都市更新條例部分條文修正草案」案。\n二、審查本院委員邱文彥等30人擬具「都市更新條例部分條文修正草案」案。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59421, + "chair": "張慶忠", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59480, + "chair": "張慶忠", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60780, + "chair": "陳其邁", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61531, + "chair": "陳其邁", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61561, + "chair": "陳其邁", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-02", + "name": "立法院第8屆第5會期內政委員會第2次全體委員會議", + "summary": "邀請內政部部長陳威仁率同所屬列席報告業務概況,並備質詢。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59422, + "chair": "張慶忠", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59481, + "chair": "張慶忠", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "18:00:00" + }, { + "calendar_id": 60380, + "chair": "陳其邁", + "date": "2014-04-10", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60421, + "chair": "陳其邁", + "date": "2014-04-10", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61400, + "chair": "張慶忠", + "date": "2014-05-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-IAD-01", + "name": "立法院第8屆第5會期內政委員會第1次全體委員會議:", + "summary": "選舉第8屆第5會期本會召集委員。", + "committee": ["IAD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59280, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60062, + "chair": "陳其邁", + "date": "2014-03-27", + "time_start": "10:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61214, + "chair": "陳其邁", + "date": "2014-05-05", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-SWE-03", + "name": "立法院第8屆第5會期外交及國防、社會福利及衛生環境委員會第3次聯席會議", + "summary": "一、繼續審查本院委員江啟臣等26人擬具「身心障礙者權利公約施行法草案」案。\n二、繼續審查本院民進黨黨團擬具「身心障礙者權利公約施行法草案」案。\n三、審查本院委員尤美女等22人擬具「身心障礙者權 利公約施行法草案」案。\n四、審查本院委員徐少萍等18人擬具「身心障礙者權利公約施行法草案」案。\n五、審查本院委員楊玉欣等36人擬具「身心障礙者權利公約施行法草案」案。\n六、審查本院委員鄭麗君等22人擬具「身心障礙者權利公約施行法草案」案。(報告及詢答結束)", + "committee": ["FND", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 61861, + "chair": "陳鎮湘", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61747, + "chair": "陳鎮湘", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61760, + "chair": "陳鎮湘", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-SWE-02", + "name": "立法院第8屆第5會期外交及國防、社會福利及衛生環境委員會第2次聯席會議", + "summary": "一、審查本院委員江啟臣等26人擬具「身心障礙者權利公約施行法草案」案。\n二、審查本院民進黨黨團擬具「身心障礙者權利公約施行法草案」案。", + "committee": ["FND", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 61001, + "chair": "陳鎮湘", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61025, + "chair": "陳鎮湘", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-SWE-01", + "name": "立法院第8屆第5會期外交及國防、社會福利及衛生環境委員會第1次聯席會議", + "summary": "審查本院委員王育敏等28人擬具「兒童權利公約施行法草案」案。", + "committee": ["FND", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60450, + "chair": "陳鎮湘", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60460, + "chair": "陳鎮湘", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-JUD-02", + "name": "立法院第8屆第5會期外交及國防、司法及法制委員會第2次聯席會議", + "summary": "審查行政院函請審議「陸海空軍懲罰法修正草案」案。【5月19、21日二天一次會】", + "committee": ["FND", "JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 61505, + "chair": "陳鎮湘", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61506, + "chair": "陳鎮湘", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-JUD-01", + "name": "立法院第8屆第5會期外交及國防、司法及法制委員會第1次聯席會議", + "summary": "一、審查行政院函請審議「中華民國與聖克里斯多福及尼維斯間引渡條約」案。\n二、審查行政院函請審議「駐南非共和國臺北聯絡代表處與南非聯絡辦事處刑事司法互助協議」案。三、邀請國家安全局局長李翔宙、外交部部長林永樂、僑務委員會委員長陳士魁報告「南海區域安全情勢及越南平陽暴動之具體作為與有效對策」,並備質詢。", + "committee": ["FND", "JUD"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 61323, + "chair": "陳鎮湘", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61462, + "chair": "陳鎮湘", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-22", + "name": "立法院第8屆第5會期外交及國防委員會第22次全體委員會議", + "summary": "處理院會交付國軍退除役官兵輔導委員會103年度中央政府總預算決議凍結案等2案:\n一、凍結「基本行政工作維持」榮民節活動經費、文教宣慰活動及媒體聯繫作業等預算200萬元案。\n二、凍結「就養榮民給與等經費」預算101億5,157萬4,000元之五分之一案。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 22, + "dates": [{ + "calendar_id": 61746, + "chair": "陳鎮湘", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61864, + "chair": "陳鎮湘", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61900, + "chair": "陳鎮湘", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61754, + "chair": "陳鎮湘", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-FND-21", + "name": "立法院第8屆第5會期外交及國防委員會第21次全體委員會議", + "summary": "上午:處理院會交付僑務委員會103年度中央政府總\n預算決議凍結案等5案:\n一、「對外之捐助」預算凍結500萬元案。\n二、「一般行政」預算凍結30萬元案。\n三、「海外華僑文教中心服務業務」項下「設置巴黎華  僑文教服務中心計畫」預算凍結4,000萬元案。\n四、「華僑新聞資訊及傳媒服務」預算凍結五分之一案。\n五、「華僑新聞資訊及傳媒服務」中「辦理宏觀新聞資  訊服務業務」預算凍結五分之一案。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 21, + "dates": [{ + "calendar_id": 61862, + "chair": "陳鎮湘", + "date": "2014-05-28", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61863, + "chair": "陳鎮湘", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61744, + "chair": "陳鎮湘", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61759, + "chair": "陳鎮湘", + "date": "2014-05-28", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61752, + "chair": "陳鎮湘", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-FND-20", + "name": "立法院第8屆第5會期外交及國防委員會第20次全體委員會議", + "summary": "邀請國軍退除役官兵輔導委員會主任委員董翔龍報告「榮民醫療體系醫學研究成效與精進」,併請衛生福利部、國防部軍醫局派員列席,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 20, + "dates": [{ + "calendar_id": 61320, + "chair": "陳鎮湘", + "date": "2014-05-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-19", + "name": "立法院第8屆第5會期外交及國防委員會第19次全體委員會議", + "summary": "邀請國軍退除役官兵輔導委員會主任委員董翔龍報告一、「外住榮民服務照顧執行成效與榮民就養金發放現況」,並備質詢。\n二、「退輔會所屬事業機構營運績效」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 19, + "dates": [{ + "calendar_id": 61142, + "chair": "陳歐珀", + "date": "2014-05-08", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-18", + "name": "立法院第8屆第5會期外交及國防委員會第18次全體委員會議", + "summary": "邀請國家安全局局長蔡得勝、外交部部長林永樂、國防部副部長、經濟部次長、交通部次長、行政院大陸委員會副主任委員報告「中、美兩國主要政軍領導人近期出訪,對台灣邦交國及加入國際組織影響評估」,併請衛生福利部及金融監督管理委員會派員列席,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 18, + "dates": [{ + "calendar_id": 61141, + "chair": "陳歐珀", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61161, + "chair": "陳歐珀", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-17", + "name": "立法院第8屆第5會期外交及國防委員會第17次全體委員會議", + "summary": "邀請國防部部長嚴明、國家安全局局長蔡得勝、內政部次長、衛生福利部次長、交通部次長報告「國軍因應福島等級核災事故之政治中樞、軍事機關設施轉移及對我國家安全影響評估」,併請經濟部、行政院原子能委員會及台灣電力公司派員列席,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 17, + "dates": [{ + "calendar_id": 61160, + "chair": "陳歐珀", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61140, + "chair": "陳歐珀", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-16", + "name": "立法院第8屆第5會期外交及國防委員會第16次全體委員會議", + "summary": "邀請國防部副部長報告「推動募兵制有關動員戰備整備之問題檢討與策進」,併請國軍退除役官兵輔導委員會、經濟部、交通部、衛生福利部、行政院環境保護署、行政院原子能委員會、內政部消防署、內政部役政署派員列席,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 16, + "dates": [{ + "calendar_id": 61000, + "chair": "陳鎮湘", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-15", + "name": "立法院第8屆第5會期外交及國防委員會第15次全體委員會議", + "summary": "邀請外交部部長林永樂、經濟部報告「我國加入TPP其成員國對我國加入資格(中華民國Republic of China、台灣Taiwan、中華台北Chinese Taipei)及困境因應對策」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 60721, + "chair": "陳歐珀", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-14", + "name": "立法院第8屆第5會期外交及國防委員會第14次全體委員會議", + "summary": "邀請外交部部長林永樂、國防部、經濟部、衛生福利部、行政院環境保護署、行政院原子能委員會主任委員、內政部消防署、台灣電力公司董事長報告「外國政府及NGO、NPO團體針對我國核四運轉及可能核災因應對策」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 60720, + "chair": "陳歐珀", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-13", + "name": "立法院第8屆第5會期外交及國防委員會第13次全體委員會議", + "summary": "邀請國家安全局局長蔡得勝、財政部次長、經濟部次長、交通部次長、文化部次長、勞動部次長、行政院大陸委員會副主任委員、金融監督管理委員會副主任委員、行政院公共工程委員會主任委員、國家通訊傳播委員會副主任委員、內政部警政署署長、內政部入出國及移民署署長、法務部調查局局長報告「兩岸簽署服貿協議之國家安全審查機制及運作」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 60660, + "chair": "陳歐珀", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-12", + "name": "立法院第8屆第5會期外交及國防委員會第12次全體委員會議", + "summary": "一、審查本院委員林德福等22人擬具「全民防衛動員準備法第十四條條文修正草案」案。\n二、審查本院委員盧秀燕等18人擬具「全民防衛動員準備法第二十五條及第三十六條條文修正草案」案。\n三、審查本院委員盧秀燕等27人擬具「全民防衛動員準備法第三十六條條文修正草案」案。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 60449, + "chair": "陳鎮湘", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-11", + "name": "立法院第8屆第5會期外交及國防委員會第11次全體委員會議", + "summary": "一、邀請外交部部長林永樂、僑務委員會委員長陳士魁、經濟部次長、交通部次長、教育部次長報告「我國青年海外度假打工實施現況」,並備質詢。\n二、邀請外交部部長林永樂、法務部次長、行政院海岸巡防署副署長、行政院農業委員會漁業署署長報告「廣大興28號漁船案」後續處理情形,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 60225, + "chair": "陳歐珀", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-10", + "name": "立法院第8屆第5會期外交及國防委員會第10次全體委員會議", + "summary": "邀請僑務委員會委員長陳士魁報告「海外台商聯繫及服務工作現況」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 60211, + "chair": "陳歐珀", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-09", + "name": "立法院第8屆第5會期外交及國防委員會第9次全體委員會議【報告秘密,詢答(先秘密、後公開)】", + "summary": "邀請國防部部長嚴明報告「國軍戰力保存執行成效檢討與策進」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 59909, + "chair": "陳歐珀", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60089, + "chair": "陳鎮湘", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-08", + "name": "立法院第8屆第5會期外交及國防委員會第8次全體委員會議", + "summary": "邀請國軍退除役官兵輔導委員會主任委員董翔龍報告榮民體系「醫養合一」服務照顧執行現況與策進,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 59745, + "chair": "陳鎮湘", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59746, + "chair": "陳鎮湘", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59907, + "chair": "陳歐珀", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59936, + "chair": "陳歐珀", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60088, + "chair": "陳鎮湘", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-07", + "name": "立法院第8屆第5會期外交及國防委員會第7次全體委員會議", + "summary": "一、審查行政院函請審議「兵役法施行法部分條文修正草案」案。\n二、審查本院台灣團結聯盟黨團擬具「兵役法施行法第三十條條文修正草案」案。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 59662, + "chair": "陳鎮湘", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59883, + "chair": "陳鎮湘", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59908, + "chair": "陳歐珀", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59934, + "chair": "陳歐珀", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60093, + "chair": "陳鎮湘", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-06", + "name": "立法院第8屆第5會期外交及國防委員會第6次全體委員會議", + "summary": "邀請國防部部長嚴明、行政院海岸巡防署署長王進旺報告「因應平、戰時任務,國防部後備戰力及海巡署戰力整備的檢討與策進」,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 59427, + "chair": "陳歐珀", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59660, + "chair": "陳鎮湘", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-05", + "name": "立法院第8屆第5會期外交及國防委員會第5次全體委員會議", + "summary": "邀請僑務委員會委員長陳士魁報告業務概況,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59426, + "chair": "陳歐珀", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59547, + "chair": "陳歐珀", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-04", + "name": "立法院第8屆第5會期外交及國防委員會第4次全體委員會議【報告秘密,詢答(先秘密、後公開)】", + "summary": "邀請國家安全局局長蔡得勝率相關情報機關首長提出「國家情報工作暨國家安全局業務報告」,並備質詢。(3月10日及3月12日二天一次會)", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59425, + "chair": "陳歐珀", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59549, + "chair": "陳歐珀", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59556, + "chair": "陳歐珀", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59551, + "chair": "陳歐珀", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59642, + "chair": "陳歐珀", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59680, + "chair": "陳歐珀", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-03", + "name": "立法院第8屆第5會期外交及國防委員會第3次全體委員會議", + "summary": "邀請國防部部長嚴明報告業務概況,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59362, + "chair": "陳鎮湘", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-02", + "name": "立法院第8屆第5會期外交及國防委員會第2次全體委員會議", + "summary": "邀請國軍退除役官兵輔導委員會主任委員董翔龍報告業務概況,並備質詢。", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59360, + "chair": "陳鎮湘", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61501, + "chair": "陳鎮湘", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61500, + "chair": "陳鎮湘", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FND-01", + "name": "立法院第8屆第5會期外交及國防委員會第1次全體委員會議", + "summary": "選舉第8屆第5會期本會召集委員", + "committee": ["FND"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59324, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59343, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59347, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-IAD-ECO-01", + "name": "立法院第8屆第5會期財政、內政、經濟委員會第1次聯席會議", + "summary": "審查「中央政府流域綜合治理計畫第1期特別預算案」(中華民國103年度至104年度)。", + "committee": ["FIN", "IAD", "ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 61826, + "chair": "賴士葆", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-14", + "name": "立法院第8屆第5會期財政委員會第14次全體委員會議", + "summary": "處理院會交付一、審計部函送「一般行政」項下「國內旅費」預算編列情形報告案。二、審計部函送「中央政府審計」工作計畫預算編列情形報告案。三、審計部函送派員參加「國際內部稽核協會年會」情形報告案。四、審計部函送「縣市地方審計」工作計畫預算編列情形報告案。五、審計部函送「重要審核意見追蹤列管情形」專案報告案。六、行政院主計總處函為103年度中央政府總預算有關該總處單位預算及第二預備金所作13項凍結預算之決議,俟向本院財政委員會報告後始得動支乙案,檢附專案報告,請安排報告案。(5月28日及29日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 61822, + "chair": "賴士葆", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61823, + "chair": "賴士葆", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-13", + "name": "立法院第8屆第5會期財政委員會第13次全體委員會議", + "summary": "邀請財政部張部長、國家發展委員會管主任委員、交通部葉部長及內政部陳部長就「跨域加值公共建設財務規劃方案推動現況」分別報告,並備質詢。", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 61527, + "chair": "李應元", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61661, + "chair": "李應元", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-12", + "name": "立法院第8屆第5會期財政委員會第12次全體委員會議", + "summary": "邀請金融監督管理委員會曾主任委員就「金融業務開放與相對應的金融業務管理-TRF等衍生性金融商品、投資型保單與OBU」作報告,並備質詢。", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 61525, + "chair": "李應元", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-11", + "name": "立法院第8屆第5會期財政委員會第11次全體委員會議", + "summary": "一、審查行政院函請審議「菸酒管理法修正草案」案暨本院委員高志鵬等17人及委員陳歐珀等17人分別擬具「菸酒管理法第四十六條條文修正草案」案、委員廖國棟等20人、委員賴士葆等19人及委員王育敏等21人分別擬具「菸酒管理法部分條文修正草案」案、委員蔡其昌等19人、委員江啟臣等22人及委員陳怡潔等17人分別擬具「菸酒管理法第三十三條及第三十七條條文修正草案」案、委員林岱樺等28人擬具「菸酒管理法第二條條文修正草案」案、委員李昆澤等19人、委員劉建國等22人及委員徐欣瑩等33人分別擬具「菸酒管理法第三十五條之一及第五十七條條文修正草案」案、委員蔣乃辛等19人擬具「菸酒管理法增訂第三十五條之一條文草案」案、委員王育敏等32人擬具「菸酒管理法第三十一條、第三十三條及第三十七條條文修正草案」案、台灣團結聯盟黨團擬具「菸酒管理法第三十三條之一及第五十七條條文修正草案」案、委員邱志偉等16人擬具「菸酒管理法第四條條文修正草案」案、委員黃文玲等21人擬具「菸酒管理法刪除第四十四條條文草案」案、台灣團結聯盟黨團擬具「菸酒管理法第四十六條及第六十三條條文修正草案」案、委員謝國樑等18人擬具「菸酒管理法第四十六條及第四十七條條文修正草案」案計20案。二、繼續審查本院委員曾巨威等33人擬具「稅捐稽徵法第四十八條條文修正草案」案。(5月14日及15日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 61345, + "chair": "賴士葆", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61346, + "chair": "賴士葆", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-10", + "name": "立法院第8屆第5會期財政委員會第10次全體委員會議", + "summary": "邀請行政院主計總處石主計長、財政部張部長、國家發展委員會管主任委員就「近10年來我國所得分配與稅制變化趨勢及公布內容格式之檢討」作報告,並備質詢。(5月5日及7日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 61205, + "chair": "李應元", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61206, + "chair": "李應元", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-09", + "name": "立法院第8屆第5會期財政委員會第9次全體委員會議", + "summary": "一、審查行政院函請審議「保險法部分條文修正草案」案。二、審查本院委員黃昭順等23人擬具「保險法第六十四條條文修正草案」案。三、審查本院委員蔡錦隆等24人擬具「保險法第一百二十二條條文修正草案」案。四、審查本院親民黨黨團擬具「保險法第五十三條條文修正草案」案。五、審查本院委員丁守中等16人擬具「保險法第一百四十六條之二條文修正草案」案。六、審查本院委員吳秉叡等24人擬具「保險法第一條條文修正草案」案。七、審查本院委員李桐豪等18人擬具「保險法第一百四十三條之一條文修正草案」案。八、審查本院委員李桐豪等22人擬具「保險法第一百四十三條之四、第一百四十三條之五及第一百四十九條條文修正草案」案。九、審查本院委員李應元等16人擬具「保險法部分條文修正草案」案。十、審查本院委員賴士葆等17人擬具「保險法部分條文修正草案」案。十一、委員李應元等22人擬具「保險法第一百四十九條條文修正草案」案。(第十案及第十一案,如經復議,則不予審查)。(4月30日及5月1日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 61021, + "chair": "賴士葆", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61024, + "chair": "賴士葆", + "date": "2014-05-01", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-08", + "name": "立法院第8屆第5會期財政委員會第8次全體委員會議", + "summary": "一、審查本院委員葉宜津等19人、委員李昆澤等19人、委員盧秀燕等25人及委員許添財等18人分別擬具「土地稅法第十五條及第十六條條文修正草案」案、委員蔡其昌等18人擬具「土地稅法第六條條文修正草案」案、委員陳超明等26人擬具「土地稅法第二十二條條文修正草案」案、委員吳宜臻等23人擬具「土地稅法第十九條條文修正草案」案、委員潘孟安等18人擬具「土地稅法第六條之一及第二十條條文修正草案」案及委員李應元等16人擬具「土地稅法第九條條文修正草案」案計9案。二、審查本院委員孫大千等18人擬具「房屋稅條例增訂第五條之一條文草案」案及委員李應元等16人擬具「房屋稅條例第五條條文修正草案」案2案。(4月23日及24日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 60773, + "chair": "李應元", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60774, + "chair": "李應元", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60900, + "chair": "李應元", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-07", + "name": "立法院第8屆第5會期財政委員會第7次全體委員會議", + "summary": "審查本院委員賴士葆等16人擬具「稅捐稽徵法第四十八條之一條文修正草案」案、委員賴士葆等17人擬具「稅捐稽徵法第三十條、第三十三條及第四十三條條文修正草案」案、委員曾巨威等33人擬具「稅捐稽徵法第四十八條條文修正草案」案及委員黃文玲等22人擬具「稅捐稽徵法增訂第二十一條之一條文草案」案計4案。(4月16日及17日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60453, + "chair": "賴士葆", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60540, + "chair": "賴士葆", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60455, + "chair": "賴士葆", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60452, + "chair": "賴士葆", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60457, + "chair": "賴士葆", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60541, + "chair": "賴士葆", + "date": "2014-04-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-06", + "name": "立法院第8屆第5會期財政委員會第6次全體委員會議", + "summary": "邀請財政部張部長、內政部陳部長就「推動不動產稅制朝房地合一課稅制之阻力及其解決之道」作報告,並備質詢。(4月7日及9日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 60224, + "chair": "李應元", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60300, + "chair": "李應元", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60226, + "chair": "李應元", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60301, + "chair": "李應元", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-05", + "name": "立法院第8屆第5會期財政委員會第5次全體委員會議", + "summary": "邀請財政部張部長、內政部陳部長就「推動不動產稅制朝房地合一課稅制之阻力及其解決之道」作報告,並備質詢。(3月24日、26日及27日三天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59932, + "chair": "李應元", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59933, + "chair": "李應元", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59940, + "chair": "李應元", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59941, + "chair": "李應元", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59935, + "chair": "李應元", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60094, + "chair": "賴士葆", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60095, + "chair": "賴士葆", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60140, + "chair": "賴士葆", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60141, + "chair": "賴士葆", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60096, + "chair": "賴士葆", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-04", + "name": "立法院第8屆第5會期財政委員會第4次全體委員會議", + "summary": "審查本院委員賴士葆等24人、委員孫大千等19人及委員謝國樑等21人分別擬具「金融消費者保護法第七條條文修正草案」案、委員賴士葆等27人擬具「金融消費者保護法第十條條文修正草案」案計4案(3月17日、19日及20日三天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59771, + "chair": "賴士葆", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59774, + "chair": "賴士葆", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59821, + "chair": "賴士葆", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59754, + "chair": "賴士葆", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59772, + "chair": "賴士葆", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59775, + "chair": "賴士葆", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59822, + "chair": "賴士葆", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59776, + "chair": "賴士葆", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59823, + "chair": "賴士葆", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59773, + "chair": "賴士葆", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59755, + "chair": "賴士葆", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-03", + "name": "立法院第8屆第5會期財政委員會第3次全體委員會議", + "summary": "一、審查行政院函請審議「特種貨物及勞務稅條例第二條、第五條及第二十六條條文修正草案」案。二、審查本院委員林岱樺等17人擬具「特種貨物及勞務稅條例第二條條文修正草案」案。三、審查本院委員林明溱等22人擬具「特種貨物及勞務稅條例第二十二條條文修正草案」案。四、審查本院委員孫大千等23人擬具「特種貨物及勞務稅條例第二條及第二條之一條文修正草案」案。五、審查本院委員李應元等23人擬具「特種貨物及勞務稅條例第五條條文修正草案」案。六、審查本院委員管碧玲等21人擬具「特種貨物及勞務稅條例第五條條文修正草案」案。七、審查本院委員黃偉哲等17人擬具「特種貨物及勞務稅條例第二十五條條文修正草案」案。八、審查本院委員曾巨威等23人擬具「特種貨物及勞務稅條例部分條文修正草案」案。(3月10日、12日及13日三天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59593, + "chair": "李應元", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59564, + "chair": "李應元", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59588, + "chair": "李應元", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59563, + "chair": "李應元", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59589, + "chair": "李應元", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59567, + "chair": "李應元", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59568, + "chair": "李應元", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59591, + "chair": "李應元", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-02", + "name": "立法院第8屆第5會期財政委員會第2次全體委員會議", + "summary": "邀請財政部張部長率所屬機關首長暨國營事業董事長、總經理(含各轉投資事業機構公股代表之董、監事)列席業務報告,並備質詢。(3月5日及6日兩天一次會)", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59380, + "chair": "賴士葆", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59594, + "chair": "賴士葆", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59521, + "chair": "賴士葆", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59381, + "chair": "賴士葆", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59522, + "chair": "賴士葆", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59595, + "chair": "賴士葆", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-FIN-01", + "name": "立法院第8屆第5會期財政委員會第1次全體委員會議", + "summary": "選舉立法院第8屆第5會期本會召集委員", + "committee": ["FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59596, + "chair": "(會議當日由出席互推)", + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 59348, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61821, + "chair": "賴士葆", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-SWE-01", + "name": "立法院第8屆第5會期教育及文化、社會福利及衛生環境委員會第1次聯席會議", + "summary": "103年5月29日(星期四)一、邀請教育部部長、衛生福利部部長列席報告「我國教育體制之學生輔導機制:輔導目標與各級教育下輔導人力編制、運作方式、及個案後續追蹤方式」,並備質詢。二、併案審查委員邱志偉等22人擬具「幼兒教育及照顧法第六條及第五十五條條文修正草案」、委員林世嘉等31人擬具「幼兒教育及照顧法第六條及第五十五條條文修正草案」、委員邱志偉等21人擬具「幼兒教育及照顧法第七條及第十八條條文修正草案」、委員陳淑慧等16人擬具「幼兒教育及照顧法第七條及第十八條條文修正草案」、委員呂學樟等20人擬具「幼兒教育及照顧法第七條條文修正草案」、委員邱志偉等22人擬具「幼兒教育及照顧法第八條條文修正草案」、委員林世嘉等31人擬具「幼兒教育及照顧法第八條條文修正草案」、委員吳宜臻等27人擬具「幼兒教育及照顧法第十條條文修正草案」、委員黃志雄等16人擬具「幼兒教育及照顧法第十五條及第十八條條文修正草案」、委員陳學聖等36人擬具「幼兒教育及照顧法第十五條、第十八條及第十九條條文修正草案」、委員何欣純等16人擬具「幼兒教育及照顧法第十五條及第十九條條文修正草案」、委員陳淑慧等16人擬具「幼兒教育及照顧法第十八條條文修正草案」、委員盧秀燕等21人擬具「幼兒教育及照顧法第十八條條文修正草案」、委員孫大千等23人擬具「幼兒教育及照顧法第三十一條及第五十三條文修正草案」案。", + "committee": ["EDU", "SWE"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 61801, + "chair": "何欣純", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-ECO-01", + "name": "立法院第8屆第5會期教育及文化、經濟委員會第1次聯席會議", + "summary": "繼續併案審查行政院函請審議「能源安全及非核家園推動法草案」、民進黨黨團及台灣團結聯盟黨團擬具「非核家園推動法草案」、親民黨黨團擬具「零核電家園推動法草案」及委員陳其邁等21人擬具「非核家園施行條例草案」案。", + "committee": ["EDU", "ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60684, + "chair": "何欣純", + "date": "2014-04-17", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60703, + "chair": "何欣純", + "date": "2014-04-17", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-22", + "name": "立法院第8屆第5會期教育及文化委員會第22次全體委員會議", + "summary": "邀請文化部部長、經濟部部長、金融監督管理委員會列席報告「一、我國『文化創意產業』發展與願景:『文創鑑價機制』與『金融挺創意』之規劃、期程、執行成果及與國外機制之比較。二、出版產業轉型與數位出版:現況、願景與具體輔導措施之期程規劃。」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 22, + "dates": [{ + "calendar_id": 61807, + "chair": "何欣純", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-21", + "name": "立法院第8屆第5會期教育及文化委員會第21次全體委員會議", + "summary": "103年5月22日(星期四)一、審查行政院函請審議廢止「幼稚教育法」案。二、審查行政院函請審議「私立學校法第八十三條及第八十六條條文修正草案」案。三、併案審查行政院函請審議「特殊教育法第十條、第十七條及第三十二條條文修正草案」、委員陳淑慧等20人擬具「特殊教育法第十條、第十七條及第三十二條條文修正草案」案。四、併案審查行政院函請審議「教育經費編列與管理法第三條之一、第九條及第十八條條文修正草案」、委員陳淑慧等24人擬具「教育經費編列與管理法第三條之一、第九條及第十八條條文修正草案」案。五、審查行政院函請審議「教師法第三十六條條文修正草案」案。六、併案審查行政院函請審議「學生輔導法草案」、委員賴士葆等26人擬具「學生輔導法草案」、委員盧嘉辰等17人擬具「學生輔導法草案」案。七、併案審查行政院函請審議「終身學習法修正草案」、委員李俊俋等20人擬具「終身學習法第四條條文修正草案」、委員潘孟安等22人擬具擬具「終身學習法第四條條文修正草案」案。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 21, + "dates": [{ + "calendar_id": 61564, + "chair": "陳碧涵", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61720, + "chair": "陳碧涵", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-20", + "name": "立法院第8屆第5會期教育及文化委員會第20次全體委員會議", + "summary": "邀請文化部部長列席報告「一、文化部成立兩周年施政成果總檢討暨未來政策總體目標與資源配置之因應規劃。二、表演藝術政策及其產業發展之精進作為。」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 20, + "dates": [{ + "calendar_id": 61535, + "chair": "陳碧涵", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-19", + "name": "第8屆第5會期第19次全體委員會", + "summary": "一、邀請教育部部長列席報告「自由經濟示範區『教育創新』對我國高教之影響與衝擊:具體措施及規模、目標族群、學費政策與十年落日條款之處置」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 19, + "dates": [{ + "calendar_id": 61367, + "chair": "何欣純", + "date": "2014-05-14", + "time_start": "14:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61368, + "chair": "何欣純", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "12:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-18", + "name": "第8屆第5會期第18次全體委員會", + "summary": "邀請行政院原子能委員會主任委員、經濟部部長、台灣電力公司董事長列席報告「一、從興建中核電廠停工封存或轉型之國外案例,其封存期間之維護工作細目、人力配置及經費支出,或轉型其它用途或發電方式之成本效益,檢視台電龍門電廠之安檢工作細目、人力配置與經費支出,及銜接封存之維護工作、人力配置及經費評估。二、核廢料中、長程處置計畫之評估規劃與作業銜接:露天乾式貯存場與室內乾式貯存場之可行性與國際案例比較、安全性、預計進程、成本效益評估分析。三、核能事故緊急應變區內各級學校、研究及文化單位緊急應變計畫:避難、疏散、救援、醫療等任務編組及資源配置。」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 18, + "dates": [{ + "calendar_id": 61369, + "chair": "何欣純", + "date": "2014-05-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-17", + "name": "立法院第8屆第5會期教育及文化委員會第17次全體委員會議", + "summary": "(上午)一、邀請教育部部長列席報告「美感教育第一期五年計畫:計畫目標、發展策略、具體執行方案、師資精進與培育方案」,並備質詢。二、邀請教育部部長、文化部部長、科技部部長列席報告「推動人文與科技共融政策之相關人才培育及文創產業加值計畫」,並備質詢。(下午)三、繼續併案審查行政院函請審議「專科學校法修正草案」、委員徐欣瑩等31人擬具「專科學校法第七條及第三十五條之一條文修正草案」、委員蔣乃辛等23人擬具「專科學校法第二十四條條文修正草案」、委員陳亭妃等21人擬具「專科學校法第三十六條條文修正草案」案。四、繼續併案審查政院函請審議「家庭教育法第十四條條文修正草案」、委員馬文君等22人擬具「家庭教育法第十四條條文修正草案」案。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 17, + "dates": [{ + "calendar_id": 61183, + "chair": "陳碧涵", + "date": "2014-05-07", + "time_start": "14:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61194, + "chair": "陳碧涵", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "12:30:00" + }, { + "calendar_id": 61195, + "chair": "陳碧涵", + "date": "2014-05-07", + "time_start": "14:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61240, + "chair": "陳碧涵", + "date": "2014-05-07", + "time_start": "14:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61242, + "chair": "陳碧涵", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "12:30:00" + }, { + "calendar_id": 61241, + "chair": "陳碧涵", + "date": "2014-05-07", + "time_start": "14:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-16", + "name": "立法院第8屆第5會期教育及文化委員會第16次全體委員會議", + "summary": "一、邀請中央研究院院長列席報告業務概況,並備質詢。二、處理中央研究院103年度預算凍結項目須經報告後始得動支案3案。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 16, + "dates": [{ + "calendar_id": 61182, + "chair": "陳碧涵", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61193, + "chair": "陳碧涵", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-15", + "name": "立法院第8屆第5會期教育及文化委員會第15次全體委員會議", + "summary": "一、邀請科技部部長、經濟部部長列席報告「能源國家型科技計畫(推動目標、期程、第一期成果與第二期接續性)與發展替代能源以實現非核家園的能源自主進程」,並備質詢。二、邀請科技部部長列席報告「我國科研政策方向及資源配置:科技經費分配標準、績效指標、檢核機制與研究成果公共運用之研擬」,並備質詢。三、審查103年度國家科學技術發展基金預算。(詢答及處理)(4月28日、4月30日及5月1日三天一次會)", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 61008, + "chair": "何欣純", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61013, + "chair": "何欣純", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61009, + "chair": "何欣純", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "12:30:00" + }, { + "calendar_id": 61015, + "chair": "何欣純", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "12:30:00" + }, { + "calendar_id": 61016, + "chair": "何欣純", + "date": "2014-05-01", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-14", + "name": "立法院第8屆第5會期教育及文化委員會第14次全體委員會議", + "summary": "一、併案審查行政院函請審議「專科學校法修正草案」、委員徐欣瑩等31人擬具「專科學校法第七條及第三十五條之一條文修正草案」、委員蔣乃辛等23人擬具「專科學校法第二十四條條文修正草案」、委員陳亭妃等21人擬具「專科學校法第三十六條條文修正草案」案。二、繼續審查委員林淑芬等17人擬具「專科學校法第三十五條條文修正草案」案。三、併案審查行政院函請審議「家庭教育法第十四條條文修正草案」、委員馬文君等22人擬具「家庭教育法第十四條條文修正草案」案。(4月23日及24日二天一次會)", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 60789, + "chair": "陳碧涵", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60791, + "chair": "陳碧涵", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-13", + "name": "立法院第8屆第5會期教育及文化委員會第13次全體委員會議", + "summary": "邀請文化部部長列席報告「一、文化部影視音五年旗艦計畫各年度執行進度、績效、經費配置及預計目標;影視政策與地方推動『影視園區』之未來資源整合及政策方略。二、檢討我國具歷史文化價值之建築、文物或地景在列入文化資產保存前後之保護措施」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 60520, + "chair": "何欣純", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-12", + "name": "立法院第8屆第5會期教育及文化委員會第12次全體委員會議", + "summary": "103年4月14日(星期一)一、審查委員陳節如等20人擬具「學位授予法第八條條文修正草案」案。二、審查委員陳亭妃等22人擬具「學校衛生法第二十一條條文修正草案」案。三、審查委員林佳龍等20人擬具「特殊教育法第二十四條條文修正草案」案。四、併案審查行政院函請審議「圖書館法部分條文修正草案」、委員陳節如等20人擬具「圖書館法第九條條文修正草案」及台灣團結聯盟黨團擬具「圖書館法第十五條條文修正草案」案。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 60465, + "chair": "何欣純", + "date": "2014-04-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-11", + "name": "立法院第8屆第5會期教育及文化委員會第11次全體委員會議", + "summary": "103年4月7日(星期一)一、併案審查行政院函請審議「國立大學校院校務基金設置條例修正草案」及委員林岱樺等17人擬具「國立大學校院校務基金設置條例第五條之一、第五條之二及第九條條文修正草案」案。二、審查委員林岱樺等23人擬具「師資培育法第二十四條條文修正草案」案。\n(三天一次會)", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 60219, + "chair": "陳碧涵", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60218, + "chair": "陳碧涵", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60220, + "chair": "陳碧涵", + "date": "2014-04-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-10", + "name": "立法院第8屆第5會期教育及文化委員會第10次全體委員會議", + "summary": "邀請文化部部長列席報告「藝術銀行之政策規劃與發展」、「表演藝術類獎補助措施之政策目標、成效與檢討」及「影視音產業海外市場拓展業務執行狀況與展望」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 59927, + "chair": "陳碧涵", + "date": "2014-03-27", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60120, + "chair": "何欣純", + "date": "2014-04-03", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-09", + "name": "立法院第8屆第5會期教育及文化委員會第9次全體委員會議", + "summary": "邀請文化部部長、國家通訊傳播委員會主任委員、公共電視基金會董事長、中央通訊社董事長、中央廣播電台董事長列席報告「基於新聞自由及媒體自主,就公共媒體的角色與責任來看歷次公民運動與此次太陽花學運之報導」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 59928, + "chair": "陳碧涵", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60121, + "chair": "何欣純", + "date": "2014-04-02", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-08", + "name": "立法院第8屆第5會期教育及文化委員會第8次全體委員會議", + "summary": "103年3月19日(星期三)邀請科技部部長列席報告業務概況,並備質詢。\n(3月19日及20日二天一次會)", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 59825, + "chair": "何欣純", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59800, + "chair": "何欣純", + "date": "2014-03-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59820, + "chair": "何欣純", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59824, + "chair": "何欣純", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59920, + "chair": "何欣純", + "date": "2014-03-20", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59929, + "chair": "陳碧涵", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60021, + "chair": "陳碧涵", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60000, + "chair": "陳碧涵", + "date": "2014-03-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60080, + "chair": "何欣純", + "date": "2014-03-31", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-07", + "name": "立法院第8屆第5會期教育及文化委員會第7次全體委員會議", + "summary": "邀請故宮博物院院長列席報告業務概況,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 59720, + "chair": "何欣純", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59743, + "chair": "何欣純", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-06", + "name": "立法院第8屆第5會期教育及文化委員會第6次全體委員會議", + "summary": "邀請文化部部長列席報告業務概況,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 59641, + "chair": "陳碧涵", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59744, + "chair": "陳碧涵", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-05", + "name": "立法院第8屆第5會期教育及文化委員會第5次全體委員會議", + "summary": "邀請教育部部長列席報告業務概況,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59640, + "chair": "陳碧涵", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-04", + "name": "立法院第8屆第5會期教育及文化委員會第4次全體委員會議", + "summary": "邀請教育部部長列席報告業務概況及「高級中學課程綱要微調」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59600, + "chair": "陳碧涵", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-03", + "name": "立法院第8屆第5會期教育及文化委員會第3次全體委員會議", + "summary": "教育部部長報告業務概況及「高級中學課程綱要微調」,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59442, + "chair": "陳碧涵", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-02", + "name": "立法院第8屆第5會期教育及文化委員會第2次全體委員會議", + "summary": "一、行政院原子能委員會主任委員列席報告業務概況,並備質詢。\n二、行政院原子能委員會主任委員、經濟部長及台灣電力股份有限公司董事長就「臺電龍門、第一、第二、第三核能發電廠安全補強措施現況及其期程」提出報告,並備質詢。", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59441, + "chair": "何欣純", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-EDU-01", + "name": "立法院第8屆第5會期教育及文化委員會第1次全體委員會議", + "summary": "選舉第8屆第5會期本會召集委員", + "committee": ["EDU"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59341, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61804, + "chair": "何欣純", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-IAD-FIN-06", + "name": "立法院第8屆第5會期經濟、財政、內政三委員會第6次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 61867, + "chair": "黃昭順", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61882, + "chair": "黃昭順", + "date": "2014-05-29", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-IAD-FIN-05", + "name": "立法院第8屆第5會期經濟、財政、內政三委員會第5次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案(逐條審查),並邀請基隆市市長、臺北市市長、新北市市長、宜蘭縣縣長、花蓮縣縣長、桃園縣縣長、新竹市市長、臺中市市長、彰化縣縣長、嘉義縣縣長、台南市市長、高雄市市長、屏東縣縣長、金門縣縣長就「自由經濟示範區」該縣市規畫佈局進行說明。", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 61829, + "chair": "林岱樺", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61843, + "chair": "林岱樺", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61903, + "chair": "黃昭順", + "date": "2014-05-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-IAD-FIN-04", + "name": "立法院第8屆第5會期經濟、財政、內政三委員會第4次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)(5月14日、15日二天一次會)", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 61362, + "chair": "黃昭順", + "date": "2014-05-14", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61482, + "chair": "黃昭順", + "date": "2014-05-15", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-IAD-FIN-03", + "name": "立法院第8屆第5會期經濟、財政、內政三委員會第3次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 61080, + "chair": "黃昭順", + "date": "2014-04-30", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-IAD-FIN-02", + "name": "立法院第8屆第5會期經濟、財政、內政三委員會第2次聯席會議", + "summary": "繼續審查行政院函請審議「自由經濟示範區特別條例草案」案。(逐條審查)", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 61040, + "chair": "黃昭順", + "date": "2014-04-28", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-IAD-FIN-01", + "name": "立法院第8屆第5會期經濟、財政、內政三委員會第1次聯席會議", + "summary": "審查行政院函請審議「自由經濟示範區特別條例草案」案。", + "committee": ["ECO", "IAD", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59440, + "chair": "黃昭順", + "date": "2014-03-06", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-FIN-02", + "name": "立法院第8屆第5會期經濟、財政委員會第2次聯席會議", + "summary": "一、繼續審查本院民進黨黨團擬具「產業創新條例第七十條條文修正草案」案。\n二、繼續審查本院委員蔣乃辛等23人擬具「產業創新條例第十條條文修正草案」案。\n三、繼續審查本院委員蔡正元等20人擬具「產業創新條例第十條條文修正草案」案。\n四、繼續審查本院委員楊麗環等50人擬具「產業創新條例第二十六條條文修正草案」案。", + "committee": ["ECO", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 60803, + "chair": "林岱樺", + "date": "2014-04-24", + "time_start": "14:30:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-FIN-01", + "name": "立法院第8屆第5會期經濟、財政兩委員會第1次聯席會議", + "summary": "一、審查本院民進黨黨團擬具「產業創新條例第七十條條文修正草案」案。\n二、審查本院委員蔣乃辛等23人擬具「產業創新條例第十條條文修正草案」案。\n三、審查本院委員蔡正元等20人擬具「產業創新條例第十條條文修正草案」案。\n四、審查本院委員楊麗環等50人擬具「產業創新條例第二十六條條文修正草案」案。", + "committee": ["ECO", "FIN"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 60222, + "chair": "林岱樺", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60280, + "chair": "林岱樺", + "date": "2014-04-09", + "time_start": "09:00:00", + "time_end": "13:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-15", + "name": "立法院第8屆第5會期經濟委員會第15次全體委員會議", + "summary": "一、處理行政院農業委員會及其所屬103年度預算凍結案等22案。(詳如議程)\n二、處理經濟部及其所屬103年度預算凍結案等11案。(詳如議程)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 15, + "dates": [{ + "calendar_id": 61868, + "chair": "黃昭順", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61880, + "chair": "黃昭順", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61881, + "chair": "黃昭順", + "date": "2014-05-29", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-14", + "name": "立法院第8屆第5會期經濟委員會第14次全體委員會議", + "summary": "一、處理行政院農業委員會及其所屬103年度預算凍結\n  案等6案。(詳如議程)\n二、處理經濟部及其所屬103年度預算凍結案等24案。\n  (詳如議程)\n三、(一)繼續審查行政院函請審議「公平交易法修正草\n    案」案。(處理)\n  (二)繼續審查本院委員蘇震清等23人擬具「公平\n    交易法部分條文修正草案」案。(處理)\n  (三)繼續審查本院委員丁守中等19人擬具「公平\n    交易法增訂第二十三條之五條文草案」案。(處理)\n  (四)繼續審查本院委員丁守中等21人擬具「公平\n    交易法增訂第二十四條之一條文草案」案。(處理)\n  (五)繼續審查本院委員潘孟安等18人擬具「公平\n    交易法第七條條文修正草案」案。(處理)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 14, + "dates": [{ + "calendar_id": 61820, + "chair": "黃昭順", + "date": "2014-05-26", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-13", + "name": "立法院第8屆第5會期經濟委員會第13次全體委員會議", + "summary": "邀請經濟部部長、國家發展委員會主任委員、僑務委員會委員長、外交部部長、財政部部長就「針對台商在越南受到暴動波及之損害與救濟,如何提供台商具體協助」提出專案報告,並備質詢。", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 13, + "dates": [{ + "calendar_id": 61552, + "chair": "林岱樺", + "date": "2014-05-19", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61540, + "chair": "林岱樺", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61553, + "chair": "林岱樺", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60165, + "chair": "林岱樺", + "date": "2014-05-19", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 61624, + "chair": "林岱樺", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61541, + "chair": "林岱樺", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61640, + "chair": "林岱樺", + "date": "2014-05-21", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61550, + "chair": "林岱樺", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61625, + "chair": "林岱樺", + "date": "2014-05-22", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-12", + "name": "立法院第8屆第5會期經濟委員會第12次全體委員會議", + "summary": "一、審查行政院函請審議「公平交易法修正草案」案。\n二、審查本院委員蘇震清等23人擬具「公平交易法部分條文修正草案」案。\n三、審查本院委員丁守中等19人擬具「公平交易法增訂第二十三條之五條文草案」案。\n四、審查本院委員丁守中等21人擬具「公平交易法增訂第二十四條之一條文草案」案。\n五、審查本院委員潘孟安等18人擬具「公平交易法第七條條文修正草案」案。", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 12, + "dates": [{ + "calendar_id": 61361, + "chair": "黃昭順", + "date": "2014-05-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-11", + "name": "立法院第8屆第5會期經濟委員會第11次全體委員會議", + "summary": "邀請經濟部部長率台灣電力股份有限公司董事長、行政院原子能委員會主任委員、行政院主計總處主計長針對核四一號機不施工、二號機全部停工所涉原興建計畫之調整、現行預算之修正及法規之適用等,進行專案報告,並備質詢。5月5日、7日、8日三天一次會)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 11, + "dates": [{ + "calendar_id": 61199, + "chair": "林岱樺", + "date": "2014-05-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61200, + "chair": "林岱樺", + "date": "2014-05-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 61201, + "chair": "林岱樺", + "date": "2014-05-08", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-10", + "name": "立法院第8屆第5會期經濟委員會第10次全體委員會議", + "summary": "一、繼續審查103年度中央政府總預算案附屬單位預算營業\n  部分關於經濟部主管:台灣糖業股份有限公司。(處理)\n二、繼續審查103年度中央政府總預算案附屬單位預算非營業部分關於行政院主管:行政院國家發展基金、離島建設基金及花東地區永續發展基金。(處理)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 10, + "dates": [{ + "calendar_id": 61120, + "chair": "黃昭順", + "date": "2014-05-01", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-09", + "name": "立法院第8屆第5會期經濟委員會第9次全體委員會議", + "summary": "審查103年度中央政府總預算案附屬單位預算非營業部分關於經濟部主管:經濟特別收入基金(含推廣貿易基金、能源研究發展基金、石油基金、再生能源發展基金)、地方產業發展基金。(詢答)(4月23日下午、24日上午二天一次會)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 9, + "dates": [{ + "calendar_id": 60804, + "chair": "林岱樺", + "date": "2014-04-23", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60840, + "chair": "林岱樺", + "date": "2014-04-23", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60778, + "chair": "林岱樺", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60805, + "chair": "林岱樺", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60841, + "chair": "林岱樺", + "date": "2014-04-24", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-08", + "name": "立法院第8屆第5會期經濟委員會第8次全體委員會議", + "summary": "審查103年度中央政府總預算案附屬單位預算營業部分關於經濟部主管:台灣糖業股份有限公司。(詢答及處理)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 8, + "dates": [{ + "calendar_id": 60802, + "chair": "黃昭順", + "date": "2014-04-21", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60777, + "chair": "黃昭順", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "12:00:00" + }, { + "calendar_id": 60820, + "chair": "黃昭順", + "date": "2014-04-21", + "time_start": "12:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60801, + "chair": "黃昭順", + "date": "2014-04-21", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-07", + "name": "立法院第8屆第5會期經濟委員會第7次全體委員會議", + "summary": "審查103年度中央政府總預算案附屬單位預算非營業部分關於行政院主管:行政院國家發展基金、離島建設基金及花東地區永續發展基金。(詢答)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 7, + "dates": [{ + "calendar_id": 60561, + "chair": "黃昭順", + "date": "2014-04-16", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60560, + "chair": "黃昭順", + "date": "2014-04-16", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-06", + "name": "立法院第8屆第5會期經濟委員會第6次全體委員會議", + "summary": "審查本院委員李貴敏等37人擬具「中小企業發展條例部分條文修正草案」案。", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 6, + "dates": [{ + "calendar_id": 60281, + "chair": "林岱樺", + "date": "2014-04-09", + "time_start": "13:30:00", + "time_end": "16:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-05", + "name": "立法院第8屆第5會期經濟委員會第5次全體委員會議", + "summary": "一、審查行政院函請審議「動物傳染病防治條例第十七條及第二十條條文修正草案」案。二、併案審查本院委員鄭天財等21人擬具「石油管理法第三十六條條文修正草案」案及委員廖國棟等20人擬具「石油管理法第三十六條條文修正草案」案。", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 5, + "dates": [{ + "calendar_id": 59841, + "chair": "黃昭順", + "date": "2014-03-20", + "time_start": "14:30:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59960, + "chair": "林岱樺", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59962, + "chair": "林岱樺", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59966, + "chair": "林岱樺", + "date": "2014-03-24", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60221, + "chair": "林岱樺", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 60302, + "chair": "林岱樺", + "date": "2014-04-07", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-04", + "name": "立法院第8屆第5會期經濟委員會第4次全體委員會議", + "summary": "一、邀請行政院農業委員會主任委員暨相關人員列席報告業務概況,並備質詢。\n二、邀請行政院農業委員會主任委員、國家發展委員會主任委員、公平交易委員會主任委員、經濟部部長、法務部、財政部、行政院消費者保護處、行政院主計總處就「物價波動政府因應之道」進行專案報告,並備質詢。", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 4, + "dates": [{ + "calendar_id": 59753, + "chair": "黃昭順", + "date": "2014-03-17", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-03", + "name": "立法院第8屆第5會期經濟委員會第3次全體委員會議", + "summary": "(一)邀請經濟部部長列席報告業務概況,並備質詢。\n(二)邀請經濟部部長、行政院原子能委員會主任委員、行政院主計總處、審計部,針對「核四計畫之地質與海域調查進度、顧問費支用及102年度預算運用明細」進行專案報告,並備質詢。(3月10日、12日及13日三天一次會)", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 3, + "dates": [{ + "calendar_id": 59560, + "chair": "林岱樺", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59582, + "chair": "林岱樺", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59608, + "chair": "林岱樺", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59572, + "chair": "林岱樺", + "date": "2014-03-10", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59561, + "chair": "林岱樺", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59573, + "chair": "林岱樺", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59583, + "chair": "林岱樺", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59609, + "chair": "林岱樺", + "date": "2014-03-12", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59584, + "chair": "林岱樺", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59610, + "chair": "林岱樺", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59579, + "chair": "林岱樺", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }, { + "calendar_id": 59562, + "chair": "林岱樺", + "date": "2014-03-13", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-02", + "name": "立法院第8屆第5會期經濟委員會第2次全體委員會議", + "summary": "邀請國家發展委員會主任委員列席報告業務概況,並備質詢。", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 2, + "dates": [{ + "calendar_id": 59400, + "chair": "黃昭順", + "date": "2014-03-05", + "time_start": "09:00:00", + "time_end": "17:30:00" + }], + "motions": [] + }, { + "id": "08-05-ECO-01", + "name": "立法院第8屆第5會期經濟委員會第1次全體委員會議", + "summary": "立法院第8屆第5會期召集委員選舉", + "committee": ["ECO"], + "proceeding_url": null, + "ad": 8, + "session": 5, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 59323, + "chair": null, + "date": "2014-03-03", + "time_start": "09:00:00", + "time_end": "12:00:00" + }], + "motions": [] + }], + "query": "(\"ad\" = 8) AND (\"session\" = 5)" +} \ No newline at end of file diff --git "a/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}.json" "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}.json" new file mode 100644 index 0000000..5b63694 --- /dev/null +++ "b/test/unit/fixtures/cassettes/bills_search/2014-09-09/sittings l=500&q={\340\274\213ad\340\274\213:8\302\270\340\274\213session\340\274\213:6}.json" @@ -0,0 +1,27 @@ +{ + "paging": { + "count": 1, + "l": 500, + "sk": 0 + }, + "entries": [{ + "id": "08-06-PRO-01", + "name": "第8屆第6會期第1次會議", + "summary": "審定本院第8屆第6會期第1次會議議事日程及處理人民請願案", + "committee": ["PRO"], + "proceeding_url": null, + "ad": 8, + "session": 6, + "extra": null, + "sitting": 1, + "dates": [{ + "calendar_id": 63662, + "chair": "吳秉叡", + "date": "2014-09-09", + "time_start": "12:00:00", + "time_end": "14:00:00" + }], + "motions": [] + }], + "query": "(\"ad\" = 8) AND (\"session\" = 6)" +} \ No newline at end of file diff --git a/test/unit/fixtures/snapshots/bills_search/2014-09-09/scope.json b/test/unit/fixtures/snapshots/bills_search/2014-09-09/scope.json new file mode 100644 index 0000000..53d44dd --- /dev/null +++ b/test/unit/fixtures/snapshots/bills_search/2014-09-09/scope.json @@ -0,0 +1,110 @@ +{ + "today": "2014 09/09", + "latest_session": { + "name": "8 屆 6 會期", + "period": "2014 09/09 - 09/09", + "ad": 8, + "session": 6 + }, + "other_sessions": [{ + "name": "8 屆 5 會期", + "period": "2014 09/03 - 09/03", + "ad": 8, + "session": 5 + }, { + "name": "8 屆 4 會期", + "period": "2014 03/20 - 03/20", + "ad": 8, + "session": 4 + }, { + "name": "8 屆 3 會期", + "period": "2013 08/30 - 08/30", + "ad": 8, + "session": 3 + }, { + "name": "8 屆 2 會期", + "period": "2013 05/29 - 05/29", + "ad": 8, + "session": 2 + }, { + "name": "8 屆 1 會期", + "period": "2012 09/04 - 09/04", + "ad": 8, + "session": 1 + }], + "session": { + "name": "8 屆 6 會期", + "period": "2014 09/09 - 09/09", + "ad": 8, + "session": 6 + }, + "committees": [{ + "type": "YS", + "name": "院會" + }, { + "type": "PRO", + "name": "程序" + }, { + "type": "ECO", + "name": "經濟" + }, { + "type": "FIN", + "name": "財政" + }, { + "type": "IAD", + "name": "內政" + }, { + "type": "FND", + "name": "外交國防" + }, { + "type": "SWE", + "name": "社服衛環" + }, { + "type": "EDU", + "name": "教育文化" + }, { + "type": "JUD", + "name": "司法法制" + }, { + "type": "TRA", + "name": "交通" + }], + "committees_map": { + "YS": "院會", + "PRO": "程序", + "ECO": "經濟", + "FIN": "財政", + "IAD": "內政", + "FND": "外交國防", + "SWE": "社服衛環", + "EDU": "教育文化", + "JUD": "司法法制", + "TRA": "交通" + }, + "motion_types": ["全部", "修法", "預算", "查照", "其他"], + "committee": "PRO", + "sittings_year": [2014], + "sitting_year": 2014, + "sittings_month": [8], + "sitting_month": 8, + "sittings_day": [9], + "sitting_day": 9, + "sittings_sitting": [{ + "extra": null, + "sitting": 1, + "committee": ["PRO"], + "id": "08-06-PRO-01", + "summary": "第 1 次會議" + }], + "sitting_sitting": { + "extra": null, + "sitting": 1, + "committee": ["PRO"], + "id": "08-06-PRO-01", + "summary": "第 1 次會議" + }, + "sitting_sitting_summary": "第 1 次會議", + "motions": [], + "motion_type": "全部", + "selected_motions": [] +} \ No newline at end of file diff --git a/test/unit/recorder/README.md b/test/unit/recorder/README.md new file mode 100644 index 0000000..099ea11 --- /dev/null +++ b/test/unit/recorder/README.md @@ -0,0 +1,32 @@ +# Snapshots recorder server + +Save the result ($scope.xxx) sending from unit test. + +In unit test: + + it 'xxx' do + + # create-controller and $http-backend.flush! + ... + + # $scope.xxx should be assigned. + # Send the $scope.xxx to recorder server + $.ajax do + type: 'POST' + url: 'http://localhost:9877/record' + data: + path: 'test/unit/fixtures/snapshots/xxx/scope.json' + json: JSON.stringify {$scope.foo, $scope.bar} + data-type: 'text' + +Open recorder server: + + lsc test/unit/recorder/app.ls + +Run the test: + + gulp --require LiveScript test:unit + +Then you will see: + +![Recorded](./doc/images/recorded.png) diff --git a/test/unit/recorder/app.ls b/test/unit/recorder/app.ls new file mode 100644 index 0000000..1d2a211 --- /dev/null +++ b/test/unit/recorder/app.ls @@ -0,0 +1,37 @@ +require! 'express' +require! 'body-parser' +require! 'fs' +require! 'mkdirp' +require! 'colors' +{js_beautify} = require 'js-beautify' + +mkdirp_for_record = (path) -> + parts = path.split '/' + base_parts = parts.slice 0, parts.length - 1 + base = base_parts.join '/' + mkdirp.sync base + +app = express! +app.use body-parser.urlencoded extended: true + +# API: POST /record +# path: where_to_save +# json: json_to_save +# +# Example: +# $.ajax do +# type: 'POST' +# url: 'http://localhost:9877/record' +# data: +# path: "test/unit/fixtures/snapshots/xxx/xxx.json" +# json: JSON.stringigy foo: \bar +# data-type: 'text' +app.post '/record' (req, res, next) -> + path = req.body.path + mkdirp_for_record path + fs.write-file path, js_beautify req.body.json + console.log "Recorded as #{path.bold.green} !".bold.white + res.send 'Recorded !' +server = app.listen 9877, -> + port = server.address!.port + console.log "Unit test recorder server listen on port #port" diff --git a/test/unit/recorder/bill-search.ls b/test/unit/recorder/bill-search.ls new file mode 100644 index 0000000..b9b095e --- /dev/null +++ b/test/unit/recorder/bill-search.ls @@ -0,0 +1,50 @@ +require! 'async' +require! 'moment' +require! './lymodel' + +today = moment!.format 'YYYY-MM-DD' +dir = "bills_search/#today" + +get_latest_sitting = (cb) -> + {entries} <- lymodel.get dir, 'sittings' do + params: l: 1 + .success + cb entries[0] +get_session_sittings = (ad, session, cb) -> + {entries} <- lymodel.get dir, 'sittings' do + params: + q: ad: ad, session: session + l: 500 + .success + cb entries +get_session_periods_before_by = (ad, session, cb) -> + periods = [] + funcs = [session to 1 by -1].map (session) -> + (done) -> + period <- get_session_period ad, session + periods.push period + done! + err, res <- async.series funcs + cb periods +get_session_period = (ad, session, cb) -> + {entries} <- lymodel.get dir, 'calendar' do + params: + s: JSON.stringify date: 1 + q: ad: ad, session: session + l: 1 + .success + oldest_date = entries[0] + {entries} <- lymodel.get dir, 'calendar' do + params: + s: JSON.stringify date: -1 + q: ad: ad, session: session + l: 1 + .success + latest_date = entries[0] + cb [oldest_date, latest_date] + +latest_sitting <- get_latest_sitting! +latest_session_period <- get_session_period 8, 6 +other_sessions_period <- get_session_periods_before_by 8, 5 +sittings <- get_session_sittings 8, 6 +sittings <- get_session_sittings 8, 5 diff --git a/test/unit/recorder/doc/images/recorded.png b/test/unit/recorder/doc/images/recorded.png new file mode 100644 index 0000000000000000000000000000000000000000..84bbb6121a3366758e14050ab7753233b2306547 GIT binary patch literal 12656 zcmX|o1yCJL)a4*Sg1dXLKyV9Af)m`G;7)MoJs<>kcXxNUV8Pwp-Q6C`_y4=PGAEai zl2uUmMa2UEazIK{M8$3CRM%BUWdJKvy@JejVA3<1lFl#4uhvc7;#Z9Bg0w*TQ)2Epu=VQTiJc`z@ z-J#MjM*Hp6Psh&3bKZ}WM2>I(m|h~YO(xaxRFCNpn*RZ3-;CL<(_zSJ5OIEClg9=0 zp!HjW2U2!FmDf*Jx!=f(LLAX(E%00SRQzQJ;t+E`^=bUW`jBp)E6F#HiuC5EQen?t z9T)!Rt?V3!YXR)={aK5t##r@%QHb&LL2)j&*ACM+h-7!b4imyGea$PSO@)C0Zg?lhxyh{Gd-df6&5{&y+M zZ{j%JD`p*N2MJq{L1+Dws2&&)rr4?HXa<&^^9jPN>)o`sbO)dIcPQYZU4mJUcsT9# zxwSlirr2zr)D|%KQ7n|<$HRmT_d$!dkIm`MFXyDS22^$}JzrhzbXKqws~P51#BUmJ zq^o8!)xNj9M5&r+!8L4O2q=z6x~qshCKJQmC(5ps{St#R|6`yaMwZX}o>;w;1<6}e~ucbXErlNDFgBtUGBn%Ci<@r!qJ5RG}V;H389wYekZrIsV zdx<1+R!cZkcYbCxlhD6-ah&cEGW77VlQB?>v5)NP91yuo|- z3drFBBl+?0Tl8>Z6G)~Oc~oOhXX}?DMjgU$!k0-(Pq}xUpa;w#j^XBIP zZ0guS)AgO5`KqZHf%q7fEv5eW>maSD?!2kWP9-GRI0S0OUm7A6z*`1>;Qz^!2`TvKyDzg!(C2dqxLw4N~H%Q?dV z(rx1Hnj=4T`Lx+pufyBb|cVxnv3D8C>{2Brm%uKcDbt!q#k|5#o=+ zw3!;OiRUrn-ZDZD&jYoh$`Zi?D>nXoy8I1CJr1E-TaR#}uF$W=y|qjtIpMTSQt6*= zPi1~keydD6td+RGh$7ExpgevUPeo1SB0a#Ue%qjrHKJ-aNm7h=^tnIxWGdC1(;RW0 z;Ts;{5Nw8=>>mTb$3{kN$LtKKuJ}zOGr6F{lYfOrS90f1Hu5zg#@klma@TIBEnz|5 zm|mmwhe~Z91l{$7zGF#;jy`_l`W8e(6m3)xRcd3R_kEgu4Ba8n{eC; z!w`Vh$>&*BNF#1^ULO1g15>oU(YQvUUvVIl?Wn zQU}fnN;ic#xQcekn<4Z-`h2(X-8=F^9*8K6*ji%PKg`uL{YO-V4JY}N2 z;|FLe&0%mCi5S#@=f6fhn`4Y0UB}qI&{2t<)5WqtSJBq3D<@7-?tK(g+h3HgIIy0y zN~!i)E+?Tw6Wv!JHr2XTb#*-O)NwI&S?%vJGDmqSSm$f3Gum~K2)lfKfk(R8A(ec{RM6U87 z9+_=v16kF){Lp33Rxo8$`X#OWyF@Y1O?0(n20%K0zwX;>I)?3zr{ ze)*Vovo+IoBGkFy6@E$fIC6qVqh7WWGm9;Lo)-^6 zjzpr?tdLET4!W6t{h-R5q5h`nsGp=(y*1AW0{{hKzxeJJJ&8(Ba`xI;-->I{I%Q_6 z>ZeIe-?fM}tKjczX=1sM?rdFyBBvQQAb?o*~;B4Cn9bjV)$gx++27r>B9Gm&Npe`nJ zm4ySdmb(MW{^lwHFXc9sq-!6;r!Rwnpx609f=>FTRb|&#&N`!dQ|J$#48= zz-M_?j;e^@3PCrEef2?l6CkVg>NtQzUuU7QGNP!mbjEK)pYi7W?yAC~azynb$;qy; z+CIS|oAqAKmKO}dvv?oea4Yl4R~Bi%M)n}-^ph+u+E&T@3i?qg9*-7_=kaTNo*8v# zgX@S;_xO^doSW_Etz~-_;ofelrwv5yhV()D%HkoRPBT!nawP(7Sh`(l@j$mf@zvH? zJ@xIs1Ep=IxMXujRm*Q**N5eO@LYWuy)cUST3;vPE&UgZhGg0ce*UL7gv^^yjC;}x|(mn0E?{{UOvQn>_ zVNGOm)0zLITZJsu*CR)Tbt8}qE0BJU_3Z%T-lI$3{DBcV`WQ}g8N0Q1pTZ0cfO#Yf z2EKBv3uD^nGE9})@^n(hp>-WxBdc>4Gw-mF*V~-pID6WijL;zi29~`GD=}r1GkjWc zO%Dcb2~dFO5$^#a-)(21Bav3?i&DJah=JGNwjOWCWB6exjzl@`D(0@F6@6G?Y@H%1 z{1&Esl@HQ^sY2X`Au+>~4vq)mMH(4;(6$|Vq*Kr}l>%TcDk-z;Rm|)!CBM&X9Rh{9 zT@le*7~*HyC=NnCYtpmc=JTydQ{o1Q!F@dW3oRb#-dwrRdD}L*M>{x@zt61J&TI8} zm7!j9?ZA%7WU7XR3{W~pdy)%Z?wA{qWiBUqKz}( z5+$xeTn6gh5=6sh01{A3w5SaFOA2YO*N17UdZGr3nMDhO!Rt}Fi#&E=)g>DKfi02~ zrEp7Z-pQ?)#j?c|0D!M7EAnO6T6a87jQ7NW!f@SJxd1uzBKn$;h_J*>mNj}N&VrDN zD4)JkqNREG*F;U-d@5f*>Q{b2kvOioIgF+$#W24~KM=d@a(6?964Fiaez9q)S)IB$ zVG39LP5BHfG8hULhK2nTN*7D-Xo2haL&F}%pY-b4d1r1~wZj(P3q`|<3Q0Nd(lK93 z6}crlq22x2jST((a0a@1$WJmvy5C9#i_qI^*YmeJ|bPl9)>PBCkuHd%27p)h2bjVmpSGDOzYT*k%2@nNOpkl*H<6Yz>T zh9G^=(#9k0PwMo%t?7-b$WCt+m38~65ouG}A)q_`Gct)BVS;*D-OHuq&P8#l8_)4f zfU?W-^L$Ei%Ia-(bN( zA<&(!c)%Rv$=%cu!I$r%3Mc)Q2jMGN+Rv*?o9cyDO;Oi8>7ugv^dEMV6)CRR&1M@@ zS-*3!0OWNZs*6sa=qa7ZqoPEI8gD`0H6PU&6z56TG2|=T) zuB@)>ecFP%^f`rmspDyql^xEyS@gMx0PLL$or(f?jK|>D=HFHq6XZZq5JL<71!WEs zMUUZW*2~jmXXy98~-F79dIb1C{#oH_$+C*$n5+hDUb@xDnBa> z4XAoI{NSTzF;D?)(4MHo;%OLeQWHc%-~j9a?KvXp^n8B`Cf%Nk8hwZ2H)pg^Y!NZp zFV8Nd^{yAub9iykfTnW=n7e;fpK*g?^qD4sK36KF`@_TOF!8KHjD5$a?U%vfS~aGS z8_cwdN%sDs91nX*Fy?Tnxu>WJKAgfy0iLU*vj{Z~*3lP1T`P(owz)~!6odVDD)gq!`SfwChK6(Gwe(fLFSxfNL>sch1a&RS$d!Cvtfc$* zq{O*8E&E603krB}b;ph9W+Wx2<2%!jy=^K+A$P`l9T}L7J3UmMDa=6@Pcm94rED|s z{z0z6%G|~MhVbia zZ~~fhG7SuP)oH+X8mA&#x$dXwz;v@EHc!6PWjTVA};p^Tg)LjzJ?Ryl0?n z_T|$zo&0)B=lDlMHO*B2wyeS&vcQ=YUtRG3c3f!Gjjjd2->2DmCeXGV1U`Kvgk?n? zPrK9c>b6?b;*$_*l?-kPxU-+uTT#pIv}w*lrv6F;*uR;;6n0<=*tVo%+oYw0TqhE) zYNfl$dDe0xy?8x`qn>b!(p#r!mb_?W!*%`KyGWc1^RSQp9ts_lc9JIz24_@4_|M|| zB7mozSI+RwDIJBR(hu%JWS->L@+F8?H$>`kISqcWQ8(I4prPSOqk(_+22S(GVdPgz zM-?V>J1U`V#9cZ{r6wRRB*#OJ<3f5nuQl4G0j90|3+*~GAMgOW=E6TxNr#nk zdewfF=)&rA+%pua-8F5^Vm4LNMU}TubHio4`{no>eBEN z93JkhIrsjigVfh9j$WpellMlYgw%DiFbomx16w;lq zBz-0}h~|`?X*4-32cIk2{Z8j*8ew3F zkvl&Pke{rbkIKJ@5}2udsei4w6wDW2da4JZ@%@HkU-Ml1c|U{_e0#IqbuSW&jfh!hU7XHv^}{66J_^mlCevLbM(Nu;z2faO#{NG7^{8u6tc#uxelykG`X|8rsz+{0biCq0= z9t{f82@wO7k?vL^-t?>u!k@U}n-o^MsV}hb6P!CI(rfOL_Zt-)b%KYd{*k`hibprO zfuvL&X*$HDs^mI~w*Lc6c4d2Sgg7|1c@ao0F96;UBs zsI49nvf$v!yKhd+!vQyW2Qg|50p3@&IO`qKNSd3GNupVA)>9J4YjLpf=!k2{Aox{7 zJm;=`{|o--u(!)?tiHMdaP#3m!?Ru$n)M@MX!g5TzG8^1MP#ir1|r7Y9DwtALot;I6!pncsG7~s8h4~ zly_2b+t^>M)pEQ|o0zs$pq6x(ajdf3X(5z<*;t6E)}zfL7PJ`noBnvrjyGBNCmc`f zvG964RnBU}8IyQi$C%`y??V_HCyMjsWnT}?)8|X&&)>8)b8IkmunCWQjO_+34FI}? zcLn9C+x)bYEe5vhdu8w#sc8_n=?gs9;QE3G)etSHXiu+-heh(KJxXC5phP)2wfVQ8 zF733!qxo~PVqvFd(Fb46(-bkA@fwM13aUzHC%JmmXQW~2Ye=qea;j-y_Q)s8^L^8*~;mDs^)7Y&b9Q*aX;Ik1P*d7Pvh8HEdP3)B8`j z_j^Q8ECu|B{{E5JqF+CeAE5%I?_WvqZ-=T7o_8J!91fdgDxuDfey_{eF|75>jrsN% zWsaFhwr7ZbcqwRO8p7I&Q?#?KeA8lrw*C%M(p8Z98sHK7rGi!EyHx*U51)@#>t@>| z_ms?pZHFrr_MWLsfceS@e)iU!dl0J&x;9p}@~f>zAXLJ%<;xH;L` z+$7^X8bq(7s~?$>bHEJ+mS;L)LP?h!%7pme=VYKMbed!LS*l4oKrU$lr6yJ1?4Ze> ztN)NM6n~i}@$}A!$~tXbZEtUka{OH|G(9(@>SuL(3#`+}cigA>Q8DVpE++)Kgy}g% z8k5sr<#%Ijta>8`mgiz|rJhYkDf&~t=-}`ejq19~gqhX;yIDo8d)gW&if5;h_jJxe z4@xN=0KHtdg_weN{_RnAsc{e8R~=N3YW4)?J+PDl3AfWsPyIQ+86BOlV;r(~KbH0M zFS;4D*W&sSC z1gaqF-C?wQZLDGNdo3@a+H>a&mLrptFJ#15A(J(?bCar2b+R(hbAU>_)&v_HtN>dXXlJlUoSV-jLQc%;F zVt+^Z!B+6fm-NDP+_Wpbl$~~t!TQke64M|r@|}TxcV<}!#F$n6j=Pv-sWqAHlhxlg zHCT@v^Z8QY)29Mvglk*s)~9KZuP?M4frH|0#l#%Y1Efh5*==CFt(po`&eu<*Z^yZs zx~EMOPDF%>F&~iJ7X%87xW`Ne#S(utJ_|sWAD0lHJIR%Tinsii>dJZJFNNl`TkRun z9=n#bTX#8k4`N*{94lCDtUlY|8H zW!~R3X4JoonGc+iqzBIEpY`aK4I}A;o*kP0ZEZF^CLW#KSazrv>E9!s``EQ$K6jg( zc^16+>*6wdWpsI!@wVo)W8?FBiYVUcUW?^7!NSu`l0GXae_!Ez4OGuWt9+%iuEjEv ze!ax*wa;duyGY2vwmyw4Swp90-a*W!8&6987^3$r(tfDe@TkxP4#vOfixc5jQg{+g ziESpM_}IF=QL7)O!p5(k)*uEsBEQVyL>1rE<9(;Ns6mX=jqkANoS>+APIM5_nk&fd=H=$Ck(GH}+t-pZs63iU&#xlhEd5WM@N7QgAW4x`? z8d7EO!IDva>3TF|{CQkW z2puA=pEh1IF)b~CuJ--YuP+|LlXLZjyrUUw(;w_4U(Ao%)~^NL?O$vHqutF+0e1(58Q@lgxhKEe4%)2D7cJSdhvQP zMqa+g2MGJW`kQ4yuaGTm&05I1XsZxC5hhDvj<1Z#N1{nw@N6Jq7YNhN~1VGnH zAL}`Ni`XW=K^S#!JSXR+867EKIuX?wMd-yR<#i510-*ZW3&uXca)Pg>3l1sh<8z-q zZirBfXL(s@ufRavlhH07Qx3o^r{4@enwH{#2^wf6W$))a3Xo3Kci{=I7W5hR3JAY} z0=kq1@6(9EJUlsDAwz85Bl291t$zc!NJ#aQ<)jKuoGzh5>2Crfuh8d z!_|)in5V_HZU3a8>E#m3iWfTKjjboIM`;VRcMOl2jb{scRCcQfDAAa)p~OL>Q8!XH zhMz|lWK2oze^pNF^F##5V+YL?^x|+9jw$_M*cM4M57zlt&bXziPe&iM@4M(sGc8 zY=-#68U z@i)zxo7v9xdHFv8c}>Ug+l!&CKAB=)yv(6$O@v{HFV6M>0y+n?8uGVfuIe#JI!AY zn$#^S9k{bzcG>t$%5Qkc&FqQ=Wxyow)nY1Fr#!eR1X{bYs~KZpn;08eO8H`;Z*RNc6n+tbI#Q zkXY%>V|(G|ABR0SZ(_8!6?X&1NPW4uMDhrK9Ocfc+JVLWVKsN6Y;3fYKK2CmAf<_G zEKksfWB#QMhdQndt~;|-{o|+3X*uBcc+I z1~9MztXzEPAYk_z!1khj6v&!31yz@s;d+|h;?236>4yy8B;Fs@C>?Sw#@}A99G#Om zVWPM_rFM#6wY5CRWIOG<4wRVxJP2!EWue(!rLT2WQ^+|xCwa2kOL}Y<;`78Nx_RM| z$eI>(cerDIgf(ywBKr;a6e3=GTxGo^Cd+$eNC&pnxDNciXrA_O@b;+R9X_cQ%;fP_ z7K8#D@KB!IZjloRcR$f@b76mATI}2=81E-IvQ9oXIfV^PLjqY_aeEKH z{~sBbWs`+*&%J6UhjAaKgqPM$yaIHkJ%-Y3ejWujptGRB0b}9b9<&xtt~C25-rlJl zBoRL}DtOhY;s$sgTdqyK6k@~n6jnERI2N?G2qvE%G#_J(@1B;d&Rm$jKg!`ev6D6C zIewXjH?V{#q>~*kndNMY3TM?pHkf}ehP0K_eh7}O{fvc#4+#J2@;kAaW>3{=x_wu( zSSGJVr}mIdK7((pYUk%{QYx4VA79@bPDyBx&?frLst>~La@$57sF~=5lKt_pgtl(Bs?<$p-ld z?h?PD9Jkdnxj!y#lUerV>hcC6Y1K1~B%1JlzeZsR)DC4sT2J&~mIeO~_M7cZP!xqW&N9URWSKG{U zOgHwYdko@Qe&&P4wbbFqtly)9(hCFev-VaFzhN1Tgvu9r_A5gHSP;8(mCH2}C&2$?As?cXr;+mhCOazC?MlrIyV=(31V&!2hTHcEhdQ^^y5R z_A&}`Xs+R3_6T$>Kl79bbZV-vTB;Jm-liB8(oLVqSQ{DomXw=-jgiFxD8GhhMa|Sl zEibwNNexZ1r_vv&Do60QyHBml^YH{oLn&eL6w9Uie7kJgnTdQi!G>qCB;sRuYjtut zn5@D^=;c(ORR9j%SUC}Soikrbys~N9;bHuKQL9_o8+$Zg;;y)|%1IdTSE1;m(|~4o zs;Iu0K$c}XJE|jD_ebQULBDI`ALLBe!Wdb6dju4<;VxrSna)0ny)_Wc6Ij@!RBixW zJ%ZbYFD$?moIvi;3elbE7zd;i zuZcLcOvV}WBht~_$0aa`NHp7HUWMCRE;u)lv|S#>IU@uR?7!IsP#9H|;ag`H19He$(j$JW4$;c9-?P zAS*xw0FOm3dlZzoPm8M+SeTpFS-z(+97I8Ukibtx;Iyz3Al=AlB+I7?oZS zojS}AwDPxGV+x$Rsb}_f1z0G9I;m0`*>--%p(0O} zz^MIIduT`w;}IqQ0CeemV?9wyUF|Zw;GTBXD_blvLvpCTHJhZZO!d0)%Ete9LPk`9 z$6hf`PsP8{-#})i6@;OedbqwjKfe6={PfLxyP^LxUV^P_!?NW*<10bJV_(^EW}n9Kbun@hu9?-R?=7m`RV2@4h59Y*1#*uXJex8 zvfWb;r)cpD-lZAo-#v2;*Uv2;vZK(>Xv-Ht0d8$;%e{b#faht(-K0fe=RyNy{gBz( zXH~>!Qp>B#`85wQeNqymZZ?)K%9%b@@Wt~ep%?~t9GU;gS)_ZG5W)3Rhf~?x4o%oO4rNXhwmUBp5!uR9Spq54VP;X5gUg$+ zRuz;=0xQOTim;u8XcA1#R)0mbO12A!W4t%hom+*81Ac5R-FFIH1zeo5HE|HT0V&K8$2|kRGyc1B_#m3*?Kic7@~`k zn|ww!A3`%1W+H4{r>{ztq@OrOPB`R<7_^TWnJ!v)j%#y|k;D`Z`{)Lyzi53CM^1fM z^5Wa0A?OeV9|lW@oVQ34km|?ljA(3H#p;|+)lxSvJk{dUjfd01fp=P{gbu>JG7LA% z$(9kJc`5o9oAmXG!Ntt^1Vo3i`7|g9IICh2hRR<@ug`;_6n4cIlO=WXU*BpfOb4pMd*!x=WGb$ z3(`sev>mCIWy8^2!p)x?!Ac(aB(VCMR=v0X;KB=(u8hi@e{SoQm< z2u$cg+?DrcxW8v;VP8LQ#e!a3oS$MQs6Ek81!ME$J>bM(V>^G~x6&x%yuEfTkqt<+ zU5{_l#)e>=v&GrE4CwbBd%X$Kn=UXt^)0tlsYXxQdw6N2pfLc4x@ZNVza-l`1(}4&o&%3 zr1we_hJ$H)*cCgPXm8lRpf-B2!B3Zia7N0MYV>mhC5qDp3{`wA6yEB^; z$+&54Smo*%^W9i0GR5T!4W}lFQe=Pdt*hlQM94j)40Y&SwfC@gx-S$#@iAzMETCJ)fb-lvxJ6I$?YNT=cyGC(s&;AZFI9dtqd}&2msLD5Kl7ie- zn|j70XKOtXy(lz`HwUd@J+D#g7>b6gc{0w`xvw?Z84zm08PoaSm?Fs4h6sTh;jj|JgJ?TrewRctxT) ziJ=5zUor#zpev+tI#p*BtiTby;hEpZ^r|pSiC3Zlw<~9G(YOCTK#@owz zz)9?=xg4m;SUE--o!7K(JYFAdzOGC!;j!k<49QcSoAHsY1O4!Ni2GO{sne&ZD4?2) zK~Us$&GoPHwQ1yGS?AMu$^2WJt?em)Tu!i%B>peGF084GL&L9RU>4do756LjY**|D zH0pe6t;; zsSTfgaDRhC?d#TyjJig^jGz?lZ_Yp2x*-qnrZ4}N+g1jdbps@SJ*f)lE!Ys0; z4dHJrWm3R?4F0#_3FJcVF`uQ-ek%mTJyuNktWq|*BVPhSJkd8Jmiqpk^YBPCeYpw= zO}*e>TZpvGNMuP661C*wy_^0;c~AfLqO1Y%5@GA6OCLzdi4c?aP4nZu2kBuNjkf81cVeNq_CuTRpsRP!8x)w2?jL6` + parts = path.split '/' + colors = parts_color parts.length + parts = _.zip(parts, colors).map (parts_with_colors) -> + [part, its_colors] = parts_with_colors + colorize_part part, its_colors + parts.join '/ ' + +parts_color = (len) -> + colors = + <[bold cyan]> + <[bold green]> + <[bold magenta]> + [0 to len - 1].map (i) -> + colors[i] || [\white] + +colorize_part = (part, colors) -> + colors.reduce (part, current) -> + part[current] + , part + +write_file = (path, content) -> + fs.exists path, (exists) -> + if !exists + fs.write-file path, content + +get_response = (type, fullpath, path, error, res, body, cb) -> + success = !error && res.status-code == 200 + if (success && type == \success || + !success && type == \error) + content = js_beautify res.body + write_file fullpath, content + console.log colorize_path path + cb JSON.parse res.body + +stringify_params = (params) -> + params_string = '' + for k, v of params + if params_string != '' + params_string = '&' + params_string + if typeof v == 'string' + params_string = "#k=#v" + params_string + else + params_string = "#k=#{JSON.stringify v}" + params_string + params_string + +cassettes_path = (dir, path, params) -> + base = "#{process.cwd!}/test/unit/fixtures/cassettes/#dir" + mkdirp base + fullpath = "#base/#path" + path = "cassettes/#dir/#path" + if params + params = " #{stringify_params params.params}" + fullpath += params + path += params + fullpath += '.json' + [fullpath, path].map (p) -> + p = p.replace /"/g, \་ + p.replace /,/g, \¸ + +wrapHttpGet = (url, fullpath, path) -> + req = {} + req.success = (cb) -> + error, res, body <- request.get {url} + res <- get_response \success, fullpath, path, error, res, body + cb res + req.error = (cb) -> + error, res, body <- request.get {url} + res <- get_response \error, fullpath, path, error, res, body + cb res + req + +exports.get = (dir, path, params) -> + url = "#base#path" + if params + url += "?#{stringify_params params.params}" + [fullpath, path] = cassettes_path dir, path, params + wrapHttpGet url, fullpath, path From 7de82234c900194cd5639e8d6a8eeae41a15f731 Mon Sep 17 00:00:00 2001 From: Lien Chiang Date: Wed, 10 Sep 2014 17:09:48 +0800 Subject: [PATCH 3/3] Added url support. --- app/app.ls | 2 +- app/bills-search.ls | 133 +++++++++++++++++++++++++++++---- app/partials/bills-search.jade | 9 ++- bower.json | 1 + bower.json.ls | 1 + 5 files changed, 130 insertions(+), 16 deletions(-) diff --git a/app/app.ls b/app/app.ls index 08b7e37..e245b73 100644 --- a/app/app.ls +++ b/app/app.ls @@ -30,7 +30,7 @@ angular.module \ly.g0v.tw <[ngGrid app.controllers ly.g0v.tw.controllers app.dir controller: \LYBills .state 'bills-search' do - url: '/bills-search' + url: '/bills-search?ad&session&year&month&day&committee&extra&sitting&motion_type' templateUrl: 'app/partials/bills-search.html' resolve: _init: <[LYService]> ++ (.init!) controller: \LYBillsSearch diff --git a/app/bills-search.ls b/app/bills-search.ls index 447974a..2bfb197 100644 --- a/app/bills-search.ls +++ b/app/bills-search.ls @@ -1,5 +1,8 @@ -angular.module 'app.controllers.bills-search' <[]> -.controller LYBillsSearch: <[$rootScope $scope LYModel]> ++ ($root-scope, $scope, LYModel) -> +angular.module 'app.controllers.bills-search' <[ngClipboard]> +.controller \LYBillsSearch, +<[$rootScope $scope LYModel $stateParams $location]> ++ ( + $root-scope, $scope, LYModel, $state-params, $location +) -> $scope.today = moment!.start-of 'day' .format 'YYYY MM/DD' get_latest_sitting = (cb) -> {entries} <- LYModel.get 'sittings' do @@ -149,9 +152,10 @@ angular.module 'app.controllers.bills-search' <[]> "#{committee.join ','}委員會聯席" else '' - find_suitable_committee = (sittings, committees) -> + find_suitable_committee = (sittings, committees, danger_type) -> selectable_committees = selectable_committees_of_sittings sittings - types = committees.map (committee) -> committee.type + types = [danger_type] + types ++= committees.map (committee) -> committee.type _.find types, (type) -> selectable_committees[type] selectable_committees_of_sittings = (sittings) -> @@ -165,12 +169,60 @@ angular.module 'app.controllers.bills-search' <[]> sitting.committee[0] else 'YS' + select_possible_options = (options, danger_options) -> + safe_option = options[*-1] + danger_option = _.find danger_options, (danger_option) -> + is_option_possible options, danger_option + danger_option || safe_option select_possible_option = (options, danger_option) -> safe_option = options[*-1] - if _.contains options, danger_option + if is_option_possible options, danger_option danger_option else safe_option + is_option_possible = (options, danger_option) -> + _.contains options, danger_option + + find_suitable_session = (sessions, safe_session, danger_session) -> + danger_session = _.find sessions, (session) -> + (session.ad == danger_session.ad || !danger_session.ad) && + (session.session == danger_session.session || !danger_session.session) + danger_session || safe_session + find_suitable_sitting = (sittings, danger_sittings) -> + safe_sitting = sittings[0] + danger_sittings = danger_sittings.map (danger_sitting) -> + suitable_sitting_in sittings, danger_sitting + danger_sitting = _.find danger_sittings, (sitting) -> + sitting + danger_sitting || safe_sitting + suitable_sitting_in = (sittings, danger_sitting) -> + _.find sittings, (sitting) -> + danger_sitting && + sitting.extra == danger_sitting.extra && + sitting.sitting == danger_sitting.sitting + find_suitable_motion_type = (motion_types, danger_types) -> + types = {} + motion_types.map (type) -> + types[type] = true + safe_type = motion_types[0] + danger_type = _.find danger_types, (danger_type) -> + types[danger_type] + danger_type || safe_type + parse_month = (month) -> + parse_param(month) - 1 + parse_sitting = (extra, sitting) -> + extra = parse_param extra + sitting = parse_param sitting + {extra, sitting} + parse_session = (ad, session) -> + ad = parse_param ad + session = parse_param session + {ad, session} + parse_param = (param) -> + if param == /^[1-9]\d*$/ + parse-int param + else + null find_sitting_by_id = (sittings, sitting_id) -> _.find sittings, (sitting) -> @@ -247,63 +299,84 @@ angular.module 'app.controllers.bills-search' <[]> return $scope.recursive_run_funcs[\$scope.select_sitting_year] = true $scope.sitting_year = selected_sitting_year + $state-params.sitting_year = $scope.sitting_year months = latest_months_of_sittings( sittings, $scope.committee, $scope.sitting_year) - month = select_possible_option months, $scope.sitting_month + month = select_possible_options(months, + [parse_month($state-params.month), $scope.sitting_month]) $scope.sittings_month = months $scope.select_sitting_month month $scope.select_sitting_month = ($scope.sitting_month) -> + $state-params.sitting_month = $scope.sitting_month $scope.recursive_run_funcs[\$scope.select_sitting_month] = true days = latest_days_of_sittings( sittings, $scope.committee, $scope.sitting_year, $scope.sitting_month) - day = select_possible_option days, $scope.sitting_day + day = select_possible_options(days, + [parse_param($state-params.day), $scope.sitting_day]) $scope.sittings_day = days $scope.select_sitting_day day $scope.select_sitting_day = ($scope.sitting_day) -> + $state-params.sitting_day = $scope.sitting_day $scope.recursive_run_funcs[\$scope.select_sitting_day] = true sittings_sittings = latest_sittings_of_sittings( sittings, $scope.committee, $scope.sitting_year, $scope.sitting_month, $scope.sitting_day) sittings_sitting = format_sittings_summary sittings_sittings, $scope.committees_map - sitting = select_possible_option sittings_sittings, $scope.sitting_sitting + param_sitting = parse_sitting $state-params.extra, $state-params.sitting + sitting = find_suitable_sitting(sittings_sittings, + [param_sitting, $scope.sitting_sitting]) committee = committee_of_sitting sitting $scope.sittings_sitting = sittings_sitting $scope.select_sitting_sitting sitting $scope.select_committee committee $scope.select_sitting_sitting = ($scope.sitting_sitting) -> + $state-params.extra = $scope.sitting_sitting.extra + $state-params.sitting = $scope.sitting_sitting.sitting summary = format_sitting_summary $scope.sitting_sitting, $scope.committees_map sitting = find_sitting_by_id sittings, $scope.sitting_sitting.id motions = sitting.motions - $scope.sitting_sitting_summary = summary - $scope.motions = motions - $scope.select_motion_type $scope.motion_type || \全部 + motion_type = find_suitable_motion_type($scope.motion_types, + [$state-params.motion_type, $scope.motion_type]) add_type_to_motions motions add_is_new_bill_to_motions motions, sitting + $scope.sitting_sitting_summary = summary + $scope.motions = motions + $scope.select_motion_type motion_type add_status_to_motions motions $scope.select_committee = (selected_committee) -> committees = selectable_committees_of_sittings sittings if !committees[selected_committee] return $scope.committee = selected_committee + $state-params.committee = $scope.committee if $scope.recursive_run_funcs[\$scope.select_committee] $scope.recursive_run_funcs = {} return $scope.recursive_run_funcs[\$scope.select_committee] = true years = latest_years_of_sittings sittings, $scope.committee - year = select_possible_option years, $scope.sittings_year + year = select_possible_options(years, + [parse_param($state-params.year), $scope.sitting_year]) $scope.sittings_year = years $scope.sitting_year = year $scope.select_sitting_year year $scope.select_motion_type = ($scope.motion_type) -> + $state-params.motion_type = $scope.motion_type motions = select_motions_by_type $scope.motions, $scope.motion_type $scope.selected_motions = motions $scope.select_session = ($scope.session) -> + $state-params.ad = $scope.session.ad + $state-params.session = $scope.session.session entries <- get_session_sittings $scope.session.ad, $scope.session.session sittings := entries sort_sittings_by_date_ascending sittings - committee = find_suitable_committee sittings, $scope.committees + committee = find_suitable_committee(sittings, + $scope.committees, $state-params.committee) $scope.select_committee committee - $scope.select_session $scope.latest_session + sessions = [$scope.latest_session] ++ $scope.other_sessions + params_session = parse_session $state-params.ad, $state-params.session + session = find_suitable_session(sessions, + $scope.latest_session, params_session) + $scope.select_session session $scope.session_class = (session) -> if $scope.session == session then \active else '' @@ -343,3 +416,35 @@ angular.module 'app.controllers.bills-search' <[]> \預算 \查照 \其他 + + $scope.url = -> + params = + $scope.session + $scope.sitting_year + $scope.sitting_month + $scope.sitting_day + $scope.committee + $scope.sitting_sitting + $scope.motion_type + not_prepared = _.any params, (param) -> + _.is-undefined param + if not_prepared + return \載入中... + protocol = $location.protocol! + port = $location.port! + host = $location.host! + path = $location.path! + params = + [\ad, $scope.session.ad] + [\session, $scope.session.session] + [\year, $scope.sitting_year] + [\month, $scope.sitting_month + 1] + [\day, $scope.sitting_day] + [\committee, $scope.committee] + [\extra, $scope.sitting_sitting.extra] + [\sitting, $scope.sitting_sitting.sitting] + [\motion_type, $scope.motion_type] + params = params.map (param) -> + param.join '=' + params = params.join '&' + "#protocol://#host:#port#path?#params" diff --git a/app/partials/bills-search.jade b/app/partials/bills-search.jade index 674b6b3..82cee1c 100644 --- a/app/partials/bills-search.jade +++ b/app/partials/bills-search.jade @@ -9,6 +9,13 @@ .menu .item(ng-repeat="session in other_sessions", ng-click="select_session(session)", ng-class="session_class(session)") {{session.name}} .ui.label.light.gray {{session.period}} + .right.menu + .item + .ui.action.input + input(type="text", value="{{url()}}") + .ui.right.labeled.icon.button(clip-copy="url()", clip-click="") + i.copy.icon + | 複製網址 .ui.menu .menu .ui.simple.dropdown.item {{sitting_year}} 年 @@ -38,7 +45,7 @@ .column(ng-repeat="motion in selected_motions") .ui.segment.bill-search .ui.left.corner.label {{motion.type}} - .ui.top.right.attached.label.green {{motion.status}} + .ui.top.right.attached.label.green {{motion.status || '載入中...'}} .ui.bottom.attached.label {{motion.proposed_by}} div {{motion.summary}} .ui.red.label(ng-if="motion.is_new_bill") new diff --git a/bower.json b/bower.json index 1b758c9..9e851a9 100644 --- a/bower.json +++ b/bower.json @@ -16,6 +16,7 @@ "angular-mocks": "1.2.12", "angular-scenario": "1.2.12", "angular-ui-router": "0.0.1", + "ng-clip": "0.2.2", "google-diff-match-patch-js": "~1.0.0", "cryptojslib": "3.1.2", "ng-grid": "https://github.com/angular-ui/ng-grid.git#9ccc29d3b76e0ce89614f6480232ea968ba0da7e", diff --git a/bower.json.ls b/bower.json.ls index f5cfe85..8f1722c 100755 --- a/bower.json.ls +++ b/bower.json.ls @@ -12,6 +12,7 @@ dependencies: "angular-mocks": "1.2.12" "angular-scenario": "1.2.12" "angular-ui-router": "0.0.1" + "ng-clip": "0.2.2" "google-diff-match-patch-js": "~1.0.0" cryptojslib: "3.1.2" "ng-grid": "https://github.com/angular-ui/ng-grid.git#9ccc29d3b76e0ce89614f6480232ea968ba0da7e"