Skip to content

Commit

Permalink
Merge pull request #19 from djeisonselzlein/master
Browse files Browse the repository at this point in the history
Corrected Fone and Fax fields at Reg0005 in order to generate as empt…
  • Loading branch information
jean-merelis authored Mar 20, 2017
2 parents c09a4f2 + 9cdc67b commit 8e70f96
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
@Field(name = "num", maxLength = 10),
@Field(name = "compl", maxLength = 60),
@Field(name = "bairro", maxLength = 60),
@Field(name = "fone", length = 11, paddingIfNullOrEmpty = true, params = {DefaultStringHandler.PARAM_FILTER_NUMBER_ONLY}),
@Field(name = "fax", length = 11, paddingIfNullOrEmpty = true, params = {DefaultStringHandler.PARAM_FILTER_NUMBER_ONLY}),
@Field(name = "fone", maxLength = 11, params = {DefaultStringHandler.PARAM_FILTER_NUMBER_ONLY}),
@Field(name = "fax", maxLength = 11, params = {DefaultStringHandler.PARAM_FILTER_NUMBER_ONLY}),
@Field(name = "email")
})
@Getter
Expand Down

0 comments on commit 8e70f96

Please sign in to comment.