Commit 5ab3cf05 authored by liudong1993's avatar liudong1993

1、财务调整

parent 37b91e15
......@@ -539,6 +539,7 @@ tr._item_list td:last-child {
<el-form-item label="毛利率 :">
<el-select v-model="msg.Q_MaoLi" class="w150">
<el-option value="-1" label="不限"></el-option>
<el-option value="-2" label="<=0%"></el-option>
<el-option value="5" label=">=5%"></el-option>
<el-option value="10" label=">=10%"></el-option>
<el-option value="15" label=">=15%"></el-option>
......
......@@ -1207,16 +1207,16 @@
x.CostTypeName.indexOf('门票') != -1) {
this.HandFeeDetail && this.HandFeeDetail.DetailList.forEach((y, indexs) => {
if (x.CostTypeName.indexOf('房') != -1 && y.Type == 1) {
y.show = true, numToFANG += Number(obj.Number), y.Num = numToFANG
y.show = true, numToFANG += Number(obj.Number)//, y.Num = numToFANG
}
if (x.CostTypeName.indexOf('餐') != -1 && y.Type == 2) {
y.show = true, numToCAN += Number(obj.Number), y.Num = numToCAN
y.show = true, numToCAN += Number(obj.Number)//, y.Num = numToCAN
}
if (x.CostTypeName.indexOf('车') != -1 && y.Type == 3) {
y.show = true, numToCE += Number(obj.Number), y.Num = numToCE
y.show = true, numToCE += Number(obj.Number)//, y.Num = numToCE
}
if (x.CostTypeName.indexOf('门票') != -1 && y.Type == 4) {
y.show = true, numToMEN += Number(obj.Number), y.Num = numToMEN
y.show = true, numToMEN += Number(obj.Number)//, y.Num = numToMEN
}
states = false
})
......@@ -1227,7 +1227,7 @@
this.HandFeeDetail && this.HandFeeDetail.DetailList.forEach((y, indexs) => {
let obj = x
if (y.Type == 3) {
y.show = true, numToCE += Number(obj.Number), y.Num = numToCE
y.show = true, numToCE += Number(obj.Number)//, y.Num = numToCE
states = false
}
})
......
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