- Implement tests for the internet connections module, covering routes, IP range creation, and connection validation. - Add tests for the Invoice2DataService to validate extraction from GlobalConnect invoices. - Create tests for subscription network provisioning, ensuring proper handling of network items and IP allocations. - Include validation checks for subtotal mismatches and ensure error handling for missing IP selections.
9 lines
277 B
SQL
9 lines
277 B
SQL
UPDATE internet_connections_ip_ranges
|
|
SET service_address = 'Rydagervej 27, 2620 Albertslund',
|
|
customer_id = NULL,
|
|
monthly_cost = 64.00,
|
|
updated_at = CURRENT_TIMESTAMP
|
|
WHERE deleted_at IS NULL
|
|
AND provider_reference = 'NKA-020900'
|
|
AND cidr = '87.116.1.200/29';
|