Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
leaf-hlcm
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hlcm
leaf-hlcm
Commits
6fd0d3c3
Commit
6fd0d3c3
authored
Nov 07, 2019
by
25484
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[feat]进项发票导入功能完善
parent
09375e70
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
12 deletions
+40
-12
ap_invoice_import.lview
src/main/webapp/modules/acp/ACP522/ap_invoice_import.lview
+15
-2
ap_invoice_confirm.lview
src/main/webapp/modules/acp/ACP523/ap_invoice_confirm.lview
+17
-1
acr_invoice_condition_n.lview
.../webapp/modules/acr/ACR510N/acr_invoice_condition_n.lview
+0
-1
acr_invoice_update_query.lview
.../webapp/modules/acr/ACR512/acr_invoice_update_query.lview
+7
-7
acr_invoice_claim_confirm.lview
...webapp/modules/acr/ACR517/acr_invoice_claim_confirm.lview
+1
-1
No files found.
src/main/webapp/modules/acp/ACP522/ap_invoice_import.lview
View file @
6fd0d3c3
...
@@ -4,23 +4,36 @@
...
@@ -4,23 +4,36 @@
<a:view>
<a:view>
<a:link
id=
"hn9040_project_get_layout_code_link_id"
model=
"cont.CON500.con_contract_get_layout_code"
<a:link
id=
"hn9040_project_get_layout_code_link_id"
model=
"cont.CON500.con_contract_get_layout_code"
modelaction=
"update"
/>
modelaction=
"update"
/>
<a:link
id=
"ap_invoice_import_detail_link"
url=
"${/request/@context_path}/modules/acp/ACP522/ap_invoice_import_detail.lview"
/>
<script>
<![CDATA[
<script>
<![CDATA[
window['${/parameter/@layout_code}_user_button1_layout_dynamic_click'] = function () {
window['${/parameter/@layout_code}_user_button1_layout_dynamic_click'] = function () {
};
function ap_invoice_import_detail(){
var param = {};
param['function_code'] = 'ACP522I';
param['function_usage'] = 'MODIFY';
param['maintain_type'] = 'UPDATE';
param['url_title'] = '进项发票导入';
hls_doc_get_layout_code('hn9040_project_get_layout_code_link_id', param, 'ap_invoice_import_detail_link');
}
}
//超链接渲染
//超链接渲染
window['${/parameter/@bp_seq}${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record, bp_seq) {
window['${/parameter/@bp_seq}${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record, bp_seq) {
//
var link_function = '';
var link_function = '';
var invoice_line_id = record.get('invoice_line_id');
var invoice_line_id = record.get('invoice_line_id');
window['${/parameter/@bp_seq}${/parameter/@layout_code}_hls_link_render_record'][record.id + '---' + name] = record;
window['${/parameter/@bp_seq}${/parameter/@layout_code}_hls_link_render_record'][record.id + '---' + name] = record;
if (name == 'attachment') {
if (name == 'attachment') {
return '<a href="javascript:attachment_window_open(\'' + invoice_line_id + '\',\'' + record.id + '\',\'' + record.ds.id + '\');">
' + '上传' + '
</a>
';
return '<a href="javascript:attachment_window_open(\'' + invoice_line_id + '\',\'' + record.id + '\',\'' + record.ds.id + '\');">
' + '上传' + '
</a>
';
}
}
if(name == 'contract_number'){
return '
<a
href=
"javascript:ap_invoice_import_detail(\'' + invoice_line_id + '\',\'' + record.id + '\',\'' + record.ds.id + '\');"
>
' + value + '
</a>
';
}
};
};
]]>
</script>
]]>
</script>
<a:screen-include
screen=
"modules/cont/CON500/con_contract_get_layout_code.lview"
/>
<a:screen-include
screen=
"modules/cont/CON500/con_contract_get_layout_code.lview"
/>
</a:view>
</a:view>
</a:screen>
</a:screen>
\ No newline at end of file
src/main/webapp/modules/acp/ACP523/ap_invoice_confirm.lview
View file @
6fd0d3c3
...
@@ -4,9 +4,25 @@
...
@@ -4,9 +4,25 @@
<a:view>
<a:view>
<a:link
id=
"hn9040_project_get_layout_code_link_id"
model=
"cont.CON500.con_contract_get_layout_code"
<a:link
id=
"hn9040_project_get_layout_code_link_id"
model=
"cont.CON500.con_contract_get_layout_code"
modelaction=
"update"
/>
modelaction=
"update"
/>
<a:link
id=
"ap_invoice_confirm_link"
model=
"acp.ACP523.ap_invoice_confirm"
modelaction=
"update"
/>
<script>
<![CDATA[
<script>
<![CDATA[
window['${/parameter/@layout_code}_user_button1_layout_dynamic_click'] = function () {
window['${/parameter/@layout_code}_user_button1_layout_dynamic_click'] = function () {
}
Leaf.request({
url: $('ap_invoice_confirm_link').getUrl(),
scope: this,
success: function (res) {
if (res.result.record) {
var datas = res.result.record.overdue_amount;
$jq("#con-overdue-week").append(formatCurrency(datas));
} else {
$jq("#con-overdue-week").append('¥3400.00');
}
}
})
};
//超链接渲染
//超链接渲染
window['${/parameter/@bp_seq}${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record, bp_seq) {
window['${/parameter/@bp_seq}${/parameter/@layout_code}_dynamic_link_renderer'] = function (value, record, name, config_record, bp_seq) {
...
...
src/main/webapp/modules/acr/ACR510N/acr_invoice_condition_n.lview
View file @
6fd0d3c3
...
@@ -109,7 +109,6 @@
...
@@ -109,7 +109,6 @@
winNoMask();
winNoMask();
return;
return;
}
}
debugger
var datas = ds.getJsonData(true);
var datas = ds.getJsonData(true);
for (var i = 0; i < datas.length; i++) {
for (var i = 0; i < datas.length; i++) {
datas[i].final_bill_flag = final_bill_flag;
datas[i].final_bill_flag = final_bill_flag;
...
...
src/main/webapp/modules/acr/ACR512/acr_invoice_update_query.lview
View file @
6fd0d3c3
...
@@ -17,11 +17,11 @@
...
@@ -17,11 +17,11 @@
function acr512_invoice_query() {
function acr512_invoice_query() {
$('acr512_invoice_result_ds').query();
$('acr512_invoice_result_ds').query();
}
}
function acr512_invoice_reset() {
function acr512_invoice_reset() {
$('acr512_invoice_query_ds').reset();
$('acr512_invoice_query_ds').reset();
}
}
function acr512_grid_update(reocrd_id, invoice_hd_id, status) {
function acr512_grid_update(reocrd_id, invoice_hd_id, status) {
var maintain_type = 'UPDATE';
var maintain_type = 'UPDATE';
var currency_reocrd = $('acr512_invoice_result_ds').findById(reocrd_id);
var currency_reocrd = $('acr512_invoice_result_ds').findById(reocrd_id);
...
@@ -33,15 +33,15 @@
...
@@ -33,15 +33,15 @@
param['url_title'] = '销项发票明细';
param['url_title'] = '销项发票明细';
hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'acr512_invoice_update_page', 'acr512_invoice_result_ds');
hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'acr512_invoice_update_page', 'acr512_invoice_result_ds');
}
}
function acr512_document_number_render(value, record, name) {
function acr512_document_number_render(value, record, name) {
return '<a href="javascript:acr512_grid_update(' + record.id + ',' + record.get('invoice_hd_id') + ',\'' + record.get('invoice_status') + '\');">
' + value + '
</a>
';
return '<a href="javascript:acr512_grid_update(' + record.id + ',' + record.get('invoice_hd_id') + ',\'' + record.get('invoice_status') + '\');">
' + value + '
</a>
';
}
}
function acr512_formatMoney(value, record, name) {
function acr512_formatMoney(value, record, name) {
return Leaf.formatNumber(value);
return Leaf.formatNumber(value);
}
}
function acr512_invoice_query_Onupdate(ds, record, name, value, oldVlaue) {
function acr512_invoice_query_Onupdate(ds, record, name, value, oldVlaue) {
if (name == 'document_number_f') {
if (name == 'document_number_f') {
if (Leaf.isEmpty(record.get('document_number_t'))) {
if (Leaf.isEmpty(record.get('document_number_t'))) {
...
@@ -76,7 +76,7 @@
...
@@ -76,7 +76,7 @@
record.set('accounting_date_t', value);
record.set('accounting_date_t', value);
}
}
}
}
if(Ext.isEmpty(record.get('project_number_f'))
&&
Ext.isEmpty(record.get('project_number_t')))
if(Ext.isEmpty(record.get('project_number_f'))
&&
Ext.isEmpty(record.get('project_number_t')))
{
{
record.set('query_project_number','');
record.set('query_project_number','');
...
@@ -94,7 +94,7 @@
...
@@ -94,7 +94,7 @@
record.set('query_contract_number','Y');
record.set('query_contract_number','Y');
}
}
}
}
function acr512_invoice_delete(){
function acr512_invoice_delete(){
$('acr512_invoice_update_grid_ds').remove();
$('acr512_invoice_update_grid_ds').remove();
}
}
...
...
src/main/webapp/modules/acr/ACR517/acr_invoice_claim_confirm.lview
View file @
6fd0d3c3
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
Leaf.request({
Leaf.request({
url: $("bmLink_acr_invoice_claim_confirm").getUrl(),
url: $("bmLink_acr_invoice_claim_confirm").getUrl(),
para: {
para: {
invoice_hd_id:invoice_hd_id
,
invoice_hd_id:invoice_hd_id
},
},
success:function(){
success:function(){
Leaf.SideBar.show({
Leaf.SideBar.show({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment