Commit 4fe40439 by 朱继来

调整发票信息

parent 71502320
......@@ -187,9 +187,9 @@ Class AddOrderController extends Controller
$invoice = DB::connection('order')->table('lie_taxinfo')->where('tax_id', $tax_id)->first();
$invoice->province_val = $this->getAddress($invoice->consignee_province);
$invoice->city_val = $this->getAddress($invoice->consignee_city);
$invoice->district_val = $this->getAddress($invoice->consignee_district);
$invoice->province_val = $invoice->consignee_province ? $this->getAddress($invoice->consignee_province) : '';
$invoice->city_val = $invoice->consignee_city ? $this->getAddress($invoice->consignee_city) : '';
$invoice->district_val = $invoice->consignee_district ? $this->getAddress($invoice->consignee_district) : '';
return ['errcode' => 0, 'errmsg' => '', 'data' => $invoice];
}
......
......@@ -196,12 +196,9 @@
</tr>
</thead>
<tbody></tbody>
<tfoot>
<tr>
<td colspan="9"><textarea name="remark" id="remark" class="form-control" placeholder="填写订单备注信息"></textarea></td>
</tr>
</tfoot>
</table>
<textarea name="remark" id="remark" class="form-control" placeholder="填写订单备注信息"></textarea>
</div>
<!-- 订单金额 -->
......
......@@ -124,9 +124,9 @@
<label class="radio-inline">
<input type="radio" name="inv_type" class="radio-inv-type" value="4"> 增值税普通发票
</label>
<label class="radio-inline">
<!-- <label class="radio-inline">
<input type="radio" name="inv_type" class="radio-inv-type" value=""> 不开发票
</label>
</label> -->
</div>
</div>
......@@ -342,14 +342,9 @@
</tr>
</thead>
<tbody></tbody>
<tfoot>
<tr>
<td colspan="9">
<textarea name="remark" id="remark" class="form-control" placeholder="填写订单备注信息"></textarea>
</td>
</tr>
</tfoot>
</table>
<textarea name="remark" id="remark" class="form-control" placeholder="填写订单备注信息"></textarea>
</div>
</div>
......
......@@ -361,15 +361,10 @@
<th width="5%">操作</th>
</tr>
</thead>
<tbody></tbody>
<tfoot>
<tr>
<td colspan="9">
<textarea name="remark" id="remark" class="form-control" placeholder="填写订单备注信息"></textarea>
</td>
</tr>
</tfoot>
<tbody></tbody>
</table>
<textarea name="remark" id="remark" class="form-control" placeholder="填写订单备注信息"></textarea>
</div>
</div>
......
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 sign in to comment