huminmin
2026-06-09 7486f6d6a93d98f96f45f0cc4846be9c8a2345df
1
2
3
4
5
6
7
alter table sales_ledger_product
    add freight_unit_price decimal(16, 2) null comment '运费单价' after tax_inclusive_total_price,
    add total_freight decimal(16, 2) null comment '总运费' after freight_unit_price;
 
alter table sales_ledger_product_template
    add freight_unit_price decimal(16, 2) null comment '运费单价' after tax_inclusive_total_price,
    add total_freight decimal(16, 2) null comment '总运费' after freight_unit_price;