jsh-erp-cloud/docs/数据库更新记录-zyj.txt
2026-03-24 15:27:01 +08:00

9 lines
691 B
Plaintext
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.

-- ----------------------------
-- 时间2026年1月27日
-- 此次更新添加新字段
-- 特别提醒之后的sql都是在之前基础上迭代可以对已存在的系统进行数据保留更新
-- ----------------------------
alter table jsh_depot_head add billing_status tinyint(2) DEFAULT '0' COMMENT '是否开票. 0-否, 1-是';
alter table jsh_depot_head add total_price_tax decimal(24,6) DEFAULT NULL COMMENT '价税合计';
alter table jsh_depot_head add invoice_tax_point varchar(20) DEFAULT NULL COMMENT '开票税点. 不包含%的纯数字, 13%就存入13;
alter table jsh_depot_head add invoice_type tinyint(2) DEFAULT '0' COMMENT '发票类型. 0-专票, 1-普票';