-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathFacturacion.Helper.pas
461 lines (410 loc) · 15.6 KB
/
Facturacion.Helper.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
unit Facturacion.Helper;
interface
uses Facturacion.Comprobante,
{$IF CompilerVersion >= 23}
System.SysUtils,
System.Types
{$ELSE}
{$IF CompilerVersion < 17}
Windows,
{$IFEND}
SysUtils,
Types
{$IFEND};
//const
type
TResultadoVerificacionRedondeo = record
Valido: Boolean;
LimiteInferior: Extended;
LimiteSuperior: Extended;
end;
TFacturacionHelper = class
class function UTF8ToBytes(const s: TCadenaUTF8): TByteDynArray; // sacada de http://stackoverflow.com/questions/5233480/string-to-byte-array-in-utf-8
class function BytesToUTF8(const ABytes: TByteDynArray): TCadenaUTF8; // sacada de http://stackoverflow.com/questions/5233480/string-to-byte-array-in-utf-8
class function Decode64(S: String): TByteDynArray; // http://delphiaccess.com/foros/index.php/topic/11984-base64/
class function Encode64(Bin: PByte; Count: integer): String; // http://delphiaccess.com/foros/index.php/topic/11984-base64/
class function FileToByteArray( const FileName : string ) : TByteDynArray;
class function FixedWideStringToArray(const aFixedWideString: WideString; const aElementFixedSize: Integer): TStringDynArray;
class function ComoCantidad(const aValor: Double) : string;
class function ComoMoneda(const aValor: Currency; const aNumeroDecimales: Integer = 2): string;
class function ComoFechaISO8601(const aFecha: TDateTime): string;
class function ComoTasa(const aPorcentaje: Double): String;
class function ComoPorcentaje(const aPorcentaje: Double): String;
class function ComoTasaImpuestoLocal(const aPorcentaje: Double): String;
class function DesdeCantidad(const aCantidad: String): Double;
class function DesdeFechaISO8601(const aCadenaFecha: String): TDateTime;
class function DesdeMoneda(aMoneda: String): Currency;
class function DesdeTasa(const aTasa: String): Double;
class function LimpiarCaracteresInvalidos(const aCadena: string): string;
class function VerificarImporteEnRangoDeRedondeo(const aCantidad: Double; const
aValorUnitario: Double; const aImporte: Currency):
TResultadoVerificacionRedondeo;
class function ObtenerConfiguracionRegionalLocal: TFormatSettings; //devuelve configuracion regional con la corrección del punto decimal
class function ObtenerConfiguracionRegionalLocalISO8601: TFormatSettings; //devuelve configuracion regional en formato ISO8601
class procedure AgregarSchemaLocation(const aComprobante: IComprobanteFiscal; const aCadena: String);
class procedure CorregirConfiguracionRegionalLocal; deprecated; // ya no son necesarias en Delphi7 o superior
class procedure RegresarConfiguracionRegionalLocal; deprecated; // ya no son necesarias en Delphi7 o superior
class procedure ReemplazarComaSiActuaComoPuntoDecimal(var aCadenaCatidad: String);
end;
implementation
uses
{$IF CompilerVersion >= 23}
System.Math,
System.StrUtils,
Soap.XSBuiltIns
{$ELSE}
Math,
StrUtils,
XSBuiltIns
{$IFEND}
{$IFDEF CODESITE}
,CodeSiteLogging
{$ENDIF};
var
separadorDecimalAnterior: Char;
separadorDeMiles: Char;
formatSettingsLocal : TFormatSettings;
formatSettingsLocalISO8601 : TFormatSettings;
const
_PUNTO_DECIMAL = '.';
_COMA_DECIMAL = ',';
SB64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
IB64: array[#0..#255] of integer = (
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $3E, $FF, $FF, $FF, $3F,
$34, $35, $36, $37, $38, $39, $3A, $3B, $3C, $3D, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $00, $01, $02, $03, $04, $05, $06, $07, $08, $09, $0A, $0B, $0C, $0D, $0E,
$0F, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $FF, $FF, $FF, $FF, $FF,
$FF, $1A, $1B, $1C, $1D, $1E, $1F, $20, $21, $22, $23, $24, $25, $26, $27, $28,
$29, $2A, $2B, $2C, $2D, $2E, $2F, $30, $31, $32, $33, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF,
$FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF, $FF
);
Type
SAByte = Array[0..0] of Byte;
PSAByte = ^SAByte;
{ TFacturacionHelper }
class procedure TFacturacionHelper.CorregirConfiguracionRegionalLocal;
begin
// Debido a que si el usuario en la PC tiene una configuración regional incorrecta
// los XMLs se generan con montos y cantidades inválidas
separadorDecimalAnterior := formatSettingsLocal.DecimalSeparator;
separadorDeMiles := formatSettingsLocal.ThousandSeparator;
// Indicamos que el separador Decimal será el punto
formatSettingsLocal.DecimalSeparator := _PUNTO_DECIMAL;
//formatSettingsLocal.ThousandSeparator := _COMA_DECIMAL;
end;
class procedure TFacturacionHelper.RegresarConfiguracionRegionalLocal;
begin
formatSettingsLocal.DecimalSeparator := separadorDecimalAnterior;
formatSettingsLocal.ThousandSeparator := separadorDeMiles;
end;
// sacada de http://stackoverflow.com/questions/5233480/string-to-byte-array-in-utf-8
class function TFacturacionHelper.UTF8ToBytes(
const s: TCadenaUTF8): TByteDynArray;
begin
{$IF Compilerversion >= 20}
Assert(StringElementSize(s) = 1)
{$IFEND};
SetLength(Result, Length(s));
if Length(Result) > 0 then
Move(s[1], Result[0], Length(s));
end;
class procedure TFacturacionHelper.AgregarSchemaLocation(
const aComprobante: IComprobanteFiscal; const aCadena: String);
var
schemaLocation : String;
begin
schemaLocation := aComprobante.Attributes['xsi:schemaLocation'];
aComprobante.SetAttribute('xsi:schemaLocation',
schemaLocation + ' ' + aCadena);
aComprobante.Resync;
end;
class function TFacturacionHelper.BytesToUTF8(
const ABytes: TByteDynArray): TCadenaUTF8;
begin
SetLength(Result, Length(ABytes));
if Length(Result) > 0 then
Move(abytes[0], Result[1], Length(ABytes));
end;
class function TFacturacionHelper.ComoCantidad(const aValor: Double): string;
begin
// Anexo 20:
// "En este campo se debe registrar la cantidad de bienes o servicios que
// correspondan a cada concepto, puede contener de cero hasta seis decimales."
try
//CorregirConfiguracionRegionalLocal;
Result := FormatFloat('0.####', aValor, formatSettingsLocal); //FloatToStrF(aValor, ffFixed, 20, 4);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class function TFacturacionHelper.ComoTasa(const aPorcentaje: Double): String;
begin
try
//CorregirConfiguracionRegionalLocal;
Result := Format('%1.6f', [aPorcentaje / 100], formatSettingsLocal);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class function TFacturacionHelper.ComoTasaImpuestoLocal(const aPorcentaje: Double): String;
begin
try
//CorregirConfiguracionRegionalLocal;
Result := Format('%1.2f', [aPorcentaje], formatSettingsLocal);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class function TFacturacionHelper.ComoPorcentaje(const aPorcentaje: Double): String;
begin
try
//CorregirConfiguracionRegionalLocal;
Result := Format('%1.2f', [aPorcentaje], formatSettingsLocal);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class function TFacturacionHelper.DesdeTasa(const aTasa: String): Double;
begin
try
//CorregirConfiguracionRegionalLocal;
Result := (StrToFloat(aTasa, formatSettingsLocal) * 100);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class function TFacturacionHelper.Encode64(Bin: PByte; Count: integer): String;
var
B0, B1, B2: BYTE;
ABin: PSAByte;
L, n, i: integer;
begin
if Count = 0 then exit;
ABin:= PSAByte(Bin);
n:= 0;
i:=1;
L:= ((Count+2) div 3)*4;
SetLength(Result, L);
repeat
B0:= ABin^[n];
B1:= 0; B2:= 0;
if (Count - n) > 0 then B1:= ABin^[n+1];
if (Count - n) > 1 then B2:= ABin^[n+2];
Result[i]:= SB64[(B0 shr 2) and $003F +1];
Result[i+1]:= SB64[((B0 shl 4) or (B1 shr 4)) and $3F +1];
Result[i+2]:= SB64[((B1 shl 2) or (B2 shr 6)) and $3F +1];
Result[i+3]:= SB64[(B2 and $3F) +1];
inc(n,3);
inc(i,4);
until n >= Count;
if n - Count >= 1 then Result[L]:= '=';
if n - Count = 2 then Result[L-1]:= '=';
end;
class function TFacturacionHelper.FileToByteArray(
const FileName: string): TByteDynArray;
const BLOCK_SIZE=1024;
var BytesRead, BytesToWrite, Count : integer;
F : FIle of Byte;
pTemp : Pointer;
begin
AssignFile( F, FileName );
Reset(F);
try
Count := FileSize( F );
SetLength(Result, Count );
pTemp := @Result[0];
BytesRead := BLOCK_SIZE;
while (BytesRead = BLOCK_SIZE ) do
begin
BytesToWrite := Min(Count, BLOCK_SIZE);
BlockRead(F, pTemp^, BytesToWrite , BytesRead );
pTemp := Pointer(LongInt(pTemp) + BLOCK_SIZE);
Count := Count-BytesRead;
end;
finally
CloseFile( F );
end;
end;
class function TFacturacionHelper.FixedWideStringToArray(
const aFixedWideString: WideString;
const aElementFixedSize: Integer): TStringDynArray;
var
i : integer;
begin
SetLength(result, Length(aFixedWideString) div aElementFixedSize);
if Length(aFixedWideString) > 0 then
begin
for i := 1 to Length(aFixedWideString) div aElementFixedSize do
begin
SetLength(result[i-1], Length(aFixedWideString));
result[i-1] := aFixedWideString;
end;
end;
end;
class function TFacturacionHelper.LimpiarCaracteresInvalidos(
const aCadena: string): string;
function StrippedOfNonAscii(const s: string): string;
var
i, Count: Integer;
begin
SetLength(Result, Length(s));
Count := 0;
for i := 1 to Length(s) do begin
if ((s[i] >= #32) and (s[i] <= #127)) or (s[i] in [#10, #13]) or (AnsiPos(S[i], 'ÑñáÁéÉíÍóÓúÚüÜ') > 0) then
begin
inc(Count);
Result[Count] := s[i];
end;
end;
SetLength(Result, Count);
end;
begin
Result := StringReplace(StrippedOfNonAscii(aCadena), '|', '',[rfReplaceAll, rfIgnoreCase]);
end;
class function TFacturacionHelper.ObtenerConfiguracionRegionalLocal: TFormatSettings;
begin
result := formatSettingsLocal;
end;
class function TFacturacionHelper.ObtenerConfiguracionRegionalLocalISO8601: TFormatSettings;
begin
result := formatSettingsLocalISO8601;
end;
class function TFacturacionHelper.Decode64(S: String): TByteDynArray;
var
B: array[0..3] of BYTE;
L, n, i, j: integer;
begin
n:= 1;
i:= 0;
L:= Length(S);
if L < 4 then exit;
while S[L] = '=' do dec(L);
SetLength(Result, (L*3) div 4);
repeat
for j:= 0 to 3 do
begin
while (n < L) and (IB64[S[n]] = $FF) do inc(n); B[j]:= IB64[S[n]]; inc(n);
end;
Result[i]:= (B[0] shl 2) or (B[1] shr 4);
if B[2] = 255 then break;
Result[i+1]:= (B[1] shl 4) or (B[2] shr 2);
if B[3] = 255 then break;
Result[i+2]:= (B[2] shl 6) or B[3];
inc(i, 3);
until n > L;
end;
class function TFacturacionHelper.DesdeCantidad(const aCantidad: String): Double;
begin
try
//CorregirConfiguracionRegionalLocal;
Result := (StrToFloat(aCantidad, formatSettingsLocal));
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class procedure TFacturacionHelper.ReemplazarComaSiActuaComoPuntoDecimal(var aCadenaCatidad: String);
begin
// Reemplazamos cualquier coma por el simbolo de punto
aCadenaCatidad := StringReplace(aCadenaCatidad,
_COMA_DECIMAL,
_PUNTO_DECIMAL,
[rfReplaceAll]);
end;
class function TFacturacionHelper.DesdeMoneda(aMoneda: String): Currency;
begin
try
//CorregirConfiguracionRegionalLocal;
ReemplazarComaSiActuaComoPuntoDecimal(aMoneda);
Result := StrToCurr(aMoneda, formatSettingsLocal);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
// "Se expresa en la forma aaaa-mm-ddThh:mm:ss, de acuerdo con la especificación ISO 8601"
class function TFacturacionHelper.ComoFechaISO8601(const aFecha: TDateTime): string;
begin
Result := AnsiReplaceStr(FormatDateTime('yyyy-mm-dd', aFecha) + 'T' + FormatDateTime('hh:nn:ss', aFecha), {$IF CompilerVersion >=15}FormatSettingsLocal.{$IFEND}TimeSeparator, ':');
end;
class function TFacturacionHelper.ComoMoneda(const aValor: Currency; const
aNumeroDecimales: Integer = 2): string;
begin
// NOTA: Esta moneda es para el XML, NO debe llevar simbolo de moneda
try
//CorregirConfiguracionRegionalLocal;
if (Frac(aValor) = 0) And (aValor = 0) then
Result := CurrToStrF(aValor, ffFixed, 0, formatSettingsLocal)
else
Result := CurrToStrF(aValor, ffFixed, aNumeroDecimales, formatSettingsLocal);
finally
//RegresarConfiguracionRegionalLocal;
end;
end;
class function TFacturacionHelper.DesdeFechaISO8601(
const aCadenaFecha: String): TDateTime;
begin
{$DEFINE USAR_XSDATETIME}
{$IFDEF USAR_XSDATETIME}
with TXSDateTime.Create() do
try
XSToNative(aCadenaFecha);
Result := AsUTCDateTime;
finally
Free;
end;
{$ELSE}
result := StrToDateTime( AnsiReplaceStr(aCadenaFecha,'T',' '), formatSettingsLocalISO8601 );
{$ENDIF}
end;
class function TFacturacionHelper.VerificarImporteEnRangoDeRedondeo(const
aCantidad: Double; const aValorUnitario: Double; const aImporte: Currency): TResultadoVerificacionRedondeo;
const
_NUMERO_DECIMALES_MXN = 2;
_BASE = 10;
begin
Result.LimiteInferior := 0;
Result.LimiteSuperior := 0;
if aCantidad <= 0 then
begin
Result.Valido := True;
exit;
end;
// Ref: http://www.fiscalia.com/publicaciones/10414
// http://www.sat.gob.mx/informacion_fiscal/factura_electronica/Documents/cfdv33.pdf
// Calculamos el limite inferior de acuerdo al Anexo 20
Result.limiteInferior := (aCantidad - RoundTo(IntPower(_BASE, _NUMERO_DECIMALES_MXN * -1)/2, -2)) *
(aValorUnitario - RoundTo(IntPower(_BASE,_NUMERO_DECIMALES_MXN * -1)/2, -2));
// Establecemos el tipo de redondeo a truncado a dos decimales para el limite inferior
Result.limiteInferior := Trunc(Result.limiteInferior * 100) / 100;
// Calculamos el limite superior de acuerdo al Anexo 20
Result.limiteSuperior := (aCantidad + RoundTo(IntPower(_BASE, -1 * _NUMERO_DECIMALES_MXN)/2, -2) - IntPower(_BASE,-12)) *
(aValorUnitario + RoundTo(IntPower(_BASE,_NUMERO_DECIMALES_MXN * -1)/2, -2) - IntPower(_BASE,-12));
// Para el limite superior, redondeamos "hacia arriba"
Result.limiteSuperior := Ceil(Result.limiteSuperior * 100) / 100;
// ¿El importe calculado, esta dentro de rango validado por el SAT?
Result.Valido := {$IF CompilerVersion >= 23}System.Math.{$ELSE}Math.{$IFEND}InRange(aImporte, Result.limiteInferior, Result.limiteSuperior);
end;
initialization
{$IF CompilerVersion >= 17}
formatSettingsLocal := TFormatSettings.Create;
formatSettingsLocalISO8601 := TFormatSettings.Create;
{$ELSE}
GetLocaleFormatSettings(LOCALE_SYSTEM_DEFAULT, formatSettingsLocal);
GetLocaleFormatSettings(LOCALE_SYSTEM_DEFAULT, formatSettingsLocalISO8601);
{$IFEND}
formatSettingsLocal.DecimalSeparator := _PUNTO_DECIMAL;
formatSettingsLocalISO8601.DecimalSeparator := _PUNTO_DECIMAL;
formatSettingsLocalISO8601.ThousandSeparator := _COMA_DECIMAL;
formatSettingsLocalISO8601.DateSeparator := '-';
formatSettingsLocalISO8601.TimeSeparator := ':';
formatSettingsLocalISO8601.ShortDateFormat := 'yyyy-mm-dd';
formatSettingsLocalISO8601.ShortTimeFormat := 'HH:mm:ss.sss';
end.