added project

This commit is contained in:
2025-11-13 14:55:33 +01:00
commit 5e1feea164
45 changed files with 9737 additions and 0 deletions

View File

View File

@@ -0,0 +1 @@
<p>deliverer works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-deliverer',
imports: [],
templateUrl: './deliverer.html',
styleUrl: './deliverer.css',
})
export class Deliverer {
}

View File

@@ -0,0 +1 @@
<p>delivery-note works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-delivery-note',
imports: [],
templateUrl: './delivery-note.html',
styleUrl: './delivery-note.css',
})
export class DeliveryNote {
}

View File

@@ -0,0 +1 @@
<p>purchase-order works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-purchase-order',
imports: [],
templateUrl: './purchase-order.html',
styleUrl: './purchase-order.css',
})
export class PurchaseOrder {
}

View File

View File

@@ -0,0 +1 @@
<p>quotation works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-quotation',
imports: [],
templateUrl: './quotation.html',
styleUrl: './quotation.css',
})
export class Quotation {
}

View File

View File

@@ -0,0 +1 @@
<p>stock works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-stock',
imports: [],
templateUrl: './stock.html',
styleUrl: './stock.css',
})
export class Stock {
}

View File

View File

@@ -0,0 +1 @@
<p>supplier works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-supplier',
imports: [],
templateUrl: './supplier.html',
styleUrl: './supplier.css',
})
export class Supplier {
}

View File

View File

@@ -0,0 +1 @@
<p>user works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-user',
imports: [],
templateUrl: './user.html',
styleUrl: './user.css',
})
export class User {
}

View File

View File

@@ -0,0 +1 @@
<p>welcome works!</p>

View File

@@ -0,0 +1,6 @@
import { Routes } from '@angular/router';
import { Welcome } from './welcome';
export const WELCOME_ROUTES: Routes = [
{ path: '', component: Welcome },
];

View File

@@ -0,0 +1,9 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-welcome',
imports: [],
templateUrl: './welcome.html',
styleUrl: './welcome.css'
})
export class Welcome {}