|
|
|
@ -79,8 +79,8 @@ CREATE TABLE `accounting_invoices` (
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|
|
|
|
|
|
|
|
|
|
-- 插入发票菜单
|
|
|
|
|
SELECT * FROM `system_menu` WHERE `name`='会计档案';
|
|
|
|
|
SET @menuId = LAST_INSERT_ID();
|
|
|
|
|
SELECT `id` INTO @menuId FROM `system_menu` WHERE `name`='会计档案';
|
|
|
|
|
|
|
|
|
|
INSERT INTO `lyr-one`.`system_menu`(`name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `component_name`, `status`, `visible`, `keep_alive`, `always_show`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES ('发票管理', '', 2, 0, @menuId, 'invoices', '', 'accounting/invoices/index', 'Invoices', 0, b'1', b'1', b'1', '', '2023-09-20 14:03:48', '', '2023-09-20 14:03:48', b'0');
|
|
|
|
|
SET @menuId2 = LAST_INSERT_ID();
|
|
|
|
|
INSERT INTO `lyr-one`.`system_menu`(`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `component_name`, `status`, `visible`, `keep_alive`, `always_show`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (NULL, '发票查询', 'accounting:invoices:query', 3, 1, @menuId2, '', '', '', NULL, 0, b'1', b'1', b'1', '', '2023-09-20 14:03:48', '', '2023-09-20 14:03:48', b'0');
|
|
|
|
|