feat: implement change password and send to fiscal activation modules with forms and services

This commit is contained in:
2026-05-24 10:44:35 +03:30
parent 12752f37d5
commit f18d7a1f04
20 changed files with 247 additions and 117 deletions
@@ -4,10 +4,17 @@ import { InputComponent } from '../input/input.component';
@Component({
selector: 'field-unit-price',
template: `<app-input label="قیمت پایه" [control]="control" [name]="name" type="price" />`,
template: `<app-input
label="قیمت پایه"
[control]="control"
[name]="name"
[hint]="hint"
type="price"
/>`,
imports: [ReactiveFormsModule, InputComponent],
})
export class UnitPriceComponent {
@Input({ required: true }) control = new FormControl<string>('');
@Input() name = 'unit_price';
@Input() hint = '';
}