Commit fd35b22a authored by 华国豪's avatar 华国豪 🙄

地接费用流程控制

parent 2d60e3eb
...@@ -458,7 +458,7 @@ ...@@ -458,7 +458,7 @@
if (obj.OutBranchId === 0) { if (obj.OutBranchId === 0) {
id = [43, 48] id = [43, 48]
} else { } else {
id = [43, 53] id = [56, 53]
} }
this.$router.push({ this.$router.push({
name: 'ChoiceAddFinancialDocuments', name: 'ChoiceAddFinancialDocuments',
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
.Team_DList { .Team_DList {
border: 1px solid #e6e6e6; border: 1px solid #e6e6e6;
background-color: #fff; background-color: #fff;
margin-top: 20px;
padding: 20px; padding: 20px;
height: 200px; height: 200px;
} }
......
...@@ -435,6 +435,15 @@ ...@@ -435,6 +435,15 @@
}, },
goUrl(_orderSource, _type) { goUrl(_orderSource, _type) {
let TCIDARR = [] let TCIDARR = []
let id = [];
// _orderSource 1 酒店 2餐厅 5 车资
if (_orderSource === 1 && _type === 2) {
id = [51, 52]
} else if (_orderSource === 2 && _type === 2) {
id = [54, 55]
} else if (_orderSource === 5 && _type === 2) {
id = [49, 50, 57, 58]
}
TCIDARR.push(this.$route.query.id) TCIDARR.push(this.$route.query.id)
let orderObj = { let orderObj = {
OrderID: 0, OrderID: 0,
...@@ -449,6 +458,7 @@ ...@@ -449,6 +458,7 @@
'Type': _type, 'Type': _type,
'path': 'teamRevenueExpenditure', 'path': 'teamRevenueExpenditure',
'companyID': this.msgList[0].OutBranchId, 'companyID': this.msgList[0].OutBranchId,
'templateID': JSON.stringify(id),
'blank': 'y', 'blank': 'y',
'orderObj': JSON.stringify(orderObj), 'orderObj': JSON.stringify(orderObj),
'OrderSource': _orderSource, 'OrderSource': _orderSource,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment