<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_houtai_STRING Recordset1.Source = "SELECT * FROM dbo.dongtai ORDER BY ID DESC" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2 Recordset1.LockType = 1 Recordset1.Open() Recordset1_numRows = 0 %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim Recordset1_total Dim Recordset1_first Dim Recordset1_last ' set the record count Recordset1_total = Recordset1.RecordCount ' set the number of rows displayed on this page If (Recordset1_numRows < 0) Then Recordset1_numRows = Recordset1_total Elseif (Recordset1_numRows = 0) Then Recordset1_numRows = 1 End If ' set the first and last displayed record Recordset1_first = 1 Recordset1_last = Recordset1_first + Recordset1_numRows - 1 ' if we have the correct record count, check the other stats If (Recordset1_total <> -1) Then If (Recordset1_first > Recordset1_total) Then Recordset1_first = Recordset1_total End If If (Recordset1_last > Recordset1_total) Then Recordset1_last = Recordset1_total End If If (Recordset1_numRows > Recordset1_total) Then Recordset1_numRows = Recordset1_total End If End If %> <% ' *** Recordset Stats: if we don't know the record count, manually count them If (Recordset1_total = -1) Then ' count the total records by iterating through the recordset Recordset1_total=0 While (Not Recordset1.EOF) Recordset1_total = Recordset1_total + 1 Recordset1.MoveNext Wend ' reset the cursor to the beginning If (Recordset1.CursorType > 0) Then Recordset1.MoveFirst Else Recordset1.Requery End If ' set the number of rows displayed on this page If (Recordset1_numRows < 0 Or Recordset1_numRows > Recordset1_total) Then Recordset1_numRows = Recordset1_total End If ' set the first and last displayed record Recordset1_first = 1 Recordset1_last = Recordset1_first + Recordset1_numRows - 1 If (Recordset1_first > Recordset1_total) Then Recordset1_first = Recordset1_total End If If (Recordset1_last > Recordset1_total) Then Recordset1_last = Recordset1_total End If End If %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = 5 Repeat2__index = 0 Recordset2_numRows = Recordset2_numRows + Repeat2__numRows %> <% Dim Repeat3__numRows Dim Repeat3__index Repeat3__numRows = 5 Repeat3__index = 0 Recordset3_numRows = Recordset3_numRows + Repeat3__numRows %> <% Dim MM_paramName %> <% ' *** Move To Record and Go To Record: declare variables Dim MM_rs Dim MM_rsCount Dim MM_size Dim MM_uniqueCol Dim MM_offset Dim MM_atTotal Dim MM_paramIsDefined Dim MM_param Dim MM_index Set MM_rs = Recordset1 MM_rsCount = Recordset1_total MM_size = Recordset1_numRows MM_uniqueCol = "" MM_paramName = "" MM_offset = 0 MM_atTotal = false MM_paramIsDefined = false If (MM_paramName <> "") Then MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "") End If %> <% ' *** Move To Record: handle 'index' or 'offset' parameter if (Not MM_paramIsDefined And MM_rsCount <> 0) then ' use index parameter if defined, otherwise use offset parameter MM_param = Request.QueryString("index") If (MM_param = "") Then MM_param = Request.QueryString("offset") End If If (MM_param <> "") Then MM_offset = Int(MM_param) End If ' if we have a record count, check if we are past the end of the recordset If (MM_rsCount <> -1) Then If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' move the cursor to the selected record MM_index = 0 While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1)) MM_rs.MoveNext MM_index = MM_index + 1 Wend If (MM_rs.EOF) Then MM_offset = MM_index ' set MM_offset to the last possible record End If End If %> <% ' *** Move To Record: if we dont know the record count, check the display range If (MM_rsCount = -1) Then ' walk to the end of the display range for this page MM_index = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size)) MM_rs.MoveNext MM_index = MM_index + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = MM_index If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If End If ' if we walked off the end, set the offset based on page size If (MM_rs.EOF And Not MM_paramIsDefined) Then If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then If ((MM_rsCount Mod MM_size) > 0) Then MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' reset the cursor to the beginning If (MM_rs.CursorType > 0) Then MM_rs.MoveFirst Else MM_rs.Requery End If ' move the cursor to the selected record MM_index = 0 While (Not MM_rs.EOF And MM_index < MM_offset) MM_rs.MoveNext MM_index = MM_index + 1 Wend End If %> <% ' *** Move To Record: update recordset stats ' set the first and last displayed record Recordset1_first = MM_offset + 1 Recordset1_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (Recordset1_first > MM_rsCount) Then Recordset1_first = MM_rsCount End If If (Recordset1_last > MM_rsCount) Then Recordset1_last = MM_rsCount End If End If ' set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount) %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm If (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <% ' *** Move To Record: set the strings for the first, last, next, and previous links Dim MM_keepMove Dim MM_moveParam Dim MM_moveFirst Dim MM_moveLast Dim MM_moveNext Dim MM_movePrev Dim MM_urlStr Dim MM_paramList Dim MM_paramIndex Dim MM_nextParam MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 1) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then MM_paramList = Split(MM_keepMove, "&") MM_keepMove = "" For MM_paramIndex = 0 To UBound(MM_paramList) MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1) If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex) End If Next If (MM_keepMove <> "") Then MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1) End If End If End If ' set the strings for the move to links If (MM_keepMove <> "") Then MM_keepMove = MM_keepMove & "&" End If MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = MM_urlStr & "0" MM_moveLast = MM_urlStr & "-1" MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size) If (MM_offset - MM_size < 0) Then MM_movePrev = MM_urlStr & "0" Else MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size) End If %> 贵州省交通厅征费稽查局--机构设置
欢迎光临贵州省交通厅征费稽查局机构设置栏目


 


 

 

