This commit is contained in:
Leo
2025-12-23 18:18:06 +08:00
parent d98711f06a
commit c56b911db0

View File

@@ -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();
}