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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?xml version="1.0" encoding="UTF-8"?>
<a:screen xmlns:a="http://www.leaf-framework.org/application" dynamiccreateenabled="true" trace="true">
<a:view>
<a:link id="${/parameter/@layout_code}_con_contract_get_layout_code_link_id"
model="cont.CON500.con_contract_get_layout_code" modelaction="update"/>
<a:link id="${/parameter/@layout_code}_hls_bp_master_query_link"
url="${/request/@context_path}/modules/hls/HLS214N/hls_bp_master_modify.lview"/>
<a:link id="${/parameter/@layout_code}_con632_close_link_id"
url="${/request/@context_path}/modules/cont/CON632/con_collection_detail.lview"/>
<a:link id="${/parameter/@layout_code}_con_collection_trailer_link_id"
url="${/request/@context_path}/modules/rent/rent100/con_collection_trailer.lview"/>
<a:link id="insert_collection_record_link" url="${/request/@context_path}/modules/interface/INTERFACE_WX/wx_update_trailer_Info.lsc"/>
<a:link id="tms_insert_record_link" model="rent.rent100.tms_insert_record" modelaction="batch_update"/>
<script src="${/request/@context_path}/javascripts/hap/dynamicStopAutoQuery.js" type="text/javascript"/>
<script type="text/javascript"><![CDATA[
stopDymanicAutoQuery('${/parameter/@layout_code}', 'G_WAITING_LIST', 'con_contract_lease_item');
//锁屏
window['${/parameter/@bp_seq}${/parameter/@layout_code}_lock_layout_dynamic_window'] = function () {
var detail_mask;
if ('${/parameter/@winid}') {
if (parent.$L.CmpManager.get('${/parameter/@winid}')) {
detail_mask = parent.$('${/parameter/@winid}').wrap;
parent.Leaf.Masker.mask(detail_mask, '${l:HLS.EXECUTING}');
} else {
detail_mask = $('${/parameter/@winid}').wrap;
Leaf.Masker.mask(detail_mask, '${l:HLS.EXECUTING}');
}
} else {
detail_mask = Ext.getBody();
Leaf.Masker.mask(detail_mask, '${l:HLS.EXECUTING}');
}
};
//解屏
window['${/parameter/@bp_seq}${/parameter/@layout_code}_unlock_layout_dynamic_window'] = function () {
var detail_mask;
if ('${/parameter/@winid}') {
if (parent.$L.CmpManager.get('${/parameter/@winid}')) {
detail_mask = parent.$('${/parameter/@winid}').wrap;
parent.Leaf.Masker.unmask(detail_mask);
} else {
detail_mask = $('${/parameter/@winid}').wrap;
Leaf.Masker.unmask(detail_mask);
}
} else {
detail_mask = Ext.getBody();
Leaf.Masker.unmask(detail_mask);
}
if (Ext.get(document.documentElement)) {
$L.Masker.unmask(Ext.get(document.documentElement));
}
};
//推送微信
window['${/parameter/@layout_code}_user_button1_layout_dynamic_click'] = function () {
var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_contract_lease_item');
var records = $(ds_id).getSelected();
var datas = [];
for (var i = 0; i < records.length; i++) {
var obj = {};
obj['contract_lease_item_id'] = records[i].get('contract_lease_item_id');//租赁物ID
// obj['agentname'] = records[i].get('agent_name');//代理商名称
// obj['customername'] = records[i].get('bp_name');//客户名称
// obj['cartype'] = records[i].get('division_n');//产品类别
// obj['modeltype'] = records[i].get('pattern');//机型
// obj['carno'] = records[i].get('machine_number');//机号
// obj['executetime'] = records[i].get('lease_execution_date');//执行日期
// obj['cartype'] = records[i].get('cntrt_no');//合同编号
// obj['bondamount'] = records[i].get('cur_won_bal');//债权余额
// obj['overdueday'] = records[i].get('dly_tot_dd_cnt');//逾期天数
// obj['workhour'] = records[i].get('open_hours');//开动时间(小时)
// obj['areaname'] = records[i].get('address');//设备地址
// obj['_status'] = 'update';
datas[i] = obj;
}
Leaf.showConfirm('提示', 'TMS信息是否已查询?', function () {
Leaf.showConfirm('${l:HLS.PROMPT}', '是否推送微信小程序?', function () {
Leaf.request({
url: $('insert_collection_record_link').getUrl(),
para: datas,
success: function (res) {
Leaf.SideBar.show({
msg: '推送微信成功',
duration: 2000
});
$(ds_id).query();
},
scope: this
});
});
}, null);
}
//TMS查询
window['${/parameter/@layout_code}_user_button2_layout_dynamic_click'] = function () {
var ds_id = get_dsid_by_basetable(window['${/parameter/@layout_code}_layoutDataSetList'], 'con_contract_lease_item');
var records = $(ds_id).getSelected();
var datas = [];
var count = 0;
for (var i = 0; i < records.length; i++) {
var obj = {};
if (!records[i].get('equipment_number')) {
count = count + 1;
}
obj['machine_number'] = records[i].get('equipment_number');
obj['_status'] = 'update';
datas[i] = obj;
}
if (count == 0) {
Leaf.showConfirm('${l:HLS.PROMPT}', '是否发起查询?', function () {
Leaf.request({
url: $('tms_insert_record_link').getUrl(),
para: datas,
success: function (res) {
Leaf.SideBar.show({
msg: 'TMS查询成功',
duration: 2000
});
$(ds_id).query();
},
scope: this
});
});
} else {
Leaf.showErrorMessage('提示', '装备号为空,无法查询!');
return;
}
};
// function open_bp_code_query_win(ds_id, record_id) {
// var record = $(ds_id).findById(record_id);
// var param = record.data;
// param['function_code'] = 'CON501H';
// param['function_usage'] = 'QUERY';
// param['url_title'] = '${l:HLS212.BP_MASTER_QUERY}';
// hls_doc_get_layout_code('${/parameter/@layout_code}_con_contract_get_layout_code_link_id', param, '${/parameter/@layout_code}_hls_bp_master_query_link', ds_id);
// }
function open_collection_win(ds_id, record_id) {
var record = $(ds_id).findById(record_id);
var param = record.data;
param['function_code'] = 'CON632_COL_QUERY';
param['function_usage'] = 'QUERY';
param['contract_id'] = record.get('contract_id');
// param['function_type'] = 'PHONE';
param['url_title'] = '催收详情';
hls_doc_get_layout_code('${/parameter/@layout_code}_con_contract_get_layout_code_link_id', param, '${/parameter/@layout_code}_con632_close_link_id', ds_id);
}
// function open_trailer_win(ds_id, record_id) {
// var record = $(ds_id).findById(record_id);
// var param = record.data;
//
// param['function_code'] = 'CON632_TRAILER';
// param['function_usage'] = 'MODIFY';
// param['col_id'] = record.get('col_id');
// param['bp_id'] = record.get('bp_id');
// param['url_title'] = '拖车明细';
// hls_doc_get_layout_code('${/parameter/@layout_code}_con_contract_get_layout_code_link_id', param, '${/parameter/@layout_code}_con_collection_trailer_link_id', ds_id);
// }
//超链接渲染
window['${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record) {
// if (name == 'bp_code' && value) {
// return '<a href="javascript:open_bp_code_query_win(\'' + record.ds.id + '\',\'' + record.id + '\')">' + value + '</a>';
// } else
if (name == 'collecting_info') {
return '<a href="javascript:open_collection_win(\'' + record.ds.id + '\',\'' + record.id + '\')">' + '明细' + '</a>';
// }else if (name == 'trailer_detail') {
// return '<a href="javascript:open_trailer_win(\'' + record.ds.id + '\',\'' + record.id + '\')">' + '明细'+ '</a>';
}
return value;
};
]]></script>
<a:screen-include screen="modules/cont/CON500/con_contract_get_layout_code.lview"/>
</a:view>
</a:screen>