Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
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
fukai
vue-gjjs
Commits
a4c2fb20
Commit
a4c2fb20
authored
Sep 21, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cltdav优化
parent
79deb300
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
25 deletions
+10
-25
Event.js
src/model/Cltdav/Event.js
+0
-17
Pattern.js
src/model/Cltdav/Pattern.js
+4
-4
index.js
src/model/Cltdav/index.js
+3
-3
Sel.vue
src/views/Business/Cltdav/Sel.vue
+0
-0
index.vue
src/views/Business/Cltdav/index.vue
+3
-1
No files found.
src/model/Cltdav/Event.js
View file @
a4c2fb20
...
...
@@ -23,23 +23,6 @@ export default {
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
handleReset
()
{
// this.model.infcon.seaownref = ""
// this.model.infcon.opndatfrom = new Date();
// this.model.infcon.opndatto = new Date();
// this.model.infcon.searef = "";
// this.model.infcon.pty.extkey = "";
// this.model.infcon.usr.extkey = "";
// this.model.infcon.searol = "";
// this.model.infcon.pty.nam = "";
// this.model.infcon.seapty = "";
// this.model.infcon.curtxt1 = "";
// this.model.infcon.nam = "";
// this.model.infcon.seaamtfr = "";
// this.model.infcon.seaamtto = "";
// this.model.infcon.seasta = "";
// this.model.infcon.doctypcod = "";
},
async
onCltpButgetref
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"cltp.butgetref"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
...
...
src/model/Cltdav/Pattern.js
View file @
a4c2fb20
...
...
@@ -19,7 +19,7 @@ export default {
{
type
:
"date"
,
required
:
true
,
message
:
"必输项"
}
],
"rowcntr"
:[
{
type
:
"
string
"
,
required
:
false
,
message
:
"必输项"
},
{
type
:
"
number
"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
...
...
@@ -28,16 +28,16 @@ export default {
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"amount"
:[
{
type
:
"
number
"
,
required
:
false
,
message
:
"必输项"
},
{
type
:
"
string
"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"整数位不能超过12位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"cldgrp.rec.count"
:[
{
type
:
"
string
"
,
required
:
false
,
message
:
"必输项"
},
{
type
:
"
number
"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"items"
:[
{
type
:
"
string
"
,
required
:
false
,
message
:
"必输项"
},
{
type
:
"
number
"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
...
...
src/model/Cltdav/index.js
View file @
a4c2fb20
...
...
@@ -17,7 +17,7 @@ export default class Cltdav {
credat
:
""
,
// Date of creation .cldgrp.rec.credat
colflg
:
""
,
// Payemnt Disposition .cldgrp.rec.colflg
regref
:
""
,
// Register Ref. .cldgrp.rec.regref
count
:
""
,
// ITEM COUNT .cldgrp.rec.count
count
:
Number
()
,
// ITEM COUNT .cldgrp.rec.count
colref
:
""
,
// COLL BANK REF .cldgrp.rec.colref
nam
:
""
,
// Name of CC contract .cldgrp.rec.nam
creact
:
""
,
// Credit to Account .cldgrp.rec.creact
...
...
@@ -30,10 +30,10 @@ export default class Cltdav {
setins
:
""
,
// Settlement Instructions .cldgrp.blk.setins
},
},
rowcntr
:
""
,
// Total Row Count .rowcntr
rowcntr
:
Number
()
,
// Total Row Count .rowcntr
cur
:
""
,
// currency .cur
amount
:
""
,
// AMOUNT .amount
items
:
""
,
// Item Count .items
items
:
Number
()
,
// Item Count .items
colbnk
:
""
,
// Collection Bank .colbnk
cltp
:
{
colp
:
{
...
...
src/views/Business/Cltdav/Sel.vue
View file @
a4c2fb20
This diff is collapsed.
Click to expand it.
src/views/Business/Cltdav/index.vue
View file @
a4c2fb20
...
...
@@ -17,7 +17,9 @@
<!--PD000002 -->
<el-tab-pane
label=
"内容"
name=
"sel"
>
<m-sel
:model=
"model"
:codes=
"codes"
/>
<c-content>
<m-sel
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000529 -->
...
...
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