本文解答了关于《实收资本股权转让分录》相关内容,同时关于1、实收资本股权转让需要个税吗,2、实收资本为零的股权转让,3、实收资本转让股权交多少税金,4、实收资本 股权转让,5、公司股权转让如何交税,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
实收资本股权转让分录
///
/// 财务会计的日志上下文
private void InputActualCapitalGainsTransferAccountBook(AccountBookLogContext context)
{
//更改变量值
context.FinanceAccountingType = FMFinanceAccountingEntriesType.ActualCapitalGainsTransfer;
//调用分录函数
InputAccountBook(context);
}
///
/// 输入增资减资汇总分录
///
/// 财务会计的日志上下文
private void InputIncreasesReductionsAccountBook(AccountBookLogContext context)
{
//更改变量值
context.FinanceAccountingType = FMFinanceAccountingEntriesType.IncreasesReductions;
//调用分录函数
InputAccountBook(context);
}
#endregion
}
#region Context 对象
///
/// 财务会计的日志上下文
///
public class AccountBookLogContext : IAccountBookLogContext
{
#region 公共参数
///
/// 财务会计的日志类型
///
public FinanceAccountingLogType FinanceAccountingLogType { get; set; }
///
/// 财务会计的分录类型
///
public FMFinanceAccountingEntriesType FinanceAccountingType { get; set; }
///
/// 财务帐套信息
///
public AccountBookAccountEntity AccountBookAccount { get; set; }
///
/// 财务日志
///
public AccountBookLogEntity AccountBookLog { get; set; }
///
/// 分录
///
public List AccountBookEntry { get; set; }
///
/// 客户附加信息
///
public object CustomerInfo { get; set; }
#endregion
}
#endregion
}
总结:以上是编辑:【松花仙子】整理及AI智能原创关于《实收资本股权转让分录
》优质内容解答希望能帮助到您。