Commit 899217a3 authored by youjie's avatar youjie

no message

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