Commit df25509d2415c43f0e85588ff74e135b53842ca5

Authored by 曾国涛
1 parent 399798d0

refactor(OrderPrint): 更新核准人和开单人信息

-将核准人从"屠亚辉"修改为"冯强"
- 将开单人从"张玉红"修改为"许铭轩"
- 在 OrderPrint 组件和 HoujiePrinter 组件中同步更新
src/pages/OrderPrint/components/HoujiePrinter.tsx
... ... @@ -221,7 +221,7 @@ export default ({ mainOrder, subOrders }) => {
221 221 <td className="xl76" colSpan={2} style={{ msoIgnore: 'colSpan' }}>
222 222 客户签名:
223 223 </td>
224   - <td className="xl76">核准:屠亚辉</td>
  224 + <td className="xl76">核准:冯强</td>
225 225 <td
226 226 className="xl78"
227 227 colSpan={2}
... ... @@ -234,7 +234,7 @@ export default ({ mainOrder, subOrders }) =&gt; {
234 234 colSpan={2}
235 235 style={{ borderRight: 'none', borderBottom: 'none' }}
236 236 >
237   - 开单人:张玉红
  237 + 开单人:许铭轩
238 238 </td>
239 239 </tr>
240 240 <tr style={{ display: 'none', width: 0 }}>
... ...
src/pages/OrderPrint/index.tsx
... ... @@ -339,7 +339,7 @@ function App() {
339 339 <td className="xl76" colSpan={2} style={{ msoIgnore: 'colspan' }}>
340 340 客户签名:
341 341 </td>
342   - <td className="xl76">核准:屠亚辉</td>
  342 + <td className="xl76">核准:冯强</td>
343 343 <td
344 344 className="xl78"
345 345 colSpan={2}
... ... @@ -352,7 +352,7 @@ function App() {
352 352 colSpan={2}
353 353 style={{ borderRight: 'none', borderBottom: 'none' }}
354 354 >
355   - 开单人:张玉红
  355 + 开单人:许铭轩
356 356 </td>
357 357 </tr>
358 358 <tr style={{ display: 'none', width: 0 }}>
... ...