mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-05 22:26:07 +00:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
import BulkActionsController from "./bulk_actions_controller";
|
|
|
|
export default class extends BulkActionsController {
|
|
connect() {
|
|
super.connect();
|
|
}
|
|
|
|
generate() {
|
|
this.stimulate("Admin::OrdersReflex#bulk_invoice", { bulk_ids: super.getSelectedIds() });
|
|
}
|
|
}
|