1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
<bm:operations>
<bm:operation name="query">
<bm:query-sql><![CDATA[
select * from
(select t1.contract_id,
t1.dd_bank_account_num,
t1.dd_bank_account_name,
t1.contract_number,
t1.contract_name,
t1.bp_id_tenant,
t2.cashflow_id,
t2.times,
t2.cf_item,
(select a.cf_item_desc from hls_cashflow_item_v a where a.cf_item = t2.cf_item) as cf_item_desc,
t2.due_amount,
(t2.due_amount-nvl(t2.received_amount,0)) as unreceived_amount,
(t2.due_amount - nvl(t2.received_amount,0)) as left_amount,
(t2.principal - nvl(t2.received_principal,0)) as left_principal,
(t2.interest - nvl(t2.received_interest,0)) as left_interest,
t2.due_date
from con_contract t1,
con_contract_cashflow t2
where t1.contract_id = t2.contract_id and
t1.contract_status = 'INCEPT'
and t1.data_class = 'NORMAL'
and t2.cf_status = 'RELEASE'
and t2.cf_direction = 'INFLOW'
and t2.due_amount > nvl(t2.received_amount,0)
and t1.company_id in ((
select company_id
from fnd_companies t
where t.company_id = ${/session/@company_id} or
t.parent_company_id = ${/session/@company_id}
union
select t.parent_company_id company_id
from fnd_companies t
where t.parent_company_id is not null
and (t.company_id = ${/session/@company_id} or t.parent_company_id = ${/session/@company_id})))) t
#WHERE_CLAUSE#
]]></bm:query-sql>
</bm:operation>
</bm:operations>
<bm:fields>
<bm:field name="contract_id"/>
<bm:field name="contract_number"/>
<bm:field name="contract_name"/>
<bm:field name="times"/>
<bm:field name="cf_item"/>
<bm:field name="cf_item_desc"/>
<bm:field name="unreceived_amount"/>
<bm:field name="due_amount"/>
<bm:field name="due_date" datatype="java.util.Date"/>
<bm:field name="cashflow_id"/>
<bm:field name="dd_bank_account_num"/>
<bm:field name="dd_bank_account_name"/>
<bm:field name="left_amount"/>
<bm:field name="left_principal"/>
<bm:field name="left_interest"/>
</bm:fields>
<bm:query-fields>
<bm:query-field field="contract_id" queryOperator="="/>
<bm:query-field field="contract_number" queryOperator="="/>
<bm:query-field field="cf_item_desc" queryOperator="="/>
<bm:query-field name="due_amount_from" queryExpression="due_amount >= ${@due_amount_from}"/>
<bm:query-field name="due_amount_to" queryExpression="due_amount <= ${@due_amount_to}"/>
<bm:query-field name="due_date_from" queryExpression="due_date >= to_date(${@due_date_from},'yyyy-mm-dd')"/>
<bm:query-field name="due_date_to" queryExpression="due_date <= to_date(${@due_date_to},'yyyy-mm-dd')"/>
<bm:query-field field="dd_bank_account_num" queryOperator="="/>
<bm:query-field field="dd_bank_account_name" queryOperator="="/>
<bm:query-field name="bp_id_tenant" queryExpression="t.bp_id = ${@bp_id}"/>
</bm:query-fields>
</bm:model>