huminmin
2026-06-22 441dfbd1908affc1accc52006a2fe81a5067052d
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;