Skip to content

Commit

Permalink
Fix wrong motion text sent
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel committed Aug 14, 2024
1 parent 4904c98 commit 9c19d98
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { TreeIdNode } from 'src/app/infrastructure/definitions/tree';
import { NullablePartial } from 'src/app/infrastructure/utils';
import { AgendaListTitle } from 'src/app/site/pages/meetings/pages/agenda';
import { ViewMotion } from 'src/app/site/pages/meetings/pages/motions';
import { MotionFormatResult } from 'src/app/site/pages/meetings/pages/motions/services/common/motion-format.service';
import { TreeService } from 'src/app/ui/modules/sorting/modules/sorting-tree/services';

import { Motion } from '../../../../domain/models/motions/motion';
Expand Down Expand Up @@ -61,7 +62,7 @@ export class MotionRepositoryService extends BaseAgendaItemAndListOfSpeakersCont
useOriginalSubmitter: boolean,
useOriginalNumber: boolean,
useOriginalVersion: boolean,
...motions: any[]
...motions: MotionFormatResult[]
): Promise<{ success: number; partial: number }> {
const payloads: any[][] = [];
motions.forEach(motion => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ export class MotionForwardDialogService extends BaseDialogService<
const motionIds = toForward.map(motion => motion.id);
await this.modelRequest.fetch(getMotionForwardDataSubscriptionConfig(...motionIds));
const forwardMotions = toForward.map(motion =>
this.formatService.formatMotionForForward(this.repo.getViewModel(motion.id))
this.formatService.formatMotionForForward(
this.repo.getViewModel(motion.id),
dialogData.useOriginalVersion
)
);
const result = await this.repo.createForwarded(
toMeetingIds,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ViewMotion } from '../../../view-models';
import { AmendmentControllerService } from '../amendment-controller.service';
import { MotionLineNumberingService } from '../motion-line-numbering.service';

interface MotionFormatResult {
export interface MotionFormatResult {
origin_id: Id;
title: string;
text: string;
Expand Down Expand Up @@ -114,16 +114,19 @@ export class MotionFormatService {
* Format the motion for forwarding, tries to get the mod final version or the
* final version with all unified changes
*/
public formatMotionForForward(motion: ViewMotion): MotionFormatResult {
public formatMotionForForward(motion: ViewMotion, useOriginal?: boolean): MotionFormatResult {
const lineLength = this.settings.instant(`motions_line_length`);
const finalMotionText = this.getFinalMotionText(motion, lineLength!);
const textWithoutLines = this.lineNumberingService.stripLineNumbers(finalMotionText);
let text = motion.text;
if (!useOriginal) {
const finalMotionText = this.getFinalMotionText(motion, lineLength!);
text = this.lineNumberingService.stripLineNumbers(finalMotionText);
}

return {
origin_id: motion.id,
title: this.getFinalTitle(motion, lineLength),
reason: motion.reason || ``,
text: textWithoutLines
text
};
}

Expand Down

0 comments on commit 9c19d98

Please sign in to comment.