优化收款单
This commit is contained in:
@@ -81,6 +81,7 @@ CREATE TABLE `jsh_account_item` (
|
||||
`header_id` bigint(20) NOT NULL COMMENT '表头Id',
|
||||
`account_id` bigint(20) DEFAULT NULL COMMENT '账户Id',
|
||||
`in_out_item_id` bigint(20) DEFAULT NULL COMMENT '收支项目Id',
|
||||
`bill_id` bigint(20) NULL DEFAULT NULL COMMENT '单据id' ,
|
||||
`each_amount` decimal(24,6) DEFAULT NULL COMMENT '单项金额',
|
||||
`remark` varchar(100) DEFAULT NULL COMMENT '单据备注',
|
||||
`tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id',
|
||||
@@ -94,12 +95,12 @@ CREATE TABLE `jsh_account_item` (
|
||||
-- ----------------------------
|
||||
-- Records of jsh_account_item
|
||||
-- ----------------------------
|
||||
INSERT INTO `jsh_account_item` VALUES ('143', '118', null, '23', '55.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('144', '119', null, '21', '66.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('145', '120', '17', null, '33.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('146', '121', '18', null, '-22.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('147', '122', '17', null, '11.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('148', '123', '17', null, '66.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('143', '118', null, '23', null, '55.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('144', '119', null, '21', null, '66.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('145', '120', '17', null, null, '33.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('146', '121', '18', null, null, '-22.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('147', '122', '17', null, null, '11.000000', '', '63', '0');
|
||||
INSERT INTO `jsh_account_item` VALUES ('148', '123', '17', null, null, '66.000000', '', '63', '0');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for jsh_depot
|
||||
|
||||
@@ -1098,3 +1098,10 @@ update jsh_function set name='进销存统计', sort='0658' where id=59
|
||||
-- 增加商品库存报表
|
||||
-- --------------------------------------------------------
|
||||
INSERT INTO `jsh_function` (`number`, `name`, `parent_number`, `url`, `component`, `state`, `sort`, `enabled`, `type`, `push_btn`, `icon`, `delete_flag`) VALUES ('030113', '商品库存', '0301', '/report/material_stock', '/report/MaterialStock', b'0', '0605', b'1', '电脑版', '', 'profile', '0');
|
||||
|
||||
-- --------------------------------------------------------
|
||||
-- 时间 2021年6月29日
|
||||
-- by jishenghua
|
||||
-- 给功能表增加组件字段component
|
||||
-- --------------------------------------------------------
|
||||
alter table jsh_account_item add bill_id bigint(20) DEFAULT NULL COMMENT '单据id' after in_out_item_id;
|
||||
Reference in New Issue
Block a user