1
This commit is contained in:
@@ -1467,7 +1467,13 @@ public class InstructionServiceImpl implements IInstructionService {
|
||||
sb.append("备注(下单号码有变动/没法带分机号的写这里):\n");
|
||||
sb.append(order.getStatus() != null ? order.getStatus() : "").append("\n");
|
||||
sb.append("—————————\n");
|
||||
sb.append("京粉实际价格:不用填");
|
||||
sb.append("京粉实际价格:");
|
||||
// 如果有实际价格则显示,否则显示"不用填"
|
||||
if (order.getJingfenActualPrice() != null) {
|
||||
sb.append(order.getJingfenActualPrice().toString());
|
||||
} else {
|
||||
sb.append("不用填");
|
||||
}
|
||||
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user