『壹』 购入服务器机柜入哪个科目如果入固定资产,折旧年限几年
购入服务器机柜可以计入固定资产,折旧年限可根据以下内容确定专:
除国务院财政属、税务主管部门另有规定外,固定资产计算折旧的最低年限如下:
(一)房屋、建筑物,为20年;
(二)飞机、火车、轮船、机器、机械和其他生产设备,为10年;
(三)与生产经营活动有关的器具、工具、家具等,为5年;
(四)飞机、火车、轮船以外的运输工具,为4年;
(五)电子设备,为3年。
在实际工作中,企业一般应按月计提固定资产折旧。企业在实际计提固定资产折旧时,当月增加的固定资产,当月不提折旧,从下月起计提折旧;当月减少的固定资产,当月照提折旧,从下月起不提折旧。固定资产提足折旧后,不论能否继续使用,均不再计提折旧;提前报废的固定资产,也不再补提折旧。
『贰』 软件企业购买服务器应按照几年计提折旧
软件企业购买抄服务器,应按照不低于3年的时间计提折旧。
服务器也是电子产品,按照电子产品的规定计提折旧即可。
根据新企业所得税法,固定资产折旧年限规定:
第六十条:除国务院财政、税务主管部门另有规定外,固定资产计算折旧的最低年限如下:
(一)房屋、建筑物,为20年;
(二)飞机、火车、轮船、机器、机械和其他生产设备,为10年;
(三)与生产经营活动有关的器具、工具、家具等,为5年;
(四)飞机、火车、轮船以外的运输工具,为4年;
(五)电子设备,为3年。
『叁』 大型国有企业的存储设备和服务器设备的固定资产折旧年限是多少年
电子设备最低可以按3年
『肆』 java web 开发如何控制使用期限及绑定服务器mac
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetAddress;
import java.net.NetworkInterface;
/**
* 与系统相关的一些常用工具方法.
*
* @author lvbogun
* @version 1.0.0
*/
public class SystemTool {
/**
* 获取当前操作系统名称. return 操作系统名称 例如:windows xp,linux 等.
*/
public static String getOSName() {
return System.getProperty("os.name").toLowerCase();
}
/**
* 获取unix网卡的mac地址. 非windows的系统默认调用本方法获取.
* 如果有特殊系统请继续扩充新的取mac地址方法.
*
* @return mac地址
*/
public static String getUnixMACAddress() {
String mac = null;
BufferedReader bufferedReader = null;
Process process = null;
try {
// linux下的命令,一般取eth0作为本地主网卡
process = Runtime.getRuntime().exec("ifconfig eth0");
// 显示信息中包含有mac地址信息
bufferedReader = new BufferedReader(new InputStreamReader(
process.getInputStream()));
String line = null;
int index = -1;
while ((line = bufferedReader.readLine()) != null) {
// 寻找标示字符串[hwaddr]
index = line.toLowerCase().indexOf("hwaddr");
if (index >= 0) {// 找到了
// 取出mac地址并去除2边空格
mac = line.substring(index + "hwaddr".length() + 1).trim();
break;
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (bufferedReader != null) {
bufferedReader.close();
}
} catch (IOException e1) {
e1.printStackTrace();
}
bufferedReader = null;
process = null;
}
return mac;
}
/**
* 获取widnows网卡的mac地址.
*
* @return mac地址
*/
public static String getWindowsMACAddress() {
String mac = null;
BufferedReader bufferedReader = null;
Process process = null;
try {
// windows下的命令,显示信息中包含有mac地址信息
process = Runtime.getRuntime().exec("ipconfig /all");
bufferedReader = new BufferedReader(new InputStreamReader(
process.getInputStream()));
String line = null;
int index = -1;
while ((line = bufferedReader.readLine()) != null) {
System.out.println(line);
// 寻找标示字符串[physical
index = line.toLowerCase().indexOf("physical address");
if (index >= 0) {// 找到了
index = line.indexOf(":");// 寻找":"的位置
if (index >= 0) {
System.out.println(mac);
// 取出mac地址并去除2边空格
mac = line.substring(index + 1).trim();
}
break;
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (bufferedReader != null) {
bufferedReader.close();
}
} catch (IOException e1) {
e1.printStackTrace();
}
bufferedReader = null;
process = null;
}
return mac;
}
/**
* windows 7 专用 获取MAC地址
*
* @return
* @throws Exception
*/
public static String getMACAddress() throws Exception {
// 获取本地IP对象
InetAddress ia = InetAddress.getLocalHost();
// 获得网络接口对象(即网卡),并得到mac地址,mac地址存在于一个byte数组中。
byte[] mac = NetworkInterface.getByInetAddress(ia).getHardwareAddress();
// 下面代码是把mac地址拼装成String
StringBuffer sb = new StringBuffer();
for (int i = 0; i < mac.length; i++) {
if (i != 0) {
sb.append("-");
}
// mac[i] & 0xFF 是为了把byte转化为正整数
String s = Integer.toHexString(mac[i] & 0xFF);
sb.append(s.length() == 1 ? 0 + s : s);
}
// 把字符串所有小写字母改为大写成为正规的mac地址并返回
return sb.toString().toUpperCase();
}
}
写一个全局拦截的servlet,只要有请求的时候就调用这个类里面的获取mac地址的方法
String os = getOSName();
System.out.println(os);
if (os.equals("windows 7")) {
String mac = getMACAddress();
System.out.println(mac);
} else if (os.startsWith("windows")) {
// 本地是windows
String mac = getWindowsMACAddress();
System.out.println(mac);
} else {
// 本地是非windows系统 一般就是unix
String mac = getUnixMACAddress();
System.out.println(mac);
}
记得判断一下是什么系统
『伍』 公司自用的服务器折旧年限和净残值是多少请高手帮忙
固定资产来计算折旧的最低年限如下源:
(一)房屋、建筑物,为20年;
(二)飞机、火车、轮船、机器、机械和其他生产设备,为10年;
(三)与生产经营活动有关的器具、工具、家具等,为5年;
(四)飞机、火车、轮船以外的运输工具,为4年;
(五)电子设备,为3年。
所以公司自用的服务器折旧年限大于3年即可,残值率一般为5%。
『陆』 服务器 存储的使用年限是多少,淘汰的设备该如何处理
使用环境好,定期维护,一般服务器和存储的生命周期超过5年,用到10年的案例也很多,淘汰设备报废即可,如果涉密,爆发后磁盘需要销毁。
『柒』 一般服务器使用年限多久
3年内,出了问题,有人给服务
『捌』 服务器使用期限怎么查询
没留下域名代理商和服务器代理商的联系方式这样会比较难!
现在只能尝试和原来的公司管理网站维护这一块人员联系。
实在不行,只能等服务器使用权限快到期的时候邮件提示了!
『玖』 购入服务器机柜入哪个科目如果入固定资产,折旧年限几年
购入服务器机柜入固定资产科目。该设备属电子设备,如果计入固定资产,按税法规定折旧年限不少于3年,如果计入费用,二级科目为办公用品。至于金额的限定由企业自已根据本企业的实际状况定义,故购买的服务器机柜既可计入固定资产也可计入费用。
『拾』 服务器使用年限有国家标准吗
要查国家标准你可以网络下工标网上工标网去查查!