📄 fixedassetsservice.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-17 hliu Create com.szmx.tlms.finance.service.FixedAssetsService
* =============================================
*/
package com.szmx.tlms.finance.service;
import com.szmx.framework.base.service.BaseService;
import com.szmx.tlms.finance.model.FixedAssets;
import com.szmx.tlms.TlmsServiceException;
import java.util.List;
/**
* This class is the interface Service of the FixedAssets
*
* @author hliu
* @since 2006-4-17
*/
public interface FixedAssetsService extends BaseService {
/**
* get all the voucher records form table VoucherLine
* For all these vouchers records, import fixed assets form it by the fixed assets account,
* and for assets value >CNY 2,000 and <USD 500,import Fixed Assets addition record form SAP
* which "text" column will record the fixed assets flag by keyword "FA*".
*/
public void getAndGenerateFixedAssets() throws TlmsServiceException ;
/**
* Get the list of fixed assets by the query condition.
* @param fixedAssets
* @return List of the fixed assets
* @throws TlmsServiceException
*/
public List getFixedAssetses(FixedAssets fixedAssets) throws TlmsServiceException;
/**
* Save or update the fixed assets object
* @param fixedAssets
* @throws TlmsServiceException
*/
public void saveFixedAssets(FixedAssets fixedAssets) throws TlmsServiceException;
/**
* Remove the fixed assets record by di array
* @param id
* @throws TlmsServiceException
*/
public void removeFixedAssetses(String[] id) throws TlmsServiceException;
/**
* Generate the voucher about the fixed assets by id
* @param id
* @throws TlmsServiceException
*/
public void generateFixedAssetsVoucher(Long id) throws TlmsServiceException;
/**
* For those Fixed Asset whick status is IN_USE
* These Fixed Assets will depricate every period.
* @throws TlmsServiceException
*/
public void depricationFixedAssets() throws TlmsServiceException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -