壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2386|回复: 2

应收帐款余额何转换成“本位币”

[复制链接]
发表于 2007/6/11 08:48:37 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
按客户统计:应收帐款余额(ar_payment_schedules_all. amount_due_remaining)
同时将金额转换成”本位币(CNY)“,ERP中有一汇率表 GL_DAILY_RATES,我的SQL为:
select aps.customer_id,
       sum(nvl(aps.amount_due_remaining*gdr.conversion_rate, 0)) due_remaining
          from ar_payment_schedules_all aps,
               ra_customer_trx_all rct,
               oe_order_headers_all head,
               qp_list_headers_v qp,
               GL_DAILY_RATES gdr
         where 1 = 1
           and aps.customer_trx_id = rct.customer_trx_id
           and rct.ct_reference like '_1%'--取订单号的第二位为‘1’的订单
           and head.order_number = rct.ct_reference
           and head.price_list_id = qp.list_header_id(+)--与价目表关联取订单的币别
           and qp.currency_code = gdr.from_currency
           and gdr.to_currency='CNY'
           and gdr.CONVERSION_TYPE = 'Corporate'
           and gdr.conversion_date = trunc(sysdate)  --这个条件如何写??
     就是将订单对应的币别按对应的汇率转换成本位币,而汇率表是经常变的,应该是取与现今最近的一次转换为标准
         group by aps.customer_id
发表于 2007/6/11 09:22:25 | 显示全部楼层

取得最新的汇率SQL

select gr.*
  from GL_DAILY_RATES gr,
       (select gdr.from_currency,
               gdr.to_currency,
               max(gdr.conversion_date) last_rate_date
          from GL_DAILY_RATES GDR
         group by gdr.from_currency, gdr.to_currency) last_rate
  where gr.from_currency=last_rate.from_currency
  and gr.to_currency=last_rate.to_currency
  and gr.conversion_date=last_rate.last_rate_date
发表于 2007/6/11 17:40:05 | 显示全部楼层
我们的做法是最后一次下该料的销售订单的日期对应的汇率?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 16:51 , Processed in 0.011642 second(s), 14 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表