毕节征费稽查处工作职责

    一、职能配置
    (一)征收汽车、摩托车养路费。
    (二)征收收拖拉机养路费。
    (三)代征车购税。
    二、主要职责
    (一)宣传和执行国家有关养路费征收法律、法规、规章
和政策。
    (二)宣传和执行国家有关车辆购置税征收的法律、法规、和规章。
    (三)、依法对车主征收养路费、车购税。
    (四)、依法上路上户对拖欠、漏缴养路费的车辆和偷漏养路费严重的路段进行稽查,催缴欠费。
    (五)、按规定对新增、转籍、过户、改装、报废车辆养路费缴纳情况进行稽查办理有关手续。
    (六)、对各种车辆缴纳养路费情况进年度稽核。
    (七)、负责全处依法行政、政务公开工作;对执法情况进行检查、督促、指导。
    (八)、负责全处公路养路费、车辆购置税征收票据(证)
的领用、保管、缴销、审核、结存等工作。
    (九)负责全处固定资产、稽查人员服装、执法车辆、计
算机等主要装备的统一管理工作。
    (十)负责全处党务、纪检、监察、行风建设和群团工作;负责全处机构编制、劳动人事、工资、保险、离退人员管理工作。
    (十一)、负责全处征稽人员的党纪、政纪、法纪、职业道德教育和岗位培训工作,负责全处精神文明建设和职工队伍建设。
    (十二)承办省交通厅和省征稽局以及地方有关部门和领
导交办的其它事项。
    三、领导介绍
    靳天祥,中共毕节征费稽查处党支部书记、副处长,主持全处党务工作、人事工作,分管办公室、政工科,联系电话:8252320。
    龙光亮,中共毕节征费稽查处党支部委员、副处长,主管全处行政工作,分管财务科、征管科,联系电话:8251581。
    胡家春,中共毕节征费稽查处党支部委员、工会主席,主管全处工会工作,协助支部抓两个文明建设,联系电话:8253735。
    程斯琪,中共毕节征费稽查处党支部委员、副处长,分管直属所、稽查科,协助分管财务科,联系电话:8256996。
    四、机构设置
    (一)、处机关科(室)
    (1)、办公室及职责
