<%@LANGUAGE="JAVASCRIPT" CODEPAGE="936"%> <% var rs3__MMColParam = "美容"; if (String(Request("MM_EmptyValue")) != "undefined" && String(Request("MM_EmptyValue")) != "") { rs3__MMColParam = String(Request("MM_EmptyValue")); } %> <% var rs3 = Server.CreateObject("ADODB.Recordset"); rs3.ActiveConnection = MM_article_STRING; rs3.Source = "SELECT * FROM article WHERE typeid = '"+ rs3__MMColParam.replace(/'/g, "''") + "' ORDER BY articleid DESC"; rs3.CursorType = 0; rs3.CursorLocation = 2; rs3.LockType = 1; rs3.Open(); var rs3_numRows = 0; %> <% var rs__MMColParam = "1"; if (String(Request.QueryString("typeid")) != "undefined" && String(Request.QueryString("typeid")) != "") { rs__MMColParam = String(Request.QueryString("typeid")); } %> <% var rs = Server.CreateObject("ADODB.Recordset"); rs.ActiveConnection = MM_article_STRING; rs.Source = "SELECT * FROM article WHERE typeid = '"+ rs__MMColParam.replace(/'/g, "''") + "' ORDER BY articleid DESC"; rs.CursorType = 0; rs.CursorLocation = 2; rs.LockType = 1; rs.Open(); var rs_numRows = 0; %> <% var Repeat3__numRows = 5; var Repeat3__index = 0; rs3_numRows += Repeat3__numRows; %> <% var Repeat1__numRows = 25; var Repeat1__index = 0; rs_numRows += Repeat1__numRows; %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var rs_total = rs.RecordCount; // set the number of rows displayed on this page if (rs_numRows < 0) { // if repeat region set to all records rs_numRows = rs_total; } else if (rs_numRows == 0) { // if no repeat regions rs_numRows = 1; } // set the first and last displayed record var rs_first = 1; var rs_last = rs_first + rs_numRows - 1; // if we have the correct record count, check the other stats if (rs_total != -1) { rs_numRows = Math.min(rs_numRows, rs_total); rs_first = Math.min(rs_first, rs_total); rs_last = Math.min(rs_last, rs_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (rs_total == -1) { // count the total records by iterating through the recordset for (rs_total=0; !rs.EOF; rs.MoveNext()) { rs_total++; } // reset the cursor to the beginning if (rs.CursorType > 0) { if (!rs.BOF) rs.MoveFirst(); } else { rs.Requery(); } // set the number of rows displayed on this page if (rs_numRows < 0 || rs_numRows > rs_total) { rs_numRows = rs_total; } // set the first and last displayed record rs_last = Math.min(rs_first + rs_numRows - 1, rs_total); rs_first = Math.min(rs_first, rs_total); } %> <% var MM_paramName = ""; %> <% // *** Move To Record and Go To Record: declare variables var MM_rs = rs; var MM_rsCount = rs_total; var MM_size = rs_numRows; var MM_uniqueCol = ""; MM_paramName = ""; var MM_offset = 0; var MM_atTotal = false; var MM_paramIsDefined = (MM_paramName != "" && String(Request(MM_paramName)) != "undefined"); %> <% // *** Move To Record: handle 'index' or 'offset' parameter if (!MM_paramIsDefined && MM_rsCount != 0) { // use index parameter if defined, otherwise use offset parameter r = String(Request("index")); if (r == "undefined") r = String(Request("offset")); if (r && r != "undefined") MM_offset = parseInt(r); // if we have a record count, check if we are past the end of the recordset if (MM_rsCount != -1) { if (MM_offset >= MM_rsCount || MM_offset == -1) { // past end or move last if ((MM_rsCount % MM_size) != 0) { // last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount % MM_size); } else { MM_offset = MM_rsCount - MM_size; } } } // move the cursor to the selected record for (var i=0; !MM_rs.EOF && (i < MM_offset || MM_offset == -1); i++) { MM_rs.MoveNext(); } if (MM_rs.EOF) MM_offset = i; // set MM_offset to the last possible record } %> <% // *** Move To Record: if we dont know the record count, check the display range if (MM_rsCount == -1) { // walk to the end of the display range for this page for (var i=MM_offset; !MM_rs.EOF && (MM_size < 0 || i < MM_offset + MM_size); i++) { MM_rs.MoveNext(); } // if we walked off the end of the recordset, set MM_rsCount and MM_size if (MM_rs.EOF) { MM_rsCount = i; if (MM_size < 0 || MM_size > MM_rsCount) MM_size = MM_rsCount; } // if we walked off the end, set the offset based on page size if (MM_rs.EOF && !MM_paramIsDefined) { if ((MM_rsCount % MM_size) != 0) { // last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount % MM_size); } else { MM_offset = MM_rsCount - MM_size; } } // reset the cursor to the beginning if (MM_rs.CursorType > 0) { if (!MM_rs.BOF) MM_rs.MoveFirst(); } else { MM_rs.Requery(); } // move the cursor to the selected record for (var i=0; !MM_rs.EOF && i < MM_offset; i++) { MM_rs.MoveNext(); } } %> <% // *** Move To Record: update recordset stats // set the first and last displayed record rs_first = MM_offset + 1; rs_last = MM_offset + MM_size; if (MM_rsCount != -1) { rs_first = Math.min(rs_first, MM_rsCount); rs_last = Math.min(rs_last, MM_rsCount); } // set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount != -1 && MM_offset + MM_size >= MM_rsCount); %> <% // *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters // create the list of parameters which should not be maintained var MM_removeList = "&index="; if (MM_paramName != "") MM_removeList += "&" + MM_paramName.toLowerCase() + "="; var MM_keepURL="",MM_keepForm="",MM_keepBoth="",MM_keepNone=""; // add the URL parameters to the MM_keepURL string for (var items=new Enumerator(Request.QueryString); !items.atEnd(); items.moveNext()) { var nextItem = "&" + items.item().toLowerCase() + "="; if (MM_removeList.indexOf(nextItem) == -1) { MM_keepURL += "&" + items.item() + "=" + Server.URLencode(Request.QueryString(items.item())); } } // add the Form variables to the MM_keepForm string for (var items=new Enumerator(Request.Form); !items.atEnd(); items.moveNext()) { var nextItem = "&" + items.item().toLowerCase() + "="; if (MM_removeList.indexOf(nextItem) == -1) { MM_keepForm += "&" + items.item() + "=" + Server.URLencode(Request.Form(items.item())); } } // create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL + MM_keepForm; if (MM_keepBoth.length > 0) MM_keepBoth = MM_keepBoth.substring(1); if (MM_keepURL.length > 0) MM_keepURL = MM_keepURL.substring(1); if (MM_keepForm.length > 0) MM_keepForm = MM_keepForm.substring(1); %> <% // *** Move To Record: set the strings for the first, last, next, and previous links var MM_moveFirst="",MM_moveLast="",MM_moveNext="",MM_movePrev=""; var MM_keepMove = MM_keepBoth; // keep both Form and URL parameters for moves var MM_moveParam = "index"; // if the page has a repeated region, remove 'offset' from the maintained parameters if (MM_size > 1) { MM_moveParam = "offset"; if (MM_keepMove.length > 0) { params = MM_keepMove.split("&"); MM_keepMove = ""; for (var i=0; i < params.length; i++) { var nextItem = params[i].substring(0,params[i].indexOf("=")); if (nextItem.toLowerCase() != MM_moveParam) { MM_keepMove += "&" + params[i]; } } if (MM_keepMove.length > 0) MM_keepMove = MM_keepMove.substring(1); } } // set the strings for the move to links if (MM_keepMove.length > 0) MM_keepMove = Server.HTMLEncode(MM_keepMove) + "&"; var urlStr = Request.ServerVariables("URL") + "?" + MM_keepMove + MM_moveParam + "="; MM_moveFirst = urlStr + "0"; MM_moveLast = urlStr + "-1"; MM_moveNext = urlStr + (MM_offset + MM_size); MM_movePrev = urlStr + Math.max(MM_offset - MM_size,0); %> 办税指南->申报征收指南
今天是


