diff --git a/docs/jsh_erp.sql b/docs/jsh_erp.sql deleted file mode 100644 index 500c80b5..00000000 --- a/docs/jsh_erp.sql +++ /dev/null @@ -1,991 +0,0 @@ -/* -Navicat MySQL Data Transfer - -Source Server : localhost -Source Server Version : 50704 -Source Host : localhost:3306 -Source Database : jsh_erp - -Target Server Type : MYSQL -Target Server Version : 50704 -File Encoding : 65001 - -Date: 2020-11-25 00:40:02 -*/ - -SET FOREIGN_KEY_CHECKS=0; - --- ---------------------------- --- Table structure for jsh_account --- ---------------------------- -DROP TABLE IF EXISTS `jsh_account`; -CREATE TABLE `jsh_account` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(50) DEFAULT NULL COMMENT '名称', - `serial_no` varchar(50) DEFAULT NULL COMMENT '编号', - `initial_amount` decimal(24,6) DEFAULT NULL COMMENT '期初金额', - `current_amount` decimal(24,6) DEFAULT NULL COMMENT '当前余额', - `remark` varchar(100) DEFAULT NULL COMMENT '备注', - `is_default` bit(1) DEFAULT NULL COMMENT '是否默认', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='账户信息'; - --- ---------------------------- --- Records of jsh_account --- ---------------------------- -INSERT INTO `jsh_account` VALUES ('17', '账户1', 'zzz111', '100.000000', '-2096.000000', 'aabb', '', '63', '0'); -INSERT INTO `jsh_account` VALUES ('18', '账户2', '1234131324', '200.000000', '-1750.000000', 'bb', '\0', '63', '0'); - --- ---------------------------- --- Table structure for jsh_account_head --- ---------------------------- -DROP TABLE IF EXISTS `jsh_account_head`; -CREATE TABLE `jsh_account_head` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `type` varchar(50) DEFAULT NULL COMMENT '类型(支出/收入/收款/付款/转账)', - `organ_id` bigint(20) DEFAULT NULL COMMENT '单位Id(收款/付款单位)', - `hands_person_id` bigint(20) DEFAULT NULL COMMENT '经手人id', - `creator` bigint(20) DEFAULT NULL COMMENT '操作员', - `change_amount` decimal(24,6) DEFAULT NULL COMMENT '变动金额(优惠/收款/付款/实付)', - `total_price` decimal(24,6) DEFAULT NULL COMMENT '合计金额', - `account_id` bigint(20) DEFAULT NULL COMMENT '账户(收款/付款)', - `bill_no` varchar(50) DEFAULT NULL COMMENT '单据编号', - `bill_time` datetime DEFAULT NULL COMMENT '单据日期', - `remark` varchar(100) DEFAULT NULL COMMENT '备注', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`), - KEY `FK9F4C0D8DB610FC06` (`organ_id`), - KEY `FK9F4C0D8DAAE50527` (`account_id`), - KEY `FK9F4C0D8DC4170B37` (`hands_person_id`) -) ENGINE=InnoDB AUTO_INCREMENT=107 DEFAULT CHARSET=utf8 COMMENT='财务主表'; - --- ---------------------------- --- Records of jsh_account_head --- ---------------------------- -INSERT INTO `jsh_account_head` VALUES ('97', '收入', '58', '16', '63', '10.000000', '10.000000', '17', 'SR20191228121609', '2019-12-28 00:00:00', '备注1', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('98', '支出', '57', '16', '63', '-20.000000', '-20.000000', '17', 'ZC20191228121854', '2019-12-28 12:18:54', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('99', '收款', '58', '16', '63', null, '20.000000', null, 'SK20191228121908', '2019-12-28 12:19:08', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('100', '付款', '68', '16', '63', null, '-20.000000', null, 'FK20191228121920', '2019-12-28 12:19:20', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('101', '转账', null, '16', '63', '-20.000000', '-20.000000', '18', 'ZZ20191228121932', '2019-12-28 12:19:32', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('102', '收预付款', '60', '16', '63', null, '1000.000000', null, 'SYF20191228121945', '2019-12-28 12:19:45', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('103', '收入', '58', '16', '63', '20.000000', '20.000000', '18', 'SR20200721163125', '2020-07-21 16:31:25', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('104', '收入', '71', '16', '63', '60.000000', '50.000000', '18', 'SR20200721225712', '2020-07-21 00:00:00', 'bb', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('105', '转账', null, '16', '63', '-11.000000', '-11.000000', '18', 'ZZ20200722005429', '2020-07-22 00:54:29', '', '63', '0'); -INSERT INTO `jsh_account_head` VALUES ('106', '收入', '58', '16', '131', '1000.000000', '1000.000000', '17', 'SR20200913184412', '2020-09-13 18:44:12', '', '63', '0'); - --- ---------------------------- --- Table structure for jsh_account_item --- ---------------------------- -DROP TABLE IF EXISTS `jsh_account_item`; -CREATE TABLE `jsh_account_item` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `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', - `each_amount` decimal(24,6) DEFAULT NULL COMMENT '单项金额', - `remark` varchar(100) DEFAULT NULL COMMENT '单据备注', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`), - KEY `FK9F4CBAC0AAE50527` (`account_id`), - KEY `FK9F4CBAC0C5FE6007` (`header_id`), - KEY `FK9F4CBAC0D203EDC5` (`in_out_item_id`) -) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8 COMMENT='财务子表'; - --- ---------------------------- --- Records of jsh_account_item --- ---------------------------- -INSERT INTO `jsh_account_item` VALUES ('98', '97', null, '22', '10.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('99', '98', null, '21', '20.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('100', '99', '17', null, '20.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('101', '100', '17', null, '-20.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('102', '101', '17', null, '20.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('103', '102', '17', null, '1000.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('104', '103', null, '22', '20.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('105', '104', null, '22', '50.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('106', '105', '17', null, '11.000000', '', '63', '0'); -INSERT INTO `jsh_account_item` VALUES ('107', '106', null, '22', '1000.000000', '', '63', '0'); - --- ---------------------------- --- Table structure for jsh_depot --- ---------------------------- -DROP TABLE IF EXISTS `jsh_depot`; -CREATE TABLE `jsh_depot` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(20) DEFAULT NULL COMMENT '仓库名称', - `address` varchar(50) DEFAULT NULL COMMENT '仓库地址', - `warehousing` decimal(24,6) DEFAULT NULL COMMENT '仓储费', - `truckage` decimal(24,6) DEFAULT NULL COMMENT '搬运费', - `type` int(10) DEFAULT NULL COMMENT '类型', - `sort` varchar(10) DEFAULT NULL COMMENT '排序', - `remark` varchar(100) DEFAULT NULL COMMENT '描述', - `principal` bigint(20) DEFAULT NULL COMMENT '负责人', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - `is_default` bit(1) DEFAULT NULL COMMENT '是否默认', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='仓库表'; - --- ---------------------------- --- Records of jsh_depot --- ---------------------------- -INSERT INTO `jsh_depot` VALUES ('14', '仓库1', 'dizhi', '12.000000', '12.000000', '0', '2', '描述', '131', '63', '0', ''); -INSERT INTO `jsh_depot` VALUES ('15', '仓库2', '地址100', null, null, '0', '', '', '131', '63', '0', '\0'); -INSERT INTO `jsh_depot` VALUES ('17', '仓库3', '123123', '123.000000', '123.000000', '0', '123', '123', '131', '63', '0', '\0'); - --- ---------------------------- --- Table structure for jsh_depot_head --- ---------------------------- -DROP TABLE IF EXISTS `jsh_depot_head`; -CREATE TABLE `jsh_depot_head` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `type` varchar(50) DEFAULT NULL COMMENT '类型(出库/入库)', - `sub_type` varchar(50) DEFAULT NULL COMMENT '出入库分类', - `default_number` varchar(50) DEFAULT NULL COMMENT '初始票据号', - `number` varchar(50) DEFAULT NULL COMMENT '票据号', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `oper_time` datetime DEFAULT NULL COMMENT '出入库时间', - `organ_id` bigint(20) DEFAULT NULL COMMENT '供应商id', - `hands_person_id` bigint(20) DEFAULT NULL COMMENT '采购/领料-经手人id', - `creator` bigint(20) DEFAULT NULL COMMENT '操作员', - `account_id` bigint(20) DEFAULT NULL COMMENT '账户id', - `change_amount` decimal(24,6) DEFAULT NULL COMMENT '变动金额(收款/付款)', - `total_price` decimal(24,6) DEFAULT NULL COMMENT '合计金额', - `pay_type` varchar(50) DEFAULT NULL COMMENT '付款类型(现金、记账等)', - `bill_type` varchar(50) DEFAULT NULL COMMENT '单据类型', - `remark` varchar(1000) DEFAULT NULL COMMENT '备注', - `sales_man` varchar(50) DEFAULT NULL COMMENT '业务员(可以多个)', - `account_id_list` varchar(50) DEFAULT NULL COMMENT '多账户ID列表', - `account_money_list` varchar(200) DEFAULT NULL COMMENT '多账户金额列表', - `discount` decimal(24,6) DEFAULT NULL COMMENT '优惠率', - `discount_money` decimal(24,6) DEFAULT NULL COMMENT '优惠金额', - `discount_last_money` decimal(24,6) DEFAULT NULL COMMENT '优惠后金额', - `other_money` decimal(24,6) DEFAULT NULL COMMENT '销售或采购费用合计', - `other_money_list` varchar(200) DEFAULT NULL COMMENT '销售或采购费用涉及项目Id数组(包括快递、招待等)', - `other_money_item` varchar(200) DEFAULT NULL COMMENT '销售或采购费用涉及项目(包括快递、招待等)', - `account_day` int(10) DEFAULT NULL COMMENT '结算天数', - `status` varchar(1) DEFAULT NULL COMMENT '状态,0未审核、1已审核、2已转采购|销售', - `link_number` varchar(50) DEFAULT NULL COMMENT '关联订单号', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`), - KEY `FK2A80F214C4170B37` (`hands_person_id`), - KEY `FK2A80F214B610FC06` (`organ_id`), - KEY `FK2A80F214AAE50527` (`account_id`) -) ENGINE=InnoDB AUTO_INCREMENT=230 DEFAULT CHARSET=utf8 COMMENT='单据主表'; - --- ---------------------------- --- Records of jsh_depot_head --- ---------------------------- -INSERT INTO `jsh_depot_head` VALUES ('189', '入库', '采购', 'CGRK00000000261', 'CGRK00000000261', '2019-04-10 22:25:49', '2020-02-20 23:51:03', '57', null, null, '17', '-120.000000', '-120.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '120.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('191', '入库', '采购', 'CGRK00000000264', 'CGRK00000000264', '2019-04-13 19:57:58', '2020-02-20 23:50:55', '57', null, null, '17', '-10.000000', '-10.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '10.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('192', '入库', '采购', 'CGRK00000000265', 'CGRK00000000265', '2019-04-20 00:36:24', '2020-02-20 23:50:47', '57', null, null, '17', '-220.000000', '-220.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '220.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('193', '出库', '销售', 'XSCK00000000268', 'XSCK00000000268', '2019-04-29 23:41:02', '2020-02-20 23:52:17', '58', null, null, '17', '300.000000', '300.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '300.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('196', '入库', '采购', 'CGRK00000000274', 'CGRK00000000274', '2019-04-30 22:35:53', '2020-02-20 23:49:07', '57', null, null, '18', '-1930.000000', '-1930.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '1930.000000', '0.000000', '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('197', '出库', '销售', 'XSCK00000000290', 'XSCK00000000290', '2019-04-30 23:15:27', '2020-02-20 23:52:01', '58', null, null, '17', '270.000000', '270.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '270.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('199', '其它', '采购订单', 'CGDD00000000305', 'CGDD00000000305', '2019-12-28 12:16:36', '2020-02-20 23:47:56', '57', '63', '63', null, '0.000000', '-22.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('200', '出库', '采购退货', 'CGTH00000000306', 'CGTH00000000306', '2019-12-28 12:16:55', '2020-02-20 23:51:28', '57', '63', '63', '17', '11.000000', '11.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '11.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('201', '其它', '销售订单', 'XSDD00000000307', 'XSDD00000000307', '2019-12-28 12:17:09', '2020-02-20 23:51:37', '58', '63', '63', null, '0.000000', '15.000000', '现付', null, '', '<14>', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('202', '入库', '销售退货', 'XSTH00000000308', 'XSTH00000000308', '2019-12-28 12:17:22', '2020-02-20 23:52:33', '58', '63', '63', '17', '-15.000000', '-15.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '15.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('203', '入库', '其它', 'QTRK00000000309', 'QTRK00000000309', '2019-12-28 12:17:40', '2020-02-20 23:52:51', '57', '63', '63', null, '0.000000', '42.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('204', '出库', '其它', 'QTCK00000000310', 'QTCK00000000310', '2019-12-28 12:17:48', '2020-02-20 23:53:04', '58', '63', '63', null, '0.000000', '15.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('205', '出库', '调拨', 'DBCK00000000311', 'DBCK00000000311', '2019-12-28 12:17:58', '2020-02-20 23:53:21', null, '63', '63', null, '0.000000', '15.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('206', '其它', '组装单', 'ZZD00000000312', 'ZZD00000000312', '2019-12-28 12:18:09', '2020-02-20 23:54:02', null, '63', '63', null, '0.000000', '10.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('207', '其它', '拆卸单', 'CXD00000000313', 'CXD00000000313', '2019-12-28 12:18:47', '2020-02-20 23:54:21', null, '63', '63', null, '0.000000', '0.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('208', '出库', '零售', 'LSCK00000000314', 'LSCK00000000314', '2019-12-28 12:20:26', '2019-12-28 12:20:14', '60', '63', '63', '17', '30.000000', '30.000000', '预付款', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('209', '入库', '零售退货', 'LSTH00000000315', 'LSTH00000000315', '2019-12-28 12:20:39', '2019-12-28 12:20:29', '60', '63', '63', '17', '-15.000000', '-15.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('210', '入库', '采购', 'CGRK00000000318', 'CGRK00000000318', '2020-02-20 23:22:38', '2020-02-20 23:22:27', '57', '63', '63', '17', '-110.000000', '-110.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '110.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('211', '入库', '采购', 'CGRK00000000319', 'CGRK00000000319', '2020-02-20 23:54:48', '2020-02-20 23:54:33', '57', '63', '63', '17', '-2400.000000', '-2400.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '2400.000000', null, '[\"undefined\"]', '[\"undefined\"]', null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('212', '入库', '采购', 'CGRK00000000320', 'CGRK00000000320', '2020-07-14 00:28:15', '2020-07-14 00:27:59', '57', '63', '63', '17', '-535.000000', '-535.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '535.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('214', '出库', '销售', 'XSCK00000000321', 'XSCK00000000321', '2020-07-15 00:38:07', '2020-07-15 00:37:36', '58', '63', '63', '17', '2400.000000', '2500.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '2500.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('215', '入库', '采购', 'CGRK00000000329', 'CGRK00000000329', '2020-07-21 00:35:16', '2020-07-21 00:35:05', '57', '63', '63', '17', '-800.000000', '-800.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '800.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('216', '出库', '销售', 'XSCK00000000330', 'XSCK00000000330', '2020-07-21 00:35:37', '2020-07-21 00:35:26', '58', '63', '63', '17', '308.000000', '308.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '308.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('217', '其它', '采购订单', 'CGDD00000000333', 'CGDD00000000333', '2020-07-21 01:15:15', '2020-07-21 01:15:07', '57', '63', '63', null, '0.000000', '-96.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '2', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('218', '入库', '采购', 'CGRK00000000334', 'CGRK00000000334', '2020-07-21 01:15:32', '2020-07-21 01:15:28', '57', '63', '63', '17', '-270.000000', '-270.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '270.000000', null, null, null, null, '0', 'CGDD00000000333', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('219', '出库', '销售', 'XSCK00000000336', 'XSCK00000000336', '2020-07-21 15:06:02', '2020-07-21 15:05:49', '59', '63', '63', '17', '70.000000', '70.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '70.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('222', '出库', '销售', 'XSCK00000000338', 'XSCK00000000338', '2020-07-21 23:05:55', '2020-07-21 23:04:05', '58', '63', '63', '17', '110.000000', '110.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '110.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('223', '入库', '采购', 'CGRK00000000339', 'CGRK00000000339', '2020-07-21 23:06:55', '2020-07-21 23:06:43', '68', '63', '63', '17', '-110.000000', '-110.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '110.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('224', '出库', '销售', 'XSCK00000000340', 'XSCK00000000340', '2020-07-21 23:07:06', '2020-07-21 23:06:59', '71', '63', '63', '17', '44.000000', '44.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '44.000000', null, null, null, null, '0', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('225', '其它', '盘点录入', 'PDLR00000000342', 'PDLR00000000342', '2020-07-22 00:07:13', '2020-07-22 00:06:53', null, '63', '63', null, '0.000000', '16.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '2', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('226', '其它', '盘点复盘', 'PDFP00000000344', 'PDFP00000000344', '2020-07-22 00:07:41', '2020-07-22 00:08:06', null, '63', '63', null, '0.000000', '16.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '1', 'PDFP00000000343', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('227', '其它', '采购订单', 'CGDD00000000345', 'CGDD00000000345', '2020-07-22 00:41:37', '2020-07-22 00:41:27', '74', '63', '63', null, '0.000000', '-110.000000', '现付', null, '', '', null, '', null, null, null, null, null, null, null, '2', '', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('228', '入库', '采购', 'CGRK00000000351', 'CGRK00000000351', '2020-07-22 00:48:09', '2020-07-22 00:47:48', '74', '63', '63', '17', '-110.000000', '-110.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '110.000000', null, null, null, null, '0', 'CGDD00000000345', '63', '0'); -INSERT INTO `jsh_depot_head` VALUES ('229', '入库', '采购', 'CGRK00000000352', 'CGRK00000000352', '2020-09-13 18:43:56', '2020-09-13 18:43:45', '57', null, '131', '17', '-90.000000', '-90.000000', '现付', null, '', '', null, '', '0.000000', '0.000000', '90.000000', null, null, null, null, '0', '', '63', '0'); - --- ---------------------------- --- Table structure for jsh_depot_item --- ---------------------------- -DROP TABLE IF EXISTS `jsh_depot_item`; -CREATE TABLE `jsh_depot_item` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `header_id` bigint(20) NOT NULL COMMENT '表头Id', - `material_id` bigint(20) NOT NULL COMMENT '商品Id', - `material_extend_id` bigint(20) DEFAULT NULL COMMENT '商品扩展id', - `material_unit` varchar(20) DEFAULT NULL COMMENT '商品计量单位', - `oper_number` decimal(24,6) DEFAULT NULL COMMENT '数量', - `basic_number` decimal(24,6) DEFAULT NULL COMMENT '基础数量,如kg、瓶', - `unit_price` decimal(24,6) DEFAULT NULL COMMENT '单价', - `tax_unit_price` decimal(24,6) DEFAULT NULL COMMENT '含税单价', - `all_price` decimal(24,6) DEFAULT NULL COMMENT '金额', - `remark` varchar(200) DEFAULT NULL COMMENT '备注', - `img` varchar(50) DEFAULT NULL COMMENT '图片', - `incidentals` decimal(24,6) DEFAULT NULL COMMENT '运杂费', - `depot_id` bigint(20) DEFAULT NULL COMMENT '仓库ID', - `another_depot_id` bigint(20) DEFAULT NULL COMMENT '调拨时,对方仓库Id', - `tax_rate` decimal(24,6) DEFAULT NULL COMMENT '税率', - `tax_money` decimal(24,6) DEFAULT NULL COMMENT '税额', - `tax_last_money` decimal(24,6) DEFAULT NULL COMMENT '价税合计', - `other_field1` varchar(50) DEFAULT NULL COMMENT '自定义字段1-名称', - `other_field2` varchar(50) DEFAULT NULL COMMENT '自定义字段2-型号', - `other_field3` varchar(50) DEFAULT NULL COMMENT '自定义字段3-制造商', - `other_field4` varchar(50) DEFAULT NULL COMMENT '自定义字段4-名称', - `other_field5` varchar(50) DEFAULT NULL COMMENT '自定义字段5-名称', - `material_type` varchar(20) DEFAULT NULL COMMENT '商品类型', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`), - KEY `FK2A819F475D61CCF7` (`material_id`), - KEY `FK2A819F474BB6190E` (`header_id`), - KEY `FK2A819F479485B3F5` (`depot_id`), - KEY `FK2A819F47729F5392` (`another_depot_id`) -) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=utf8 COMMENT='单据子表'; - --- ---------------------------- --- Records of jsh_depot_item --- ---------------------------- -INSERT INTO `jsh_depot_item` VALUES ('198', '189', '569', '3', '只', '12.000000', '12.000000', '10.000000', '10.000000', '120.000000', '', null, null, '14', null, '0.000000', '0.000000', '120.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('200', '191', '569', '3', '只', '1.000000', '1.000000', '10.000000', '10.000000', '10.000000', '', null, null, '14', null, '0.000000', '0.000000', '10.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('201', '192', '569', '3', '只', '22.000000', '22.000000', '10.000000', '10.000000', '220.000000', '', null, null, '14', null, '0.000000', '0.000000', '220.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('202', '193', '569', '3', '只', '20.000000', '0.000000', '15.000000', '15.000000', '300.000000', '', null, null, '14', null, '0.000000', '0.000000', '300.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('205', '196', '569', '3', '只', '2.000000', '122.000000', '10.000000', '10.000000', '20.000000', '', null, null, '15', null, '0.000000', '0.000000', '20.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('206', '197', '569', '3', '只', '18.000000', '0.000000', '15.000000', '15.000000', '270.000000', '', null, null, '14', null, '0.000000', '0.000000', '270.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('207', '196', '568', '2', '个', '10.000000', '2.000000', '11.000000', '11.000000', '110.000000', '', null, null, '15', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('208', '196', '568', '2', '个', '10.000000', '2.000000', '11.000000', '11.000000', '110.000000', '', null, null, '15', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('209', '196', '568', '2', '个', '10.000000', '2.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('210', '196', '568', '2', '个', '10.000000', '2.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('211', '196', '568', '2', '个', '10.000000', '3.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('212', '196', '568', '2', '个', '10.000000', '4.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('213', '196', '568', '2', '个', '100.000000', '5.000000', '11.000000', '11.000000', '1100.000000', '', null, null, '14', null, '0.000000', '0.000000', '1100.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('214', '196', '569', '3', '只', '15.000000', '6.000000', '10.000000', '10.000000', '150.000000', '', null, null, '14', null, '0.000000', '0.000000', '150.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('216', '199', '568', '2', '个', '2.000000', '2.000000', '11.000000', '11.000000', '22.000000', '', null, null, '14', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('217', '200', '568', '2', '个', '1.000000', '0.000000', '11.000000', '11.000000', '11.000000', '', null, null, '14', null, '0.000000', '0.000000', '11.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('218', '201', '568', '2', '个', '1.000000', '1.000000', '15.000000', '15.000000', '15.000000', '', null, null, '14', null, '0.000000', '0.000000', '15.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('219', '202', '568', '2', '个', '1.000000', '1.000000', '15.000000', '15.000000', '15.000000', '', null, null, '14', null, '0.000000', '0.000000', '15.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('220', '203', '568', '2', '个', '2.000000', '2.000000', '11.000000', '11.000000', '22.000000', '', null, null, '14', null, '0.000000', '0.000000', '22.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('221', '203', '569', '3', '只', '2.000000', '2.000000', '10.000000', '10.000000', '20.000000', '', null, null, '14', null, '0.000000', '0.000000', '20.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('222', '204', '569', '3', '只', '1.000000', '0.000000', '15.000000', '15.000000', '15.000000', '', null, null, '14', null, '0.000000', '0.000000', '15.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('223', '205', '568', '2', '个', '1.000000', '1.000000', '15.000000', '15.000000', '15.000000', '', null, null, '14', '15', '0.000000', '0.000000', '15.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('224', '206', '568', '2', '个', '1.000000', '1.000000', '5.000000', '5.000000', '5.000000', '', null, null, '14', null, '0.000000', '0.000000', '5.000000', '', '', '', '', '', '组合件', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('225', '206', '569', '3', '只', '1.000000', '1.000000', '5.000000', '5.000000', '5.000000', '', null, null, '14', null, '0.000000', '0.000000', '5.000000', '', '', '', '', '', '普通子件', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('226', '207', '569', '3', '只', '1.000000', '1.000000', '0.000000', '0.000000', '0.000000', '', null, null, '14', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '组合件', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('227', '207', '568', '2', '个', '1.000000', '1.000000', '0.000000', '0.000000', '0.000000', '', null, null, '14', null, '0.000000', '0.000000', '0.000000', '', '', '', '', '', '普通子件', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('228', '208', '568', '2', '个', '2.000000', '2.000000', '15.000000', '15.000000', '30.000000', '', null, null, '14', null, '0.000000', '0.000000', '30.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('229', '209', '568', '2', '个', '1.000000', '1.000000', '15.000000', '15.000000', '15.000000', '', null, null, '14', null, '0.000000', '0.000000', '15.000000', '', '', '', '', '', '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('230', '210', '587', '1', '个', '10.000000', '10.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('231', '211', '579', '8', '箱', '10.000000', '120.000000', '240.000000', '240.000000', '2400.000000', '', null, null, '14', null, '0.000000', '0.000000', '2400.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('232', '212', '587', '1', '个', '5.000000', '5.000000', '11.000000', '11.000000', '55.000000', '', null, null, '14', null, '0.000000', '0.000000', '55.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('233', '212', '570', '4', '个', '60.000000', '60.000000', '8.000000', '8.000000', '480.000000', '', null, null, '14', null, '0.000000', '0.000000', '480.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('234', '214', '570', '4', '个', '100.000000', '100.000000', '14.000000', '14.000000', '1400.000000', '', null, null, '14', null, '0.000000', '0.000000', '1400.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('235', '214', '587', '1', '个', '50.000000', '50.000000', '22.000000', '22.000000', '1100.000000', '', null, null, '14', null, '0.000000', '0.000000', '1100.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('236', '215', '570', '4', '个', '100.000000', '100.000000', '8.000000', '8.000000', '800.000000', '', null, null, '14', null, '0.000000', '0.000000', '800.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('237', '216', '570', '4', '个', '22.000000', '22.000000', '14.000000', '14.000000', '308.000000', '', null, null, '14', null, '0.000000', '0.000000', '308.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('238', '217', '570', '4', '个', '12.000000', '12.000000', '8.000000', '8.000000', '96.000000', '', null, null, '14', null, '0.000000', '0.000000', '96.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('239', '218', '570', '4', '个', '15.000000', '15.000000', '18.000000', '18.000000', '270.000000', '', null, null, '14', null, '0.000000', '0.000000', '270.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('240', '219', '570', '4', '个', '5.000000', '5.000000', '14.000000', '14.000000', '70.000000', '', null, null, '14', null, '0.000000', '0.000000', '70.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('241', '222', '588', '10', '个', '5.000000', '5.000000', '22.000000', '22.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('242', '223', '588', '10', '个', '10.000000', '10.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('243', '224', '588', '10', '个', '2.000000', '2.000000', '22.000000', '22.000000', '44.000000', '', null, null, '14', null, '0.000000', '0.000000', '44.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('244', '225', '570', '4', '个', '2.000000', '2.000000', '8.000000', '8.000000', '16.000000', '', null, null, '14', null, '0.000000', '0.000000', '16.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('245', '226', '570', '4', '个', '2.000000', '2.000000', '8.000000', '8.000000', '16.000000', '', null, null, '14', null, '0.000000', '0.000000', '16.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('246', '227', '588', '10', '个', '10.000000', '10.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('247', '228', '588', '10', '个', '10.000000', '10.000000', '11.000000', '11.000000', '110.000000', '', null, null, '14', null, '0.000000', '0.000000', '110.000000', null, null, null, null, null, '', '63', '0'); -INSERT INTO `jsh_depot_item` VALUES ('248', '229', '569', '3', '只', '9.000000', '9.000000', '10.000000', '10.000000', '90.000000', '', null, null, '14', null, '0.000000', '0.000000', '90.000000', null, null, null, null, null, '', '63', '0'); - --- ---------------------------- --- Table structure for jsh_function --- ---------------------------- -DROP TABLE IF EXISTS `jsh_function`; -CREATE TABLE `jsh_function` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `number` varchar(50) DEFAULT NULL COMMENT '编号', - `name` varchar(50) DEFAULT NULL COMMENT '名称', - `parent_number` varchar(50) DEFAULT NULL COMMENT '上级编号', - `url` varchar(100) DEFAULT NULL COMMENT '链接', - `state` bit(1) DEFAULT NULL COMMENT '收缩', - `sort` varchar(50) DEFAULT NULL COMMENT '排序', - `enabled` bit(1) DEFAULT NULL COMMENT '启用', - `type` varchar(50) DEFAULT NULL COMMENT '类型', - `push_btn` varchar(50) DEFAULT NULL COMMENT '功能按钮', - `icon` varchar(50) DEFAULT NULL COMMENT '图标', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=246 DEFAULT CHARSET=utf8 COMMENT='功能模块表'; - --- ---------------------------- --- Records of jsh_function --- ---------------------------- -INSERT INTO `jsh_function` VALUES ('1', '0001', '系统管理', '0', '', '', '0910', '', '电脑版', '', 'icon-settings', '0'); -INSERT INTO `jsh_function` VALUES ('13', '000102', '角色管理', '0001', '/pages/manage/role.html', '\0', '0130', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('14', '000103', '用户管理', '0001', '/pages/manage/user.html', '\0', '0140', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('15', '000104', '日志管理', '0001', '/pages/manage/log.html', '\0', '0160', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('16', '000105', '功能管理', '0001', '/pages/manage/functions.html', '\0', '0166', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('21', '0101', '商品管理', '0', '', '\0', '0620', '', '电脑版', null, 'icon-social-dropbox', '0'); -INSERT INTO `jsh_function` VALUES ('22', '010101', '商品类别', '0101', '/pages/materials/materialcategory.html', '\0', '0230', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('23', '010102', '商品信息', '0101', '/pages/materials/material.html', '\0', '0240', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('24', '0102', '基本资料', '0', '', '\0', '0750', '', '电脑版', null, 'icon-grid', '0'); -INSERT INTO `jsh_function` VALUES ('25', '01020101', '供应商信息', '0102', '/pages/manage/vendor.html', '\0', '0260', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('26', '010202', '仓库信息', '0102', '/pages/manage/depot.html', '\0', '0270', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('31', '010206', '经手人管理', '0102', '/pages/manage/person.html', '\0', '0284', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('32', '0502', '采购管理', '0', '', '\0', '0330', '', '电脑版', '', 'icon-loop', '0'); -INSERT INTO `jsh_function` VALUES ('33', '050201', '采购入库', '0502', '/pages/bill/purchase_in_list.html', '\0', '0340', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('38', '0603', '销售管理', '0', '', '\0', '0390', '', '电脑版', '', 'icon-briefcase', '0'); -INSERT INTO `jsh_function` VALUES ('40', '080107', '调拨出库', '0801', '/pages/bill/allocation_out_list.html', '\0', '0807', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('41', '060303', '销售出库', '0603', '/pages/bill/sale_out_list.html', '\0', '0394', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('44', '0704', '财务管理', '0', '', '\0', '0450', '', '电脑版', '', 'icon-map', '0'); -INSERT INTO `jsh_function` VALUES ('59', '030101', '库存状况', '0301', '/pages/reports/in_out_stock_report.html', '\0', '0600', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('194', '010204', '收支项目', '0102', '/pages/manage/inOutItem.html', '\0', '0282', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('195', '010205', '结算账户', '0102', '/pages/manage/account.html', '\0', '0283', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('197', '070402', '收入单', '0704', '/pages/financial/item_in.html', '\0', '0465', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('198', '0301', '报表查询', '0', '', '\0', '0570', '', '电脑版', null, 'icon-pie-chart', '0'); -INSERT INTO `jsh_function` VALUES ('199', '050204', '采购退货', '0502', '/pages/bill/purchase_back_list.html', '\0', '0345', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('200', '060305', '销售退货', '0603', '/pages/bill/sale_back_list.html', '\0', '0396', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('201', '080103', '其它入库', '0801', '/pages/bill/other_in_list.html', '\0', '0803', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('202', '080105', '其它出库', '0801', '/pages/bill/other_out_list.html', '\0', '0805', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('203', '070403', '支出单', '0704', '/pages/financial/item_out.html', '\0', '0470', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('204', '070404', '收款单', '0704', '/pages/financial/money_in.html', '\0', '0475', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('205', '070405', '付款单', '0704', '/pages/financial/money_out.html', '\0', '0480', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('206', '070406', '转账单', '0704', '/pages/financial/giro.html', '\0', '0490', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('207', '030102', '账户统计', '0301', '/pages/reports/account_report.html', '\0', '0610', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('208', '030103', '进货统计', '0301', '/pages/reports/buy_in_report.html', '\0', '0620', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('209', '030104', '销售统计', '0301', '/pages/reports/sale_out_report.html', '\0', '0630', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('210', '040102', '零售出库', '0401', '/pages/bill/retail_out_list.html', '\0', '0405', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('211', '040104', '零售退货', '0401', '/pages/bill/retail_back_list.html', '\0', '0407', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('212', '070407', '收预付款', '0704', '/pages/financial/advance_in.html', '\0', '0495', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('217', '01020102', '客户信息', '0102', '/pages/manage/customer.html', '\0', '0262', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('218', '01020103', '会员信息', '0102', '/pages/manage/member.html', '\0', '0263', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('220', '010103', '计量单位', '0101', '/pages/manage/unit.html', '\0', '0245', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('225', '0401', '零售管理', '0', '', '\0', '0101', '', '电脑版', '', 'icon-present', '0'); -INSERT INTO `jsh_function` VALUES ('226', '030106', '入库明细', '0301', '/pages/reports/in_detail.html', '\0', '0640', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('227', '030107', '出库明细', '0301', '/pages/reports/out_detail.html', '\0', '0645', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('228', '030108', '入库汇总', '0301', '/pages/reports/in_material_count.html', '\0', '0650', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('229', '030109', '出库汇总', '0301', '/pages/reports/out_material_count.html', '\0', '0655', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('232', '080109', '组装单', '0801', '/pages/bill/assemble_list.html', '\0', '0809', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('233', '080111', '拆卸单', '0801', '/pages/bill/disassemble_list.html', '\0', '0811', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('234', '000105', '系统配置', '0001', '/pages/manage/systemConfig.html', '\0', '0165', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('235', '030110', '客户对账', '0301', '/pages/reports/customer_account.html', '\0', '0660', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('236', '000106', '商品属性', '0001', '/pages/materials/materialProperty.html', '\0', '0168', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('237', '030111', '供应商对账', '0301', '/pages/reports/vendor_account.html', '\0', '0665', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('239', '0801', '仓库管理', '0', '', '\0', '0420', '', '电脑版', '', 'icon-layers', '0'); -INSERT INTO `jsh_function` VALUES ('240', '010104', '序列号', '0101', '/pages/manage/serialNumber.html', '\0', '0246', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('241', '050202', '采购订单', '0502', '/pages/bill/purchase_orders_list.html', '\0', '0335', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('242', '060301', '销售订单', '0603', '/pages/bill/sale_orders_list.html', '\0', '0392', '', '电脑版', '1,2', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('243', '000108', '机构管理', '0001', '/pages/manage/organization.html', '', '0150', '', '电脑版', '1', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('244', '030112', '库存预警', '0301', '/pages/reports/stock_warning_report.html', '\0', '0670', '', '电脑版', '', 'icon-notebook', '0'); -INSERT INTO `jsh_function` VALUES ('245', '000107', '插件管理', '0001', '/pages/manage/plugin.html', '\0', '0170', '', '电脑版', '1', 'icon-notebook', '0'); - --- ---------------------------- --- Table structure for jsh_in_out_item --- ---------------------------- -DROP TABLE IF EXISTS `jsh_in_out_item`; -CREATE TABLE `jsh_in_out_item` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(50) DEFAULT NULL COMMENT '名称', - `type` varchar(20) DEFAULT NULL COMMENT '类型', - `remark` varchar(100) DEFAULT NULL COMMENT '备注', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='收支项目'; - --- ---------------------------- --- Records of jsh_in_out_item --- ---------------------------- -INSERT INTO `jsh_in_out_item` VALUES ('21', '快递费', '支出', '', '63', '0'); -INSERT INTO `jsh_in_out_item` VALUES ('22', '房租收入', '收入', '', '63', '0'); -INSERT INTO `jsh_in_out_item` VALUES ('23', '利息收入', '收入', '收入', '63', '0'); - --- ---------------------------- --- Table structure for jsh_log --- ---------------------------- -DROP TABLE IF EXISTS `jsh_log`; -CREATE TABLE `jsh_log` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `user_id` bigint(20) DEFAULT NULL COMMENT '用户id', - `operation` varchar(500) DEFAULT NULL COMMENT '操作模块名称', - `client_ip` varchar(50) DEFAULT NULL COMMENT '客户端IP', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `status` tinyint(4) DEFAULT NULL COMMENT '操作状态 0==成功,1==失败', - `content` varchar(1000) DEFAULT NULL COMMENT '详情', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - PRIMARY KEY (`id`), - KEY `FKF2696AA13E226853` (`user_id`) -) ENGINE=InnoDB AUTO_INCREMENT=6800 DEFAULT CHARSET=utf8 COMMENT='操作日志'; - --- ---------------------------- --- Records of jsh_log --- ---------------------------- - --- ---------------------------- --- Table structure for jsh_material --- ---------------------------- -DROP TABLE IF EXISTS `jsh_material`; -CREATE TABLE `jsh_material` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `category_id` bigint(20) DEFAULT NULL COMMENT '产品类型id', - `name` varchar(50) DEFAULT NULL COMMENT '名称', - `mfrs` varchar(50) DEFAULT NULL COMMENT '制造商', - `safety_stock` decimal(24,6) DEFAULT NULL COMMENT '安全存量(KG)', - `model` varchar(50) DEFAULT NULL COMMENT '型号', - `standard` varchar(50) DEFAULT NULL COMMENT '规格', - `color` varchar(50) DEFAULT NULL COMMENT '颜色', - `unit` varchar(50) DEFAULT NULL COMMENT '单位-单个', - `remark` varchar(100) DEFAULT NULL COMMENT '备注', - `unit_id` bigint(20) DEFAULT NULL COMMENT '计量单位Id', - `enabled` bit(1) DEFAULT NULL COMMENT '启用 0-禁用 1-启用', - `other_field1` varchar(50) DEFAULT NULL COMMENT '自定义1', - `other_field2` varchar(50) DEFAULT NULL COMMENT '自定义2', - `other_field3` varchar(50) DEFAULT NULL COMMENT '自定义3', - `enable_serial_number` varchar(1) DEFAULT '0' COMMENT '是否开启序列号,0否,1是', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`), - KEY `FK675951272AB6672C` (`category_id`), - KEY `UnitId` (`unit_id`) -) ENGINE=InnoDB AUTO_INCREMENT=589 DEFAULT CHARSET=utf8 COMMENT='产品表'; - --- ---------------------------- --- Records of jsh_material --- ---------------------------- -INSERT INTO `jsh_material` VALUES ('568', '17', '商品1', '制1', '100.000000', 'sp1', '', '', '个', '', null, '', '', '', '', '0', '63', '0'); -INSERT INTO `jsh_material` VALUES ('569', '17', '商品2', '', '200.000000', 'sp2', '', '', '只', '', null, '', '', '', '', '0', '63', '0'); -INSERT INTO `jsh_material` VALUES ('570', '17', '商品3', '', '300.000000', 'sp3', '', '', '个', '', null, '', '', '', '', '0', '63', '0'); -INSERT INTO `jsh_material` VALUES ('577', null, '商品8', '', null, 'sp8', '', '', '', '', '15', '', '', '', '', '0', '63', '0'); -INSERT INTO `jsh_material` VALUES ('579', '21', '商品17', '', null, 'sp17', '', '', '', '', '15', '', '', '', '', '0', '63', '0'); -INSERT INTO `jsh_material` VALUES ('586', '17', '序列号商品测试', '', null, 'xlh123', '', '', '个', '', null, '', '', '', '', '1', '63', '0'); -INSERT INTO `jsh_material` VALUES ('587', '17', '商品test1', '南通中远', null, '', 'test1', '', '个', '', null, '', '', '', '', '0', '63', '0'); -INSERT INTO `jsh_material` VALUES ('588', '21', '商品200', '', '112.000000', '', '300ml', '', '个', '', null, '', '', '', '', '0', '63', '0'); - --- ---------------------------- --- Table structure for jsh_material_category --- ---------------------------- -DROP TABLE IF EXISTS `jsh_material_category`; -CREATE TABLE `jsh_material_category` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(50) DEFAULT NULL COMMENT '名称', - `category_level` smallint(6) DEFAULT NULL COMMENT '等级', - `parent_id` bigint(20) DEFAULT NULL COMMENT '上级id', - `sort` varchar(10) DEFAULT NULL COMMENT '显示顺序', - `status` varchar(1) DEFAULT '0' COMMENT '状态,0系统默认,1启用,2删除', - `serial_no` varchar(100) DEFAULT NULL COMMENT '编号', - `remark` varchar(1024) DEFAULT NULL COMMENT '备注', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - PRIMARY KEY (`id`), - KEY `FK3EE7F725237A77D8` (`parent_id`) -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='产品类型表'; - --- ---------------------------- --- Records of jsh_material_category --- ---------------------------- -INSERT INTO `jsh_material_category` VALUES ('17', '目录1', null, '-1', '', '1', '', '', '2019-04-10 22:18:12', '63', '2019-04-10 22:18:12', '63', '63'); -INSERT INTO `jsh_material_category` VALUES ('21', '目录2', null, '17', '', '1', '', '', '2020-07-20 23:08:44', '63', '2020-07-20 23:08:44', '63', '63'); - --- ---------------------------- --- Table structure for jsh_material_current_stock --- ---------------------------- -DROP TABLE IF EXISTS `jsh_material_current_stock`; -CREATE TABLE `jsh_material_current_stock` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `material_id` bigint(20) DEFAULT NULL COMMENT '产品id', - `depot_id` bigint(20) DEFAULT NULL COMMENT '仓库id', - `current_number` decimal(24,6) DEFAULT NULL COMMENT '当前库存数量', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='产品当前库存'; - --- ---------------------------- --- Records of jsh_material_current_stock --- ---------------------------- -INSERT INTO `jsh_material_current_stock` VALUES ('1', '587', '14', '-30.000000', '63', '0'); -INSERT INTO `jsh_material_current_stock` VALUES ('2', '570', '14', '48.000000', '63', '0'); -INSERT INTO `jsh_material_current_stock` VALUES ('3', '568', '14', '19.000000', '63', '0'); -INSERT INTO `jsh_material_current_stock` VALUES ('4', '569', '14', '50.000000', '63', '0'); -INSERT INTO `jsh_material_current_stock` VALUES ('5', '588', '14', '13.000000', '63', '0'); -INSERT INTO `jsh_material_current_stock` VALUES ('6', '569', '15', '122.000000', '63', '0'); - --- ---------------------------- --- Table structure for jsh_material_extend --- ---------------------------- -DROP TABLE IF EXISTS `jsh_material_extend`; -CREATE TABLE `jsh_material_extend` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `material_id` bigint(20) DEFAULT NULL COMMENT '商品id', - `bar_code` varchar(50) DEFAULT NULL COMMENT '商品条码', - `commodity_unit` varchar(50) DEFAULT NULL COMMENT '商品单位', - `purchase_decimal` decimal(24,6) DEFAULT NULL COMMENT '采购价格', - `commodity_decimal` decimal(24,6) DEFAULT NULL COMMENT '零售价格', - `wholesale_decimal` decimal(24,6) DEFAULT NULL COMMENT '销售价格', - `low_decimal` decimal(24,6) DEFAULT NULL COMMENT '最低售价', - `default_flag` varchar(1) DEFAULT '1' COMMENT '是否为默认单位,1是,0否', - `create_time` datetime DEFAULT NULL COMMENT '创建日期', - `create_serial` varchar(50) DEFAULT NULL COMMENT '创建人编码', - `update_serial` varchar(50) DEFAULT NULL COMMENT '更新人编码', - `update_time` bigint(20) DEFAULT NULL COMMENT '更新时间戳', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='产品价格扩展'; - --- ---------------------------- --- Records of jsh_material_extend --- ---------------------------- -INSERT INTO `jsh_material_extend` VALUES ('1', '587', '1000', '个', '11.000000', '22.000000', '22.000000', '22.000000', '1', '2020-02-20 23:22:03', 'jsh', 'jsh', '1595263657135', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('2', '568', '1001', '个', '11.000000', '15.000000', '15.000000', '15.000000', '1', '2020-02-20 23:44:57', 'jsh', 'jsh', '1595265439418', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('3', '569', '1002', '只', '10.000000', '15.000000', '15.000000', '13.000000', '1', '2020-02-20 23:45:15', 'jsh', 'jsh', '1582213514731', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('4', '570', '1003', '个', '8.000000', '15.000000', '14.000000', '13.000000', '1', '2020-02-20 23:45:37', 'jsh', 'jsh', '1587657604430', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('5', '577', '1004', '个', '10.000000', '20.000000', '20.000000', '20.000000', '1', '2020-02-20 23:46:36', 'jsh', 'jsh', '1582213596494', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('6', '577', '1005', '箱', '120.000000', '240.000000', '240.000000', '240.000000', '0', '2020-02-20 23:46:36', 'jsh', 'jsh', '1582213596497', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('7', '579', '1006', '个', '20.000000', '30.000000', '30.000000', '30.000000', '1', '2020-02-20 23:47:04', 'jsh', 'jsh', '1595264270458', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('8', '579', '1007', '箱', '240.000000', '360.000000', '360.000000', '360.000000', '0', '2020-02-20 23:47:04', 'jsh', 'jsh', '1595264270466', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('9', '586', '1008', '个', '12.000000', '15.000000', '15.000000', '15.000000', '1', '2020-02-20 23:47:23', 'jsh', 'jsh', '1595254981896', '63', '0'); -INSERT INTO `jsh_material_extend` VALUES ('10', '588', '1009', '个', '11.000000', '22.000000', '22.000000', '22.000000', '1', '2020-07-21 00:58:15', 'jsh', 'jsh', '1595264315873', '63', '0'); - --- ---------------------------- --- Table structure for jsh_material_initial_stock --- ---------------------------- -DROP TABLE IF EXISTS `jsh_material_initial_stock`; -CREATE TABLE `jsh_material_initial_stock` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `material_id` bigint(20) DEFAULT NULL COMMENT '产品id', - `depot_id` bigint(20) DEFAULT NULL COMMENT '仓库id', - `number` decimal(24,6) DEFAULT NULL COMMENT '初始库存数量', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='产品初始库存'; - --- ---------------------------- --- Records of jsh_material_initial_stock --- ---------------------------- -INSERT INTO `jsh_material_initial_stock` VALUES ('123', '587', '14', '5.000000', '63', '0'); - --- ---------------------------- --- Table structure for jsh_material_property --- ---------------------------- -DROP TABLE IF EXISTS `jsh_material_property`; -CREATE TABLE `jsh_material_property` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `native_name` varchar(50) DEFAULT NULL COMMENT '原始名称', - `enabled` bit(1) DEFAULT NULL COMMENT '是否启用', - `sort` varchar(10) DEFAULT NULL COMMENT '排序', - `another_name` varchar(50) DEFAULT NULL COMMENT '别名', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='产品扩展字段表'; - --- ---------------------------- --- Records of jsh_material_property --- ---------------------------- -INSERT INTO `jsh_material_property` VALUES ('1', '制造商', '', '01', '制造商', '0'); -INSERT INTO `jsh_material_property` VALUES ('2', '自定义1', '', '02', '自定义1', '0'); -INSERT INTO `jsh_material_property` VALUES ('3', '自定义2', '', '03', '自定义2', '0'); -INSERT INTO `jsh_material_property` VALUES ('4', '自定义3', '', '04', '自定义3', '0'); - --- ---------------------------- --- Table structure for jsh_msg --- ---------------------------- -DROP TABLE IF EXISTS `jsh_msg`; -CREATE TABLE `jsh_msg` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `msg_title` varchar(100) DEFAULT NULL COMMENT '消息标题', - `msg_content` varchar(500) DEFAULT NULL COMMENT '消息内容', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `type` varchar(20) DEFAULT NULL COMMENT '消息类型', - `status` varchar(1) DEFAULT NULL COMMENT '状态,1未读 2已读', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_Flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='消息表'; - --- ---------------------------- --- Records of jsh_msg --- ---------------------------- -INSERT INTO `jsh_msg` VALUES ('2', '标题1', '内容1', '2019-09-10 00:11:39', '类型1', '1', '63', '0'); - --- ---------------------------- --- Table structure for jsh_organization --- ---------------------------- -DROP TABLE IF EXISTS `jsh_organization`; -CREATE TABLE `jsh_organization` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `org_no` varchar(20) DEFAULT NULL COMMENT '机构编号', - `org_full_name` varchar(500) DEFAULT NULL COMMENT '机构全称', - `org_abr` varchar(20) DEFAULT NULL COMMENT '机构简称', - `org_tpcd` varchar(9) DEFAULT NULL COMMENT '机构类型', - `org_stcd` char(1) DEFAULT NULL COMMENT '机构状态,1未营业、2正常营业、3暂停营业、4终止营业、5已除名', - `org_parent_no` varchar(20) DEFAULT NULL COMMENT '机构父节点编号', - `sort` varchar(20) DEFAULT NULL COMMENT '机构显示顺序', - `remark` varchar(500) DEFAULT NULL COMMENT '备注', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - `org_create_time` datetime DEFAULT NULL COMMENT '机构创建时间', - `org_stop_time` datetime DEFAULT NULL COMMENT '机构停运时间', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COMMENT='机构表'; - --- ---------------------------- --- Records of jsh_organization --- ---------------------------- -INSERT INTO `jsh_organization` VALUES ('12', '001', '测试机构', '测试机构', null, '2', '-1', '001', '', '2019-12-28 12:13:01', '63', '2019-12-28 12:13:01', '63', null, null, '63'); -INSERT INTO `jsh_organization` VALUES ('13', 'jg1', '机构1', '机构1', null, '2', '001', '22', '', '2020-07-21 00:09:57', '63', '2020-07-21 00:10:22', '63', null, null, '63'); -INSERT INTO `jsh_organization` VALUES ('14', '12', '机构2', '机构2', null, '', 'jg1', '12', '', '2020-07-21 22:45:42', '63', '2020-07-21 22:45:51', '63', null, null, '63'); - --- ---------------------------- --- Table structure for jsh_orga_user_rel --- ---------------------------- -DROP TABLE IF EXISTS `jsh_orga_user_rel`; -CREATE TABLE `jsh_orga_user_rel` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `orga_id` bigint(20) NOT NULL COMMENT '机构id', - `user_id` bigint(20) NOT NULL COMMENT '用户id', - `user_blng_orga_dspl_seq` varchar(20) DEFAULT NULL COMMENT '用户在所属机构中显示顺序', - `delete_flag` char(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='机构用户关系表'; - --- ---------------------------- --- Records of jsh_orga_user_rel --- ---------------------------- -INSERT INTO `jsh_orga_user_rel` VALUES ('10', '13', '131', '2', '0', '2019-12-28 12:13:15', '63', '2020-09-13 18:42:52', '63', '63'); -INSERT INTO `jsh_orga_user_rel` VALUES ('11', '12', '63', '', '0', '2020-09-13 18:42:45', '63', '2020-09-13 18:42:45', '63', '63'); - --- ---------------------------- --- Table structure for jsh_person --- ---------------------------- -DROP TABLE IF EXISTS `jsh_person`; -CREATE TABLE `jsh_person` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `type` varchar(20) DEFAULT NULL COMMENT '类型', - `name` varchar(50) DEFAULT NULL COMMENT '姓名', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='经手人表'; - --- ---------------------------- --- Records of jsh_person --- ---------------------------- -INSERT INTO `jsh_person` VALUES ('14', '业务员', '小李', '63', '0'); -INSERT INTO `jsh_person` VALUES ('15', '仓管员', '小军', '63', '0'); -INSERT INTO `jsh_person` VALUES ('16', '财务员', '小夏', '63', '0'); - --- ---------------------------- --- Table structure for jsh_platform_config --- ---------------------------- -DROP TABLE IF EXISTS `jsh_platform_config`; -CREATE TABLE `jsh_platform_config` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `platform_key` varchar(100) DEFAULT NULL COMMENT '关键词', - `platform_key_info` varchar(100) DEFAULT NULL COMMENT '关键词名称', - `platform_value` varchar(200) DEFAULT NULL COMMENT '值', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='平台参数'; - --- ---------------------------- --- Records of jsh_platform_config --- ---------------------------- -INSERT INTO `jsh_platform_config` VALUES ('1', 'platform_name', '平台名称', '华夏ERP'); -INSERT INTO `jsh_platform_config` VALUES ('2', 'activation_code', '激活码', null); - --- ---------------------------- --- Table structure for jsh_role --- ---------------------------- -DROP TABLE IF EXISTS `jsh_role`; -CREATE TABLE `jsh_role` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(50) DEFAULT NULL COMMENT '名称', - `type` varchar(50) DEFAULT NULL COMMENT '类型', - `value` varchar(200) DEFAULT NULL COMMENT '值', - `description` varchar(100) DEFAULT NULL COMMENT '描述', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='角色表'; - --- ---------------------------- --- Records of jsh_role --- ---------------------------- -INSERT INTO `jsh_role` VALUES ('4', '管理员', '全部数据', null, null, null, '0'); -INSERT INTO `jsh_role` VALUES ('10', '租户', '全部数据', null, '', null, '0'); -INSERT INTO `jsh_role` VALUES ('16', '销售经理', '全部数据', null, 'ddd', '63', '0'); -INSERT INTO `jsh_role` VALUES ('17', '销售代表', '个人数据', null, 'rrr', '63', '0'); -INSERT INTO `jsh_role` VALUES ('18', '角色abc', '本机构数据', null, '33333', '63', '0'); - --- ---------------------------- --- Table structure for jsh_sequence --- ---------------------------- -DROP TABLE IF EXISTS `jsh_sequence`; -CREATE TABLE `jsh_sequence` ( - `seq_name` varchar(50) NOT NULL COMMENT '序列名称', - `min_value` bigint(20) NOT NULL COMMENT '最小值', - `max_value` bigint(20) NOT NULL COMMENT '最大值', - `current_val` bigint(20) NOT NULL COMMENT '当前值', - `increment_val` int(11) NOT NULL DEFAULT '1' COMMENT '增长步数', - `remark` varchar(500) DEFAULT NULL COMMENT '备注', - PRIMARY KEY (`seq_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='单据编号表'; - --- ---------------------------- --- Records of jsh_sequence --- ---------------------------- -INSERT INTO `jsh_sequence` VALUES ('depot_number_seq', '1', '999999999999999999', '353', '1', '单据编号sequence'); - --- ---------------------------- --- Table structure for jsh_serial_number --- ---------------------------- -DROP TABLE IF EXISTS `jsh_serial_number`; -CREATE TABLE `jsh_serial_number` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `material_id` bigint(20) DEFAULT NULL COMMENT '产品表id', - `serial_number` varchar(64) DEFAULT NULL COMMENT '序列号', - `is_sell` varchar(1) DEFAULT '0' COMMENT '是否卖出,0未卖出,1卖出', - `remark` varchar(1024) DEFAULT NULL COMMENT '备注', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - `depot_head_id` bigint(20) DEFAULT NULL COMMENT '单据主表id,用于跟踪序列号流向', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COMMENT='序列号表'; - --- ---------------------------- --- Records of jsh_serial_number --- ---------------------------- -INSERT INTO `jsh_serial_number` VALUES ('105', '586', '12312323423223', '0', 'abab', '0', '2019-12-28 12:14:39', '63', '2020-07-21 00:30:32', '63', null, '63'); -INSERT INTO `jsh_serial_number` VALUES ('106', '586', '143132415952626404571', '0', '', '1', '2020-07-21 00:30:40', '63', '2020-07-21 00:30:49', '63', null, '63'); -INSERT INTO `jsh_serial_number` VALUES ('107', '586', '143132415952626404572', '0', '', '1', '2020-07-21 00:30:40', '63', '2020-07-21 00:30:47', '63', null, '63'); -INSERT INTO `jsh_serial_number` VALUES ('108', '586', '3215952626621201', '0', '', '0', '2020-07-21 00:31:02', '63', '2020-07-21 00:31:02', '63', null, '63'); -INSERT INTO `jsh_serial_number` VALUES ('109', '586', '3215952626621202', '0', '', '0', '2020-07-21 00:31:02', '63', '2020-07-21 00:31:02', '63', null, '63'); - --- ---------------------------- --- Table structure for jsh_supplier --- ---------------------------- -DROP TABLE IF EXISTS `jsh_supplier`; -CREATE TABLE `jsh_supplier` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `supplier` varchar(255) NOT NULL COMMENT '供应商名称', - `contacts` varchar(100) DEFAULT NULL COMMENT '联系人', - `phone_num` varchar(30) DEFAULT NULL COMMENT '联系电话', - `email` varchar(50) DEFAULT NULL COMMENT '电子邮箱', - `description` varchar(500) DEFAULT NULL COMMENT '备注', - `isystem` tinyint(4) DEFAULT NULL COMMENT '是否系统自带 0==系统 1==非系统', - `type` varchar(20) DEFAULT NULL COMMENT '类型', - `enabled` bit(1) DEFAULT NULL COMMENT '启用', - `advance_in` decimal(24,6) DEFAULT '0.000000' COMMENT '预收款', - `begin_need_get` decimal(24,6) DEFAULT NULL COMMENT '期初应收', - `begin_need_pay` decimal(24,6) DEFAULT NULL COMMENT '期初应付', - `all_need_get` decimal(24,6) DEFAULT NULL COMMENT '累计应收', - `all_need_pay` decimal(24,6) DEFAULT NULL COMMENT '累计应付', - `fax` varchar(30) DEFAULT NULL COMMENT '传真', - `telephone` varchar(30) DEFAULT NULL COMMENT '手机', - `address` varchar(50) DEFAULT NULL COMMENT '地址', - `tax_num` varchar(50) DEFAULT NULL COMMENT '纳税人识别号', - `bank_name` varchar(50) DEFAULT NULL COMMENT '开户行', - `account_number` varchar(50) DEFAULT NULL COMMENT '账号', - `tax_rate` decimal(24,6) DEFAULT NULL COMMENT '税率', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COMMENT='供应商/客户信息表'; - --- ---------------------------- --- Records of jsh_supplier --- ---------------------------- -INSERT INTO `jsh_supplier` VALUES ('57', '供应商1', '小军', '12345678', '', '', null, '供应商', '', '0.000000', '0.000000', '0.000000', null, '0.000000', '', '', '地址1', '', '', '', '12.000000', '63', '0'); -INSERT INTO `jsh_supplier` VALUES ('58', '客户1', '小李', '12345678', '', '', null, '客户', '', '0.000000', '0.000000', '0.000000', '-100.000000', null, '', '', '', '', '', '', '12.000000', '63', '0'); -INSERT INTO `jsh_supplier` VALUES ('59', '客户2', '小陈', '', '', '', null, '客户', '', '0.000000', '0.000000', '0.000000', '0.000000', null, '', '', '', '', '', '', null, '63', '0'); -INSERT INTO `jsh_supplier` VALUES ('60', '12312666', '小曹', '', '', '', null, '会员', '', '970.000000', '0.000000', '0.000000', null, null, '', '13000000000', '', '', '', '', null, '63', '0'); -INSERT INTO `jsh_supplier` VALUES ('68', '供应商3', '晓丽', '', '', '', null, '供应商', '', '0.000000', '15.000000', '0.000000', null, '-15.000000', '', '13000000000', '', '1341324', '', '', '22.000000', '63', '0'); -INSERT INTO `jsh_supplier` VALUES ('71', '客户3', '小周', '', '', '', null, '客户', '', '0.000000', '0.000000', '0.000000', '0.000000', null, '', '', '', '', '', '', null, '63', '0'); -INSERT INTO `jsh_supplier` VALUES ('74', '供应商5', '小季', '', '', '', null, '供应商', '', '0.000000', '0.000000', '0.000000', null, null, '', '', '', '', '', '', null, '63', '0'); - --- ---------------------------- --- Table structure for jsh_system_config --- ---------------------------- -DROP TABLE IF EXISTS `jsh_system_config`; -CREATE TABLE `jsh_system_config` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `company_name` varchar(50) DEFAULT NULL COMMENT '公司名称', - `company_contacts` varchar(20) DEFAULT NULL COMMENT '公司联系人', - `company_address` varchar(50) DEFAULT NULL COMMENT '公司地址', - `company_tel` varchar(20) DEFAULT NULL COMMENT '公司电话', - `company_fax` varchar(20) DEFAULT NULL COMMENT '公司传真', - `company_post_code` varchar(20) DEFAULT NULL COMMENT '公司邮编', - `depot_flag` varchar(1) DEFAULT '0' COMMENT '仓库启用标记,0未启用,1启用', - `customer_flag` varchar(1) DEFAULT '0' COMMENT '客户启用标记,0未启用,1启用', - `minus_stock_flag` varchar(1) DEFAULT '0' COMMENT '负库存启用标记,0未启用,1启用', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='系统参数'; - --- ---------------------------- --- Records of jsh_system_config --- ---------------------------- -INSERT INTO `jsh_system_config` VALUES ('9', '公司1', '小军', '地址1', '12313', '1233', '4231', '0', '0', '1', '63', '0'); - --- ---------------------------- --- Table structure for jsh_tenant --- ---------------------------- -DROP TABLE IF EXISTS `jsh_tenant`; -CREATE TABLE `jsh_tenant` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '用户id', - `login_name` varchar(255) DEFAULT NULL COMMENT '登录名', - `user_num_limit` int(11) DEFAULT NULL COMMENT '用户数量限制', - `bills_num_limit` int(11) DEFAULT NULL COMMENT '单据数量限制', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='租户'; - --- ---------------------------- --- Records of jsh_tenant --- ---------------------------- -INSERT INTO `jsh_tenant` VALUES ('13', '63', 'jsh', '20', '2000', null); - --- ---------------------------- --- Table structure for jsh_unit --- ---------------------------- -DROP TABLE IF EXISTS `jsh_unit`; -CREATE TABLE `jsh_unit` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(50) DEFAULT NULL COMMENT '名称,支持多单位', - `basic_unit` varchar(50) DEFAULT NULL COMMENT '基础单位', - `other_unit` varchar(50) DEFAULT NULL COMMENT '副单位', - `ratio` int(11) DEFAULT NULL COMMENT '比例', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='多单位表'; - --- ---------------------------- --- Records of jsh_unit --- ---------------------------- -INSERT INTO `jsh_unit` VALUES ('15', '个,箱(1:12)', '个', '箱', '12', '63', '0'); -INSERT INTO `jsh_unit` VALUES ('16', '个,台(1:10)', '个', '台', '10', '63', '1'); -INSERT INTO `jsh_unit` VALUES ('17', '个,只(1:12)', '个', '只', '12', '63', '1'); - --- ---------------------------- --- Table structure for jsh_user --- ---------------------------- -DROP TABLE IF EXISTS `jsh_user`; -CREATE TABLE `jsh_user` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `username` varchar(255) NOT NULL COMMENT '用户姓名--例如张三', - `login_name` varchar(255) NOT NULL COMMENT '登录用户名', - `password` varchar(50) DEFAULT NULL COMMENT '登陆密码', - `position` varchar(200) DEFAULT NULL COMMENT '职位', - `department` varchar(255) DEFAULT NULL COMMENT '所属部门', - `email` varchar(100) DEFAULT NULL COMMENT '电子邮箱', - `phonenum` varchar(100) DEFAULT NULL COMMENT '手机号码', - `ismanager` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否为管理者 0==管理者 1==员工', - `isystem` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否系统自带数据 ', - `Status` tinyint(4) DEFAULT '0' COMMENT '状态,0:正常,1:删除,2封禁', - `description` varchar(500) DEFAULT NULL COMMENT '用户描述信息', - `remark` varchar(500) DEFAULT NULL COMMENT '备注', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '租户id', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8 COMMENT='用户表'; - --- ---------------------------- --- Records of jsh_user --- ---------------------------- -INSERT INTO `jsh_user` VALUES ('63', '季圣华', 'jsh', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '1', '0', '', null, '63'); -INSERT INTO `jsh_user` VALUES ('120', '管理员', 'admin', 'e10adc3949ba59abbe56e057f20f883e', null, null, null, null, '1', '0', '0', null, null, null); -INSERT INTO `jsh_user` VALUES ('131', '测试用户', 'test123', 'e10adc3949ba59abbe56e057f20f883e', '', null, '', '', '1', '0', '0', '', null, '63'); - --- ---------------------------- --- Table structure for jsh_user_business --- ---------------------------- -DROP TABLE IF EXISTS `jsh_user_business`; -CREATE TABLE `jsh_user_business` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `type` varchar(50) DEFAULT NULL COMMENT '类别', - `key_id` varchar(50) DEFAULT NULL COMMENT '主id', - `value` varchar(10000) DEFAULT NULL COMMENT '值', - `btn_str` varchar(2000) DEFAULT NULL COMMENT '按钮权限', - `delete_flag` varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8 COMMENT='用户/角色/模块关系表'; - --- ---------------------------- --- Records of jsh_user_business --- ---------------------------- -INSERT INTO `jsh_user_business` VALUES ('5', 'RoleFunctions', '4', '[210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212][59][207][208][209][226][227][228][229][235][237][244][246][22][23][220][240][25][217][218][26][194][195][31][13][16][243][14][15][234][236][245]', '[{\"funId\":\"13\",\"btnStr\":\"1\"},{\"funId\":\"16\",\"btnStr\":\"1\"},{\"funId\":\"243\",\"btnStr\":\"1\"},{\"funId\":\"14\",\"btnStr\":\"1\"},{\"funId\":\"234\",\"btnStr\":\"1\"},{\"funId\":\"236\",\"btnStr\":\"1\"},{\"funId\":\"245\",\"btnStr\":\"1\"},{\"funId\":\"22\",\"btnStr\":\"1\"},{\"funId\":\"23\",\"btnStr\":\"1\"},{\"funId\":\"220\",\"btnStr\":\"1\"},{\"funId\":\"240\",\"btnStr\":\"1\"},{\"funId\":\"25\",\"btnStr\":\"1\"},{\"funId\":\"217\",\"btnStr\":\"1\"},{\"funId\":\"218\",\"btnStr\":\"1\"},{\"funId\":\"26\",\"btnStr\":\"1\"},{\"funId\":\"194\",\"btnStr\":\"1\"},{\"funId\":\"195\",\"btnStr\":\"1\"},{\"funId\":\"31\",\"btnStr\":\"1\"},{\"funId\":\"241\",\"btnStr\":\"1,2\"},{\"funId\":\"33\",\"btnStr\":\"1,2\"},{\"funId\":\"199\",\"btnStr\":\"1,2\"},{\"funId\":\"242\",\"btnStr\":\"1,2\"},{\"funId\":\"41\",\"btnStr\":\"1,2\"},{\"funId\":\"200\",\"btnStr\":\"1,2\"},{\"funId\":\"210\",\"btnStr\":\"1,2\"},{\"funId\":\"211\",\"btnStr\":\"1,2\"},{\"funId\":\"197\",\"btnStr\":\"1\"},{\"funId\":\"203\",\"btnStr\":\"1\"},{\"funId\":\"204\",\"btnStr\":\"1\"},{\"funId\":\"205\",\"btnStr\":\"1\"},{\"funId\":\"206\",\"btnStr\":\"1\"},{\"funId\":\"212\",\"btnStr\":\"1\"},{\"funId\":\"201\",\"btnStr\":\"1,2\"},{\"funId\":\"202\",\"btnStr\":\"1,2\"},{\"funId\":\"40\",\"btnStr\":\"1,2\"},{\"funId\":\"232\",\"btnStr\":\"1,2\"},{\"funId\":\"233\",\"btnStr\":\"1,2\"}]', '0'); -INSERT INTO `jsh_user_business` VALUES ('6', 'RoleFunctions', '5', '[22][23][25][26][194][195][31][33][200][201][41][199][202]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('7', 'RoleFunctions', '6', '[22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]', '[{\"funId\":\"33\",\"btnStr\":\"4\"}]', '0'); -INSERT INTO `jsh_user_business` VALUES ('9', 'RoleFunctions', '7', '[168][13][12][16][14][15][189][18][19][132]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('10', 'RoleFunctions', '8', '[168][13][12][16][14][15][189][18][19][132][22][23][25][26][27][157][158][155][156][125][31][127][126][128][33][34][35][36][37][39][40][41][42][43][46][47][48][49][50][51][52][53][54][55][56][57][192][59][60][61][62][63][65][66][68][69][70][71][73][74][76][77][79][191][81][82][83][85][89][161][86][176][165][160][28][134][91][92][29][94][95][97][104][99][100][101][102][105][107][108][110][111][113][114][116][117][118][120][121][131][135][123][122][20][130][146][147][138][148][149][153][140][145][184][152][143][170][171][169][166][167][163][164][172][173][179][178][181][182][183][186][187]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('11', 'RoleFunctions', '9', '[168][13][12][16][14][15][189][18][19][132][22][23][25][26][27][157][158][155][156][125][31][127][126][128][33][34][35][36][37][39][40][41][42][43][46][47][48][49][50][51][52][53][54][55][56][57][192][59][60][61][62][63][65][66][68][69][70][71][73][74][76][77][79][191][81][82][83][85][89][161][86][176][165][160][28][134][91][92][29][94][95][97][104][99][100][101][102][105][107][108][110][111][113][114][116][117][118][120][121][131][135][123][122][20][130][146][147][138][148][149][153][140][145][184][152][143][170][171][169][166][167][163][164][172][173][179][178][181][182][183][186][187][188]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('12', 'UserRole', '1', '[5]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('13', 'UserRole', '2', '[6][7]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('14', 'UserDepot', '2', '[1][2][6][7]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('15', 'UserDepot', '1', '[1][2][5][6][7][10][12][14][15][17]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('16', 'UserRole', '63', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('18', 'UserDepot', '63', '[14][15]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('19', 'UserDepot', '5', '[6][45][46][50]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('20', 'UserRole', '5', '[5]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('21', 'UserRole', '64', '[13]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('22', 'UserDepot', '64', '[1]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('23', 'UserRole', '65', '[5]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('24', 'UserDepot', '65', '[1]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('25', 'UserCustomer', '64', '[5][2]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('26', 'UserCustomer', '65', '[6]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('27', 'UserCustomer', '63', '[58]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('28', 'UserDepot', '96', '[7]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('29', 'UserRole', '96', '[6]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('30', 'UserRole', '113', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('32', 'RoleFunctions', '10', '[210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212][59][207][208][209][226][227][228][229][235][237][244][246][22][23][220][240][25][217][218][26][194][195][31][13][243][14][15][234]', '[{\"funId\":\"13\",\"btnStr\":\"1\"},{\"funId\":\"243\",\"btnStr\":\"1\"},{\"funId\":\"14\",\"btnStr\":\"1\"},{\"funId\":\"234\",\"btnStr\":\"1\"},{\"funId\":\"22\",\"btnStr\":\"1\"},{\"funId\":\"23\",\"btnStr\":\"1\"},{\"funId\":\"220\",\"btnStr\":\"1\"},{\"funId\":\"240\",\"btnStr\":\"1\"},{\"funId\":\"25\",\"btnStr\":\"1\"},{\"funId\":\"217\",\"btnStr\":\"1\"},{\"funId\":\"218\",\"btnStr\":\"1\"},{\"funId\":\"26\",\"btnStr\":\"1\"},{\"funId\":\"194\",\"btnStr\":\"1\"},{\"funId\":\"195\",\"btnStr\":\"1\"},{\"funId\":\"31\",\"btnStr\":\"1\"},{\"funId\":\"241\",\"btnStr\":\"1,2\"},{\"funId\":\"33\",\"btnStr\":\"1,2\"},{\"funId\":\"199\",\"btnStr\":\"1,2\"},{\"funId\":\"242\",\"btnStr\":\"1,2\"},{\"funId\":\"41\",\"btnStr\":\"1,2\"},{\"funId\":\"200\",\"btnStr\":\"1,2\"},{\"funId\":\"210\",\"btnStr\":\"1,2\"},{\"funId\":\"211\",\"btnStr\":\"1,2\"},{\"funId\":\"197\",\"btnStr\":\"1\"},{\"funId\":\"203\",\"btnStr\":\"1\"},{\"funId\":\"204\",\"btnStr\":\"1\"},{\"funId\":\"205\",\"btnStr\":\"1\"},{\"funId\":\"206\",\"btnStr\":\"1\"},{\"funId\":\"212\",\"btnStr\":\"1\"},{\"funId\":\"201\",\"btnStr\":\"1,2\"},{\"funId\":\"202\",\"btnStr\":\"1,2\"},{\"funId\":\"40\",\"btnStr\":\"1,2\"},{\"funId\":\"232\",\"btnStr\":\"1,2\"},{\"funId\":\"233\",\"btnStr\":\"1,2\"}]', '0'); -INSERT INTO `jsh_user_business` VALUES ('34', 'UserRole', '115', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('35', 'UserRole', '117', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('36', 'UserDepot', '117', '[8][9]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('37', 'UserCustomer', '117', '[52]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('38', 'UserRole', '120', '[4]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('39', 'UserDepot', '120', '[7][8][9][10][11][12][2][1][3]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('40', 'UserCustomer', '120', '[52][48][6][5][2]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('41', 'RoleFunctions', '12', '', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('48', 'RoleFunctions', '13', '[59][207][208][209][226][227][228][229][235][237][210][211][241][33][199][242][41][200]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('51', 'UserRole', '74', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('52', 'UserDepot', '121', '[13]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('54', 'UserDepot', '115', '[13]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('56', 'UserCustomer', '115', '[56]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('57', 'UserCustomer', '121', '[56]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('58', 'UserRole', '121', '[15]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('59', 'UserRole', '123', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('60', 'UserRole', '124', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('61', 'UserRole', '125', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('62', 'UserRole', '126', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('63', 'UserRole', '127', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('64', 'UserRole', '128', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('65', 'UserRole', '129', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('66', 'UserRole', '130', '[10]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('67', 'UserRole', '131', '[17]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('68', 'RoleFunctions', '16', '[210]', null, '0'); -INSERT INTO `jsh_user_business` VALUES ('69', 'RoleFunctions', '17', '[210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]', '[{\"funId\":\"241\",\"btnStr\":\"1,2\"},{\"funId\":\"33\",\"btnStr\":\"1,2\"},{\"funId\":\"199\",\"btnStr\":\"1,2\"},{\"funId\":\"242\",\"btnStr\":\"1,2\"},{\"funId\":\"41\",\"btnStr\":\"1,2\"},{\"funId\":\"200\",\"btnStr\":\"1,2\"},{\"funId\":\"210\",\"btnStr\":\"1,2\"},{\"funId\":\"211\",\"btnStr\":\"1,2\"},{\"funId\":\"197\",\"btnStr\":\"1\"},{\"funId\":\"203\",\"btnStr\":\"1\"},{\"funId\":\"204\",\"btnStr\":\"1\"},{\"funId\":\"205\",\"btnStr\":\"1\"},{\"funId\":\"206\",\"btnStr\":\"1\"},{\"funId\":\"212\",\"btnStr\":\"1\"},{\"funId\":\"201\",\"btnStr\":\"1,2\"},{\"funId\":\"202\",\"btnStr\":\"1,2\"},{\"funId\":\"40\",\"btnStr\":\"1,2\"},{\"funId\":\"232\",\"btnStr\":\"1,2\"},{\"funId\":\"233\",\"btnStr\":\"1,2\"}]', '0'); diff --git a/docs/华夏ERP数据库设计汇总.xlsx b/docs/华夏ERP数据库设计汇总.xlsx deleted file mode 100644 index 68bafb84..00000000 Binary files a/docs/华夏ERP数据库设计汇总.xlsx and /dev/null differ diff --git a/docs/数据库更新记录-首次安装请勿使用.txt b/docs/数据库更新记录-首次安装请勿使用.txt deleted file mode 100644 index 66127867..00000000 --- a/docs/数据库更新记录-首次安装请勿使用.txt +++ /dev/null @@ -1,1048 +0,0 @@ ---------------------------------------------------------------------------------------------------- -****注意第一次初始化数据库不需要执行下面的内容,该文档会随着代码更新持续更新,方便大家手动升级数据库**** -****注意第一次初始化数据库不需要执行下面的内容,该文档会随着代码更新持续更新,方便大家手动升级数据库**** -****注意第一次初始化数据库不需要执行下面的内容,该文档会随着代码更新持续更新,方便大家手动升级数据库**** ---------------------------------------------------------------------------------------------------- - - --- ---------------------------- --- 时间:2019年1月21日 --- version:1.0.0 --- 此次更新添加序列号功能 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- - --- ---------------------------- --- 添加序列号表 --- ---------------------------- -DROP TABLE IF EXISTS `jsh_serial_number`; -CREATE TABLE `jsh_serial_number` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `material_Id` bigint(20) DEFAULT NULL COMMENT '产品表id', - `serial_Number` varchar(64) DEFAULT NULL COMMENT '序列号', - `is_Sell` bit(1) DEFAULT 0 COMMENT '是否卖出,0未卖出,1卖出', - `remark` varchar(1024) DEFAULT NULL COMMENT '备注', - `delete_Flag` bit(1) DEFAULT 0 COMMENT '删除标记,0未删除,1删除', - `create_Time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_Time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - PRIMARY KEY (`Id`) -) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='序列号表'; - --- ---------------------------- --- 产品表新增字段是否启用序列号 --- ---------------------------- -alter table jsh_material add enableSerialNumber bit(1) DEFAULT 0 COMMENT '是否开启序列号,0否,1是'; --- ---------------------------- --- 时间:2019年1月24日 --- version:1.0.1 --- 此次更新添加序列号菜单 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- --- ---------------------------- --- 添加序列号菜单 --- ---------------------------- -delete from `jsh_functions` where Name='序列号'; -INSERT INTO `jsh_functions`(`Number`, `Name`, `PNumber`, `URL`, `State`, `Sort`, `Enabled`, `Type`, `PushBtn`) VALUES ('010104', '序列号', '0101', '../manage/serialNumber.html', b'0', '0246', b'1', '电脑版', ''); --- ---------------------------- --- 删除单据主表供应商id字段对应外键约束 --- ---------------------------- -ALTER TABLE jsh_depot_head DROP FOREIGN KEY jsh_depot_head_ibfk_3; --- ---------------------------- --- 序列号表添加单据主表id字段,用于跟踪序列号流向 --- ---------------------------- -alter table jsh_serial_number add depothead_Id bigint(20) DEFAULT null COMMENT '单据主表id,用于跟踪序列号流向'; --- ---------------------------- --- 修改商品表enableSerialNumber字段类型为varchar(1) --- ---------------------------- -alter table jsh_material change enableSerialNumber enableSerialNumber varchar(1) DEFAULT '0' COMMENT '是否开启序列号,0否,1是'; --- ---------------------------- --- 修改序列号表is_Sell字段类型为varchar(1) --- 修改序列号表delete_Flag字段类型为varchar(1) --- ---------------------------- -alter table jsh_serial_number change is_Sell is_Sell varchar(1) DEFAULT '0' COMMENT '是否卖出,0未卖出,1卖出'; -alter table jsh_serial_number change delete_Flag delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- ---------------------------- --- 删除单据子表单据主表id字段对应外键约束 --- ---------------------------- -ALTER TABLE jsh_depot_item DROP FOREIGN KEY jsh_depot_item_ibfk_1; --- ---------------------------- --- 时间:2019年2月1日 --- version:1.0.2 --- 此次更新添加sequence表,用于获取一个唯一的数值 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- --- ---------------------------- --- 添加表tbl_sequence --- ---------------------------- -DROP TABLE IF EXISTS `tbl_sequence`; -CREATE TABLE tbl_sequence ( - seq_name VARCHAR(50) NOT NULL COMMENT '序列名称', - min_value bigint(20) NOT NULL COMMENT '最小值', - max_value bigint(20) NOT NULL COMMENT '最大值', - current_val bigint(20) NOT NULL COMMENT '当前值', - increment_val INT DEFAULT '1' NOT NULL COMMENT '增长步数', - remark VARCHAR(500) DEFAULT null COMMENT '备注', - PRIMARY KEY (seq_name) - )ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='sequence表'; - --- ---------------------------- --- 添加表单据编号sequence --- 插入数据前判断,防止数据重复插入 --- ---------------------------- -insert into tbl_sequence (seq_name, min_value, max_value, current_val, increment_val,remark) -select 'depot_number_seq', 1, 999999999999999999, 1, 1,'单据编号sequence' from dual where not exists -(select * from tbl_sequence where seq_name='depot_number_seq'); --- ---------------------------- --- 创建function _nextval() 用于获取当前序列号 --- ---------------------------- -DROP FUNCTION IF EXISTS `_nextval`; -DELIMITER ;; -CREATE FUNCTION `_nextval`(name varchar(50)) RETURNS mediumtext CHARSET utf8 -begin -declare _cur bigint; -declare _maxvalue bigint; -- 接收最大值 -declare _increment int; -- 接收增长步数 -set _increment = (select increment_val from tbl_sequence where seq_name = name); -set _maxvalue = (select max_value from tbl_sequence where seq_name = name); -set _cur = (select current_val from tbl_sequence where seq_name = name for update); -update tbl_sequence -- 更新当前值 - set current_val = _cur + increment_val - where seq_name = name ; -if(_cur + _increment >= _maxvalue) then -- 判断是都达到最大值 - update tbl_sequence - set current_val = minvalue - where seq_name = name ; -end if; -return _cur; -end -;; -DELIMITER ; - --- ---------------------------- --- 时间:2019年2月18日 --- version:1.0.3 --- 此次更新修改产品类型表jsh_materialcategory,添加一些字段 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- --- ---------------------------- --- 产品类型表添加字段sort,显示顺序 --- ---------------------------- -alter table jsh_materialcategory add sort varchar(10) DEFAULT null COMMENT '显示顺序'; --- ---------------------------- --- 产品类型表添加字段status,状态,0系统默认,1启用,2删除 --- ---------------------------- -alter table jsh_materialcategory add status varchar(1) DEFAULT '0' COMMENT '状态,0系统默认,1启用,2删除'; --- ---------------------------- --- 产品类型表添加字段serial_no,编号 --- ---------------------------- -alter table jsh_materialcategory add serial_no varchar(100) DEFAULT null COMMENT '编号'; --- ---------------------------- --- 产品类型表添加字段remark,备注 --- ---------------------------- -alter table jsh_materialcategory add remark varchar(1024) DEFAULT null COMMENT '备注'; --- ---------------------------- --- 产品类型表添加字段create_time,创建时间 --- ---------------------------- -alter table jsh_materialcategory add create_time datetime DEFAULT null COMMENT '创建时间'; --- ---------------------------- --- 产品类型表添加字段creator,创建人 --- ---------------------------- -alter table jsh_materialcategory add creator bigint(20) DEFAULT null COMMENT '创建人'; --- ---------------------------- --- 产品类型表添加字段update_time,更新时间 --- ---------------------------- -alter table jsh_materialcategory add update_time datetime DEFAULT null COMMENT '更新时间'; --- ---------------------------- --- 产品类型表添加字段updater,更新人 --- ---------------------------- -alter table jsh_materialcategory add updater bigint(20) DEFAULT null COMMENT '更新人'; - --- ---------------------------- --- 去掉jsh_materialcategory外键 --- ---------------------------- -ALTER TABLE jsh_materialcategory DROP FOREIGN KEY FK3EE7F725237A77D8; - --- ---------------------------- --- 修改根目录父节点id为-1 --- 设置根目录编号为1 --- ---------------------------- -update jsh_materialcategory set ParentId='-1' where id='1'; - --- ---------------------------- --- 删除礼品卡管理、礼品充值、礼品销售、礼品卡统计的功能数据 --- ---------------------------- -delete from jsh_functions where id in (213,214,215,216); - --- ---------------------------- --- 新增采购订单、销售订单的功能数据 --- 主键自增长,直接指定主键插入数据的方式可能会和本地数据冲突 --- 插入数据前判断,防止数据重复插入 --- ---------------------------- -insert into `jsh_functions`(`Number`, `Name`, `PNumber`, `URL`, `State`, `Sort`, `Enabled`, `Type`, `PushBtn`) -select '050202', '采购订单', '0502', '../materials/purchase_orders_list.html', b'0', '0335',b'1', '电脑版', '' from dual where not exists -(select * from jsh_functions where Number='050202' and PNumber='0502'); -insert into `jsh_functions`(`Number`, `Name`, `PNumber`, `URL`, `State`, `Sort`, `Enabled`, `Type`, `PushBtn`) -select '060301', '销售订单', '0603', '../materials/sale_orders_list.html', b'0', '0392', b'1', '电脑版', '' from dual where not exists -(select * from jsh_functions where Number='060301' and PNumber='0603'); - --- ---------------------------- --- 改管理员的功能权限 --- ---------------------------- -update jsh_userbusiness SET Type = 'RoleFunctions', KeyId = '4', -Value = '[13][12][16][14][15][234][236][22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][210][211][242][33][199][243][41][200][201][202][40][232][233][197][203][204][205][206][212]' -where Id = 5; - --- ---------------------------- --- 时间:2019年2月25日 --- version:1.0.4 --- 此次更新仓库添加负责人信息,负责人信息从用户表获取 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- --- ---------------------------- --- 仓库表添加字段principal,负责人 --- ---------------------------- -alter table jsh_depot add principal bigint(20) DEFAULT null COMMENT '负责人'; - --- ---------------------------- --- 时间:2019年3月6日 --- version:1.0.5 --- 此次更新 --- 1、添加机构表 --- 2、添加机构用户关系表 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- --- ---------------------------- --- 添加机构表 --- ---------------------------- -DROP TABLE IF EXISTS `jsh_organization`; -CREATE TABLE `jsh_organization` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `org_no` varchar(20) DEFAULT NULL COMMENT '机构编号', - `org_full_name` varchar(500) DEFAULT NULL COMMENT '机构全称', - `org_abr` varchar(20) DEFAULT NULL COMMENT '机构简称', - `org_tpcd` varchar(9) DEFAULT NULL COMMENT '机构类型', - `org_stcd` char(1) DEFAULT NULL COMMENT '机构状态,1未营业、2正常营业、3暂停营业、4终止营业、5已除名', - `org_parent_no` varchar(20) DEFAULT NULL COMMENT '机构父节点编号', - `sort` varchar(20) DEFAULT NULL COMMENT '机构显示顺序', - remark VARCHAR(500) DEFAULT null COMMENT '备注', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - `org_create_time` datetime DEFAULT NULL COMMENT '机构创建时间', - `org_stop_time` datetime DEFAULT NULL COMMENT '机构停运时间', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='机构表'; --- ---------------------------- --- 添加机构用户关系表 --- ---------------------------- -DROP TABLE IF EXISTS `jsh_orga_user_rel`; -CREATE TABLE `jsh_orga_user_rel` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `orga_id` bigint(20) NOT NULL COMMENT '机构id', - `user_id` bigint(20) NOT NULL COMMENT '用户id', - `user_blng_orga_dspl_seq` varchar(20) DEFAULT NULL COMMENT '用户在所属机构中显示顺序', - `delete_flag` char(1) DEFAULT 0 COMMENT '删除标记,0未删除,1删除', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `creator` bigint(20) DEFAULT NULL COMMENT '创建人', - `update_time` datetime DEFAULT NULL COMMENT '更新时间', - `updater` bigint(20) DEFAULT NULL COMMENT '更新人', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='机构用户关系表'; --- ---------------------------- --- 添加机构管理菜单 --- 插入数据前判断,防止数据重复插入 --- ---------------------------- -INSERT INTO `jsh_functions`(`Number`, `Name`, `PNumber`, `URL`, `State`, `Sort`, `Enabled`, `Type`, `PushBtn`) -select '000108', '机构管理', '0001', '../manage/organization.html', b'1', '0139', b'1', '电脑版', '' from dual where not exists -(select * from jsh_functions where Number='000108' and PNumber='0001'); --- ---------------------------- --- 添加根机构 --- 插入时判断对应数据是否存在,防止多次执行产生重复数据 --- ---------------------------- -INSERT INTO jsh_organization (org_no, org_full_name, org_abr, org_tpcd, org_stcd, org_parent_no, sort, remark, create_time, creator, update_time, updater, org_create_time, org_stop_time) -select '01', '根机构', '根机构', NULL, '2', '-1', '1', '根机构,初始化存在', NULL, NULL, NULL, NULL, NULL, NULL from dual where not exists -(select * from jsh_organization where org_no='01' and org_abr='根机构' and org_parent_no='-1' ); --- ---------------------------- --- 时间:2019年3月9日 --- version:1.0.6 --- 此次更新 --- 整改jsh_systemconfig表的字段 --- ---------------------------- -alter table jsh_systemconfig drop type; -alter table jsh_systemconfig drop name; -alter table jsh_systemconfig drop value; -alter table jsh_systemconfig drop description; -alter table jsh_systemconfig add company_name varchar(50) DEFAULT null COMMENT '公司名称'; -alter table jsh_systemconfig add company_contacts varchar(20) DEFAULT null COMMENT '公司联系人'; -alter table jsh_systemconfig add company_address varchar(50) DEFAULT null COMMENT '公司地址'; -alter table jsh_systemconfig add company_tel varchar(20) DEFAULT null COMMENT '公司电话'; -alter table jsh_systemconfig add company_fax varchar(20) DEFAULT null COMMENT '公司传真'; -alter table jsh_systemconfig add company_post_code varchar(20) DEFAULT null COMMENT '公司邮编'; -delete from jsh_systemconfig; -insert into jsh_systemconfig (`company_name`, `company_contacts`, `company_address`, `company_tel`, `company_fax`, `company_post_code`) values("南通jshERP公司","张三","南通市通州区某某路","0513-10101010","0513-18181818","226300"); - --- ---------------------------- --- 时间:2019年3月9日 --- version:1.0.7 --- 改管理员的功能权限 --- ---------------------------- -update jsh_userbusiness SET -Value = '[13][12][16][243][14][15][234][236][22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]' -where Id = 5; --- ---------------------------- --- 给订单功能加审核和反审核的功能按钮权限 --- ---------------------------- -update jsh_functions SET PushBtn = '3' where Number = '050202' and PNumber = '0502'; -update jsh_functions SET PushBtn = '3' where Number = '060301' and PNumber = '0603'; --- ---------------------------- --- 改管理员的按钮权限 --- ---------------------------- -update jsh_userbusiness SET -BtnStr = '[{"funId":"25","btnStr":"1"},{"funId":"217","btnStr":"1"},{"funId":"218","btnStr":"1"},{"funId":"241","btnStr":"3"},{"funId":"242","btnStr":"3"}]' -where Id = 5; - --- ---------------------------- --- 时间:2019年3月10日 --- version:1.0.8 --- 改状态字段的类型,增加关联单据字段 --- ---------------------------- -alter table jsh_depot_head change Status Status varchar(1) DEFAULT '0' COMMENT '状态,0未审核、1已审核、2已转采购|销售'; -alter table jsh_depot_head add `LinkNumber` varchar(50) DEFAULT null COMMENT '关联订单号'; --- ---------------------------- --- 时间:2019年3月12日 --- version:1.0.9 --- 此次更新 --- 1、根据本地用户表中现有部门生成机构表数据,同时重建机构和用户的关联关系 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- -DROP FUNCTION IF EXISTS `_buildOrgAndOrgUserRel`; -DELIMITER ;; -CREATE FUNCTION `_buildOrgAndOrgUserRel` (name varchar(50)) RETURNS mediumtext CHARSET utf8 -begin - -declare _org_full_name varchar(500); -- 机构全称 -declare _org_abr varchar(20); -- 机构简称 -declare _sort int default 0; -declare _success_msg varchar(50) default '重建机构及机构用户关系成功'; -- 机构全称 - -- 遍历数据结束标志 -declare done int DEFAULT 0; --- 获取用户表中唯一的部门信息列表 -declare orgCur cursor for select distinct department from jsh_user where department!='' and department is not null; - - -- 将结束标志绑定到游标 -declare continue handler for not found set done = 1; - -- 循环部门信息列表在机构表插入数据 - -- 打开游标 - open orgCur; - -- 开始循环 - read_loop: loop - -- 提取游标里的数据,这里只有一个,多个的话也一样; - fetch orgCur into _org_full_name; - -- 声明结束的时候 - if done=1 then - leave read_loop; - end if; - -- 这里做你想做的循环的事件 - if length(_org_full_name)<=20 then - set _org_abr=_org_full_name; - else - set _org_abr=left(_org_full_name,20); - end if; - set _sort=_sort+1; - insert into jsh_organization (org_full_name, org_abr, org_stcd, org_parent_no, sort, remark) - values (_org_full_name,_org_abr, '1', '01', _sort, '机构表初始化'); - begin - declare _userId bigint; - declare _orgId bigint; - -- 遍历数据结束标志 - declare ogrUserRelDone int DEFAULT 0; - -- 根据用户表和机构表部门关联关系,重建用户和机构关联关系 - declare ogrUserRelCur cursor for select user.id as userId,org.id as orgId from jsh_user user,jsh_organization org - where 1=1 and user.department=org.org_full_name and user.department =_org_full_name; - -- 将结束标志绑定到游标 - declare continue handler for not found set ogrUserRelDone = 1; - -- 打开游标 - open ogrUserRelCur; - -- 开始循环 - rel_read_loop: loop - -- 提取游标里的数据,这里只有一个,多个的话也一样; - fetch ogrUserRelCur into _userId,_orgId; - -- 声明结束的时候 - if ogrUserRelDone=1 then - leave rel_read_loop; - end if; - insert into `jsh_orga_user_rel`(`orga_id`, `user_id`, `delete_flag`) VALUES (_orgId,_userId,'0'); - - end loop rel_read_loop; - -- 关闭游标 - close ogrUserRelCur; - end; - - end loop read_loop; - -- 关闭游标 - close orgCur; - --- 清空用户表中的部门信息 -update jsh_user set department=null; - -return _success_msg; -end -;; -DELIMITER ; --- ---------------------------- --- 初始化机构数据,重建机构用户关系 --- ---------------------------- -select _buildOrgAndOrgUserRel('初始化机构数据,重建机构用户关系') from dual; --- ---------------------------- --- 删除一次性函数 --- ---------------------------- -DROP FUNCTION _buildOrgAndOrgUserRel; - --- ---------------------------- --- 时间:2019年3月13日 --- version:1.0.10 --- 此次更新 --- 1、设置用户表的用户状态status默认值为0 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- - -alter table jsh_user change Status Status tinyint(4) DEFAULT '0' COMMENT '状态,0:正常,1:删除,2封禁'; -update jsh_user set status='0' where status is null; --- ---------------------------- --- 设置根目录编号为1 --- ---------------------------- -update jsh_materialcategory set serial_no='1' where id='1'; - --- ---------------------------- --- 时间:2019年3月18日 --- version:1.0.11 --- 此次更新 --- 1、批量增加大部分表的tenant_id租户字段 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- -alter table jsh_account add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_accounthead add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_accountitem add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_asset add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_assetcategory add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_assetname add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_depot add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_depot_head add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_depot_item add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_inoutitem add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_log add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_material add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_materialcategory add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_orga_user_rel add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_organization add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_person add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_role add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_serial_number add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_supplier add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_systemconfig add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_unit add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; -alter table jsh_user add tenant_id bigint(20) DEFAULT null COMMENT '租户id'; - --- ---------------------------- --- 时间:2019年3月27日 --- version:1.0.12 --- 此次更新 --- 添加删除标记,将物理删除修改为逻辑删除 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- --- 角色表 jsh_role -alter table jsh_role add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 用户 角色 模块关系表 jsh_userbusiness -alter table jsh_userbusiness add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 功能模块表 jsh_functions -alter table jsh_functions add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 应用表 jsh_app -alter table jsh_app add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 产品表 jsh_material -alter table jsh_material add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 产品扩展字段表 jsh_materialproperty -alter table jsh_materialproperty add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 经手人表 jsh_person -alter table jsh_person add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 供应商 客户信息表 jsh_supplier -alter table jsh_supplier add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 系统参数表 jsh_systemconfig -alter table jsh_systemconfig add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 多单位表 jsh_unit -alter table jsh_unit add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 仓库表 jsh_depot -alter table jsh_depot add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 账户信息表 jsh_account -alter table jsh_account add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 财务主表 jsh_accounthead -alter table jsh_accounthead add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 财务子表 jsh_accountitem -alter table jsh_accountitem add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 资产记录表 jsh_asset -alter table jsh_asset add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 资产类型表 jsh_assetcategory -alter table jsh_assetcategory add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 资产信息表 jsh_assetname -alter table jsh_assetname add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 单据主表 jsh_depot_head -alter table jsh_depot_head add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 单据子表 jsh_depot_item -alter table jsh_depot_item add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; --- 收支项目表 jsh_inoutitem -alter table jsh_inoutitem add delete_Flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - --- ---------------------------- --- 时间:2019年4月11日 --- version:1.0.13 --- 此次更新 --- 删除所有外键 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- - --- ---------------------------- --- 删除财务主表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_accounthead DROP FOREIGN KEY FK9F4C0D8DAAE50527; -ALTER TABLE jsh_accounthead DROP FOREIGN KEY FK9F4C0D8DB610FC06; -ALTER TABLE jsh_accounthead DROP FOREIGN KEY FK9F4C0D8DC4170B37; --- ---------------------------- --- 删除财务子表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_accountitem DROP FOREIGN KEY FK9F4CBAC0AAE50527; -ALTER TABLE jsh_accountitem DROP FOREIGN KEY FK9F4CBAC0C5FE6007; -ALTER TABLE jsh_accountitem DROP FOREIGN KEY FK9F4CBAC0D203EDC5; --- ---------------------------- --- 删除资产记录表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_asset DROP FOREIGN KEY FK353690ED27D23FE4; -ALTER TABLE jsh_asset DROP FOREIGN KEY FK353690ED3E226853; -ALTER TABLE jsh_asset DROP FOREIGN KEY FK353690ED61FE182C; -ALTER TABLE jsh_asset DROP FOREIGN KEY FK353690ED9B6CB285; -ALTER TABLE jsh_asset DROP FOREIGN KEY FK353690EDAD45B659; --- ---------------------------- --- 删除资产信息表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_assetname DROP FOREIGN KEY FKA4ADCCF866BC8AD3; --- ---------------------------- --- 删除单据主表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_depot_head DROP FOREIGN KEY FK2A80F214AAE50527; -ALTER TABLE jsh_depot_head DROP FOREIGN KEY jsh_depot_head_ibfk_1; -ALTER TABLE jsh_depot_head DROP FOREIGN KEY jsh_depot_head_ibfk_4; -ALTER TABLE jsh_depot_head DROP FOREIGN KEY jsh_depot_head_ibfk_5; --- ---------------------------- --- 删除单据子表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_depot_item DROP FOREIGN KEY FK2A819F47729F5392; -ALTER TABLE jsh_depot_item DROP FOREIGN KEY FK2A819F479485B3F5; -ALTER TABLE jsh_depot_item DROP FOREIGN KEY jsh_depot_item_ibfk_2; --- ---------------------------- --- 删除操作日志表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_log DROP FOREIGN KEY FKF2696AA13E226853; --- ---------------------------- --- 删除产品表对应外键约束 --- ---------------------------- -ALTER TABLE jsh_material DROP FOREIGN KEY FK675951272AB6672C; -ALTER TABLE jsh_material DROP FOREIGN KEY jsh_material_ibfk_1; - --- ---------------------------- --- 时间:2019年4月30日 --- version:1.0.14 --- 此次更新 --- 增加仓库默认功能 增加库存预警功能 --- 特别提醒:之后的sql都是在之前基础上迭代,可以对已存在的系统进行数据保留更新 --- ---------------------------- -alter table jsh_depot add is_default bit(1) DEFAULT NULL COMMENT '是否默认'; -insert into `jsh_functions`(`Number`, `Name`, `PNumber`, `URL`, `State`, `Sort`, `Enabled`, `Type`, `PushBtn`) -select '030112', '库存预警', '0301', '../reports/stock_warning_report.html', b'0', '0670', b'1', '电脑版', '' from dual where not exists -(select * from jsh_functions where Number='030112' and PNumber='0301'); - --- ---------------------------- --- 改管理员的功能权限 --- ---------------------------- -update jsh_userbusiness SET Type = 'RoleFunctions', KeyId = '4', -Value = '[13][12][16][243][14][15][234][236][22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][244][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212]' -where Id = 5; - --- ---------------------------- --- 给app的功能增加代号 在功能表增加个人信息 --- ---------------------------- -update jsh_app SET Number = '02' where name='个人信息'; -insert into `jsh_functions`(`Number`, `Name`, `PNumber`, `URL`, `State`, `Sort`, `Enabled`, `Type`, `PushBtn`) -select '02', '个人信息', '0', '', b'1', '0005', b'1', '电脑版', '' from dual where not exists -(select * from jsh_functions where Number='02' and PNumber='0'); - --- ---------------------------- --- 时间:2019年6月23日 --- 增加新手引导模块 --- ---------------------------- -INSERT INTO `jsh_app` VALUES ('28', '09', '新手引导', 'app', 'userHelp.png', '../user/userHelp.html', '1000', '500', '\0', '\0', '\0', 'dock', '210', '', '', '0'); -INSERT INTO `jsh_functions` VALUES ('246', '09', '新手引导', '0', '', '', '0115', '', '电脑版', '', '0'); -update jsh_userbusiness SET Value = '[3][6][7][22][23][24][25][26][27][28]' -where Type = 'RoleAPP' and (KeyId = '4' or KeyId = '10'); -update jsh_userbusiness SET -Value = '[245][13][12][16][243][14][15][234][236][22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][244][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212][246]' -where Type = 'RoleFunctions' and KeyId = '4'; -update jsh_userbusiness SET -Value = '[245][13][243][14][15][234][22][23][220][240][25][217][218][26][194][195][31][59][207][208][209][226][227][228][229][235][237][244][210][211][241][33][199][242][41][200][201][202][40][232][233][197][203][204][205][206][212][246]' -where Type = 'RoleFunctions' and KeyId = '10'; - - --- ---------------------------- --- 时间:2019年6月26日 --- 删除多余的资产相关表 --- ---------------------------- -drop table jsh_asset; -drop table jsh_assetcategory; -drop table jsh_assetname; - - --- ---------------------------- --- 时间:2019年6月27日 --- 增加租户表 --- ---------------------------- -DROP TABLE IF EXISTS `jsh_tenant`; -CREATE TABLE `jsh_tenant` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', - `tenant_id` bigint(20) DEFAULT NULL COMMENT '用户id', - `login_name` varchar(255) DEFAULT NULL COMMENT '登录名', - `user_num_limit` int(11) DEFAULT NULL COMMENT '用户数量限制', - `bills_num_limit` int(11) DEFAULT NULL COMMENT '单据数量限制', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8 COMMENT='租户'; - --- ---------------------------- --- 时间:2019年6月27日 --- 给租户表增加数据 --- ---------------------------- -INSERT INTO `jsh_tenant` VALUES ('13', '63', 'jsh', '20', '2000', null); - --- ---------------------------- --- 时间:2019年7月10日 --- 删除函数 --- ---------------------------- -DROP FUNCTION IF EXISTS `_nextval`; - --- ---------------------------- --- 时间:2019年8月1日 --- 增加仓库和客户的启用标记 --- ---------------------------- -alter table jsh_systemconfig add customer_flag varchar(1) DEFAULT '0' COMMENT '客户启用标记,0未启用,1启用' after company_post_code; -alter table jsh_systemconfig add depot_flag varchar(1) DEFAULT '0' COMMENT '仓库启用标记,0未启用,1启用' after company_post_code; - --- ---------------------------- --- 时间:2019年9月13日 --- 给功能表增加icon字段 --- ---------------------------- -alter table jsh_functions add icon varchar(50) DEFAULT NULL COMMENT '图标' after PushBtn; - --- ---------------------------- --- 时间:2019年9月13日 --- 创建消息表 --- ---------------------------- -CREATE TABLE `jsh_msg` ( -`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键' , -`msg_title` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息标题' , -`msg_content` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息内容' , -`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间' , -`type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型' , -`status` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态,1未读 2已读' , -`tenant_id` bigint(20) NULL DEFAULT NULL COMMENT '租户id' , -`delete_Flag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除' , -PRIMARY KEY (`id`) -) -ENGINE=InnoDB -DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci -COMMENT='消息表' -AUTO_INCREMENT=2 -ROW_FORMAT=COMPACT -; - --- ---------------------------- --- 时间:2019年9月13日 --- 删除表 jsh_app databasechangelog databasechangeloglock --- ---------------------------- -drop table databasechangelog; -drop table databasechangeloglock; -drop table jsh_app; - --- ---------------------------- --- 时间:2019年11月28日 --- 单据编号表-改表名 --- ---------------------------- -ALTER TABLE tbl_sequence RENAME TO jsh_sequence; - --- ---------------------------- --- 增加产品初始库存表 --- 时间 2019-11-28 --- by jishenghua --- ---------------------------- -CREATE TABLE `jsh_material_stock` ( -`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键' , -`material_id` bigint(20) NULL DEFAULT NULL COMMENT '产品id' , -`depot_id` bigint(20) NULL DEFAULT NULL COMMENT '仓库id' , -`number` decimal(24,6) NULL DEFAULT NULL COMMENT '初始库存数量' , -`tenant_id` bigint(20) NULL DEFAULT NULL COMMENT '租户id' , -`delete_fag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除' , -PRIMARY KEY (`id`) -) -ENGINE=InnoDB -DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci -COMMENT='产品初始库存' -AUTO_INCREMENT=48 -ROW_FORMAT=COMPACT -; - --- ---------------------------- --- 增加商品扩展信息表 --- 时间 2020-02-15 --- by jishenghua --- ---------------------------- -CREATE TABLE `jsh_material_extend` ( -`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键' , -`material_id` bigint(20) NULL DEFAULT NULL COMMENT '商品id' , -`bar_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商品条码' , -`commodity_unit` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商品单位' , -`purchase_decimal` decimal(24,6) NULL DEFAULT NULL COMMENT '采购价格' , -`commodity_decimal` decimal(24,6) NULL DEFAULT NULL COMMENT '零售价格' , -`wholesale_decimal` decimal(24,6) NULL DEFAULT NULL COMMENT '销售价格' , -`low_decimal` decimal(24,6) NULL DEFAULT NULL COMMENT '最低售价' , -`create_time` datetime NULL DEFAULT NULL COMMENT '创建日期' , -`create_serial` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人编码' , -`update_serial` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人编码' , -`update_time` bigint(20) NULL DEFAULT NULL COMMENT '更新时间戳' , -`tenant_id` bigint(20) NULL DEFAULT NULL COMMENT '租户id' , -`delete_Flag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除' , -PRIMARY KEY (`id`) -) -ENGINE=InnoDB -DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci -COMMENT='产品价格扩展' -AUTO_INCREMENT=1 -ROW_FORMAT=COMPACT -; - --- ---------------------------- --- 给单据明细表增加商品扩展id --- 时间 2020-02-16 --- by jishenghua --- ---------------------------- -alter table jsh_depot_item add material_extend_id bigint(20) DEFAULT NULL COMMENT '商品扩展id' after MaterialId; - --- ---------------------------- --- 给单据主表删除字段ProjectId 和 AllocationProjectId --- 时间 2020-02-18 --- by jishenghua --- ---------------------------- -alter table jsh_depot_head drop column ProjectId; -alter table jsh_depot_head drop column AllocationProjectId; - --- ---------------------------- --- 给计量单位表增加基础单位、副单位、比例三个字段 --- 时间 2020-03-24 --- by jishenghua --- ---------------------------- -alter table jsh_unit add basic_unit varchar(50) DEFAULT NULL COMMENT '基础单位' after UName; -alter table jsh_unit add other_unit varchar(50) DEFAULT NULL COMMENT '副单位' after basic_unit; -alter table jsh_unit add ratio INT DEFAULT NULL COMMENT '比例' after other_unit; - --- ---------------------------- --- 时间:2020年03月31日 --- by jishenghua --- 给用户表增加 登录用户名 字段 --- ---------------------------- -alter table jsh_user change loginame login_name varchar(255) NOT NULL COMMENT '登录用户名'; - --- ---------------------------- --- 时间:2020年04月12日 --- by jishenghua --- 给功能表增加插件管理 --- ---------------------------- -INSERT INTO `jsh_functions` VALUES (245,'000107', '插件管理', '0001', '/pages/manage/plugin.html', '\0', '0170', '', '电脑版', '', 'icon-notebook', '0'); - --- ---------------------------- --- 时间:2020年04月25日 --- by jishenghua --- 给商品扩展表增加 是否默认基础单位 字段 --- ---------------------------- -alter table jsh_material_extend add default_flag VARCHAR(1) DEFAULT 1 COMMENT '是否为默认单位,1是,0否' after low_decimal; - --- ---------------------------- --- 时间:2020年05月04日 --- by jishenghua --- 删除商品表的多价格相关的字段 --- ---------------------------- -alter table jsh_material drop Packing; -alter table jsh_material drop RetailPrice; -alter table jsh_material drop LowPrice; -alter table jsh_material drop PresetPriceOne; -alter table jsh_material drop PresetPriceTwo; -alter table jsh_material drop FirstOutUnit; -alter table jsh_material drop FirstInUnit; -alter table jsh_material drop PriceStrategy; - --- ---------------------------- --- 时间:2020年6月18日 --- 增加负库存的启用标记 --- ---------------------------- -alter table jsh_systemconfig add minus_stock_flag varchar(1) DEFAULT '0' COMMENT '负库存启用标记,0未启用,1启用' after customer_flag; - --- ---------------------------- --- 时间 2020年07月13日 --- by jishenghua --- 增加产品当前库存表 --- ---------------------------- -CREATE TABLE `jsh_material_current_stock` ( -`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键' , -`material_id` bigint(20) NULL DEFAULT NULL COMMENT '产品id' , -`depot_id` bigint(20) NULL DEFAULT NULL COMMENT '仓库id' , -`current_number` decimal(24,6) NULL DEFAULT NULL COMMENT '当前库存数量' , -`tenant_id` bigint(20) NULL DEFAULT NULL COMMENT '租户id' , -`delete_flag` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除' , -PRIMARY KEY (`id`) -) -ENGINE=InnoDB -DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci -COMMENT='产品当前库存' -AUTO_INCREMENT=1 -ROW_FORMAT=COMPACT -; - --- -------------------------------------------------------- --- 时间 2020年07月13日 --- by jishenghua --- 修改jsh_material_stock的表名为jsh_material_initial_stock --- 修改jsh_material_initial_stock表的删除字段 --- -------------------------------------------------------- -alter table jsh_material_stock rename to jsh_material_initial_stock; -alter table jsh_material_initial_stock change delete_fag delete_flag varchar(1) NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - --- -------------------------------------------------------- --- 时间 2020年07月20日 --- by jishenghua --- 优化表和字段的格式 --- -------------------------------------------------------- -alter table jsh_log change userID user_id bigint(20) DEFAULT NULL COMMENT '用户id'; -alter table jsh_log change clientIP client_ip varchar(50) DEFAULT NULL COMMENT '客户端IP'; -alter table jsh_log change createtime create_time datetime DEFAULT NULL COMMENT '创建时间'; -alter table jsh_log change contentdetails content varchar(1000) DEFAULT NULL COMMENT '详情'; -alter table jsh_log drop column remark; - -alter table jsh_materialcategory rename to jsh_material_category; -alter table jsh_material_category change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_material_category change Name name varchar(50) DEFAULT NULL COMMENT '名称'; -alter table jsh_material_category change CategoryLevel category_level smallint(6) DEFAULT NULL COMMENT '等级'; -alter table jsh_material_category change ParentId parent_id bigint(20) DEFAULT NULL COMMENT '上级id'; - -alter table jsh_materialproperty rename to jsh_material_property; -alter table jsh_material_property change nativeName native_name varchar(50) DEFAULT NULL COMMENT '原始名称'; -alter table jsh_material_property change anotherName another_name varchar(50) DEFAULT NULL COMMENT '别名'; -alter table jsh_material_property change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_role change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_role change Name name varchar(50) DEFAULT NULL COMMENT '名称'; -alter table jsh_role change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_person change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_person change Type type varchar(20) DEFAULT NULL COMMENT '类型'; -alter table jsh_person change Name name varchar(50) DEFAULT NULL COMMENT '姓名'; -alter table jsh_person change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_systemconfig rename to jsh_system_config; -alter table jsh_system_config change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_account change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_account change Name name varchar(50) DEFAULT NULL COMMENT '名称'; -alter table jsh_account change SerialNo serial_no varchar(50) DEFAULT NULL COMMENT '编号'; -alter table jsh_account change InitialAmount initial_amount decimal(24,6) DEFAULT NULL COMMENT '期初金额'; -alter table jsh_account change CurrentAmount current_amount decimal(24,6) DEFAULT NULL COMMENT '当前余额'; -alter table jsh_account change Remark remark varchar(100) DEFAULT NULL COMMENT '备注'; -alter table jsh_account change IsDefault is_default bit(1) DEFAULT NULL COMMENT '是否默认'; -alter table jsh_account change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_functions rename to jsh_function; -alter table jsh_function change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_function change Number number varchar(50) DEFAULT NULL COMMENT '编号'; -alter table jsh_function change Name name varchar(50) DEFAULT NULL COMMENT '名称'; -alter table jsh_function change PNumber parent_number varchar(50) DEFAULT NULL COMMENT '上级编号'; -alter table jsh_function change URL url varchar(100) DEFAULT NULL COMMENT '链接'; -alter table jsh_function change State state bit(1) DEFAULT NULL COMMENT '收缩'; -alter table jsh_function change Sort sort varchar(50) DEFAULT NULL COMMENT '排序'; -alter table jsh_function change Enabled enabled bit(1) DEFAULT NULL COMMENT '启用'; -alter table jsh_function change Type type varchar(50) DEFAULT NULL COMMENT '类型'; -alter table jsh_function change PushBtn push_btn varchar(50) DEFAULT NULL COMMENT '功能按钮'; -alter table jsh_function change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_userbusiness rename to jsh_user_business; -alter table jsh_user_business change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_user_business change Type type varchar(50) DEFAULT NULL COMMENT '类别'; -alter table jsh_user_business change KeyId key_id varchar(50) DEFAULT NULL COMMENT '主id'; -alter table jsh_user_business change Value value varchar(10000) DEFAULT NULL COMMENT '值'; -alter table jsh_user_business change BtnStr btn_str varchar(2000) DEFAULT NULL COMMENT '按钮权限'; -alter table jsh_user_business change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_unit change UName name varchar(50) DEFAULT NULL COMMENT '名称,支持多单位'; -alter table jsh_unit change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_inoutitem rename to jsh_in_out_item; -alter table jsh_in_out_item change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_in_out_item change Name name varchar(50) DEFAULT NULL COMMENT '名称'; -alter table jsh_in_out_item change Type type varchar(20) DEFAULT NULL COMMENT '类型'; -alter table jsh_in_out_item change Remark remark varchar(100) DEFAULT NULL COMMENT '备注'; -alter table jsh_in_out_item change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_serial_number change material_Id material_id bigint(20) DEFAULT NULL COMMENT '产品表id'; -alter table jsh_serial_number change serial_Number serial_number varchar(64) DEFAULT NULL COMMENT '序列号'; -alter table jsh_serial_number change is_Sell is_sell varchar(1) DEFAULT '0' COMMENT '是否卖出,0未卖出,1卖出'; -alter table jsh_serial_number change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; -alter table jsh_serial_number change create_Time create_time datetime DEFAULT NULL COMMENT '创建时间'; -alter table jsh_serial_number change update_Time update_time datetime DEFAULT NULL COMMENT '更新时间'; -alter table jsh_serial_number change depothead_Id depot_head_id bigint(20) DEFAULT NULL COMMENT '单据主表id,用于跟踪序列号流向'; - -alter table jsh_supplier change phonenum phone_num varchar(30) DEFAULT NULL COMMENT '联系电话'; -alter table jsh_supplier change AdvanceIn advance_in decimal(24,6) DEFAULT '0.000000' COMMENT '预收款'; -alter table jsh_supplier change BeginNeedGet begin_need_get decimal(24,6) DEFAULT NULL COMMENT '期初应收'; -alter table jsh_supplier change BeginNeedPay begin_need_pay decimal(24,6) DEFAULT NULL COMMENT '期初应付'; -alter table jsh_supplier change AllNeedGet all_need_get decimal(24,6) DEFAULT NULL COMMENT '累计应收'; -alter table jsh_supplier change AllNeedPay all_need_pay decimal(24,6) DEFAULT NULL COMMENT '累计应付'; -alter table jsh_supplier change taxNum tax_num varchar(50) DEFAULT NULL COMMENT '纳税人识别号'; -alter table jsh_supplier change bankName bank_name varchar(50) DEFAULT NULL COMMENT '开户行'; -alter table jsh_supplier change accountNumber account_number varchar(50) DEFAULT NULL COMMENT '账号'; -alter table jsh_supplier change taxRate tax_rate decimal(24,6) DEFAULT NULL COMMENT '税率'; -alter table jsh_supplier change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_accounthead rename to jsh_account_head; -alter table jsh_account_head change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_account_head change Type type varchar(50) DEFAULT NULL COMMENT '类型(支出/收入/收款/付款/转账)'; -alter table jsh_account_head change OrganId organ_id bigint(20) DEFAULT NULL COMMENT '单位Id(收款/付款单位)'; -alter table jsh_account_head change HandsPersonId hands_person_id bigint(20) DEFAULT NULL COMMENT '经手人id'; -alter table jsh_account_head change ChangeAmount change_amount decimal(24,6) DEFAULT NULL COMMENT '变动金额(优惠/收款/付款/实付)'; -alter table jsh_account_head change TotalPrice total_price decimal(24,6) DEFAULT NULL COMMENT '合计金额'; -alter table jsh_account_head change AccountId account_id bigint(20) DEFAULT NULL COMMENT '账户(收款/付款)'; -alter table jsh_account_head change BillNo bill_no varchar(50) DEFAULT NULL COMMENT '单据编号'; -alter table jsh_account_head change BillTime bill_time datetime DEFAULT NULL COMMENT '单据日期'; -alter table jsh_account_head change Remark remark varchar(100) DEFAULT NULL COMMENT '备注'; -alter table jsh_account_head change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_accountitem rename to jsh_account_item; -alter table jsh_account_item change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_account_item change HeaderId header_id bigint(20) NOT NULL COMMENT '表头Id'; -alter table jsh_account_item change AccountId account_id bigint(20) DEFAULT NULL COMMENT '账户Id'; -alter table jsh_account_item change InOutItemId in_out_item_id bigint(20) DEFAULT NULL COMMENT '收支项目Id'; -alter table jsh_account_item change EachAmount each_amount decimal(24,6) DEFAULT NULL COMMENT '单项金额'; -alter table jsh_account_item change Remark remark varchar(100) DEFAULT NULL COMMENT '单据备注'; -alter table jsh_account_item change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_material change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_material change CategoryId category_id bigint(20) DEFAULT NULL COMMENT '产品类型id'; -alter table jsh_material change Name name varchar(50) DEFAULT NULL COMMENT '名称'; -alter table jsh_material change Mfrs mfrs varchar(50) DEFAULT NULL COMMENT '制造商'; -alter table jsh_material change SafetyStock safety_stock decimal(24,6) DEFAULT NULL COMMENT '安全存量(KG)'; -alter table jsh_material change Model model varchar(50) DEFAULT NULL COMMENT '型号'; -alter table jsh_material change Standard standard varchar(50) DEFAULT NULL COMMENT '规格'; -alter table jsh_material change Color color varchar(50) DEFAULT NULL COMMENT '颜色'; -alter table jsh_material change Unit unit varchar(50) DEFAULT NULL COMMENT '单位-单个'; -alter table jsh_material change Remark remark varchar(100) DEFAULT NULL COMMENT '备注'; -alter table jsh_material change UnitId unit_id bigint(20) DEFAULT NULL COMMENT '计量单位Id'; -alter table jsh_material change Enabled enabled bit(1) DEFAULT NULL COMMENT '启用 0-禁用 1-启用'; -alter table jsh_material change OtherField1 other_field1 varchar(50) DEFAULT NULL COMMENT '自定义1'; -alter table jsh_material change OtherField2 other_field2 varchar(50) DEFAULT NULL COMMENT '自定义2'; -alter table jsh_material change OtherField3 other_field3 varchar(50) DEFAULT NULL COMMENT '自定义3'; -alter table jsh_material change enableSerialNumber enable_serial_number varchar(1) DEFAULT '0' COMMENT '是否开启序列号,0否,1是'; -alter table jsh_material change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_depothead rename to jsh_depot_head; -alter table jsh_depot_head change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_depot_head change Type type varchar(50) DEFAULT NULL COMMENT '类型(出库/入库)'; -alter table jsh_depot_head change SubType sub_type varchar(50) DEFAULT NULL COMMENT '出入库分类'; -alter table jsh_depot_head change DefaultNumber default_number varchar(50) DEFAULT NULL COMMENT '初始票据号'; -alter table jsh_depot_head change Number number varchar(50) DEFAULT NULL COMMENT '票据号'; -alter table jsh_depot_head change OperPersonName oper_person_name varchar(50) DEFAULT NULL COMMENT '操作员名字'; -alter table jsh_depot_head change CreateTime create_time datetime DEFAULT NULL COMMENT '创建时间'; -alter table jsh_depot_head change OperTime oper_time datetime DEFAULT NULL COMMENT '出入库时间'; -alter table jsh_depot_head change OrganId organ_id bigint(20) DEFAULT NULL COMMENT '供应商id'; -alter table jsh_depot_head change HandsPersonId hands_person_id bigint(20) DEFAULT NULL COMMENT '采购/领料-经手人id'; -alter table jsh_depot_head change AccountId account_id bigint(20) DEFAULT NULL COMMENT '账户id'; -alter table jsh_depot_head change ChangeAmount change_amount decimal(24,6) DEFAULT NULL COMMENT '变动金额(收款/付款)'; -alter table jsh_depot_head change TotalPrice total_price decimal(24,6) DEFAULT NULL COMMENT '合计金额'; -alter table jsh_depot_head change PayType pay_type varchar(50) DEFAULT NULL COMMENT '付款类型(现金、记账等)'; -alter table jsh_depot_head change Remark remark varchar(1000) DEFAULT NULL COMMENT '备注'; -alter table jsh_depot_head change Salesman sales_man varchar(50) DEFAULT NULL COMMENT '业务员(可以多个)'; -alter table jsh_depot_head change AccountIdList account_id_list varchar(50) DEFAULT NULL COMMENT '多账户ID列表'; -alter table jsh_depot_head change AccountMoneyList account_money_list varchar(200) DEFAULT NULL COMMENT '多账户金额列表'; -alter table jsh_depot_head change Discount discount decimal(24,6) DEFAULT NULL COMMENT '优惠率'; -alter table jsh_depot_head change DiscountMoney discount_money decimal(24,6) DEFAULT NULL COMMENT '优惠金额'; -alter table jsh_depot_head change DiscountLastMoney discount_last_money decimal(24,6) DEFAULT NULL COMMENT '优惠后金额'; -alter table jsh_depot_head change OtherMoney other_money decimal(24,6) DEFAULT NULL COMMENT '销售或采购费用合计'; -alter table jsh_depot_head change OtherMoneyList other_money_list varchar(200) DEFAULT NULL COMMENT '销售或采购费用涉及项目Id数组(包括快递、招待等)'; -alter table jsh_depot_head change OtherMoneyItem other_money_item varchar(200) DEFAULT NULL COMMENT '销售或采购费用涉及项目(包括快递、招待等)'; -alter table jsh_depot_head change AccountDay account_day int(10) DEFAULT NULL COMMENT '结算天数'; -alter table jsh_depot_head change Status status varchar(1) DEFAULT NULL COMMENT '状态,0未审核、1已审核、2已转采购|销售'; -alter table jsh_depot_head change LinkNumber link_number varchar(50) DEFAULT NULL COMMENT '关联订单号'; -alter table jsh_depot_head change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - -alter table jsh_depotitem rename to jsh_depot_item; -alter table jsh_depot_item change Id id bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键'; -alter table jsh_depot_item change HeaderId header_id bigint(20) NOT NULL COMMENT '表头Id'; -alter table jsh_depot_item change MaterialId material_id bigint(20) NOT NULL COMMENT '商品Id'; -alter table jsh_depot_item change MUnit material_unit varchar(20) DEFAULT NULL COMMENT '商品计量单位'; -alter table jsh_depot_item change OperNumber oper_number decimal(24,6) DEFAULT NULL COMMENT '数量'; -alter table jsh_depot_item change BasicNumber basic_number decimal(24,6) DEFAULT NULL COMMENT '基础数量,如kg、瓶'; -alter table jsh_depot_item change UnitPrice unit_price decimal(24,6) DEFAULT NULL COMMENT '单价'; -alter table jsh_depot_item change TaxUnitPrice tax_unit_price decimal(24,6) DEFAULT NULL COMMENT '含税单价'; -alter table jsh_depot_item change AllPrice all_price decimal(24,6) DEFAULT NULL COMMENT '金额'; -alter table jsh_depot_item change Remark remark varchar(200) DEFAULT NULL COMMENT '备注'; -alter table jsh_depot_item change Img img varchar(50) DEFAULT NULL COMMENT '图片'; -alter table jsh_depot_item change Incidentals incidentals decimal(24,6) DEFAULT NULL COMMENT '运杂费'; -alter table jsh_depot_item change DepotId depot_id bigint(20) DEFAULT NULL COMMENT '仓库ID'; -alter table jsh_depot_item change AnotherDepotId another_depot_id bigint(20) DEFAULT NULL COMMENT '调拨时,对方仓库Id'; -alter table jsh_depot_item change TaxRate tax_rate decimal(24,6) DEFAULT NULL COMMENT '税率'; -alter table jsh_depot_item change TaxMoney tax_money decimal(24,6) DEFAULT NULL COMMENT '税额'; -alter table jsh_depot_item change TaxLastMoney tax_last_money decimal(24,6) DEFAULT NULL COMMENT '价税合计'; -alter table jsh_depot_item change OtherField1 other_field1 varchar(50) DEFAULT NULL COMMENT '自定义字段1-名称'; -alter table jsh_depot_item change OtherField2 other_field2 varchar(50) DEFAULT NULL COMMENT '自定义字段2-型号'; -alter table jsh_depot_item change OtherField3 other_field3 varchar(50) DEFAULT NULL COMMENT '自定义字段3-制造商'; -alter table jsh_depot_item change OtherField4 other_field4 varchar(50) DEFAULT NULL COMMENT '自定义字段4-名称'; -alter table jsh_depot_item change OtherField5 other_field5 varchar(50) DEFAULT NULL COMMENT '自定义字段5-名称'; -alter table jsh_depot_item change MType material_type varchar(20) DEFAULT NULL COMMENT '商品类型'; -alter table jsh_depot_item change delete_Flag delete_flag varchar(1) DEFAULT '0' COMMENT '删除标记,0未删除,1删除'; - --- -------------------------------------------------------- --- 时间 2020年09月13日 --- by jishenghua --- 给单据表增加操作员字段,去掉经手头姓名字段 --- -------------------------------------------------------- -alter table jsh_depot_head add creator bigint(20) DEFAULT NULL COMMENT '操作员' after hands_person_id; -alter table jsh_account_head add creator bigint(20) DEFAULT NULL COMMENT '操作员' after hands_person_id; -alter table jsh_depot_head drop column oper_person_name; -update jsh_depot_head set creator=hands_person_id; - - --- -------------------------------------------------------- --- 时间 2020年10月17日 --- by jishenghua --- 增加平台表 --- -------------------------------------------------------- -DROP TABLE IF EXISTS `jsh_platform_config`; -CREATE TABLE `jsh_platform_config` ( - `id` bigint(20) NOT NULL AUTO_INCREMENT, - `platform_key` varchar(100) DEFAULT NULL COMMENT '关键词', - `platform_key_info` varchar(100) DEFAULT NULL COMMENT '关键词名称', - `platform_value` varchar(200) DEFAULT NULL COMMENT '值', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='平台参数'; - -INSERT INTO `jsh_platform_config` VALUES ('1', 'platform_name', '平台名称', '华夏ERP'); -INSERT INTO `jsh_platform_config` VALUES ('2', 'activation_code', '激活码', null); - --- -------------------------------------------------------- --- 时间 2020年11月24日 --- by jishenghua --- 给单据主表增加单据类型字段bill_type --- -------------------------------------------------------- -alter table jsh_depot_head add bill_type varchar(50) DEFAULT NULL COMMENT '单据类型' after pay_type; \ No newline at end of file diff --git a/erp_web/css/bill_detail.css b/erp_web/css/bill_detail.css deleted file mode 100644 index 76bdba6c..00000000 --- a/erp_web/css/bill_detail.css +++ /dev/null @@ -1,63 +0,0 @@ -#bill { - width: 100%; -} -#bill .retail_out{ - display: none; -} -#bill .retail_back{ - display: none; -} -#bill .purchase_orders{ - display: none; -} -#bill .purchase_in{ - display: none; -} -#bill .purchase_back{ - display: none; -} -#bill .sale_orders{ - display: none; -} -#bill .sale_out{ - display: none; -} -#bill .sale_back{ - display: none; -} -#bill .other_in{ - display: none; -} -#bill .other_out{ - display: none; -} -#bill .allocation_out{ - display: none; -} -#bill .stock_check_replay{ - display: none; -} -#bill .gift_recharge{ - display: none; -} -#bill .gift_out{ - display: none; -} -#bill .item_in{ - display: none; -} -#bill .item_out{ - display: none; -} -#bill .money_in{ - display: none; -} -#bill .money_out{ - display: none; -} -#bill .giro{ - display: none; -} -#bill .advance_in{ - display: none; -} \ No newline at end of file diff --git a/erp_web/css/common.css b/erp_web/css/common.css deleted file mode 100644 index cb79a728..00000000 --- a/erp_web/css/common.css +++ /dev/null @@ -1,63 +0,0 @@ - -.datagrid-body,.datagrid-footer,.datagrid-pager ,.datagrid-view { - background-color:#EAF2FD; -} - -.easyui-dialog .fitem label{ - width:80px; - float:left; - padding:5px; -} - -#tablePanel .action-show { - background: url('../js/easyui/themes/icons/list.png') no-repeat left center; -} - -#tablePanel .action-edit { - background: url('../js/easyui/themes/icons/pencil.png') no-repeat left center; - padding: 0 8px 0 20px; -} - -#tablePanel .action-delete { - background: url('../js/easyui/themes/icons/edit_remove.png') no-repeat left center; - padding-left: 20px; -} - -#tablePanel #searchTable { - height: 40px; - padding: 5px; -} - -.system-config { - padding: 5px; - font-size: 13px; -} - -.system-config td{ - padding: 10px 0px 10px 10px; - -} - -#accountDetailListDlg .n-link{ - color:blue; - text-decoration:underline; - cursor:pointer; -} - -#tablePanel .n-link{ - color:blue; - text-decoration:underline; - cursor:pointer; -} - -#materialDetailListDlg .n-link{ - color:blue; - text-decoration:underline; - cursor:pointer; -} - -#depotHeadDlgShow .n-link{ - color:blue; - text-decoration:underline; - cursor:pointer; -} \ No newline at end of file diff --git a/erp_web/css/css.css b/erp_web/css/css.css deleted file mode 100644 index 84f029a1..00000000 --- a/erp_web/css/css.css +++ /dev/null @@ -1,842 +0,0 @@ -@charset "utf-8"; -/* CSS Document */ -ul,ol,li,dl,dt,dd,h1,h2,h3,body,p,form,input,textarea{ - padding:0; - margin:0; -} -ul,li{ - list-style:none; -} -h1{ - font-size:18px; -} -h2{ - font-size:14px; -} -h3{ - font-size:12px; -} -table{ - border-collapse:collapse; -} -textarea{ - font-size:12px; - padding:3px; -} -img{ - border:0; -} -a:link,a:visited{ - color:#333; - text-decoration:none; -} -a:hover,a:active{ - text-decoration:underline; -} -body{ - font:12px/18px Arial, Helvetica, sans-serif,"宋体"; -} -#header{ - height:56px; - width:100%; - position:relative; - background:url(../images/bg_head.jpg) repeat-x; -} -#logo{ - position:absolute; - left: 17px; - top: 1px; -} -#nav_top{ - position:absolute; - right:5px; - top:20px; -} -#nav_top li{ - float:left; - padding-right:8px; -} -#nav_top li a{ - display:block; - height:16px; - float:left; - padding-left:18px; - text-decoration:underline; -} -#nav_top li a:hover{ - color:#006DC1; -} -#nav_top li a#navtop_home{ - background:url(../images/house.png) 0 1px no-repeat; -} -#nav_top li a#navtop_help{ - background:url(../images/vavtop_help.gif) 0 1px no-repeat; -} -#nav_top li a#navtop_logout{ - background:url(../images/680.png) 2px 2px no-repeat; -} -#menubar{ - width:170px; - padding-top:5px; - overflow:hidden; -} -#menubar a{ - width:130px; - padding:5px 0 0 40px; - height:23px; - display:block; - color:#000; - font-weight:bold; - font-size:14px; - background:url(../images/bg_menulist.jpg) no-repeat; -} -#menubar a:hover{ - text-decoration:none; - background:url(../images/bg_menuliston.jpg) no-repeat; -} -#menubar a#menu_on{ - background:url(../images/bg_menuliston.jpg) no-repeat; -} -#menubar a#menusub_on{ - color:#006BFF; - text-decoration:none; - background:#FFFFFF; -} -#menubar dl a{ - font-size:12px; - color:#333; - height:18px; - padding-left:60px; - font-weight:normal; - background:url(../images/bg_notebook.gif) 40px 5px no-repeat; -} -#menubar dl{ - display:none; - padding-bottom:5px; -} -#menubar dl a:hover{ - color:#006DC1; - text-decoration:none; -} -#menubar_top{ - width:182px; - height:16px; - overflow:hidden; -} -#menu_switchHide{ - position:absolute; - width:7px; - height:9px; - left:173px; - top:4px; - z-index:100; - overflow:hidden; -} -#menu_switchShow{ - position:absolute; - width:10px; - height:17px; - left:0px; - top:0px; - overflow:hidden; - z-index:100; - display:none; -} -#wrap_menu{ - width:175px; - overflow:hidden; - padding-left:5px; - border:1px solid #97B9DF; - border-top:none; - background:#EAF2FD; -} -#position{ - height:29px; - width:100%; - overflow:hidden; - position:relative; - background:url(../images/bg_positionm.jpg) repeat-x; -} - -#position p{ - line-height:29px; - padding-left:13px; - color:#FFF; - background:url(../images/bg_positionl.gif) no-repeat; -} -#position p a{ - color:#FFF; -} -#pright{ - width:8px; - height:29px; - overflow:hidden; - position:absolute; - top:0; - right:0; - background:url(../images/bg_positionr.jpg) 3px 0 no-repeat; -} -#cnt_body{ - padding:0 5px; -} -#searchbar{ - background:#EAF2FD; - margin:8px 0 5px 0; - width:100%; - position:relative; -} -#txt_search{ - position:absolute; - left: 11px; - top: -8px; - color:#000; - font-weight:bold; -} -#search_itemlist{ - border:1px solid #97B9DF; - padding:10px 10px 3px 10px; -} -#search_itemlist ul{ - width:100%; - overflow:hidden; -} -#search_itemlist li{ - float:left; - height:22px; - padding:0 10px 5px 0; -} -#searchbar li span img,#search_itemlist li span img{ - position:relative; - top:3px; - margin-left:2px; -} -#search_itemlist input,#search_itemlist select{ - width:80px; - margin-top:2px; -} -#search_itemlist input.btn_sendData{ - width:49px; - height:22px; - border:none; - margin-top:0; - padding:0 1px; - cursor:pointer; - background:url(../images/btn_check.gif) no-repeat; -} -#search_itemlist input.btn_sendData:hover{ - background:url(../images/btn_checkon.gif) no-repeat; -} -.databar{ - border:1px solid #97B9DF; - background:#EAF2FD; - overflow:hidden; - _height:29px; -} -.btn_confirmpage{ - height:22px; - width:35px; - border:none; - cursor:pointer; - background:url(../images/btn_goto.gif) 0 2px no-repeat; -} -.btn_confirmpage:hover{ - background:url(../images/btn_gotoon.gif) 0 2px no-repeat; -} -.btnbar{ - float:left; -} -.btnbar ul{ - padding:2px 0 2px 10px; - overflow:hidden; - width:400px; - overflow:hidden; -} -.btnbar li{ - float:left; - padding-right:5px; -} -.btnbar a{ - display:block; - height:25px; - float:left; - overflow:hidden; - padding-left:10px; - background:url(../images/bg_btnl.gif) no-repeat; -} -.btnbar a:hover{ - text-decoration:none; - background:url(../images/bg_btnlon.gif) no-repeat; -} -.btnbar b{ - display:block; - height:20px; - float:left; - padding:5px 10px 0 0; - font-weight:normal; - background:#EAF2FD url(../images/bg_btnr.gif) top right no-repeat; -} -.btnbar a:hover b{ - background:#EAF2FD url(../images/bg_btnron.gif) top right no-repeat; -} -.pagebar{ - float:right; -} -.pagebar ul{ - overflow:hidden; - padding:3px 3px 1px 3px; -} -.pagebar li{ - float:left; - padding:0 5px; - line-height:22px; - background:url(../images/bg_psplit.jpg) right 1px no-repeat; -} -.pagebar li.jump_num{ -} -.pagebar li.lastpageli{ - background:none; -} -.pagebar li.jump_num input{ - width:15px; - height:15px; -} -.pagebar li.pnum_list a{ - padding:1px 5px; - margin-left:2px; - border:1px solid #97B9DF; -} -.pagebar li.pnum_list a:hover{ - background:#FFFED9; - text-decoration:none; -} -.pagebar li.pnum_list a#this_page{ - border:1px solid #EAF2FD; - color:#F00; -} -.data_list,.data_view,.data_edit{ - margin:5px 0; -} -.data_list table{ - width:100%; - text-align:center; -} -.data_list th{ - color:#515151; - color:#3B64A4; - padding:5px 2px; - border:1px solid #97B8E0; - background: url(../images/bg_datath.jpg) repeat-x; -} -.data_list td{ - padding:4px 2px; - border:1px solid #97B8E0; -} -td a.detail_link{ - color:#006DC1; - text-decoration:none; -} -td a.detail_link:hover{ - color:#F90; - text-decoration:underline; -} -td.editbar{ - width:100px; -} -td.txt_leftalign,th.txt_leftalign{ - text-align:left; - padding-left:8px; -} -.data_list td.editbar a{ - padding:0 3px; -} -.data_list th.checkboxbar{ - width:20px; -} - -tr.tr_evenview,td.td_evenview{ - background:#f3f9fe; -} -tr.tr_even,td.td_even{ - background:#E9F0F9; -} -tr.tr_hover,td.td_hover{ - background:#FFFED9; -} -#foot{ - text-align:center; - height:25px; - overflow:hidden; - margin-top:5px; - line-height:30px; - color:#3a65a3; - font-family:Arial, Helvetica, sans-serif; - background:url(../images/bg_foot.jpg) repeat-x; -} -.data_view th,.data_edit th{ - padding:4px 4px 4px 18px; - text-align:left; - color:#515151; - width:120px; - border:1px solid #97B8E0; - background:#E9F0F9; -} -.data_view td,.data_edit td{ - padding:4px 4px 4px 10px; - border:1px solid #97B8E0; -} -.view_nav,.draw_time,#dialog_title{ - font-size:14px; - height:21px; - line-height:18px; - padding:5px 0 0 15px; - color:#0067B2; - border:1px solid #AEC7E5; - border-bottom:none; - margin:5px 0 -5px 0; - font-weight:bold; - background:url(../images/bg_cntnav.jpg) repeat-x; -} -.draw_time{ - border:1px solid #AEC7E5; - margin:5px 0; - font-weight:normal; - font-size:12px; - padding-top:1px; - padding-bottom:3px; -} -.btnlistbar{ - height:24px; - padding:4px 0 0 153px; - border:1px solid #AEC7E5; - border-top:none; - overflow:hidden; - background:#DEEAFB; - margin-top:-5px; -} -input.inputstyle{ - width:62px; - font-size:12px; - height:20px; - overflow:hidden; - line-height:22px; - text-align:center; - border:none; - color:#006DC1; - margin:0 32px 0 0; - padding:0; - background:url(../images/bg_btn.gif) top center no-repeat; -} -input.inputstyle:hover{ - background:url(../images/bg_btnon.gif) top center no-repeat; -} -#treebar{ - width:148px; - position:absolute; - left:5px; - top:34px; - padding:5px; - overflow:hidden; - border:1px solid #AEC7E5; - background:#EAF2FD; -} -#treebar_only{ - width:200px; - padding:5px; - overflow:hidden; -} -#treebar ul,#treebar li,#treebar_only ul,#treebar_only li{ - clear:both; -} -#treebar ul,#treebar_only ul{ - padding-left:20px; -} -#treebar ul#tree_rootul,#treebar_only ul#tree_rootul{ - padding-left:0; -} -#treebar li span,#treebar_only li span{ - float:left; - height:20px; - line-height:20px; - display:block; -} -#treebar li span a:hover,#treebar_only li span a:hover{ - color:#006DC1; - text-decoration:underline; -} -#treebar li span a.thisNode,#treebar_only li span a.thisNode{ - background:#334B75; - color:#FFF; -} -#treebar li span input,#treebar_only li span input{ - vertical-align:middle; - width:15px; - height:15px; - margin-right:2px; -} -#treebar span.tree_show,#treebar span.tree_hide,#treebar_only span.tree_show,#treebar_only span.tree_hide{ - width:15px; - display:block; - background:url(../images/btn_minus.gif) 3px 5px no-repeat; -} -#treebar span.tree_hide,#treebar_only span.tree_hide{ - background:url(../images/btn_plus.gif) 3px 5px no-repeat; -} -#treebar_cnt{ - padding-left:165px; -} -/*tab start*/ -#tab_switchdraw{ - height:31px; - margin-top:5px; - overflow:hidden; - position:relative; - background:url(../images/bg_actlistcon.gif) repeat-x; -} -#tab_switchdraw ul{ - padding-top:2px; -} -#tab_switchdraw li{ - float:left; - padding-right:3px; -} -#tab_switchdraw li a{ - display:block; - width:72px; - height:20px; - padding:9px 0 0 0; - text-align:center; - text-decoration:none; - color:#3965A3; - line-height:12px; - background:url(../images/bg_actlist.jpg) no-repeat; -} -#tab_switchdraw li a#draw_on{ - color:#515151; - padding-top:9px; - height:20px; - background:url(../images/bg_actliston.jpg) no-repeat; -} -#source_selected{ - display:none; -} -/*tab endding*/ -.img_list{ - padding:5px; - padding-left:50px; - width:100%; -} -#dialog{ - border:2px solid #AEC7E5; - padding:1px; - width:200px; - height:200px; - position:absolute; - left:0; - top:0; - z-index:100; - background:#FFF; -} -#dialog_title{ - position:relative; - border:none; - margin:0; - padding-left:8px; -} -#dialog_btnlist{ - border-top:1px dashed #CCC; - height:25px; - width:100%; - overflow:hidden; - padding-top:5px; - margin-top:2px; - position:absolute; - bottom:0; - text-align:center; - background:#FFF; -} -#dialog_close{ - width:16px; - height:16px; - position:absolute; - right:4px; - top:4px; - cursor:pointer; - background:url(../images/btn_close.png) no-repeat; -} -#dialog_bg{ - width:100%; - height:auto; - position:absolute; - left:0; - top:0; - z-index:99; - background:#666; - opacity: 0.0; - filter:alpha(opacity=0); - -moz-opacity:0.0; -} -.dialogbtnlist{ - border-top:1px dashed #AEC7E5; - text-align:center; - margin:5px 0 0 0; - padding:5px 5px 2px 5px; -} -.dialogbtnlist input{ - padding:0 5px; -} -.must_input,.error_input{ - color:#F00; - padding:0 3px; -} -.tip_input{ - color:#BBB; - padding:0 3px; -} -.tip_important a{ - color:#F00; - text-decoration:underline; -} -.select_left,.select_right{ - width:150px; - height:150px; - overflow:hidden; - float:left; -} -.select_left p,.select_right p{ - height:20px; - line-height:20px; -} -.select_left select,.select_right select{ - margin:0; - padding:0; - width:150px; - height:130px; -} -.select_btn{ - width:50px; - padding-top:35px; - height:115px; - float:left; - text-align:center; -} -.select_btn input{ - width:30px; - padding:2px 1px; -} -.select_right{ -} -#menu_mask{ - width:9px; - height:500px; - position:absolute; - top:0; - left:0; - border:1px solid #AEC7E5; - border-left:none; - background:#EAF2FD; - z-index:90; -} -#login_body,#register_body{ - background:#93bbe5 url(../images/bg_login.jpg) top center no-repeat; -} -#login_main,#register_main{ - width:459px; - overflow:hidden; - margin:160px auto 0 auto; -} -#login{ - width:459px; - height:263px; - overflow:hidden; - position:relative; - background:url(../images/bg_login_main.jpg) no-repeat; -} -#register{ - width:459px; - height:300px; - overflow:hidden; - position:relative; - background:url(../images/bg_register_main.jpg) no-repeat; -} -#login .login_btn{ - float:left; - width:230px; - height:50px; - margin:160px auto 0 120px; -} -#register .register_btn{ - float:left; - width:230px; - height:50px; - margin:228px auto 0px 120px; -} -#login_signal,#register_signal{ - position:absolute; - left: 63px; - top: 19px; -} -#txt_username{ - position:absolute; - left: 66px; - top: 84px; - width: 52px; -} -#txt_userpwd{ - position:absolute; - left: 65px; - top: 119px; - width: 54px; -} -#txt_userpwd_repeat{ - position:absolute; - left: 65px; - top: 154px; - width: 54px; -} -#txt_captcha{ - position:absolute; - left: 65px; - top: 189px; - width: 54px; -} -#txt_vcode{ - position:absolute; - left: 66px; - top: 153px; - width: 51px; -} -#user_name{ - position:absolute; - width:132px; - padding:0 4px; - height:23px; - line-height:23px; - border:none; - font-family:Arial, Helvetica, sans-serif; - background:url(../images/bg_logininout.jpg) no-repeat; - left: 120px; - top: 84px; -} -#user_pwd{ - position:absolute; - width:132px; - padding:0 4px; - height:23px; - line-height:23px; - border:none; - font-family:Arial, Helvetica, sans-serif; - background:url(../images/bg_logininout.jpg) no-repeat; - left: 120px; - top: 118px; -} -#user_pwd_repeat{ - position:absolute; - width:132px; - padding:0 4px; - height:23px; - line-height:23px; - border:none; - font-family:Arial, Helvetica, sans-serif; - background:url(../images/bg_logininout.jpg) no-repeat; - left: 120px; - top: 152px; -} -#user_captcha{ - position:absolute; - width:132px; - padding:0 4px; - height:23px; - line-height:23px; - border:none; - font-family:Arial, Helvetica, sans-serif; - background:url(../images/bg_logininout.jpg) no-repeat; - left: 120px; - top: 186px; -} -#imgCaptcha{ - position:absolute; - width:132px; - padding:0 4px; - height:40px; - line-height:23px; - border:none; - left: 270px; - top: 170px; -} -#vcode{ - position:absolute; - width:67px; - padding:0 4px; - height:23px; - line-height:23px; - font-family:Arial, Helvetica, sans-serif; - border:none; - background:url(../images/bg_keycode.jpg) no-repeat; - left: 118px; - top: 151px; -} -#vcode_pic{ - position:absolute; - left: 198px; - top: 151px; -} -#btn_login{ - width:100px; - height:30px; - border:none; - cursor:pointer; - color: white; - background:#318dff; - left: 120px; - top: 170px; - margin-right: 10px; -} -#btn_login:hover{ - background:#54a0ff; -} -#btn_register{ - width:100px; - height:30px; - border:none; - cursor:pointer; - color: white; - background:#318dff; - left: 120px; - top: 170px; - margin-right: 10px; -} -#btn_register:hover{ - background:#54a0ff; -} -#tip_username{ - position:absolute; - left: 262px; - top: 86px; - width: 174px; -} -#tip_userpwd{ - position:absolute; - left: 263px; - top: 121px; - width: 173px; -} -#tip_vcode{ - position:absolute; - left: 264px; - top: 154px; - width: 172px; -} -#login_tip{ - padding:3px 5px; - color:#4C4C4C; -} -#copyright{ - color:#3a69ad; - text-align:center; - padding:10px 1px; -} -#login_logo{ - padding:3px 8px; - font-size: medium; - font-weight: bold; -} diff --git a/erp_web/css/financial.css b/erp_web/css/financial.css deleted file mode 100644 index 4c90032e..00000000 --- a/erp_web/css/financial.css +++ /dev/null @@ -1,5 +0,0 @@ -#accountHeadDlg .radius-ui{ - height: 30px; - border: 1px solid #d3d3d3; - border-radius:5px; -} \ No newline at end of file diff --git a/erp_web/css/fonts/font-awesome.css b/erp_web/css/fonts/font-awesome.css deleted file mode 100644 index 165a2f5d..00000000 --- a/erp_web/css/fonts/font-awesome.css +++ /dev/null @@ -1,2199 +0,0 @@ -/*! - * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('fonts/fontawesome-webfont.eot?v=4.6.3'); - src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper-pp:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} -.fa-reddit-alien:before { - content: "\f281"; -} -.fa-edge:before { - content: "\f282"; -} -.fa-credit-card-alt:before { - content: "\f283"; -} -.fa-codiepie:before { - content: "\f284"; -} -.fa-modx:before { - content: "\f285"; -} -.fa-fort-awesome:before { - content: "\f286"; -} -.fa-usb:before { - content: "\f287"; -} -.fa-product-hunt:before { - content: "\f288"; -} -.fa-mixcloud:before { - content: "\f289"; -} -.fa-scribd:before { - content: "\f28a"; -} -.fa-pause-circle:before { - content: "\f28b"; -} -.fa-pause-circle-o:before { - content: "\f28c"; -} -.fa-stop-circle:before { - content: "\f28d"; -} -.fa-stop-circle-o:before { - content: "\f28e"; -} -.fa-shopping-bag:before { - content: "\f290"; -} -.fa-shopping-basket:before { - content: "\f291"; -} -.fa-hashtag:before { - content: "\f292"; -} -.fa-bluetooth:before { - content: "\f293"; -} -.fa-bluetooth-b:before { - content: "\f294"; -} -.fa-percent:before { - content: "\f295"; -} -.fa-gitlab:before { - content: "\f296"; -} -.fa-wpbeginner:before { - content: "\f297"; -} -.fa-wpforms:before { - content: "\f298"; -} -.fa-envira:before { - content: "\f299"; -} -.fa-universal-access:before { - content: "\f29a"; -} -.fa-wheelchair-alt:before { - content: "\f29b"; -} -.fa-question-circle-o:before { - content: "\f29c"; -} -.fa-blind:before { - content: "\f29d"; -} -.fa-audio-description:before { - content: "\f29e"; -} -.fa-volume-control-phone:before { - content: "\f2a0"; -} -.fa-braille:before { - content: "\f2a1"; -} -.fa-assistive-listening-systems:before { - content: "\f2a2"; -} -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: "\f2a3"; -} -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: "\f2a4"; -} -.fa-glide:before { - content: "\f2a5"; -} -.fa-glide-g:before { - content: "\f2a6"; -} -.fa-signing:before, -.fa-sign-language:before { - content: "\f2a7"; -} -.fa-low-vision:before { - content: "\f2a8"; -} -.fa-viadeo:before { - content: "\f2a9"; -} -.fa-viadeo-square:before { - content: "\f2aa"; -} -.fa-snapchat:before { - content: "\f2ab"; -} -.fa-snapchat-ghost:before { - content: "\f2ac"; -} -.fa-snapchat-square:before { - content: "\f2ad"; -} -.fa-pied-piper:before { - content: "\f2ae"; -} -.fa-first-order:before { - content: "\f2b0"; -} -.fa-yoast:before { - content: "\f2b1"; -} -.fa-themeisle:before { - content: "\f2b2"; -} -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: "\f2b3"; -} -.fa-fa:before, -.fa-font-awesome:before { - content: "\f2b4"; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} diff --git a/erp_web/css/fonts/font-icons.min.css b/erp_web/css/fonts/font-icons.min.css deleted file mode 100644 index ed326bfb..00000000 --- a/erp_web/css/fonts/font-icons.min.css +++ /dev/null @@ -1,8 +0,0 @@ -/*! Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ -@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.6.3');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} - -/*! Simple and Minimal Line Icons 2.4.0 https://github.com/thesabbir/simple-line-icons */ -@font-face{font-family:'simple-line-icons';src:url('fonts/Simple-Line-Icons.eot?v=2.4.0');src:url('fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'),url('fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'),url('fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'),url('fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'),url('fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg');font-weight:normal;font-style:normal}.icon-user,.icon-people,.icon-user-female,.icon-user-follow,.icon-user-following,.icon-user-unfollow,.icon-login,.icon-logout,.icon-emotsmile,.icon-phone,.icon-call-end,.icon-call-in,.icon-call-out,.icon-map,.icon-location-pin,.icon-direction,.icon-directions,.icon-compass,.icon-layers,.icon-menu,.icon-list,.icon-options-vertical,.icon-options,.icon-arrow-down,.icon-arrow-left,.icon-arrow-right,.icon-arrow-up,.icon-arrow-up-circle,.icon-arrow-left-circle,.icon-arrow-right-circle,.icon-arrow-down-circle,.icon-check,.icon-clock,.icon-plus,.icon-minus,.icon-close,.icon-event,.icon-exclamation,.icon-organization,.icon-trophy,.icon-screen-smartphone,.icon-screen-desktop,.icon-plane,.icon-notebook,.icon-mustache,.icon-mouse,.icon-magnet,.icon-energy,.icon-disc,.icon-cursor,.icon-cursor-move,.icon-crop,.icon-chemistry,.icon-speedometer,.icon-shield,.icon-screen-tablet,.icon-magic-wand,.icon-hourglass,.icon-graduation,.icon-ghost,.icon-game-controller,.icon-fire,.icon-eyeglass,.icon-envelope-open,.icon-envelope-letter,.icon-bell,.icon-badge,.icon-anchor,.icon-wallet,.icon-vector,.icon-speech,.icon-puzzle,.icon-printer,.icon-present,.icon-playlist,.icon-pin,.icon-picture,.icon-handbag,.icon-globe-alt,.icon-globe,.icon-folder-alt,.icon-folder,.icon-film,.icon-feed,.icon-drop,.icon-drawer,.icon-docs,.icon-doc,.icon-diamond,.icon-cup,.icon-calculator,.icon-bubbles,.icon-briefcase,.icon-book-open,.icon-basket-loaded,.icon-basket,.icon-bag,.icon-action-undo,.icon-action-redo,.icon-wrench,.icon-umbrella,.icon-trash,.icon-tag,.icon-support,.icon-frame,.icon-size-fullscreen,.icon-size-actual,.icon-shuffle,.icon-share-alt,.icon-share,.icon-rocket,.icon-question,.icon-pie-chart,.icon-pencil,.icon-note,.icon-loop,.icon-home,.icon-grid,.icon-graph,.icon-microphone,.icon-music-tone-alt,.icon-music-tone,.icon-earphones-alt,.icon-earphones,.icon-equalizer,.icon-like,.icon-dislike,.icon-control-start,.icon-control-rewind,.icon-control-play,.icon-control-pause,.icon-control-forward,.icon-control-end,.icon-volume-1,.icon-volume-2,.icon-volume-off,.icon-calendar,.icon-bulb,.icon-chart,.icon-ban,.icon-bubble,.icon-camrecorder,.icon-camera,.icon-cloud-download,.icon-cloud-upload,.icon-envelope,.icon-eye,.icon-flag,.icon-heart,.icon-info,.icon-key,.icon-link,.icon-lock,.icon-lock-open,.icon-magnifier,.icon-magnifier-add,.icon-magnifier-remove,.icon-paper-clip,.icon-paper-plane,.icon-power,.icon-refresh,.icon-reload,.icon-settings,.icon-star,.icon-symbol-female,.icon-symbol-male,.icon-target,.icon-credit-card,.icon-paypal,.icon-social-tumblr,.icon-social-twitter,.icon-social-facebook,.icon-social-instagram,.icon-social-linkedin,.icon-social-pinterest,.icon-social-github,.icon-social-google,.icon-social-reddit,.icon-social-skype,.icon-social-dribbble,.icon-social-behance,.icon-social-foursqare,.icon-social-soundcloud,.icon-social-spotify,.icon-social-stumbleupon,.icon-social-youtube,.icon-social-dropbox,.icon-social-vkontakte,.icon-social-steam{font-family:'simple-line-icons';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-user:before{content:"\e005"}.icon-people:before{content:"\e001"}.icon-user-female:before{content:"\e000"}.icon-user-follow:before{content:"\e002"}.icon-user-following:before{content:"\e003"}.icon-user-unfollow:before{content:"\e004"}.icon-login:before{content:"\e066"}.icon-logout:before{content:"\e065"}.icon-emotsmile:before{content:"\e021"}.icon-phone:before{content:"\e600"}.icon-call-end:before{content:"\e048"}.icon-call-in:before{content:"\e047"}.icon-call-out:before{content:"\e046"}.icon-map:before{content:"\e033"}.icon-location-pin:before{content:"\e096"}.icon-direction:before{content:"\e042"}.icon-directions:before{content:"\e041"}.icon-compass:before{content:"\e045"}.icon-layers:before{content:"\e034"} -.icon-menu:before{content:"\e601"}.icon-list:before{content:"\e067"}.icon-options-vertical:before{content:"\e602"}.icon-options:before{content:"\e603"}.icon-arrow-down:before{content:"\e604"}.icon-arrow-left:before{content:"\e605"}.icon-arrow-right:before{content:"\e606"}.icon-arrow-up:before{content:"\e607"}.icon-arrow-up-circle:before{content:"\e078"}.icon-arrow-left-circle:before{content:"\e07a"}.icon-arrow-right-circle:before{content:"\e079"}.icon-arrow-down-circle:before{content:"\e07b"}.icon-check:before{content:"\e080"}.icon-clock:before{content:"\e081"}.icon-plus:before{content:"\e095"}.icon-minus:before{content:"\e615"}.icon-close:before{content:"\e082"}.icon-event:before{content:"\e619"}.icon-exclamation:before{content:"\e617"}.icon-organization:before{content:"\e616"}.icon-trophy:before{content:"\e006"}.icon-screen-smartphone:before{content:"\e010"}.icon-screen-desktop:before{content:"\e011"}.icon-plane:before{content:"\e012"}.icon-notebook:before{content:"\e013"}.icon-mustache:before{content:"\e014"}.icon-mouse:before{content:"\e015"}.icon-magnet:before{content:"\e016"}.icon-energy:before{content:"\e020"}.icon-disc:before{content:"\e022"}.icon-cursor:before{content:"\e06e"}.icon-cursor-move:before{content:"\e023"}.icon-crop:before{content:"\e024"}.icon-chemistry:before{content:"\e026"}.icon-speedometer:before{content:"\e007"}.icon-shield:before{content:"\e00e"}.icon-screen-tablet:before{content:"\e00f"}.icon-magic-wand:before{content:"\e017"}.icon-hourglass:before{content:"\e018"}.icon-graduation:before{content:"\e019"}.icon-ghost:before{content:"\e01a"}.icon-game-controller:before{content:"\e01b"}.icon-fire:before{content:"\e01c"}.icon-eyeglass:before{content:"\e01d"}.icon-envelope-open:before{content:"\e01e"}.icon-envelope-letter:before{content:"\e01f"}.icon-bell:before{content:"\e027"}.icon-badge:before{content:"\e028"}.icon-anchor:before{content:"\e029"}.icon-wallet:before{content:"\e02a"}.icon-vector:before{content:"\e02b"}.icon-speech:before{content:"\e02c"}.icon-puzzle:before{content:"\e02d"}.icon-printer:before{content:"\e02e"}.icon-present:before{content:"\e02f"}.icon-playlist:before{content:"\e030"}.icon-pin:before{content:"\e031"}.icon-picture:before{content:"\e032"}.icon-handbag:before{content:"\e035"}.icon-globe-alt:before{content:"\e036"}.icon-globe:before{content:"\e037"}.icon-folder-alt:before{content:"\e039"}.icon-folder:before{content:"\e089"}.icon-film:before{content:"\e03a"}.icon-feed:before{content:"\e03b"}.icon-drop:before{content:"\e03e"}.icon-drawer:before{content:"\e03f"}.icon-docs:before{content:"\e040"}.icon-doc:before{content:"\e085"}.icon-diamond:before{content:"\e043"}.icon-cup:before{content:"\e044"}.icon-calculator:before{content:"\e049"}.icon-bubbles:before{content:"\e04a"}.icon-briefcase:before{content:"\e04b"}.icon-book-open:before{content:"\e04c"} -.icon-basket-loaded:before{content:"\e04d"}.icon-basket:before{content:"\e04e"}.icon-bag:before{content:"\e04f"}.icon-action-undo:before{content:"\e050"}.icon-action-redo:before{content:"\e051"}.icon-wrench:before{content:"\e052"}.icon-umbrella:before{content:"\e053"}.icon-trash:before{content:"\e054"}.icon-tag:before{content:"\e055"}.icon-support:before{content:"\e056"}.icon-frame:before{content:"\e038"}.icon-size-fullscreen:before{content:"\e057"}.icon-size-actual:before{content:"\e058"}.icon-shuffle:before{content:"\e059"}.icon-share-alt:before{content:"\e05a"}.icon-share:before{content:"\e05b"}.icon-rocket:before{content:"\e05c"}.icon-question:before{content:"\e05d"}.icon-pie-chart:before{content:"\e05e"}.icon-pencil:before{content:"\e05f"}.icon-note:before{content:"\e060"}.icon-loop:before{content:"\e064"}.icon-home:before{content:"\e069"}.icon-grid:before{content:"\e06a"}.icon-graph:before{content:"\e06b"}.icon-microphone:before{content:"\e063"}.icon-music-tone-alt:before{content:"\e061"}.icon-music-tone:before{content:"\e062"}.icon-earphones-alt:before{content:"\e03c"}.icon-earphones:before{content:"\e03d"}.icon-equalizer:before{content:"\e06c"}.icon-like:before{content:"\e068"}.icon-dislike:before{content:"\e06d"}.icon-control-start:before{content:"\e06f"}.icon-control-rewind:before{content:"\e070"}.icon-control-play:before{content:"\e071"}.icon-control-pause:before{content:"\e072"}.icon-control-forward:before{content:"\e073"}.icon-control-end:before{content:"\e074"}.icon-volume-1:before{content:"\e09f"}.icon-volume-2:before{content:"\e0a0"}.icon-volume-off:before{content:"\e0a1"}.icon-calendar:before{content:"\e075"}.icon-bulb:before{content:"\e076"}.icon-chart:before{content:"\e077"}.icon-ban:before{content:"\e07c"}.icon-bubble:before{content:"\e07d"}.icon-camrecorder:before{content:"\e07e"}.icon-camera:before{content:"\e07f"}.icon-cloud-download:before{content:"\e083"}.icon-cloud-upload:before{content:"\e084"}.icon-envelope:before{content:"\e086"}.icon-eye:before{content:"\e087"}.icon-flag:before{content:"\e088"}.icon-heart:before{content:"\e08a"}.icon-info:before{content:"\e08b"}.icon-key:before{content:"\e08c"}.icon-link:before{content:"\e08d"}.icon-lock:before{content:"\e08e"}.icon-lock-open:before{content:"\e08f"}.icon-magnifier:before{content:"\e090"}.icon-magnifier-add:before{content:"\e091"}.icon-magnifier-remove:before{content:"\e092"}.icon-paper-clip:before{content:"\e093"}.icon-paper-plane:before{content:"\e094"}.icon-power:before{content:"\e097"}.icon-refresh:before{content:"\e098"}.icon-reload:before{content:"\e099"}.icon-settings:before{content:"\e09a"}.icon-star:before{content:"\e09b"}.icon-symbol-female:before{content:"\e09c"}.icon-symbol-male:before{content:"\e09d"}.icon-target:before{content:"\e09e"}.icon-credit-card:before{content:"\e025"} -.icon-paypal:before{content:"\e608"}.icon-social-tumblr:before{content:"\e00a"}.icon-social-twitter:before{content:"\e009"}.icon-social-facebook:before{content:"\e00b"}.icon-social-instagram:before{content:"\e609"}.icon-social-linkedin:before{content:"\e60a"}.icon-social-pinterest:before{content:"\e60b"}.icon-social-github:before{content:"\e60c"}.icon-social-google:before{content:"\e60d"}.icon-social-reddit:before{content:"\e60e"}.icon-social-skype:before{content:"\e60f"}.icon-social-dribbble:before{content:"\e00d"}.icon-social-behance:before{content:"\e610"}.icon-social-foursqare:before{content:"\e611"}.icon-social-soundcloud:before{content:"\e612"}.icon-social-spotify:before{content:"\e613"}.icon-social-stumbleupon:before{content:"\e614"}.icon-social-youtube:before{content:"\e008"}.icon-social-dropbox:before{content:"\e00c"}.icon-social-vkontakte:before{content:"\e618"}.icon-social-steam:before{content:"\e620"} diff --git a/erp_web/css/fonts/fonts/FontAwesome.otf b/erp_web/css/fonts/fonts/FontAwesome.otf deleted file mode 100644 index d4de13e8..00000000 Binary files a/erp_web/css/fonts/fonts/FontAwesome.otf and /dev/null differ diff --git a/erp_web/css/fonts/fonts/Simple-Line-Icons.eot b/erp_web/css/fonts/fonts/Simple-Line-Icons.eot deleted file mode 100644 index f0ca6e8c..00000000 Binary files a/erp_web/css/fonts/fonts/Simple-Line-Icons.eot and /dev/null differ diff --git a/erp_web/css/fonts/fonts/Simple-Line-Icons.svg b/erp_web/css/fonts/fonts/Simple-Line-Icons.svg deleted file mode 100644 index 45217eef..00000000 --- a/erp_web/css/fonts/fonts/Simple-Line-Icons.svg +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/erp_web/css/fonts/fonts/Simple-Line-Icons.ttf b/erp_web/css/fonts/fonts/Simple-Line-Icons.ttf deleted file mode 100644 index 6ecb6868..00000000 Binary files a/erp_web/css/fonts/fonts/Simple-Line-Icons.ttf and /dev/null differ diff --git a/erp_web/css/fonts/fonts/Simple-Line-Icons.woff b/erp_web/css/fonts/fonts/Simple-Line-Icons.woff deleted file mode 100644 index b17d6949..00000000 Binary files a/erp_web/css/fonts/fonts/Simple-Line-Icons.woff and /dev/null differ diff --git a/erp_web/css/fonts/fonts/Simple-Line-Icons.woff2 b/erp_web/css/fonts/fonts/Simple-Line-Icons.woff2 deleted file mode 100644 index c49fccf5..00000000 Binary files a/erp_web/css/fonts/fonts/Simple-Line-Icons.woff2 and /dev/null differ diff --git a/erp_web/css/fonts/fonts/fontawesome-webfont.eot b/erp_web/css/fonts/fonts/fontawesome-webfont.eot deleted file mode 100644 index c7b00d2b..00000000 Binary files a/erp_web/css/fonts/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/erp_web/css/fonts/fonts/fontawesome-webfont.svg b/erp_web/css/fonts/fonts/fontawesome-webfont.svg deleted file mode 100644 index 074a3003..00000000 --- a/erp_web/css/fonts/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/erp_web/css/fonts/fonts/fontawesome-webfont.ttf b/erp_web/css/fonts/fonts/fontawesome-webfont.ttf deleted file mode 100644 index f221e50a..00000000 Binary files a/erp_web/css/fonts/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/erp_web/css/fonts/fonts/fontawesome-webfont.woff b/erp_web/css/fonts/fonts/fontawesome-webfont.woff deleted file mode 100644 index 6e7483cf..00000000 Binary files a/erp_web/css/fonts/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/erp_web/css/fonts/fonts/fontawesome-webfont.woff2 b/erp_web/css/fonts/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 7eb74fd1..00000000 Binary files a/erp_web/css/fonts/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/erp_web/css/fonts/simple-line-icons.css b/erp_web/css/fonts/simple-line-icons.css deleted file mode 100644 index 71a8ca1d..00000000 --- a/erp_web/css/fonts/simple-line-icons.css +++ /dev/null @@ -1,779 +0,0 @@ -@font-face { - font-family: 'simple-line-icons'; - src: url('fonts/Simple-Line-Icons.eot?v=2.4.0'); - src: url('fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg'); - font-weight: normal; - font-style: normal; -} -/* - Use the following CSS code if you want to have a class per icon. - Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: - Url--https://pagellapolitica.it/static/plugins/line-icons/ -*/ -.icon-user, -.icon-people, -.icon-user-female, -.icon-user-follow, -.icon-user-following, -.icon-user-unfollow, -.icon-login, -.icon-logout, -.icon-emotsmile, -.icon-phone, -.icon-call-end, -.icon-call-in, -.icon-call-out, -.icon-map, -.icon-location-pin, -.icon-direction, -.icon-directions, -.icon-compass, -.icon-layers, -.icon-menu, -.icon-list, -.icon-options-vertical, -.icon-options, -.icon-arrow-down, -.icon-arrow-left, -.icon-arrow-right, -.icon-arrow-up, -.icon-arrow-up-circle, -.icon-arrow-left-circle, -.icon-arrow-right-circle, -.icon-arrow-down-circle, -.icon-check, -.icon-clock, -.icon-plus, -.icon-minus, -.icon-close, -.icon-event, -.icon-exclamation, -.icon-organization, -.icon-trophy, -.icon-screen-smartphone, -.icon-screen-desktop, -.icon-plane, -.icon-notebook, -.icon-mustache, -.icon-mouse, -.icon-magnet, -.icon-energy, -.icon-disc, -.icon-cursor, -.icon-cursor-move, -.icon-crop, -.icon-chemistry, -.icon-speedometer, -.icon-shield, -.icon-screen-tablet, -.icon-magic-wand, -.icon-hourglass, -.icon-graduation, -.icon-ghost, -.icon-game-controller, -.icon-fire, -.icon-eyeglass, -.icon-envelope-open, -.icon-envelope-letter, -.icon-bell, -.icon-badge, -.icon-anchor, -.icon-wallet, -.icon-vector, -.icon-speech, -.icon-puzzle, -.icon-printer, -.icon-present, -.icon-playlist, -.icon-pin, -.icon-picture, -.icon-handbag, -.icon-globe-alt, -.icon-globe, -.icon-folder-alt, -.icon-folder, -.icon-film, -.icon-feed, -.icon-drop, -.icon-drawer, -.icon-docs, -.icon-doc, -.icon-diamond, -.icon-cup, -.icon-calculator, -.icon-bubbles, -.icon-briefcase, -.icon-book-open, -.icon-basket-loaded, -.icon-basket, -.icon-bag, -.icon-action-undo, -.icon-action-redo, -.icon-wrench, -.icon-umbrella, -.icon-trash, -.icon-tag, -.icon-support, -.icon-frame, -.icon-size-fullscreen, -.icon-size-actual, -.icon-shuffle, -.icon-share-alt, -.icon-share, -.icon-rocket, -.icon-question, -.icon-pie-chart, -.icon-pencil, -.icon-note, -.icon-loop, -.icon-home, -.icon-grid, -.icon-graph, -.icon-microphone, -.icon-music-tone-alt, -.icon-music-tone, -.icon-earphones-alt, -.icon-earphones, -.icon-equalizer, -.icon-like, -.icon-dislike, -.icon-control-start, -.icon-control-rewind, -.icon-control-play, -.icon-control-pause, -.icon-control-forward, -.icon-control-end, -.icon-volume-1, -.icon-volume-2, -.icon-volume-off, -.icon-calendar, -.icon-bulb, -.icon-chart, -.icon-ban, -.icon-bubble, -.icon-camrecorder, -.icon-camera, -.icon-cloud-download, -.icon-cloud-upload, -.icon-envelope, -.icon-eye, -.icon-flag, -.icon-heart, -.icon-info, -.icon-key, -.icon-link, -.icon-lock, -.icon-lock-open, -.icon-magnifier, -.icon-magnifier-add, -.icon-magnifier-remove, -.icon-paper-clip, -.icon-paper-plane, -.icon-power, -.icon-refresh, -.icon-reload, -.icon-settings, -.icon-star, -.icon-symbol-female, -.icon-symbol-male, -.icon-target, -.icon-credit-card, -.icon-paypal, -.icon-social-tumblr, -.icon-social-twitter, -.icon-social-facebook, -.icon-social-instagram, -.icon-social-linkedin, -.icon-social-pinterest, -.icon-social-github, -.icon-social-google, -.icon-social-reddit, -.icon-social-skype, -.icon-social-dribbble, -.icon-social-behance, -.icon-social-foursqare, -.icon-social-soundcloud, -.icon-social-spotify, -.icon-social-stumbleupon, -.icon-social-youtube, -.icon-social-dropbox, -.icon-social-vkontakte, -.icon-social-steam { - font-family: 'simple-line-icons'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.icon-user:before { - content: "\e005"; -} -.icon-people:before { - content: "\e001"; -} -.icon-user-female:before { - content: "\e000"; -} -.icon-user-follow:before { - content: "\e002"; -} -.icon-user-following:before { - content: "\e003"; -} -.icon-user-unfollow:before { - content: "\e004"; -} -.icon-login:before { - content: "\e066"; -} -.icon-logout:before { - content: "\e065"; -} -.icon-emotsmile:before { - content: "\e021"; -} -.icon-phone:before { - content: "\e600"; -} -.icon-call-end:before { - content: "\e048"; -} -.icon-call-in:before { - content: "\e047"; -} -.icon-call-out:before { - content: "\e046"; -} -.icon-map:before { - content: "\e033"; -} -.icon-location-pin:before { - content: "\e096"; -} -.icon-direction:before { - content: "\e042"; -} -.icon-directions:before { - content: "\e041"; -} -.icon-compass:before { - content: "\e045"; -} -.icon-layers:before { - content: "\e034"; -} -.icon-menu:before { - content: "\e601"; -} -.icon-list:before { - content: "\e067"; -} -.icon-options-vertical:before { - content: "\e602"; -} -.icon-options:before { - content: "\e603"; -} -.icon-arrow-down:before { - content: "\e604"; -} -.icon-arrow-left:before { - content: "\e605"; -} -.icon-arrow-right:before { - content: "\e606"; -} -.icon-arrow-up:before { - content: "\e607"; -} -.icon-arrow-up-circle:before { - content: "\e078"; -} -.icon-arrow-left-circle:before { - content: "\e07a"; -} -.icon-arrow-right-circle:before { - content: "\e079"; -} -.icon-arrow-down-circle:before { - content: "\e07b"; -} -.icon-check:before { - content: "\e080"; -} -.icon-clock:before { - content: "\e081"; -} -.icon-plus:before { - content: "\e095"; -} -.icon-minus:before { - content: "\e615"; -} -.icon-close:before { - content: "\e082"; -} -.icon-event:before { - content: "\e619"; -} -.icon-exclamation:before { - content: "\e617"; -} -.icon-organization:before { - content: "\e616"; -} -.icon-trophy:before { - content: "\e006"; -} -.icon-screen-smartphone:before { - content: "\e010"; -} -.icon-screen-desktop:before { - content: "\e011"; -} -.icon-plane:before { - content: "\e012"; -} -.icon-notebook:before { - content: "\e013"; -} -.icon-mustache:before { - content: "\e014"; -} -.icon-mouse:before { - content: "\e015"; -} -.icon-magnet:before { - content: "\e016"; -} -.icon-energy:before { - content: "\e020"; -} -.icon-disc:before { - content: "\e022"; -} -.icon-cursor:before { - content: "\e06e"; -} -.icon-cursor-move:before { - content: "\e023"; -} -.icon-crop:before { - content: "\e024"; -} -.icon-chemistry:before { - content: "\e026"; -} -.icon-speedometer:before { - content: "\e007"; -} -.icon-shield:before { - content: "\e00e"; -} -.icon-screen-tablet:before { - content: "\e00f"; -} -.icon-magic-wand:before { - content: "\e017"; -} -.icon-hourglass:before { - content: "\e018"; -} -.icon-graduation:before { - content: "\e019"; -} -.icon-ghost:before { - content: "\e01a"; -} -.icon-game-controller:before { - content: "\e01b"; -} -.icon-fire:before { - content: "\e01c"; -} -.icon-eyeglass:before { - content: "\e01d"; -} -.icon-envelope-open:before { - content: "\e01e"; -} -.icon-envelope-letter:before { - content: "\e01f"; -} -.icon-bell:before { - content: "\e027"; -} -.icon-badge:before { - content: "\e028"; -} -.icon-anchor:before { - content: "\e029"; -} -.icon-wallet:before { - content: "\e02a"; -} -.icon-vector:before { - content: "\e02b"; -} -.icon-speech:before { - content: "\e02c"; -} -.icon-puzzle:before { - content: "\e02d"; -} -.icon-printer:before { - content: "\e02e"; -} -.icon-present:before { - content: "\e02f"; -} -.icon-playlist:before { - content: "\e030"; -} -.icon-pin:before { - content: "\e031"; -} -.icon-picture:before { - content: "\e032"; -} -.icon-handbag:before { - content: "\e035"; -} -.icon-globe-alt:before { - content: "\e036"; -} -.icon-globe:before { - content: "\e037"; -} -.icon-folder-alt:before { - content: "\e039"; -} -.icon-folder:before { - content: "\e089"; -} -.icon-film:before { - content: "\e03a"; -} -.icon-feed:before { - content: "\e03b"; -} -.icon-drop:before { - content: "\e03e"; -} -.icon-drawer:before { - content: "\e03f"; -} -.icon-docs:before { - content: "\e040"; -} -.icon-doc:before { - content: "\e085"; -} -.icon-diamond:before { - content: "\e043"; -} -.icon-cup:before { - content: "\e044"; -} -.icon-calculator:before { - content: "\e049"; -} -.icon-bubbles:before { - content: "\e04a"; -} -.icon-briefcase:before { - content: "\e04b"; -} -.icon-book-open:before { - content: "\e04c"; -} -.icon-basket-loaded:before { - content: "\e04d"; -} -.icon-basket:before { - content: "\e04e"; -} -.icon-bag:before { - content: "\e04f"; -} -.icon-action-undo:before { - content: "\e050"; -} -.icon-action-redo:before { - content: "\e051"; -} -.icon-wrench:before { - content: "\e052"; -} -.icon-umbrella:before { - content: "\e053"; -} -.icon-trash:before { - content: "\e054"; -} -.icon-tag:before { - content: "\e055"; -} -.icon-support:before { - content: "\e056"; -} -.icon-frame:before { - content: "\e038"; -} -.icon-size-fullscreen:before { - content: "\e057"; -} -.icon-size-actual:before { - content: "\e058"; -} -.icon-shuffle:before { - content: "\e059"; -} -.icon-share-alt:before { - content: "\e05a"; -} -.icon-share:before { - content: "\e05b"; -} -.icon-rocket:before { - content: "\e05c"; -} -.icon-question:before { - content: "\e05d"; -} -.icon-pie-chart:before { - content: "\e05e"; -} -.icon-pencil:before { - content: "\e05f"; -} -.icon-note:before { - content: "\e060"; -} -.icon-loop:before { - content: "\e064"; -} -.icon-home:before { - content: "\e069"; -} -.icon-grid:before { - content: "\e06a"; -} -.icon-graph:before { - content: "\e06b"; -} -.icon-microphone:before { - content: "\e063"; -} -.icon-music-tone-alt:before { - content: "\e061"; -} -.icon-music-tone:before { - content: "\e062"; -} -.icon-earphones-alt:before { - content: "\e03c"; -} -.icon-earphones:before { - content: "\e03d"; -} -.icon-equalizer:before { - content: "\e06c"; -} -.icon-like:before { - content: "\e068"; -} -.icon-dislike:before { - content: "\e06d"; -} -.icon-control-start:before { - content: "\e06f"; -} -.icon-control-rewind:before { - content: "\e070"; -} -.icon-control-play:before { - content: "\e071"; -} -.icon-control-pause:before { - content: "\e072"; -} -.icon-control-forward:before { - content: "\e073"; -} -.icon-control-end:before { - content: "\e074"; -} -.icon-volume-1:before { - content: "\e09f"; -} -.icon-volume-2:before { - content: "\e0a0"; -} -.icon-volume-off:before { - content: "\e0a1"; -} -.icon-calendar:before { - content: "\e075"; -} -.icon-bulb:before { - content: "\e076"; -} -.icon-chart:before { - content: "\e077"; -} -.icon-ban:before { - content: "\e07c"; -} -.icon-bubble:before { - content: "\e07d"; -} -.icon-camrecorder:before { - content: "\e07e"; -} -.icon-camera:before { - content: "\e07f"; -} -.icon-cloud-download:before { - content: "\e083"; -} -.icon-cloud-upload:before { - content: "\e084"; -} -.icon-envelope:before { - content: "\e086"; -} -.icon-eye:before { - content: "\e087"; -} -.icon-flag:before { - content: "\e088"; -} -.icon-heart:before { - content: "\e08a"; -} -.icon-info:before { - content: "\e08b"; -} -.icon-key:before { - content: "\e08c"; -} -.icon-link:before { - content: "\e08d"; -} -.icon-lock:before { - content: "\e08e"; -} -.icon-lock-open:before { - content: "\e08f"; -} -.icon-magnifier:before { - content: "\e090"; -} -.icon-magnifier-add:before { - content: "\e091"; -} -.icon-magnifier-remove:before { - content: "\e092"; -} -.icon-paper-clip:before { - content: "\e093"; -} -.icon-paper-plane:before { - content: "\e094"; -} -.icon-power:before { - content: "\e097"; -} -.icon-refresh:before { - content: "\e098"; -} -.icon-reload:before { - content: "\e099"; -} -.icon-settings:before { - content: "\e09a"; -} -.icon-star:before { - content: "\e09b"; -} -.icon-symbol-female:before { - content: "\e09c"; -} -.icon-symbol-male:before { - content: "\e09d"; -} -.icon-target:before { - content: "\e09e"; -} -.icon-credit-card:before { - content: "\e025"; -} -.icon-paypal:before { - content: "\e608"; -} -.icon-social-tumblr:before { - content: "\e00a"; -} -.icon-social-twitter:before { - content: "\e009"; -} -.icon-social-facebook:before { - content: "\e00b"; -} -.icon-social-instagram:before { - content: "\e609"; -} -.icon-social-linkedin:before { - content: "\e60a"; -} -.icon-social-pinterest:before { - content: "\e60b"; -} -.icon-social-github:before { - content: "\e60c"; -} -.icon-social-google:before { - content: "\e60d"; -} -.icon-social-reddit:before { - content: "\e60e"; -} -.icon-social-skype:before { - content: "\e60f"; -} -.icon-social-dribbble:before { - content: "\e00d"; -} -.icon-social-behance:before { - content: "\e610"; -} -.icon-social-foursqare:before { - content: "\e611"; -} -.icon-social-soundcloud:before { - content: "\e612"; -} -.icon-social-spotify:before { - content: "\e613"; -} -.icon-social-stumbleupon:before { - content: "\e614"; -} -.icon-social-youtube:before { - content: "\e008"; -} -.icon-social-dropbox:before { - content: "\e00c"; -} -.icon-social-vkontakte:before { - content: "\e618"; -} -.icon-social-steam:before { - content: "\e620"; -} diff --git a/erp_web/css/in_out.css b/erp_web/css/in_out.css deleted file mode 100644 index 06abe503..00000000 --- a/erp_web/css/in_out.css +++ /dev/null @@ -1,146 +0,0 @@ -#depotHeadDlg,#depotHeadDlgShow{ - display: none; -} -/*价格*/ -#depotHeadFM .price-list { - width:110px; - float:left; - position:absolute; - border:1px solid #95B8E7; -} - -#depotHeadFM .price-list ul{ - padding: 0px; - margin: 0px; - background-color: #fff; -} - -#depotHeadFM .price-list ul li{ - list-style: none; - padding: 3px; -} - -#depotHeadFM .price-list ul li:hover{ - background-color: #e9f1fc; -} - -/*零售*/ -#depotHeadFM .retail-amount tr td{ - padding: 5px; -} - -#depotHeadFM .retail-amount tr td input{ - width: 225px; - height: 30px; - line-height: 30px; - font-size: 24px; - border-color: #878787; - border-style: solid; - border-top-width: 0px; - border-right-width: 0px; - border-bottom-width: 1px; - border-left-width: 0px -} - -#depotHeadFM .retail-amount .change-amount{ - color:purple; -} - -#depotHeadFM .retail-amount .get-amount{ - color:red; -} - -#depotHeadFM .retail-amount .back-amount{ - color: green; - text-align: right; -} - -#depotHeadDlgShow .retail-amount-show tr td{ - padding: 5px; -} - -#depotHeadDlgShow .retail-amount-show .change-amount-show{ - color:purple; - font-size: 24px; -} - -#depotHeadDlgShow .retail-amount-show .get-amount-show{ - color:red; - font-size: 24px; -} - -#depotHeadDlgShow .retail-amount-show .back-amount-show{ - color: green; - text-align: right; - font-size: 24px; -} - -/*计量单位*/ -#depotHeadFM .unit-list { - width:68px; - float:left; - position:absolute; - border:1px solid #95B8E7; -} - -#depotHeadFM .unit-list ul{ - padding: 0px; - margin: 0px; - background-color: #fff; -} - -#depotHeadFM .unit-list ul li{ - list-style: none; - padding: 3px; -} - -#depotHeadFM .unit-list ul li:hover{ - background-color: #e9f1fc; -} - -#depotHeadDlg .org-list{ - float: left; - width:135px; -} - -#depotHeadDlg .account-list{ - float: left; - width:112px; -} - -#depotHeadDlg .add-org-btn, #depotHeadDlg .add-account-btn{ - float: left; - width:20px; - padding: 2px; -} - -#depotHeadDlg .add-org-btn img, #depotHeadDlg .add-account-btn img{ - padding-top: 4px; -} - -#depotHeadDlg .other-money-list{ - float: left; - width:122px; -} - -#depotHeadDlg .other-money-ico{ - padding-left: 5px; -} - -#depotHeadDlg .radius-ui{ - height: 30px; - border: 1px solid #d3d3d3; - border-radius:5px; -} - -#depotHeadAccountDlg .radius-ui{ - height: 30px; - border: 1px solid #95B8E7; - border-radius:5px; -} - -#otherMoneyDlg .radius-ui{ - height: 30px; - border: 1px solid #95B8E7; - border-radius:5px; -} \ No newline at end of file diff --git a/erp_web/css/jsherp.css b/erp_web/css/jsherp.css deleted file mode 100644 index ad316e44..00000000 --- a/erp_web/css/jsherp.css +++ /dev/null @@ -1,1185 +0,0 @@ -/*! - * Copyright (c) 2013-Now http://jeesite.com All rights reserved. - * @author ThinkGem - * @version 2019-09-14 - */ -.nobg { - background: none !important -} - -.nowrap { - white-space: nowrap !important -} - -.scroll { - overflow-x: auto !important; - overflow-y: auto !important -} - -.scroll-x { - overflow-x: auto !important; - overflow-y: hidden !important -} - -.scroll-y { - overflow-x: hidden !important; - overflow-y: auto !important -} - -.noscroll { - overflow-x: hidden !important; - overflow-y: hidden !important -} - -.m0 { - margin: 0 !important -} - -.mt0 { - margin-top: 0 !important -} - -.mr0 { - margin-right: 0 !important -} - -.mb0 { - margin-bottom: 0 !important -} - -.ml0 { - margin-left: 0 !important -} - -.mt3 { - margin-top: 3px !important -} - -.mr3 { - margin-right: 3px !important -} - -.mb3 { - margin-bottom: 3px !important -} - -.ml3 { - margin-left: 3px !important -} - -.mt5 { - margin-top: 5px !important -} - -.mr5 { - margin-right: 5px !important -} - -.mb5 { - margin-bottom: 5px !important -} - -.ml5 { - margin-left: 5px !important -} - -.mt10 { - margin-top: 10px !important -} - -.mr10 { - margin-right: 10px !important -} - -.mb10 { - margin-bottom: 10px !important -} - -.ml10 { - margin-left: 10px !important -} - -.mt20 { - margin-top: 20px !important -} - -.mr20 { - margin-right: 20px !important -} - -.mb20 { - margin-bottom: 20px !important -} - -.ml20 { - margin-left: 20px !important -} - -.p0 { - padding: 0 !important -} - -.pt0 { - padding-top: 0 !important -} - -.pr0 { - padding-right: 0 !important -} - -.pb0 { - padding-bottom: 0 !important -} - -.pl0 { - padding-left: 0 !important -} - -.pt3 { - padding-top: 3px !important -} - -.pr3 { - padding-right: 3px !important -} - -.pb3 { - padding-bottom: 3px !important -} - -.pl3 { - padding-left: 3px !important -} - -.pt5 { - padding-top: 5px !important -} - -.pr5 { - padding-right: 5px !important -} - -.pb5 { - padding-bottom: 5px !important -} - -.pl5 { - padding-left: 5px !important -} - -.pt10 { - padding-top: 10px !important -} - -.pr10 { - padding-right: 10px !important -} - -.pb10 { - padding-bottom: 10px !important -} - -.pl10 { - padding-left: 10px !important -} - -.pt20 { - padding-top: 20px !important -} - -.pr20 { - padding-right: 20px !important -} - -.pb20 { - padding-bottom: 20px !important -} - -.pl20 { - padding-left: 20px !important -} - -.b0 { - border: 0 !important; - border-radius: 0 !important; - box-shadow: none !important -} - -.width-30 { - width: 30px !important -} - -.width-60 { - width: 60px !important -} - -.width-90 { - width: 90px !important -} - -.width-120 { - width: 120px !important -} - -.width-140 { - width: 140px !important -} - -.width-160 { - width: 160px !important -} - -.width-180 { - width: 180px !important -} - -.width-460 { - width: 460px !important -} - -.width-760 { - width: 760px !important -} - -.width-960 { - width: 960px !important -} - -.f14 { - font-size: 14px !important -} - -.f16 { - font-size: 16px !important -} - -.pointer { - cursor: pointer !important -} - -.form-horizontal .row { - margin: 0 55px 0 -15px -} - -@media (max-width: 767px) { - .form-horizontal .row { - margin: 0 - } -} - -.form-unit { - font-size: 15px; - font-style: oblique; - color: #6379bb; - border-bottom: 1px solid #ddd; - margin: 8px 10px 25px 10px; - padding-bottom: 5px -} - -.form-group .control-label { - font-weight: normal; - padding-top: 3px; - text-align: right; - padding-right: 0 -} - -.form-group .control-label .required { - color: #e02222 -} - -.form-group .control-label i { - vertical-align: middle -} - -.form-group .control-text { - padding-top: 4px -} - -.form-group.has-error .input-group-btn .btn { - border-color: #dd4b39 -} - -label.has-error { - top: auto; - left: 15px; - padding: 0 5px 1px; - font-size: 11px; - color: #fff !important; - max-width: none; - position: absolute; - background: #ff6969; - z-index: 1000; - border-radius: 5px; - -webkit-box-shadow: 0 5px 10px #dedede; - box-shadow: 0 5px 10px #dedede -} - -label.has-error:after { - border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff6969; - border-style: solid; - border-width: 6px; - content: ""; - height: 0; - left: 15px; - position: absolute; - top: -11px -} - -.form-error { - float: right; - padding-top: 5px; - color: #a94442; - display: none -} - -.form-control { - padding: 3px 6px 4px; - height: 30px; - font-size: 14px -} - -select.form-control { - padding: 0 6px -} - -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: #f3f3f3 -} - -.treeselect .form-control, .Wdate, .Wdate-date, .Wdate-datetime { - background-color: #fff !important -} - -.treeselect .form-control.disabled, .Wdate.disabled, .Wdate-date.disabled, .Wdate-datetime.disabled { - background-color: #f3f3f3 !important -} - -.input-group-btn .btn { - height: 30px; - padding: 3px 10px 4px 10px; - border-color: #caced6 -} - -.input-group-btn .btn.btn-sm { - padding: 4px 3px 3px 3px -} - -.select2-container .select2-selection--single { - height: 30px; - min-height: 30px; - padding: 6px -} - -.select2-container .select2-selection--multiple { - height: auto; - min-height: 30px; - padding: 4px 6px 0 0 -} - -.select2-container--default.select2-container--focus .select2-selection--single, .select2-container--default.select2-container--focus .select2-selection--multiple { - border-color: #3c8dbc -} - -.select2-container--default .select2-results__option--highlighted[aria-selected] { - background-color: #3c8dbc !important; - color: #fff !important -} - -.select2-container .select2-selection--single .select2-selection__rendered { - margin-top: -7px -} - -.select2-container .select2-selection--multiple .select2-selection__rendered { - margin-top: -5px -} - -.select2-container .select2-selection--single .select2-selection__arrow { - top: -1px -} - -.select2-container .select2-selection--multiple .select2-selection__arrow { - top: -1px -} - -.select2-container .select2-selection--multiple .select2-selection__choice { - padding: 0 5px 1px; - line-height: 16px -} - -.select2-container .select2-search--inline .select2-search__field { - margin-top: 6px; - line-height: 16px -} - -.select2-container .select2-search--inline .select2-search__field:focus { - border: 0 -} - -.select2-search--dropdown .select2-search__field { - padding: 3px 4px -} - -.select2-results__option { - padding: 4px 6px -} - -.icheck label { - height: 30px; - line-height: 23px; - margin: 0; - padding: 2px 8px 0 0; - font-size: 13px; - font-weight: 400; - cursor: pointer -} - -.icheck label input { - height: 18px; - width: 18px; - display: inline-block; - margin: -4px 2px 0 0; - vertical-align: middle -} - -.icheck label div { - margin-top: -3px; - margin-right: 2px -} - -.input-group-addon { - padding: 5px 6px 4px 6px -} - -.text-ruler { - background: url("../images/ruler.gif") repeat-x scroll 0 bottom transparent -} - -.table { - margin-bottom: 8px; - white-space: nowrap -} - -.table thead tr, .ui-jqgrid-htable thead tr, .ui-jqgrid-hdiv, .jqgrid-rownum { - vertical-align: middle; - border-left: 1px solid #ddd -} - -.table thead tr, .ui-jqgrid-htable thead tr, .ui-jqgrid-hdiv, .ui-jqgrid-hbox { - background-color: #f2f2f2 -} - -.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th { - background-color: #eee -} - -.table-responsive { - margin-bottom: inherit; - border: 0 !important -} - -.ui-jqgrid { - border-radius: 3px -} - -.pagination { - margin: 8px 0; - display: block; - font-size: 13px -} - -.pagination > li > a, .pagination > li > span { - min-width: 37px; - text-align: center; - padding: 6px; - border: 1px solid #ddd; - background: transparent -} - -.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover { - background: #eee; - color: #333; - border-color: #ddd -} - -.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { - cursor: default !important; - color: #ccc -} - -.pagination .controls { - float: left; - border: 0; - padding: 7px 0 0 15px; - color: #777 -} - -.pagination .controls input { - border: 0; - width: 22px; - padding: 0; - margin: -3px 0 0 0; - text-align: center; - font-size: 13px; - background: transparent; - box-shadow: none -} - -.table-fdiv { - min-width: 760px; - max-width: 960px; - margin: 0 auto -} - -.table-fdiv h3 { - text-align: center; - padding: 10px; - margin: 10px 0; - font-size: 15px; - font-weight: bold; - color: #333 -} - -.table-fdiv .form-actions { - padding-left: 0 !important; - margin-top: 15px; - text-align: center -} - -.table-form { - border-collapse: collapse; - border-spacing: 0; - width: 100%; - border: 1px solid #c8d6e6; - font-size: 14px -} - -.table-form td { - padding: 6px; - border: 1px solid #c8d6e6; - min-width: 30%; - position: relative -} - -.table-form .ui-jqgrid td { - padding: 0; - border: 0 -} - -.table-form .table-caption { - background-color: #ccebff !important; - color: #fff; - font-weight: bold -} - -.table-form .lbl, .table-form .row-lbl { - background-color: #f0f8ff; - position: static -} - -.table-form .lbl { - text-align: right; - min-width: 20% -} - -.table-form input, .table-form select, .table-form textarea, .table-form .select2-choice { - border: 0; - border-bottom: 1px dotted #bbb; - background-color: #fff !important; - color: #333; - resize: none -} - -.table-form input.form-control, .table-form select.form-control, .table-form .input-sm { - padding: 0 !important; - height: 20px -} - -.table-form .radio-list, .table-form .radio-list label, .table-form .checkbox-list, .table-form .checkbox-list label { - padding: 0; - margin-bottom: 0 -} - -.table-form .radio, .table-form .checkbox { - min-height: 20px !important; - margin-top: -5px -} - -.table-form .input-group-btn > .btn { - height: 20px; - padding: 0 6px 0 7px -} - -.table-form .form-control:focus { - color: #333 -} - -.table-form .form-control .select2-choice, .table-form .form-control.input-sm .select2-choice { - border: 0; - height: 20px !important; - line-height: 20px !important; - padding: 0 5px !important -} - -.table-form .select2-container .select2-choice > .select2-chosen, .table-form .select2-container.input-sm .select2-choice > .select2-chosen { - line-height: 18px !important -} - -.table-form .select2-container .select2-choice .select2-arrow b { - background-position: 0 -5px -} - -.table-form .select2-container .select2-choice .select2-arrow { - border: 1px solid #e5e5e5 -} - -.table-form .select2-container-active .select2-choice, .table-form .select2-container-active .select2-choices { - border: 0 !important -} - -.table-form .ui-jqgrid .ui-row-ltr td input, .table-form .ui-jqgrid .ui-row-ltr td select, .table-form .ui-jqgrid .ui-row-ltr td textarea, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr td, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr td input, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr td select, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr td textarea { - background-color: #fff !important -} - -.table-form .ui-jqgrid .ui-row-ltr.ui-priority-secondary td input, .table-form .ui-jqgrid .ui-row-ltr.ui-priority-secondary td select, .table-form .ui-jqgrid .ui-row-ltr.ui-priority-secondary td textarea, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr.ui-priority-secondary td, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr.ui-priority-secondary td input, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr.ui-priority-secondary td select, .table-form .ui-jqgrid tr.ui-state-highlight.ui-row-ltr.ui-priority-secondary td textarea { - background-color: #f9f9f9 !important -} - -.table-form input:hover, .table-form select:hover, .table-form textarea:hover { - background-color: #fafafa -} - -.table-form input:hover, .table-form select:hover, .table-form textarea:hover { - background-color: #efefef -} - -.table-form .ui-state-hover td, .table-form .ui-widget-content .ui-state-hover td, .table-form .ui-widget-header .ui-state-hover td, .table-form .ui-state-focus, .table-form .ui-widget-content .ui-state-focus, .table-form .ui-widget-header .ui-state-focus { - background: #fafafa -} - -.form-inline { - padding-left: 5px; - margin: 3px -} - -.form-inline .form-group { - display: inline-block; - margin-top: 5px; - margin-bottom: 5px; - vertical-align: middle; - margin-right: 6px -} - -.form-inline .control-label { - text-align: right; - font-size: 14px; - vertical-align: baseline -} - -.form-inline .control-inline { - display: inline-block; - width: auto; - vertical-align: middle -} - -.form-inline .form-control { - display: inline-block; - vertical-align: middle; - border: 1px solid #95B8E7; -} - -.form-inline .btn { - margin-right: 3px -} - -.form-inline .input-group-btn .btn { - margin-right: 0 -} - -.tags-input { - border: 1px solid #ddd; - background: #fff; - padding: 5px; - overflow-y: auto; - width: auto -} - -.tags-input .tag { - display: block; - float: left; - padding: 2px 5px 3px; - background: #e3edf5; - color: #4190bd; - border: 1px solid #acc2cf; - border-radius: 2px; - margin-right: 5px; - margin-bottom: 5px -} - -.tags-input .tag a { - font-weight: bold; - color: #4190bd; - text-decoration: none; - font-size: 11px -} - -.tags-input .title { - padding: 0 3px 8px -} - -.article-view { - padding: 0 50px 10px 50px; - font-family: "Helvetica Neue", Helvetica, Arial -} - -.article-view .article-title { - padding: 25px 10px 30px 10px; - margin: 0; - border-bottom: 1px solid #d6d6d6; - text-align: center -} - -.article-view .content-text { - margin: 30px 0; - font-size: 14px; - line-height: 28px -} - -.article-view .content-text blockquote { - margin: 20px; - margin-left: 30px; - border-color: #e84d1c; - font-size: 14px -} - -.article-view .content-info { - list-style: none; - padding: 8px 0; - margin: 15px 0; - border: solid 1px #d6d6d6; - border-width: 1px 0 -} - -.article-view .content-info li { - padding: 0 10px 0 6px; - border-right: solid 1px #d6d6d6; - line-height: 20px; - color: #555; - font-size: 13px; - display: inline-block -} - -.article-view .content-info li:last-child { - border-right: 0 -} - -.article-view .content-info li i { - color: #e84d1c -} - -.article-view h1 { - font-size: 26px; - font-weight: bold; - margin-top: 20px; - margin-bottom: 20px -} - -.article-view h2 { - font-size: 25px; - font-weight: bold; - margin-top: 20px; - margin-bottom: 20px -} - -.article-view h3 { - font-size: 23px; - font-weight: bold; - margin-top: 20px -} - -.article-view h4 { - font-size: 20px; - font-weight: bold; - margin-top: 20px -} - -.article-view h5 { - font-size: 17px; - font-weight: bold; - margin-top: 20px -} - -.article-view h6 { - font-size: 14px; - font-weight: bold; - margin-top: 20px -} - -.addTabPage { - cursor: pointer -} - -.iframe-ios { - -webkit-overflow-scrolling: touch; - overflow: auto -} - -#page-loading { - position: fixed; - top: 48%; - left: 48%; - z-index: 9999999999; - min-width: 125px; - margin-left: -50px; - margin-top: -30px; - padding: 7px 7px 7px 33px; - text-align: center; - vertical-align: middle; - color: #333; - font-size: 13px; - border: 1px solid #dedede; - background: #fbfbfb url("../js/images/loading.gif") no-repeat 5px center; - border-radius: 3px; - -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); - box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1) -} - -#page-loading em { - position: absolute; - cursor: pointer; - right: 1px; - top: 2px; - line-height: 8px; - font-style: normal; - color: #666; - display: none -} - -#page-loading-top { - background: #f3565d; - position: fixed; - left: 0; - top: 0; - width: 5%; - height: 2px; - z-index: 99999 -} - -#scroll-up { - border-width: 0; - position: fixed; - right: 2px; - z-index: 99; - -webkit-transition-duration: .3s; - transition-duration: .3s; - opacity: 0; - filter: alpha(opacity=0); - bottom: -24px; - visibility: hidden; - background-color: #aaa; - color: #fff; - font-size: 14px -} - -#scroll-up.display { - opacity: .7; - filter: alpha(opacity=70); - bottom: 2px; - visibility: visible -} - -#scroll-up:hover { - opacity: 1; - filter: alpha(opacity=100) -} - -#scroll-up:focus { - outline: 0 -} - -a:hover, a:active, a:focus { - color: #5587a5 -} - -@media print { - a[href]:after { - content: "" - } - - abbr[title]:after { - content: "" - } -} - -::-webkit-scrollbar { - width: 10px !important; - height: 10px !important; - -webkit-appearance: none; - background: #f1f1f1 -} - -::-webkit-scrollbar-thumb { - height: 5px; - border: 1px solid transparent; - border-top: 0; - border-bottom: 0; - border-radius: 6px; - background-color: #ccc; - background-clip: padding-box -} - -body { - height: auto; - font-family: "Microsoft YaHei" -} - -button { - font-family: "SimSun", "Helvetica Neue", Helvetica, Arial -} - -.content-wrapper, .right-side, body { - background-color: #f4f6f8 -} - -.dropdown .dropdown-toggle { - cursor: pointer -} - -.dropdown .dropdown-menu { - border: 1px solid #ccc; - box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) -} - -.collapse { - *display: none; - _position: static -} - -.collapse.in { - *display: block -} - -.main-content { - margin: 0; - padding: 0; - border-radius: 0 -} - -.box-main { - margin: 0; - border: 0; - padding-top: 2px; - border-radius: 0; - box-shadow: none -} - -.box-main > .box-header { - border-bottom: 1px solid #eee; - padding: 13px 10px 1px 15px -} - -.box-main > .box-header .box-title { - font-size: 16px; - margin-bottom: 13px; - float: left -} - -.box-main > .box-header .box-title .fa { - font-size: 14px; - padding-right: 5px; - margin-top: -2px -} - -.box-main > .box-header .box-tools { - position: relative; - top: -6px; - right: 0 -} - -.box-main > .box-header .box-tools .btn { - padding: 3px 10px 5px 10px; - font-size: 14px; - margin-bottom: 2px -} - -.box-main > .box-header .box-tools .btn-box-tool { - padding: 4px 2px -} - -.box-main form > .box-footer, .nav-main form > .box-footer { - background: #fafafa -} - -.box-main form > .box-footer .row, .nav-main form > .box-footer .row { - margin: 5px 0 5px -25px -} - -.nav-main { - margin: 0; - padding: 0; - padding-top: 5px -} - -.nav-main > .nav-tabs { - margin: 0; - padding-left: 10px; - border-bottom-color: #eee -} - -.nav-main > .nav-tabs > li.header { - padding-left: 5px; - font-size: 16px; - line-height: 30px -} - -.nav-main > .nav-tabs > li > a { - padding: 8px 15px 12px 15px -} - -.nav-main > .nav-tabs > li > a:hover { - color: #333 -} - -.nav-main > .nav-tabs.pull-right > li:first-of-type { - margin-right: 8px -} - -.nav-main > .nav-tabs.pull-right > li:first-of-type.active > a { - border-color: #fff #eee; - border-bottom: 0 -} - -.nav-main > .box-header { - border-bottom: 0; - padding-top: 0 -} - -.nav-main > .box-header:after { - clear: none -} - -.nav-main > .box-header .box-tools { - top: 3px -} - -.nav-main > .nav-tabs > li:first-of-type.active > a { - border-left-color: #f4f4f4 -} - -.box-child.collapsed-box .box-body, .box-child.collapsed-box .box-footer { - display: none -} - -@media (max-width: 767px) { - .box-footer .row { - text-align: center; - padding-right: 20px - } -} - -#page-loading, .box-main, .nav-main { - animation-duration: .2s; - animation-name: fadeIn -} - -.form-inline, .form-horizontal { - animation-duration: .2s; - animation-name: fadeInDown -} - -.dropdown-menu { - animation-duration: .2s; - animation-name: fadeInUp -} - -.ui-jqgrid { - animation-duration: .5s; - animation-name: fadeIn -} - -@keyframes fadeIn { - from { - opacity: 0 - } - to { - opacity: 1 - } -} - -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 20%, 0) - } - to { - opacity: 1; - transform: translate3d(0, 0, 0) - } -} - -@keyframes fadeInDown { - 0% { - transform: translateY(-20px) - } - 100% { - transform: translateY(0) - } -} - -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-20%, 0, 0) - } - to { - opacity: 1; - transform: translate3d(0, 0, 0) - } -} - -@keyframes fadeInRight { - from { - opacity: 0; - transform: translate3d(20%, 0, 0) - } - to { - opacity: 1; - transform: translate3d(0, 0, 0) - } -} - -.jump, .jump5 { - animation-duration: 1.6s; - animation-name: jump -} - -.jump5 { - animation-iteration-count: 5 -} - -@keyframes jump { - from { - transform: scale3d(1, 1, 1) translateY(0) - } - 5% { - transform: scale3d(1.03, 0.97, 1) translateY(-1px) - } - 12.5% { - transform: scale3d(1, 1, 1) translateY(-10px) - } - 20% { - transform: scale3d(0.98, 1.02, 1) translateY(-1px) - } - 25% { - transform: scale3d(1.06, 0.94, 1) translateY(4px) - } - 32.5% { - transform: scale3d(0.97, 1.03, 1) translateY(-4px) - } - 40% { - transform: scale3d(1, 1, 1) translateY(0) - } - 100% { - transform: scale3d(1, 1, 1) translateY(0) - } -} \ No newline at end of file diff --git a/erp_web/css/material.css b/erp_web/css/material.css deleted file mode 100644 index e6399c5e..00000000 --- a/erp_web/css/material.css +++ /dev/null @@ -1,11 +0,0 @@ -.first-select-unit{ - display: none; -} - -.price-list { - display: none; -} - -.price-list input{ - width: 120px; -} diff --git a/erp_web/css/retail_list.css b/erp_web/css/retail_list.css deleted file mode 100644 index 72b34645..00000000 --- a/erp_web/css/retail_list.css +++ /dev/null @@ -1,49 +0,0 @@ -#depotHeadFM .retail-amount tr td{ - padding: 5px; -} - -#depotHeadFM .retail-amount tr td input{ - width: 185px; - height: 30px; - line-height: 30px; - font-size: 24px; - border-color: #878787; - border-style: solid; - border-top-width: 0px; - border-right-width: 0px; - border-bottom-width: 1px; - border-left-width: 0px -} - -#depotHeadFM .retail-amount .change-amount{ - color:purple; -} - -#depotHeadFM .retail-amount .get-amount{ - color:red; -} - -#depotHeadFM .retail-amount .back-amount{ - color: green; - text-align: right; -} - -#depotHeadDlgShow .retail-amount-show tr td{ - padding: 5px; -} - -#depotHeadDlgShow .retail-amount-show .change-amount-show{ - color:purple; - font-size: 24px; -} - -#depotHeadDlgShow .retail-amount-show .get-amount-show{ - color:red; - font-size: 24px; -} - -#depotHeadDlgShow .retail-amount-show .back-amount-show{ - color: green; - text-align: right; - font-size: 24px; -} diff --git a/erp_web/css/user_help.css b/erp_web/css/user_help.css deleted file mode 100644 index 747c2d19..00000000 --- a/erp_web/css/user_help.css +++ /dev/null @@ -1,48 +0,0 @@ -#tt .title { - font-size: 14px; - font-weight: bold; - text-align: center; - color: green; - height: 30px; -} - -#tt .content { - font-size: 14px; - text-align: center; - height: 30px; -} - -#tt .list { - width: 100%; - margin: 20px 0px 20px 0px; -} - -#tt .list .row{ - width: 20%; - float: left; -} - -#tt .list .row ul{ - list-style:none; - float: left; -} - -#tt .list .row ul li{ - text-align: center; - height: 40px; -} - -#tt .list .row ul .module{ - font-size: 14px; - color: blue; - cursor:pointer; -} - -#tt .list .row ul .module:hover{ - text-decoration: underline; -} - -#tt .list .row ul .remark{ - font-size: 12px; - text-align: left; -} \ No newline at end of file diff --git a/erp_web/home.html b/erp_web/home.html deleted file mode 100644 index b1c8bda5..00000000 --- a/erp_web/home.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - - 华夏ERP - - - - - - - - - -
-
-
-
-
- -
- 今日累计销售 - -
-
-
-
-
- -
- 本月累计销售 - -
-
-
-
-
- -
- 今日累计进货 - -
-
-
-
-
- -
- 本月累计进货 - -
-
-
-
-
-
-
-
- -

采购统计

-
-
-
-
-
-
-
-
-
-
- -

销售统计

-
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - \ No newline at end of file diff --git a/erp_web/images/007.png b/erp_web/images/007.png deleted file mode 100644 index 1cf36626..00000000 Binary files a/erp_web/images/007.png and /dev/null differ diff --git a/erp_web/images/020.png b/erp_web/images/020.png deleted file mode 100644 index 184ed170..00000000 Binary files a/erp_web/images/020.png and /dev/null differ diff --git a/erp_web/images/657.png b/erp_web/images/657.png deleted file mode 100644 index 2724394a..00000000 Binary files a/erp_web/images/657.png and /dev/null differ diff --git a/erp_web/images/680.png b/erp_web/images/680.png deleted file mode 100644 index 65fb464e..00000000 Binary files a/erp_web/images/680.png and /dev/null differ diff --git a/erp_web/images/894.png b/erp_web/images/894.png deleted file mode 100644 index d4a14023..00000000 Binary files a/erp_web/images/894.png and /dev/null differ diff --git a/erp_web/images/a1.gif b/erp_web/images/a1.gif deleted file mode 100644 index a98d7491..00000000 Binary files a/erp_web/images/a1.gif and /dev/null differ diff --git a/erp_web/images/bg_notebook.gif b/erp_web/images/bg_notebook.gif deleted file mode 100644 index 1cb90726..00000000 Binary files a/erp_web/images/bg_notebook.gif and /dev/null differ diff --git a/erp_web/images/bg_tipfailth.png b/erp_web/images/bg_tipfailth.png deleted file mode 100644 index 44e67929..00000000 Binary files a/erp_web/images/bg_tipfailth.png and /dev/null differ diff --git a/erp_web/images/bg_tipsuccess.png b/erp_web/images/bg_tipsuccess.png deleted file mode 100644 index b223b160..00000000 Binary files a/erp_web/images/bg_tipsuccess.png and /dev/null differ diff --git a/erp_web/images/btn_close.gif b/erp_web/images/btn_close.gif deleted file mode 100644 index 8871cead..00000000 Binary files a/erp_web/images/btn_close.gif and /dev/null differ diff --git a/erp_web/images/btn_close.png b/erp_web/images/btn_close.png deleted file mode 100644 index 8e0286fd..00000000 Binary files a/erp_web/images/btn_close.png and /dev/null differ diff --git a/erp_web/images/btn_display.gif b/erp_web/images/btn_display.gif deleted file mode 100644 index f2ecfe50..00000000 Binary files a/erp_web/images/btn_display.gif and /dev/null differ diff --git a/erp_web/images/btn_minus.gif b/erp_web/images/btn_minus.gif deleted file mode 100644 index 40e487e2..00000000 Binary files a/erp_web/images/btn_minus.gif and /dev/null differ diff --git a/erp_web/images/btn_openm.gif b/erp_web/images/btn_openm.gif deleted file mode 100644 index f2ecfe50..00000000 Binary files a/erp_web/images/btn_openm.gif and /dev/null differ diff --git a/erp_web/images/btn_plus.gif b/erp_web/images/btn_plus.gif deleted file mode 100644 index 8f52d96e..00000000 Binary files a/erp_web/images/btn_plus.gif and /dev/null differ diff --git a/erp_web/images/btn_scolse.gif b/erp_web/images/btn_scolse.gif deleted file mode 100644 index 88533f9a..00000000 Binary files a/erp_web/images/btn_scolse.gif and /dev/null differ diff --git a/erp_web/images/btn_sopen.gif b/erp_web/images/btn_sopen.gif deleted file mode 100644 index 9d7408e0..00000000 Binary files a/erp_web/images/btn_sopen.gif and /dev/null differ diff --git a/erp_web/images/categories.png b/erp_web/images/categories.png deleted file mode 100644 index f829b6ba..00000000 Binary files a/erp_web/images/categories.png and /dev/null differ diff --git a/erp_web/images/chart_bar.png b/erp_web/images/chart_bar.png deleted file mode 100644 index 2cec9fd8..00000000 Binary files a/erp_web/images/chart_bar.png and /dev/null differ diff --git a/erp_web/images/clock.png b/erp_web/images/clock.png deleted file mode 100644 index e2672c20..00000000 Binary files a/erp_web/images/clock.png and /dev/null differ diff --git a/erp_web/images/comment.png b/erp_web/images/comment.png deleted file mode 100644 index 296b8309..00000000 Binary files a/erp_web/images/comment.png and /dev/null differ diff --git a/erp_web/images/computer.png b/erp_web/images/computer.png deleted file mode 100644 index 28335581..00000000 Binary files a/erp_web/images/computer.png and /dev/null differ diff --git a/erp_web/images/contacts.png b/erp_web/images/contacts.png deleted file mode 100644 index 2470bbc3..00000000 Binary files a/erp_web/images/contacts.png and /dev/null differ diff --git a/erp_web/images/date_packer.gif b/erp_web/images/date_packer.gif deleted file mode 100644 index 3ee59513..00000000 Binary files a/erp_web/images/date_packer.gif and /dev/null differ diff --git a/erp_web/images/edit_kiii.png b/erp_web/images/edit_kiii.png deleted file mode 100644 index 8d6df43b..00000000 Binary files a/erp_web/images/edit_kiii.png and /dev/null differ diff --git a/erp_web/images/edit_lock.png b/erp_web/images/edit_lock.png deleted file mode 100644 index b5de7c4d..00000000 Binary files a/erp_web/images/edit_lock.png and /dev/null differ diff --git a/erp_web/images/edit_lockon.png b/erp_web/images/edit_lockon.png deleted file mode 100644 index 5c4180e9..00000000 Binary files a/erp_web/images/edit_lockon.png and /dev/null differ diff --git a/erp_web/images/edit_monitor.png b/erp_web/images/edit_monitor.png deleted file mode 100644 index 491a82b8..00000000 Binary files a/erp_web/images/edit_monitor.png and /dev/null differ diff --git a/erp_web/images/edit_notebook.png b/erp_web/images/edit_notebook.png deleted file mode 100644 index d99cfe9d..00000000 Binary files a/erp_web/images/edit_notebook.png and /dev/null differ diff --git a/erp_web/images/edit_pencil.png b/erp_web/images/edit_pencil.png deleted file mode 100644 index 8cbc2746..00000000 Binary files a/erp_web/images/edit_pencil.png and /dev/null differ diff --git a/erp_web/images/edit_set.png b/erp_web/images/edit_set.png deleted file mode 100644 index 9b244398..00000000 Binary files a/erp_web/images/edit_set.png and /dev/null differ diff --git a/erp_web/images/edit_time.gif b/erp_web/images/edit_time.gif deleted file mode 100644 index bb2f0746..00000000 Binary files a/erp_web/images/edit_time.gif and /dev/null differ diff --git a/erp_web/images/evernote-alt.png b/erp_web/images/evernote-alt.png deleted file mode 100644 index 9cb455ec..00000000 Binary files a/erp_web/images/evernote-alt.png and /dev/null differ diff --git a/erp_web/images/favicon.ico b/erp_web/images/favicon.ico deleted file mode 100644 index 0cea3f1b..00000000 Binary files a/erp_web/images/favicon.ico and /dev/null differ diff --git a/erp_web/images/house.png b/erp_web/images/house.png deleted file mode 100644 index 8df234ff..00000000 Binary files a/erp_web/images/house.png and /dev/null differ diff --git a/erp_web/images/loading1.gif b/erp_web/images/loading1.gif deleted file mode 100644 index 788f9921..00000000 Binary files a/erp_web/images/loading1.gif and /dev/null differ diff --git a/erp_web/images/lock_unlock.png b/erp_web/images/lock_unlock.png deleted file mode 100644 index 535dc1dd..00000000 Binary files a/erp_web/images/lock_unlock.png and /dev/null differ diff --git a/erp_web/images/logo.png b/erp_web/images/logo.png deleted file mode 100644 index a2cd73f2..00000000 Binary files a/erp_web/images/logo.png and /dev/null differ diff --git a/erp_web/images/man.png b/erp_web/images/man.png deleted file mode 100644 index 66ded5d5..00000000 Binary files a/erp_web/images/man.png and /dev/null differ diff --git a/erp_web/images/navtop_home.gif b/erp_web/images/navtop_home.gif deleted file mode 100644 index 1a865701..00000000 Binary files a/erp_web/images/navtop_home.gif and /dev/null differ diff --git a/erp_web/images/navtop_logout.gif b/erp_web/images/navtop_logout.gif deleted file mode 100644 index eaa8c286..00000000 Binary files a/erp_web/images/navtop_logout.gif and /dev/null differ diff --git a/erp_web/images/progressBar_m.gif b/erp_web/images/progressBar_m.gif deleted file mode 100644 index 5a4f384a..00000000 Binary files a/erp_web/images/progressBar_m.gif and /dev/null differ diff --git a/erp_web/images/receipt-excel.png b/erp_web/images/receipt-excel.png deleted file mode 100644 index e36dfc31..00000000 Binary files a/erp_web/images/receipt-excel.png and /dev/null differ diff --git a/erp_web/images/time.png b/erp_web/images/time.png deleted file mode 100644 index 67176824..00000000 Binary files a/erp_web/images/time.png and /dev/null differ diff --git a/erp_web/images/user-red.png b/erp_web/images/user-red.png deleted file mode 100644 index bdd2e4d1..00000000 Binary files a/erp_web/images/user-red.png and /dev/null differ diff --git a/erp_web/images/user.png b/erp_web/images/user.png deleted file mode 100644 index c4b84e2e..00000000 Binary files a/erp_web/images/user.png and /dev/null differ diff --git a/erp_web/images/user_business_boss.png b/erp_web/images/user_business_boss.png deleted file mode 100644 index 0ac1ddb0..00000000 Binary files a/erp_web/images/user_business_boss.png and /dev/null differ diff --git a/erp_web/images/user_suit.png b/erp_web/images/user_suit.png deleted file mode 100644 index bf9321d3..00000000 Binary files a/erp_web/images/user_suit.png and /dev/null differ diff --git a/erp_web/images/vavtop_help.gif b/erp_web/images/vavtop_help.gif deleted file mode 100644 index 85accc6f..00000000 Binary files a/erp_web/images/vavtop_help.gif and /dev/null differ diff --git a/erp_web/index.html b/erp_web/index.html deleted file mode 100644 index 0bbd93c0..00000000 --- a/erp_web/index.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - - - - 华夏ERP - - - - - - - - - - - - - - -
- - - -
- -
- -
-
-
-
- - - - - - - - -
- - - - - - \ No newline at end of file diff --git a/erp_web/js/Huploadify/Huploadify.css b/erp_web/js/Huploadify/Huploadify.css deleted file mode 100644 index 031064fe..00000000 --- a/erp_web/js/Huploadify/Huploadify.css +++ /dev/null @@ -1,66 +0,0 @@ -@charset "utf-8"; -/* CSS Document */ -.uploadify-button{ - float: left; - display:inline-block; - border:1px solid #808080; - background-color: #707070; - line-height:24px; - border-radius:12px; - padding:0 18px; - font-size:12px; - font-weight: 600; - font-family: '微软雅黑'; - color:#FFF; - cursor:pointer; - text-decoration:none; -} -.uploadify-button:hover{ - background-color: #888; -} -.uploadfile{ - width:0; -} -.uploadify-queue .uploadify-queue-item{ - list-style-type:none; -} -.uploadbtn,.delfilebtn,.showfilebtn{ - display:inline-block; - border:1px solid #999; - line-height:24px; - border-radius:4px; - padding:0 18px; - font-size:12px; - color:#666; - cursor:pointer; - background:url(images/btnbg.png) repeat-x 0 0; - text-decoration:none; -} -.up_filename,.progressnum,.delfilebtn,.uploadbtn,.up_percent{ - font-size:12px; - color:#666; - margin-left:10px; -} -.showfilebtn{ - font-size:12px; - color: blue; - margin-left:10px; - border: 1px blue solid; -} -.uploadify-progress{ - display:inline-block; - width:200px; - height:10px; - background-color:white; - border-radius:20px; - border:2px groove #666; - vertical-align:middle; - padding:0; - margin-left: 10px; -} -.uploadify-progress-bar{ - width:0; - height:100%; - border-radius:20px; - background-color: #0099FF; - } diff --git a/erp_web/js/Huploadify/jquery.Huploadify.js b/erp_web/js/Huploadify/jquery.Huploadify.js deleted file mode 100644 index 149f92d9..00000000 --- a/erp_web/js/Huploadify/jquery.Huploadify.js +++ /dev/null @@ -1,282 +0,0 @@ -(function($){ -$.fn.Huploadify = function(opts){ - var itemTemp = '
${fileName}上传删除
'; - var defaults = { - fileTypeExts:'',//允许上传的文件类型,格式'*.jpg;*.doc' - uploader:'',//文件提交的地址 - auto:false,//是否开启自动上传 - method:'post',//发送请求的方式,get或post - multi:false,//是否允许选择多个文件 - maxFileNumber:10, //最多能上传的文件数量 - formData:null,//发送给服务端的参数,格式:{key1:value1,key2:value2} - fileObj:'jarFile',//在后端接受文件的参数:文件 - fileObjName:'fileName',//在后端接受文件的参数:文件名称 - fileSizeLimit:2048,//允许上传的文件大小,单位KB - showUploadedPercent:true,//是否实时显示上传的百分比,如20% - showUploadedSize:false,//是否实时显示已上传的文件大小,如1M/2M - buttonText:'选择文件',//上传按钮上的文字 - removeTimeout: 1000,//上传完成后进度条的消失时间 - itemTemplate:itemTemp,//上传队列显示的模板 - onUploadStart:null,//上传开始时的动作 - onUploadSuccess:null,//上传成功的动作 - onUploadComplete:null,//上传完成的动作 - onUploadError:null, //上传失败的动作 - onInit:null,//初始化时的动作 - onCancel:null//删除掉某个文件后的回调函数,可传入参数file - } - - var option = $.extend(defaults,opts); - - //将文件的单位由bytes转换为KB或MB,若第二个参数指定为true,则永远转换为KB - var formatFileSize = function(size,byKB){ - if (size> 1024 * 1024&&!byKB){ - size = (Math.round(size * 100 / (1024 * 1024)) / 100).toString() + 'MB'; - } - else{ - size = (Math.round(size * 100 / 1024) / 100).toString() + 'KB'; - } - return size; - } - //根据文件序号获取文件 - var getFile = function(index,files){ - for(var i=0;i