fixed crud list

fixed payments
upload -a
This commit is contained in:
2025-07-23 11:08:25 +03:00
parent a4a91e0053
commit 4603953458
53 changed files with 1512 additions and 1078 deletions
+20
View File
@@ -37,4 +37,24 @@ insert into accounts_clientpermission (id, codename, name) values (5, 'can_view_
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);