You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
4.3 KiB
Plaintext
61 lines
4.3 KiB
Plaintext
insert into common_containerkindmodel values(1, 'Standart', '', '');
|
|
insert into common_containerkindmodel values(2, 'Reefer', '', '');
|
|
insert into common_containerkindmodel values(3, 'Opentop', '', '');
|
|
insert into common_containerkindmodel values(4, 'FlatRack', '', '');
|
|
insert into common_containerkindmodel values(5, 'Tank', '', '');
|
|
insert into common_containerkindmodel values(6, 'Platform', '', '');
|
|
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(1, '20GP', 20, false, 1, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(2, '40GP', 40, false, 1, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(3, '40HC', 40, true, 1, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(4, '20RF', 20, false, 2, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(5, '40RF', 40, false, 2, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(6, '20OT', 20, false, 3, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(7, '40OT', 40, false, 3, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(8, '20FR', 20, false, 4, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(9, '20FRPL', 20, false, 6, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(10, '45HC', 45, true, 1, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(11, '40FRPL', 40, false, 6, false);
|
|
insert into common_containertypemodel (id, name, length, height, container_type_id, deleted) values(12, '40HR', 40, true, 2, false);
|
|
|
|
insert into common_companymodel (id, name, short_name, description) values (1, 'GMS', 'GMS', 'Global Maritime Servises');
|
|
insert into common_companymodel (id, name, short_name, description) values (2, 'TO', 'TO', 'Терминален оператор');
|
|
|
|
insert into common_linesmodel (id, name, short_name, description, company_id) values (1, 'GMS', 'GMS', 'GMS line', 1);
|
|
insert into common_linesmodel (id, name, short_name, description, company_id) values (2, 'HPG', 'HPG', 'Hapag Lloyds line', 1);
|
|
insert into common_linesmodel (id, name, short_name, description, company_id) values (3, 'TO', 'TO', 'Терминален оператор line', 2);
|
|
|
|
insert into accounts_employeepermission (id, codename, name) values (1, 'can_manage_containers', 'Can manage containers');
|
|
insert into accounts_employeepermission (id, codename, name) values (2, 'can_view_reports', 'Can view reports');
|
|
insert into accounts_employeepermission (id, codename, name) values (3, 'can_handle_operations', 'Can handle operations');
|
|
|
|
insert into accounts_clientpermission (id, codename, name) values (1, 'can_view_booking', 'Can view booking');
|
|
insert into accounts_clientpermission (id, codename, name) values (2, 'can_manage_booking', 'Can book container');
|
|
insert into accounts_clientpermission (id, codename, name) values (3, 'can_view_preinfo', 'Can view preinfo');
|
|
insert into accounts_clientpermission (id, codename, name) values (4, 'can_manage_preinfo', 'Can manage preinfo');
|
|
insert into accounts_clientpermission (id, codename, name) values (5, 'can_view_payment', 'Can view payment');
|
|
insert into accounts_clientpermission (id, codename, name) values (6, 'can_manage_payment', 'Can manage payment');
|
|
insert into accounts_clientpermission (id, codename, name) values (7, 'can_manage_company_users', 'Can manage company users');
|
|
|
|
INSERT INTO payments_containertariffperiod
|
|
(container_size, from_days, to_days, daily_rate)
|
|
VALUES
|
|
('20', 1, 3, 5.00),
|
|
('20', 4, 7, 10.00),
|
|
('20', 8, 15, 15.00),
|
|
('20', 16, NULL, 20.00);
|
|
|
|
-- For 40/45 feet containers
|
|
INSERT INTO payments_containertariffperiod
|
|
(container_size, from_days, to_days, daily_rate)
|
|
VALUES
|
|
('40', 1, 3, 10.00),
|
|
('40', 4, 7, 15.00),
|
|
('40', 8, 15, 20.00),
|
|
('40', 16, NULL, 25.00);
|
|
|
|
INSERT INTO payments_additionalfees
|
|
(reefer_daily_supplement, sweeping_fee, fumigation_fee)
|
|
VALUES
|
|
(3.00, 35.00, 75.00);
|