Odoo Payment Provider Model

Odoo Payment Provider Model

Introduction

In this article, we will discuss the Odoo Payment Provider Model.

Odoo Payment Provider Model

Odoo Payment Provider Model is a model that allows you to manage payment providers in Odoo. Payment providers are used to process payments in Odoo. You can configure payment providers in Odoo to accept payments from customers using different payment methods such as credit cards, PayPal, bank transfers, etc.

The Payment Provider Model in Odoo allows you to create, edit, and delete payment providers. You can also configure payment methods for each payment provider. Payment methods define the payment options available to customers when making a payment.

Creating a Payment Provider

To create a payment provider in Odoo, follow these steps:

  1. Go to the Invoicing app.

  2. Click on the Configuration menu.

  3. Select Payment Acquirers.

  4. Click on the Create button to create a new payment provider.

  5. Enter the required information for the payment provider, such as the name, provider type, and provider account.

  6. Configure the payment methods for the payment provider.

  7. Save the changes.

Conclusion

In this article, we discussed the Odoo Payment Provider Model. We learned how to create a payment provider in Odoo and configure payment methods for the provider. Payment providers are essential for processing payments in Odoo, and you can use them to accept payments from customers using different payment methods.

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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
Field: name
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
manual: False
name: name
readonly: False
required: True
searchable: True
sortable: True
store: True
string: Name
translate: True
trim: True
type: char
Field: sequence
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: Define the display order
manual: False
name: sequence
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Sequence
type: integer
Field: code
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The technical code of this payment provider.
manual: False
name: code
readonly: False
required: True
searchable: True
selection: [['none', 'No Provider Set'], ['authorize', 'Authorize.Net'], ['paypal', 'PayPal'], ['aps', 'Amazon Payment Services']]
sortable: True
store: True
string: Code
type: selection
Field: state
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: In test mode, a fake payment is processed through a test payment interface.
This mode is advised when setting up the provider.
manual: False
name: state
readonly: False
required: True
searchable: True
selection: [['disabled', 'Disabled'], ['enabled', 'Enabled'], ['test', 'Test Mode']]
sortable: True
store: True
string: State
type: selection
Field: is_published
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: Whether the provider is visible on the website or not. Tokens remain functional but are only visible on manage forms.
manual: False
name: is_published
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Published
type: boolean
Field: company_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: []
exportable: True
groupable: True
manual: False
name: company_id
readonly: False
relation: res.company
required: True
searchable: True
sortable: True
store: True
string: Company
type: many2one
Field: main_currency_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: ['company_id.currency_id']
domain: []
exportable: True
groupable: True
help: The main currency of the company, used to display monetary fields.
manual: False
name: main_currency_id
readonly: True
related: company_id.currency_id
relation: res.currency
required: False
searchable: True
sortable: True
store: False
string: Currency
type: many2one
Field: payment_method_ids
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: []
exportable: True
groupable: True
manual: False
name: payment_method_ids
readonly: False
relation: payment.method
required: False
searchable: True
sortable: False
store: True
string: Supported Payment Methods
type: many2many
Field: allow_tokenization
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: This controls whether customers can save their payment methods as payment tokens.
A payment token is an anonymous link to the payment method details saved in the
provider's database, allowing the customer to reuse it for a next purchase.
manual: False
name: allow_tokenization
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Allow Saving Payment Methods
type: boolean
Field: capture_manually
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: Capture the amount from Odoo, when the delivery is completed.
Use this if you want to charge your customers cards only when
you are sure you can ship the goods to them.
manual: False
name: capture_manually
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Capture Amount Manually
type: boolean
Field: allow_express_checkout
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: This controls whether customers can use express payment methods. Express checkout enables customers to pay with Google Pay and Apple Pay from which address information is collected at payment.
manual: False
name: allow_express_checkout
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Allow Express Checkout
type: boolean
Field: redirect_form_view_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: [['type', '=', 'qweb']]
exportable: True
groupable: True
help: The template rendering a form submitted to redirect the user when making a payment
manual: False
name: redirect_form_view_id
readonly: False
relation: ir.ui.view
required: False
searchable: True
sortable: True
store: True
string: Redirect Form Template
type: many2one
Field: inline_form_view_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: [['type', '=', 'qweb']]
exportable: True
groupable: True
help: The template rendering the inline payment form when making a direct payment
manual: False
name: inline_form_view_id
readonly: False
relation: ir.ui.view
required: False
searchable: True
sortable: True
store: True
string: Inline Form Template
type: many2one
Field: token_inline_form_view_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: [['type', '=', 'qweb']]
exportable: True
groupable: True
help: The template rendering the inline payment form when making a payment by token.
manual: False
name: token_inline_form_view_id
readonly: False
relation: ir.ui.view
required: False
searchable: True
sortable: True
store: True
string: Token Inline Form Template
type: many2one
Field: express_checkout_form_view_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: [['type', '=', 'qweb']]
exportable: True
groupable: True
help: The template rendering the express payment methods' form.
manual: False
name: express_checkout_form_view_id
readonly: False
relation: ir.ui.view
required: False
searchable: True
sortable: True
store: True
string: Express Checkout Form Template
type: many2one
Field: available_country_ids
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: []
exportable: True
groupable: True
help: The countries in which this payment provider is available. Leave blank to make it available in all countries.
manual: False
name: available_country_ids
readonly: False
relation: res.country
required: False
searchable: True
sortable: False
store: True
string: Countries
type: many2many
Field: available_currency_ids
change_default: False
company_dependent: False
context: {'active_test': False}
default_export_compatible: False
depends: ['code']
domain: []
exportable: True
groupable: True
help: The currencies available with this payment provider. Leave empty not to restrict any.
manual: False
name: available_currency_ids
readonly: False
relation: res.currency
required: False
searchable: True
sortable: False
store: True
string: Currencies
type: many2many
Field: maximum_amount
aggregator: sum
change_default: False
company_dependent: False
currency_field: main_currency_id
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The maximum payment amount that this payment provider is available for. Leave blank to make it available for any payment amount.
manual: False
name: maximum_amount
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Maximum Amount
type: monetary
Field: pre_msg
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The message displayed to explain and help the payment process
manual: False
name: pre_msg
readonly: False
required: False
sanitize: True
sanitize_attributes: True
sanitize_style: False
sanitize_tags: True
searchable: True
sortable: True
store: True
string: Help Message
strip_classes: False
strip_style: False
translate: True
type: html
Field: pending_msg
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The message displayed if the order pending after the payment process
manual: False
name: pending_msg
readonly: False
required: False
sanitize: True
sanitize_attributes: True
sanitize_style: False
sanitize_tags: True
searchable: True
sortable: True
store: True
string: Pending Message
strip_classes: False
strip_style: False
translate: True
type: html
Field: auth_msg
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The message displayed if payment is authorized
manual: False
name: auth_msg
readonly: False
required: False
sanitize: True
sanitize_attributes: True
sanitize_style: False
sanitize_tags: True
searchable: True
sortable: True
store: True
string: Authorize Message
strip_classes: False
strip_style: False
translate: True
type: html
Field: done_msg
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The message displayed if the order is successfully done after the payment process
manual: False
name: done_msg
readonly: False
required: False
sanitize: True
sanitize_attributes: True
sanitize_style: False
sanitize_tags: True
searchable: True
sortable: True
store: True
string: Done Message
strip_classes: False
strip_style: False
translate: True
type: html
Field: cancel_msg
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The message displayed if the order is cancelled during the payment process
manual: False
name: cancel_msg
readonly: False
required: False
sanitize: True
sanitize_attributes: True
sanitize_style: False
sanitize_tags: True
searchable: True
sortable: True
store: True
string: Cancelled Message
strip_classes: False
strip_style: False
translate: True
type: html
Field: support_tokenization
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['code']
exportable: True
groupable: False
manual: False
name: support_tokenization
readonly: True
required: False
searchable: False
sortable: False
store: False
string: Tokenization
type: boolean
Field: support_manual_capture
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['code']
exportable: True
groupable: False
manual: False
name: support_manual_capture
readonly: True
required: False
searchable: False
selection: [['full_only', 'Full Only'], ['partial', 'Partial']]
sortable: False
store: False
string: Manual Capture Supported
type: selection
Field: support_express_checkout
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['code']
exportable: True
groupable: False
manual: False
name: support_express_checkout
readonly: True
required: False
searchable: False
sortable: False
store: False
string: Express Checkout
type: boolean
Field: support_refund
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['code']
exportable: True
groupable: False
help: Refund is a feature allowing to refund customers directly from the payment in Odoo.
manual: False
name: support_refund
readonly: True
required: False
searchable: False
selection: [['none', 'Unsupported'], ['full_only', 'Full Only'], ['partial', 'Full & Partial']]
sortable: False
store: False
string: Refund
type: selection
Field: image_128
attachment: True
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: False
manual: False
name: image_128
readonly: False
required: False
searchable: True
sortable: False
store: True
string: Image
type: binary
Field: color
aggregator: sum
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['state', 'module_state']
exportable: True
groupable: True
help: The color of the card in kanban view
manual: False
name: color
readonly: True
required: False
searchable: True
sortable: True
store: True
string: Color
type: integer
Field: module_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: []
exportable: True
groupable: True
manual: False
name: module_id
readonly: False
relation: ir.module.module
required: False
searchable: True
sortable: True
store: True
string: Corresponding Module
type: many2one
Field: module_state
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['module_id.state']
exportable: True
groupable: True
manual: False
name: module_state
readonly: True
related: module_id.state
required: False
searchable: True
selection: [['uninstallable', 'Uninstallable'], ['uninstalled', 'Not Installed'], ['installed', 'Installed'], ['to upgrade', 'To be upgraded'], ['to remove', 'To be removed'], ['to install', 'To be installed']]
sortable: True
store: False
string: Installation State
type: selection
Field: module_to_buy
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['module_id.to_buy']
exportable: True
groupable: True
manual: False
name: module_to_buy
readonly: True
related: module_id.to_buy
required: False
searchable: True
sortable: True
store: False
string: Odoo Enterprise Module
type: boolean
Field: id
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
manual: False
name: id
readonly: True
required: False
searchable: True
sortable: True
store: True
string: ID
type: integer
Field: display_name
change_default: False
company_dependent: False
default_export_compatible: False
depends: ['name']
exportable: True
groupable: False
manual: False
name: display_name
readonly: True
required: False
searchable: True
sortable: False
store: False
string: Display Name
translate: False
trim: True
type: char
Field: create_uid
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: []
exportable: True
groupable: True
manual: False
name: create_uid
readonly: True
relation: res.users
required: False
searchable: True
sortable: True
store: True
string: Created by
type: many2one
Field: create_date
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
manual: False
name: create_date
readonly: True
required: False
searchable: True
sortable: True
store: True
string: Created on
type: datetime
Field: write_uid
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: []
exportable: True
groupable: True
manual: False
name: write_uid
readonly: True
relation: res.users
required: False
searchable: True
sortable: True
store: True
string: Last Updated by
type: many2one
Field: write_date
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
manual: False
name: write_date
readonly: True
required: False
searchable: True
sortable: True
store: True
string: Last Updated on
type: datetime
Field: authorize_login
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The ID solely used to identify the account with Authorize.Net
manual: False
name: authorize_login
readonly: False
required: False
searchable: True
sortable: True
store: True
string: API Login ID
translate: False
trim: True
type: char
Field: authorize_transaction_key
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
manual: False
name: authorize_transaction_key
readonly: False
required: False
searchable: True
sortable: True
store: True
string: API Transaction Key
translate: False
trim: True
type: char
Field: authorize_signature_key
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
manual: False
name: authorize_signature_key
readonly: False
required: False
searchable: True
sortable: True
store: True
string: API Signature Key
translate: False
trim: True
type: char
Field: authorize_client_key
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The public client key. To generate directly from Odoo or from Authorize.Net backend.
manual: False
name: authorize_client_key
readonly: False
required: False
searchable: True
sortable: True
store: True
string: API Client Key
translate: False
trim: True
type: char
Field: paypal_email_account
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The public business email solely used to identify the account with PayPal
manual: False
name: paypal_email_account
readonly: False
required: False
searchable: True
sortable: True
store: True
string: Email
translate: False
trim: True
type: char
Field: paypal_client_id
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
manual: False
name: paypal_client_id
readonly: False
required: False
searchable: True
sortable: True
store: True
string: PayPal Client ID
translate: False
trim: True
type: char
Field: paypal_client_secret
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
manual: False
name: paypal_client_secret
readonly: False
required: False
searchable: True
sortable: True
store: True
string: PayPal Client Secret
translate: False
trim: True
type: char
Field: paypal_access_token
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
help: The short-lived token used to access Paypal APIs
manual: False
name: paypal_access_token
readonly: False
required: False
searchable: True
sortable: True
store: True
string: PayPal Access Token
translate: False
trim: True
type: char
Field: paypal_access_token_expiry
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
help: The moment at which the access token becomes invalid.
manual: False
name: paypal_access_token_expiry
readonly: False
required: False
searchable: True
sortable: True
store: True
string: PayPal Access Token Expiry
type: datetime
Field: paypal_webhook_id
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
manual: False
name: paypal_webhook_id
readonly: False
required: False
searchable: True
sortable: True
store: True
string: PayPal Webhook ID
translate: False
trim: True
type: char
Field: journal_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: ['code', 'state', 'company_id']
domain: (company_id and ['|', ('company_id', '=', False), ('company_id', 'parent_of', [company_id])] or ['|', ('company_id', '=', False), ('company_id', 'parent_of', '')]) + ([("type", "=", "bank")])
exportable: True
groupable: False
help: The journal in which the successful transactions are posted.
manual: False
name: journal_id
readonly: False
relation: account.journal
required: False
searchable: False
sortable: False
store: False
string: Payment Journal
type: many2one
Field: so_reference_type
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: You can set here the communication type that will appear on sales orders.The communication will be given to the customer when they choose the payment method.
manual: False
name: so_reference_type
readonly: False
required: False
searchable: True
selection: [['so_name', 'Based on Document Reference'], ['partner', 'Based on Customer ID']]
sortable: True
store: True
string: Communication
type: selection
Field: website_id
change_default: False
company_dependent: False
context: {}
default_export_compatible: False
depends: []
domain: (company_id and [('company_id', 'in', [company_id] + [False])] or [('company_id', '=', False)]) + ([])
exportable: True
groupable: True
manual: False
name: website_id
readonly: False
relation: website
required: False
searchable: True
sortable: True
store: True
string: Website
type: many2one
Field: aps_merchant_identifier
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
help: The code of the merchant account to use with this provider.
manual: False
name: aps_merchant_identifier
readonly: False
required: False
searchable: True
sortable: True
store: True
string: APS Merchant Identifier
translate: False
trim: True
type: char
Field: aps_access_code
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
help: The access code associated with the merchant account.
manual: False
name: aps_access_code
readonly: False
required: False
searchable: True
sortable: True
store: True
string: APS Access Code
translate: False
trim: True
type: char
Field: aps_sha_request
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
manual: False
name: aps_sha_request
readonly: False
required: False
searchable: True
sortable: True
store: True
string: APS SHA Request Phrase
translate: False
trim: True
type: char
Field: aps_sha_response
change_default: False
company_dependent: False
default_export_compatible: False
depends: []
exportable: True
groupable: True
groups: base.group_system
manual: False
name: aps_sha_response
readonly: False
required: False
searchable: True
sortable: True
store: True
string: APS SHA Response Phrase
translate: False
trim: True
type: char