All voucher routes now work with bundles.

Need to check / update all reports and prints
This commit is contained in:
2026-02-05 00:46:49 +00:00
parent 6e8843d3c4
commit 8957e4ce8c
53 changed files with 1133 additions and 899 deletions
@@ -6,7 +6,6 @@ import { ActivatedRoute, RouterLink } from '@angular/router';
import { ProductQuery } from '../../core/product-query';
import { BillService } from '../bill.service';
import { ProductLink } from '../bills/product-link';
@Component({
selector: 'app-products',
@@ -31,6 +30,6 @@ export class ProductsComponent implements OnInit {
if (product.isNotAvailable) {
return;
}
this.bs.addSku(new ProductLink(product), 1, 0);
this.bs.addOneSku(product);
}
}