Commit f11d260a authored by liudong1993's avatar liudong1993

1

parent 4097af95
......@@ -627,6 +627,7 @@
<div class="recpayQueryMore" v-if="scope.row.KingdeeInvoice!=3&&scope.row.Type==2&&IsUpdatePayment" @click="EditInvoiceStatus(scope.row)">{{(scope.row.KingdeeInvoice==1||scope.row.KingdeeInvoice==0)?$t('objFill.buxuyaofapiao'):$t('objFill.xuyaofapiao')}}</div>
<div class="recpayQueryMore" v-if="(scope.row.Type==1||scope.row.Type==2)&& IsUpdatePayment" @click="showHelpBranch(scope.row)">{{scope.row.Type==1?$t('objFill.xiugaibdsgs'):(scope.row.Type==2?$t('objFill.xiugaibdfgs'):'')}}</div>
<div class="recpayQueryMore" v-if="scope.row.Type==2 && scope.row.CostTypeList && scope.row.CostTypeList[0]=='固定资产-车辆'" @click="showAssets(scope.row.FrID)">{{$t('objFill.v101.FinancialModule.shezzjrq')}}</div>
<div class="recpayQueryMore" v-if="scope.row.KingdeeMark!=1&&IsUpdatePayment" @click="EditKingdeeMark(scope.row)">标记金蝶已导入</div>
<i slot="reference" style="width: 30px;
height: 30px;
display: inline-block;
......@@ -1372,6 +1373,29 @@
},err => {})
},
EditKingdeeMark(row){
var that = this;
this.$confirm('确定要标记金蝶已导入吗?', this.$t('tips.tips'), {
confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'),
type: 'warning'
}).then(() => {
this.apipost(
"Financial_post_SetKingdeeMark", {
FrIds: row.FrID
},
res => {
if (res.data.resultCode == 1) {
that.getPageList();
}else{
that.Error(res.data.message);
}
},err => {})
}).catch(() => {
});
},
showjiaoyi(FrId) {
//弹出交易方式修改
this.apipost(
......
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