追加功能 #258
Add an indicator for print shipping mark that can be highlighted the [to STO] or [to Customer]
Description
Task Details
- Andy requirement: 为打印唛头添加区分[to STO] or [to Customer]的标记
- 内容:在order tilte后添加 (STO) 或者 (Customer)
- Claim from Andy
- Report and Solution
Others
Updated by Zhongbao Ye almost 3 years ago
- Status changed from 进行中 to 已关闭
- % Done changed from 0 to 100
Output(2023/03/01)
方案:针对To Customer($order["retailer_ship_to"] == "3")的打印模板中,将order name 字段加粗
protected/views/order/print.php
<span class="ui-text-overflow"><?php if ($order["retailer_ship_to"] == "3") {?><strong><?php }?><?php echo $order["order_name"];?><?php if ($order["retailer_ship_to"] == "3") {?></strong><?php }?></span>