数据库中没有直接存储余额的表,需要用到CN_ACCTINFO 出纳账户表取其中的期初数,还有CN_ACCTBOOK出纳日记账表取其中查询日期之前的所有借贷方金额。
declare @id varchar(20) --定义id为日记账账户编码
declare @date date --定义date为日期
set @id='008'
set @date='2019-06-06'
select SUM(Debit)-SUM(credit)+(select prebalance from cn_acctinfo where csAcctNum=@id) from CN_AcctBook where acctdate<=@date and AcctID=(select id from cn_acctinfo where csAcctNum=@id)
系统管理ADMIN登陆 输出就行了 那个就是输入要是不是倒帐套 那就先注册总账工具 也就是登陆 你那个图上有的 登陆上以后呢 你就找那些图标被 就是 存货复制啊 然后再到那个机器上导入
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)