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
d967c69a
Commit
d967c69a
authored
Jan 31, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'tiaozhuan@@'
parent
a0a836d7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
20 deletions
+21
-20
SalesFinancialDetail.vue
src/components/SalesModule/SalesFinancialDetail.vue
+12
-12
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+8
-8
travelFeature3.vue
...lmanager/TravelGroupControl/TravelTemp/travelFeature3.vue
+1
-0
No files found.
src/components/SalesModule/SalesFinancialDetail.vue
View file @
d967c69a
...
...
@@ -102,19 +102,19 @@
<li><span>
待付金额:
</span><span
:class=
"
{color_red:(allMoneyP-shiMoneyP)!==allMoneyP}">
{{
moneyFormat
(
allMoneyP
-
shiMoneyP
)
}}
</span></li>
</ul>
</div>
<p
class=
"sfd_tit clearfix"
>
收款单
<input
type=
"button"
v-if=
"
item.isOwn ===1 && item.orderState !== '4' && item.orderState
!== '3'"
value=
"新增收款"
class=
"normalBtn"
@
click=
"addFinancialOrder(1)"
></p>
<p
class=
"sfd_tit clearfix"
>
收款单
<input
type=
"button"
v-if=
"
(item.isOwn ? item.isOwn : item.IsOwn) ===1 && (item.orderState ? item.orderState : item.OrderState) !== '4' && (item.orderState ? item.orderState : item.OrderState)
!== '3'"
value=
"新增收款"
class=
"normalBtn"
@
click=
"addFinancialOrder(1)"
></p>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"teamRevenueExpenditureTable"
>
<tr>
<th
width=
"100"
>
单号
</th>
<th
width=
"200"
>
费用类型
</th>
<th
width=
"350"
>
交易方式
</th>
<th
width=
"1
5
0"
>
同行转款
</th>
<th
width=
"1
5
0"
>
应收
</th>
<th
width=
"1
5
0"
>
实收
</th>
<th
width=
"1
5
0"
>
平台税金
</th>
<th
width=
"1
0
0"
>
同行转款
</th>
<th
width=
"1
0
0"
>
应收
</th>
<th
width=
"1
0
0"
>
实收
</th>
<th
width=
"1
0
0"
>
平台税金
</th>
<th
width=
"150"
>
交易日期
</th>
<th
width=
""
>
制单人员
</th>
<th
width=
""
>
当前状态
</th>
<th
width=
"
100
"
>
制单人员
</th>
<th
width=
"
120
"
>
当前状态
</th>
</tr>
<tr
v-for=
"(item, index) in dataList"
>
<td
width=
"100"
@
click=
"goUrl('财务单据','FinancialDocumentsDetail',item.FrID)"
><span>
{{
item
.
FrID
}}
</span></th>
...
...
@@ -188,7 +188,7 @@
</td>
</tr>
</table>
<p
class=
"sfd_tit clearfix"
>
付款单
<input
type=
"button"
v-if=
"
item.isOwn ===1 && item.orderState !== '4' && item.orderState
!== '3'"
value=
"新增付款"
class=
"normalBtn"
@
click=
"addFinancialOrder(2)"
></p>
<p
class=
"sfd_tit clearfix"
>
付款单
<input
type=
"button"
v-if=
"
(item.isOwn ? item.isOwn : item.IsOwn) ===1 && (item.orderState ? item.orderState : item.OrderState) !== '4' && (item.orderState ? item.orderState : item.OrderState)
!== '3'"
value=
"新增付款"
class=
"normalBtn"
@
click=
"addFinancialOrder(2)"
></p>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"teamRevenueExpenditureTable"
>
<tr>
<th
width=
"100"
>
单号
</th>
...
...
@@ -434,10 +434,10 @@ export default {
this
.
userId
=
this
.
getLocalStorage
().
EmployeeId
;
let
obj
=
JSON
.
parse
(
this
.
$route
.
query
.
item
)
this
.
item
=
obj
this
.
orderId
=
this
.
msg
.
OrderID
=
obj
.
orderId
this
.
tcnum
=
obj
.
tcnum
this
.
tcid
=
obj
.
tcid
this
.
outBranchId
=
obj
.
outBranchId
this
.
orderId
=
this
.
msg
.
OrderID
=
obj
.
orderId
?
obj
.
orderId
:
obj
.
OrderId
this
.
tcnum
=
obj
.
tcnum
?
obj
.
tcnum
:
obj
.
TCNUM
this
.
tcid
=
obj
.
tcid
?
obj
.
tcid
:
obj
.
TCID
this
.
outBranchId
=
obj
.
outBranchId
?
obj
.
outBranchId
:
obj
.
OutBranchId
this
.
getList
(
1
)
}
}
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
d967c69a
...
...
@@ -2433,14 +2433,14 @@ import updateSalesMan from "../../commonPage/updateSalesMan.vue";
goUrlSFD
:
function
(
path
,
name
,
item
)
{
let
obj
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
obj
.
oP_Remarks
=
''
obj
.
r
emarksList
=
[]
obj
.
r
efundFinanceList
=
[]
obj
.
r
emarks
=
[]
obj
.
l
tName
=
[]
obj
.
l
ineName
=
[]
obj
.
f
inanceList
=
[]
obj
.
g
uestList
=
[]
obj
.
d
escription
=
[]
obj
.
R
emarksList
=
[]
obj
.
R
efundFinanceList
=
[]
obj
.
R
emarks
=
[]
obj
.
L
tName
=
[]
obj
.
L
ineName
=
[]
obj
.
F
inanceList
=
[]
obj
.
G
uestList
=
[]
obj
.
D
escription
=
[]
this
.
$router
.
push
({
name
:
path
,
query
:
{
blank
:
'y'
,
tab
:
name
,
item
:
JSON
.
stringify
(
obj
)}
...
...
src/components/newTravelmanager/TravelGroupControl/TravelTemp/travelFeature3.vue
View file @
d967c69a
...
...
@@ -1854,6 +1854,7 @@
watch
:{
FeatureData
:{
handler
:
function
(
val
,
oldVal
)
{
console
.
log
(
'2019年1月31日16:38:08'
,
oldVal
)
if
(
this
.
ReadOnly
)
return
;
if
(
val
&&
this
.
oldVal
!=
null
)
{
// console.log("watch_if_FeatureData",11111)
...
...
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