mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-14 04:04:23 +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() });
|
|
}
|
|
}
|