|
如果实在是没有办法了,建议你修改表!
1、先通过定单号码110023441找到该定单的head_id
2、通过head_id号码在表wsh_delivery_details中找到source_header_id=head_id(步骤1找到的)
select * from wsh_delivery_details wdd where wdd.source_header_id=head_id
删除要修改的行。
3、通过head_id在表oe_order_lines_all 找到相应的行,删除它。
4、重新建立一个定单行。 |
|