Commit 899217a3 authored by youjie's avatar youjie

no message

parent e57e03b6
......@@ -204,7 +204,12 @@
<el-input placeholder type="number" v-model="msg.BankNo"></el-input>
</td>
</tr>
<tr>
<td>开票内容</td>
<td colspan="3">
<el-input type="textarea" placeholder v-model="msg.ApplyContent"></el-input>
</td>
</tr>
<tr>
<td>备注</td>
<td>
......@@ -277,6 +282,7 @@
ID: 0,
AccountingDate: '',
InvoiceApplyType: 1, //默认为团队订单
ApplyContent: '',//开票内容
},
DepartName: "",
emName: "",
......@@ -400,6 +406,8 @@
return this.$message.error("请填写公司名称!");
if (this.msg.DutyParagraph === "")
return this.$message.error("请填写税号!");
if (this.msg.ApplyContent === "")
return this.$message.error("请填写开票内容!");
if (this.checked) {
this.msg.IsDefaultInfo = 1;
} else {
......@@ -526,4 +534,4 @@
}
}
};
</script>
\ No newline at end of file
</script>
......@@ -327,6 +327,12 @@
{{detail.BankNo}}
</td>
</tr>
<tr>
<td>开票内容</td>
<td colspan="3">
{{detail.ApplyContent?detail.ApplyContent:'-'}}
</td>
</tr>
<tr>
<td>{{$t('hotel.hotel_remark')}}</td>
<td>
......
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