9 lines
691 B
Plaintext
9 lines
691 B
Plaintext
-- ----------------------------
|
||
-- 时间: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-普票'; |