remove comment

This commit is contained in:
Bright 2024-11-13 09:07:44 +07:00
parent 9f48e5df1d
commit ba43e19aa5

View file

@ -3521,20 +3521,10 @@ export class CommandController extends Controller {
@Body()
body: {
refIds: string[];
// refIds: {
// refId: string;
// commandAffectDate: Date | null;
// commandNo: string | null;
// commandYear: number;
// templateDoc: string | null;
// amount: Double | null;
// positionSalaryAmount: Double | null;
// mouthSalaryAmount: Double | null;
// }[];
},
) {
const posMasters = await this.posMasterRepository.find({
where: { id: In(body.refIds/*.map((x) => x.refId)*/) },
where: { id: In(body.refIds) },
});
const data = posMasters.map((_data) => ({
..._data,