Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
7a71a973
Commit
7a71a973
authored
Jan 09, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交上传工资单制动生成财务单据
parent
d7832d10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
314 additions
and
12 deletions
+314
-12
FinancialDocuments.vue
src/components/FinancialModule/FinancialDocuments.vue
+305
-2
OrderList.vue
src/components/myOrdersAllType/components/OrderList.vue
+4
-4
allList.vue
src/components/myOrdersAllType/components/allList.vue
+5
-6
No files found.
src/components/FinancialModule/FinancialDocuments.vue
View file @
7a71a973
This diff is collapsed.
Click to expand it.
src/components/myOrdersAllType/components/OrderList.vue
View file @
7a71a973
...
...
@@ -596,17 +596,17 @@
<el-form
label-width=
"100px"
>
<el-row>
<el-col
:span=
"4"
>
<el-form-item
label=
"
应收总金额"
prop=
""
>
<el-form-item
label=
"
申请改价金额"
prop=
""
>
<el-input
type=
"number"
type=
"number"
placeholder=
"最终的应收总金额"
v-model=
"changePriceMsg.Money"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"改价原因"
prop=
""
>
<el-form-item
label=
"改价原因"
prop=
""
>
<el-input
type=
"textarea"
type=
"textarea"
placeholder=
"填写改价原因,不是价格哟"
v-model=
"changePriceMsg.ApplyForReason"
autosize
></el-input>
...
...
src/components/myOrdersAllType/components/allList.vue
View file @
7a71a973
...
...
@@ -811,18 +811,17 @@
this
.
DatelistBM
=
[
new
Date
(
this
.
msg
.
StartTime
),
new
Date
()]
}
else
{
var
now
=
new
Date
();
var
month
=
now
.
getMonth
();
//js获取到的是月份是 0-11 所以要加1
var
month
=
now
.
getMonth
()
+
1
;
//js获取到的是月份是 0-11 所以要加1
var
year
=
now
.
getFullYear
();
var
nextMonthFirstDay
=
new
Date
([
year
,
month
+
1
,
1
].
join
(
'-'
)).
getTime
();
var
nextMonthFirstDay
=
new
Date
([
year
,
month
,
1
].
join
(
'-'
)).
getTime
();
var
oneDay
=
1000
*
24
*
60
*
60
;
var
monthLast
=
new
Date
(
nextMonthFirstDay
-
oneDay
).
getDate
()
if
(
!
this
.
$route
.
query
.
DepartSTime
&&!
this
.
$route
.
query
.
DepartSTime
){
this
.
msg
.
DepartSTime
=
'2023-04-01'
;
//[year,month,1].join('-')
this
.
msg
.
DepartSTime
=
'2023-04-01'
;
this
.
msg
.
DepartETime
=
[
year
,
month
,
monthLast
].
join
(
'-'
);
this
.
msg2
.
DepartSTime
=
'2023-04-01'
;
//[year,month,1].join('-')
this
.
msg2
.
DepartSTime
=
'2023-04-01'
;
this
.
msg2
.
DepartETime
=
[
year
,
month
,
monthLast
].
join
(
'-'
);
// this.msg.DepartSTime = this.getBeforeDate(200, new Date())
// this.msg.DepartETime = this.getBeforeDate(0, new Date())
}
this
.
DatelistUse
=
[
this
.
msg
.
DepartSTime
,
this
.
msg
.
DepartETime
]
this
.
msg
.
Q_IsCollect
=
'2'
...
...
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