Implement Supplier AutoSupplierPayment. closes #100 #105

Merged
CodeSteak merged 2 commits from feature/supplier_auto_payment into master 2020-06-21 22:13:42 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 7fafd14715 - Show all commits

View File

@ -273,7 +273,7 @@ class CronjobController {
final DashboardCronjob dashboardCronjob = null;
@Autowired
final AutoSupplierPayment AutoSupplierPaymentJob = null;
final AutoSupplierPayment autoSupplierPaymentJob = null;
Outdated
Review

Kleinigkeit zu Naming Conventions: Der Anfangsbuchstabe des Namens müsste klein sein.

Kleinigkeit zu Naming Conventions: Der Anfangsbuchstabe des Namens müsste klein sein.
Review

fixed in 7fafd14715

fixed in 7fafd14715
@PostConstruct
public void init() {
@ -286,7 +286,7 @@ class CronjobController {
// Register all existing cronjobs
map.put(BackgroundJob.JOB_REORDER, reorderJob);
map.put(BackgroundJob.JOB_DASHBOARD, dashboardCronjob);
map.put(BackgroundJob.JOB_SUPPLIER_AUTO_PAYMENT, AutoSupplierPaymentJob);
map.put(BackgroundJob.JOB_SUPPLIER_AUTO_PAYMENT, autoSupplierPaymentJob);
return Collections.unmodifiableMap(map);
}