办税指南

    全站搜索
文章类别:
 

 

 

                申报征收指南   

一、 申报税种

在国税机关申报的税种有增值税、消费税、外商投资企业和外国企业所得税。

二、 各税种申报资料

(一)   增值税纳税申报资料

1.必报资料

①《增值税纳税申报表(适用于增值税一般纳税人)》及其《增值税纳税申报表附列资料(表一)、(表二)、(表三)、(表四)》;

②使用防伪税控系统的纳税人,必须报送记录当期纳税信息的IC卡(明细数据备份在软盘上的纳税人,还须报送备份数据软盘)、《增值税专用发票存根联明细表》及《增值税专用发票抵扣联明细表》;

③《资产负债表》和《损益表》;

④特殊行业需报《成品油购销存情况明细表》(发生成品油零售业务);

小规模纳税人只需报增值税纳税申报表和《资产负债表》及《损益表

》。

2.备查资料

已开具的增值税专用发票和普通发票存根联;

符合抵扣条件并且在本期申报抵扣的增值税专用发票抵扣联;

海关进口货物完税凭证运输发票、购进农产品普通发票及购进废旧物资普通发票的复印件;

收购凭证的存根联或报查联;

代扣代缴税款凭证存根联。

(二)消费税申报资料

1.消费税申报表;