主任,戴春玲。职责:贯彻落实局、处有关决议、决定,负责组织协调、督办;负责公文处理、印签管理和文书档案的管理工作;负责本处文件、征稽政务、信息收集、编写、传递和宣传、报道工作,承办处工作总结;负责机关内部日常事务和对外联络、接待工作;负责固定资产、服装和车辆管理;负责组织筹备处长办公会议和完成领导临时交办的其它工作。联系电话:8252322。
    (2)、征费管理科及职责
副科长,吴春江(主持工作)、申秀兰。职责:宣传、贯彻、落实国家和交通规费征收的法规、政策;编制分解下达年度交通规费征收计划;组织检查、指导各所交通规费征收工作;统计分解车辆动态和规费征收进度;按时汇总上报养路费征收各类报表及各项总计资料;负责征费票据的领发和清号;负责办理养路费征收减免报批手续;完成领导临时交办的其它工作。联系电话: 8251806。
    (三)、政工科及职责
科长,王海华,副科长,李昌军。职责:宣传、贯彻党的路线、方针和政策;执行国家和上级的有关人事、工资管理的各项政策规定;负责处管理权限内干部的考察、考核、任免、调动、奖惩、培训、离退休工作;承办支部工作总结;负责上级党委交办的党务工作和各类信息资料收集汇总;负责支部印签管理;承办全处纪检、监察日常工作;协助支部抓好工、青、妇和计划生育方面工作;协助党政领导组织开展两个文明建设、职业道德教育和法制教育工作;完成领导临时交办的其它工作。联系电话:8253734。
    (4)、财务科及职责
科长,周茂国。职责:负责全处年度决算的编制工作;检查、指导、监督各所会计基础工作的规范化、制度化建设;负责各所经费预算的执行和业务规费的使用管理;负责全处职工工资、奖金发放,对各所经费的开支进行审核;负责基建计划的制定、执行和固定资产的管理;负责对全处的经济活动进行审计;负责交通规费的解缴工作;负责票据的领发、缴清工作;负责对各所财务人员的业务考核工作;完成领导临时交办的其它工作。联系电话:8250731。
    (5)、稽查科及职责
科长,肖仕军。职责:负责组织全处稽查工作的开展;协调、检查、指导各所稽查工作;配合征费科制定稽查措施;按时报送车辆缴费清单;负责对执法证件、暂扣车辆证件的清理发放、销号管理工作;负责处理被查扣的车辆和证件;完成领导临时交办的其它工作。联系电话:8253732。
    (二)、各县机构设置
    (1)、毕节直属征费稽查所,所长,申时毅,副所长,杨大芬。职责:宣传和执行国家有关养路费征收法规和政策;依法对车主征收养路费;依法上路对拖欠、偷、漏、逃缴养路费的车辆进行稽查和催缴欠费;按有关规定对新增、转过户、改装、报废车辆养路费缴纳情况进行稽核办理有关手续;对各类车辆缴纳养路费情况进行稽核;办理上级领导交办的其它工作。联系电话:8253730。
    (2)、大方征费稽查所,所长,何贵芳。职责:同上。联系电话:2211458。
    (3)、黔西征费稽查所,副所长(主持工作),马澈。职责:同上。联系电话:2211458。
    (4)、金沙征费稽查所,副所长(主持工作),王仁义。职责:同上。联系电话:7251129。
    (5)、织金征费稽查所,所长,李发荣。职责:同上。联系电话:7622303。
    (6)、纳雍征费稽查所,所长,张祖槐。职责:同上。联系电话:3521500。
    (7)、威宁征费稽查所,副所长(主持工作),李兴国。职责:同上。联系电话:6222102。
    (8)、赫章征费稽查所,副所长(主持工作),闵青松。职责:同上。联系电话:3230949。

 

版权所有:贵州省交通厅征费稽查局 Copyright◎2008 http://www.qjzj.com.cn All Rights Reserved
技术支持:贵州省交通厅征费稽查局征费管理科
<% Recordset1.Close() Set Recordset1 = Nothing %>