Files
fad_oa/sql/warehouse_task_receipt_doc.sql
2026-06-05 13:54:11 +08:00

6 lines
318 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 物料明细加"收货单"字段CSV 形式的 sys_oss 主键
-- 让收货单按物料明细行单独绑定,而不是绑定到整张采购单
ALTER TABLE `sys_oa_warehouse_task`
ADD COLUMN `receipt_doc` varchar(500) DEFAULT NULL COMMENT '收货单 OSS ID逗号分隔sys_oss.oss_id'
AFTER `remark`;