Skip to content

Commit

Permalink
PO number now accepts letters and symbols (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
facosta-eb authored Jun 17, 2020
1 parent 288e6fb commit f0e35a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invoices_app/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Meta:
)
widgets = {
'currency': forms.Select(attrs={'class': 'custom-select'}),
'po_number': forms.NumberInput(attrs={'class': 'form-control', 'placeholder': _('e.g. 124246346')}),
'po_number': forms.TextInput(attrs={'class': 'form-control', 'placeholder': _('e.g. 124246346')}),
'vat': forms.NumberInput(
attrs={
'id': 'vat',
Expand Down

0 comments on commit f0e35a2

Please sign in to comment.