2.《资产负债表》和《损益表》(增值税申报时报送了,不必单独报);

(三)外商投资企业和外国企业所得税申报资料

1.查帐征收户(简称A类)报送《外商投资企业和外国企业所得税申报表AA1

2.核定利润率征收户(简称B类)报送《外商投资企业和外国企业所得税申报表BB1》;

3.A类、B类企业均应报送所得税(应从所得申报系统输出的)软盘;

4.《资产负债表》和《损益表》(属交纳税增值税、消费税的不必单独报送);

5.年度终了后还应报送年度所得税申报表和会计决算表及软盘。

三、申报期限

(一       增值税、消费税。《中华人民共和国增值税暂行条例》及《中华人民共和国消费税暂行条例》规定:增值税、消费的纳税期限分别为1日、3日、5日、10日、15日或者1个月。南昌市规定纳税人按月进行纳税申报的于次月10日前申报缴纳。遇最后一日为法定节假日的,顺延1日,在每月1日至10日内有有连续3日以上法定休假的,按休假日天数顺延。纳税人进口货物,应当自海关填发税款缴纳证的次日起7日内缴纳税款。

(二)外商投资企业和外国企业所得税申报期限。企业所得税和地方所得税实行按年计算,分季预缴。季度终了的15日内申报,年度终了后四个月内申报。

四、申报地点

除国家另有规定外,应当向纳税人核算地主管税务机关申报纳税。具体为:在南昌市区的纳税户向南昌市国税局国际税务管理分局(南京东路104号)申报;在高新区内的纳税户向南昌市国税局高新技术开发区国家税务局(火炬大街89号)申报;在南昌市经济技术开发区内的企业向南昌市经济技术开发区国税局(昌北下罗)申报;在南昌县、新建县、湾里区、进贤县、安义县范围内的企业应分别向南昌县国家税务局(莲塘镇向阳路442弄)、新建县国家税务局(长征路474号)、湾里区国家税务局(湾里区翠岩路127号)、进贤县国家税务局(进贤大道351号)、安义县国家税务局(县城文峰路341号)申报。

五、申报方式

(一)直接申报(上门申报)

    直接申报是指纳税人自行到税务机关办理纳税申报。

(二)邮寄申报

    邮寄申报是指经税务机关批准的纳税人使用统一规定的纳税申报特快专用信封,通过邮政部门办理交寄手续,并向邮政部门索取收据作为申报凭据的方式。邮寄纳税申报的具体日期以邮政部门收寄邮戳日期为准。

(三)数据电文

数据电文是指经税务机关批准的纳税人经电子手段、光学手段或类似手段生成、储存或传递的信息,这些手段包括电子数据交换、电子邮件、电报、电传或传真等。在增值税一般纳税人全面推行防伪税控系统的同时,全面实行网上申报、网上比对。

1.网上申报。纳税人通过INTERNET登录《多元化电子申报纳税系统》,采用“客户端”方式“离线”填写纳税申报表及附表后再“上网”申报,系统将纳税人的基本情况等等信息写入CTAIS系统进行校验后,申报信息自动写入CTAIS系统;随后纳税人在系统中进行缴款操作,系统向银行发出扣缴税款电子指令,并晚霞申报扣款信息自动写入CTAIS系统,税、银、库电子对帐后自动上解、入库销号。

2. 网上比对。增值税一般纳税人进行网上申报操作、填写申报表及附表数据并确认后,网上申报的增值税销项税额数据、进项税额数据与抄税服务器中的纳税人抄税数据(进项税额数据)实现票表自动比对,纳税人视比对结果进行申报表调整或网上申报纳税操作。

(四)延期申报管理

纳税人和扣缴义务人因不可抗力的作用不能按期办理纳税申报的,可申请延期申报。经核准延期办理纳税申报的应当在纳税期内按照实际缴纳的税款或者税务机关核定的税款预缴税款,并在核准的延期内办理纳税结算。

六、处罚规定

   纳税人未按照规定的期限办理纳税申报和报送纳税资料的,或者是扣缴义务人未按照规定的限期向税务机关报送代扣代缴,代收代缴税款报告表和有关资料的,由税务机关责令限期改正,可以处二千元以下的罚款;情节严重的,可以处二千元以上一万元以下的罚款。

 
【关闭窗口】

 

 

主  办:南昌市国际税务管理分局

 

承  办:南昌市国际税务管理分局信息中心 版 权 所 有

地  址:南昌市南京东路104号

联系电话:0791-8177247

<% rs3.Close(); %> <% rs.Close(); %>