@be-logixpair/api 0.1.1-alpha.8 → 0.1.1-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1006 -650
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -189954,11 +189954,15 @@ type AggregateBilling_match_transaction_lines = {
|
|
|
189954
189954
|
type Billing_match_transaction_linesAvgAggregateOutputType = {
|
|
189955
189955
|
outstanding_amount: Decimal | null;
|
|
189956
189956
|
local_outstanding: Decimal | null;
|
|
189957
|
+
paid_amount: Decimal | null;
|
|
189958
|
+
local_paid_amount: Decimal | null;
|
|
189957
189959
|
ex_rate: Decimal | null;
|
|
189958
189960
|
};
|
|
189959
189961
|
type Billing_match_transaction_linesSumAggregateOutputType = {
|
|
189960
189962
|
outstanding_amount: Decimal | null;
|
|
189961
189963
|
local_outstanding: Decimal | null;
|
|
189964
|
+
paid_amount: Decimal | null;
|
|
189965
|
+
local_paid_amount: Decimal | null;
|
|
189962
189966
|
ex_rate: Decimal | null;
|
|
189963
189967
|
};
|
|
189964
189968
|
type Billing_match_transaction_linesMinAggregateOutputType = {
|
|
@@ -189999,6 +190003,8 @@ type Billing_match_transaction_linesMinAggregateOutputType = {
|
|
|
189999
190003
|
local_currency_name: string | null;
|
|
190000
190004
|
outstanding_amount: Decimal | null;
|
|
190001
190005
|
local_outstanding: Decimal | null;
|
|
190006
|
+
paid_amount: Decimal | null;
|
|
190007
|
+
local_paid_amount: Decimal | null;
|
|
190002
190008
|
ex_rate: Decimal | null;
|
|
190003
190009
|
house_bill_number: string | null;
|
|
190004
190010
|
master_bill_number: string | null;
|
|
@@ -190045,6 +190051,8 @@ type Billing_match_transaction_linesMaxAggregateOutputType = {
|
|
|
190045
190051
|
local_currency_name: string | null;
|
|
190046
190052
|
outstanding_amount: Decimal | null;
|
|
190047
190053
|
local_outstanding: Decimal | null;
|
|
190054
|
+
paid_amount: Decimal | null;
|
|
190055
|
+
local_paid_amount: Decimal | null;
|
|
190048
190056
|
ex_rate: Decimal | null;
|
|
190049
190057
|
house_bill_number: string | null;
|
|
190050
190058
|
master_bill_number: string | null;
|
|
@@ -190091,6 +190099,8 @@ type Billing_match_transaction_linesCountAggregateOutputType = {
|
|
|
190091
190099
|
local_currency_name: number;
|
|
190092
190100
|
outstanding_amount: number;
|
|
190093
190101
|
local_outstanding: number;
|
|
190102
|
+
paid_amount: number;
|
|
190103
|
+
local_paid_amount: number;
|
|
190094
190104
|
ex_rate: number;
|
|
190095
190105
|
house_bill_number: number;
|
|
190096
190106
|
master_bill_number: number;
|
|
@@ -190103,11 +190113,15 @@ type Billing_match_transaction_linesCountAggregateOutputType = {
|
|
|
190103
190113
|
type Billing_match_transaction_linesAvgAggregateInputType = {
|
|
190104
190114
|
outstanding_amount?: true;
|
|
190105
190115
|
local_outstanding?: true;
|
|
190116
|
+
paid_amount?: true;
|
|
190117
|
+
local_paid_amount?: true;
|
|
190106
190118
|
ex_rate?: true;
|
|
190107
190119
|
};
|
|
190108
190120
|
type Billing_match_transaction_linesSumAggregateInputType = {
|
|
190109
190121
|
outstanding_amount?: true;
|
|
190110
190122
|
local_outstanding?: true;
|
|
190123
|
+
paid_amount?: true;
|
|
190124
|
+
local_paid_amount?: true;
|
|
190111
190125
|
ex_rate?: true;
|
|
190112
190126
|
};
|
|
190113
190127
|
type Billing_match_transaction_linesMinAggregateInputType = {
|
|
@@ -190148,6 +190162,8 @@ type Billing_match_transaction_linesMinAggregateInputType = {
|
|
|
190148
190162
|
local_currency_name?: true;
|
|
190149
190163
|
outstanding_amount?: true;
|
|
190150
190164
|
local_outstanding?: true;
|
|
190165
|
+
paid_amount?: true;
|
|
190166
|
+
local_paid_amount?: true;
|
|
190151
190167
|
ex_rate?: true;
|
|
190152
190168
|
house_bill_number?: true;
|
|
190153
190169
|
master_bill_number?: true;
|
|
@@ -190194,6 +190210,8 @@ type Billing_match_transaction_linesMaxAggregateInputType = {
|
|
|
190194
190210
|
local_currency_name?: true;
|
|
190195
190211
|
outstanding_amount?: true;
|
|
190196
190212
|
local_outstanding?: true;
|
|
190213
|
+
paid_amount?: true;
|
|
190214
|
+
local_paid_amount?: true;
|
|
190197
190215
|
ex_rate?: true;
|
|
190198
190216
|
house_bill_number?: true;
|
|
190199
190217
|
master_bill_number?: true;
|
|
@@ -190240,6 +190258,8 @@ type Billing_match_transaction_linesCountAggregateInputType = {
|
|
|
190240
190258
|
local_currency_name?: true;
|
|
190241
190259
|
outstanding_amount?: true;
|
|
190242
190260
|
local_outstanding?: true;
|
|
190261
|
+
paid_amount?: true;
|
|
190262
|
+
local_paid_amount?: true;
|
|
190243
190263
|
ex_rate?: true;
|
|
190244
190264
|
house_bill_number?: true;
|
|
190245
190265
|
master_bill_number?: true;
|
|
@@ -190361,6 +190381,8 @@ type Billing_match_transaction_linesGroupByOutputType = {
|
|
|
190361
190381
|
local_currency_name: string | null;
|
|
190362
190382
|
outstanding_amount: Decimal | null;
|
|
190363
190383
|
local_outstanding: Decimal | null;
|
|
190384
|
+
paid_amount: Decimal | null;
|
|
190385
|
+
local_paid_amount: Decimal | null;
|
|
190364
190386
|
ex_rate: Decimal | null;
|
|
190365
190387
|
house_bill_number: string | null;
|
|
190366
190388
|
master_bill_number: string | null;
|
|
@@ -190416,6 +190438,8 @@ type billing_match_transaction_linesWhereInput = {
|
|
|
190416
190438
|
local_currency_name?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
190417
190439
|
outstanding_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190418
190440
|
local_outstanding?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190441
|
+
paid_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190442
|
+
local_paid_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190419
190443
|
ex_rate?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190420
190444
|
house_bill_number?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
190421
190445
|
master_bill_number?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
@@ -190483,6 +190507,8 @@ type billing_match_transaction_linesOrderByWithRelationInput = {
|
|
|
190483
190507
|
local_currency_name?: SortOrderInput | SortOrder;
|
|
190484
190508
|
outstanding_amount?: SortOrderInput | SortOrder;
|
|
190485
190509
|
local_outstanding?: SortOrderInput | SortOrder;
|
|
190510
|
+
paid_amount?: SortOrderInput | SortOrder;
|
|
190511
|
+
local_paid_amount?: SortOrderInput | SortOrder;
|
|
190486
190512
|
ex_rate?: SortOrderInput | SortOrder;
|
|
190487
190513
|
house_bill_number?: SortOrderInput | SortOrder;
|
|
190488
190514
|
master_bill_number?: SortOrderInput | SortOrder;
|
|
@@ -190553,6 +190579,8 @@ type billing_match_transaction_linesWhereUniqueInput = AtLeast<{
|
|
|
190553
190579
|
local_currency_name?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
190554
190580
|
outstanding_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190555
190581
|
local_outstanding?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190582
|
+
paid_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190583
|
+
local_paid_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190556
190584
|
ex_rate?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190557
190585
|
house_bill_number?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
190558
190586
|
master_bill_number?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
@@ -190620,6 +190648,8 @@ type billing_match_transaction_linesOrderByWithAggregationInput = {
|
|
|
190620
190648
|
local_currency_name?: SortOrderInput | SortOrder;
|
|
190621
190649
|
outstanding_amount?: SortOrderInput | SortOrder;
|
|
190622
190650
|
local_outstanding?: SortOrderInput | SortOrder;
|
|
190651
|
+
paid_amount?: SortOrderInput | SortOrder;
|
|
190652
|
+
local_paid_amount?: SortOrderInput | SortOrder;
|
|
190623
190653
|
ex_rate?: SortOrderInput | SortOrder;
|
|
190624
190654
|
house_bill_number?: SortOrderInput | SortOrder;
|
|
190625
190655
|
master_bill_number?: SortOrderInput | SortOrder;
|
|
@@ -190674,6 +190704,8 @@ type billing_match_transaction_linesScalarWhereWithAggregatesInput = {
|
|
|
190674
190704
|
local_currency_name?: StringNullableWithAggregatesFilter<"billing_match_transaction_lines"> | string | null;
|
|
190675
190705
|
outstanding_amount?: DecimalNullableWithAggregatesFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190676
190706
|
local_outstanding?: DecimalNullableWithAggregatesFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190707
|
+
paid_amount?: DecimalNullableWithAggregatesFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190708
|
+
local_paid_amount?: DecimalNullableWithAggregatesFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190677
190709
|
ex_rate?: DecimalNullableWithAggregatesFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190678
190710
|
house_bill_number?: StringNullableWithAggregatesFilter<"billing_match_transaction_lines"> | string | null;
|
|
190679
190711
|
master_bill_number?: StringNullableWithAggregatesFilter<"billing_match_transaction_lines"> | string | null;
|
|
@@ -190700,6 +190732,8 @@ type billing_match_transaction_linesCreateInput = {
|
|
|
190700
190732
|
local_currency_name?: string | null;
|
|
190701
190733
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190702
190734
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190735
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190736
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190703
190737
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190704
190738
|
house_bill_number?: string | null;
|
|
190705
190739
|
master_bill_number?: string | null;
|
|
@@ -190767,6 +190801,8 @@ type billing_match_transaction_linesUncheckedCreateInput = {
|
|
|
190767
190801
|
local_currency_name?: string | null;
|
|
190768
190802
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190769
190803
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190804
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190805
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190770
190806
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190771
190807
|
house_bill_number?: string | null;
|
|
190772
190808
|
master_bill_number?: string | null;
|
|
@@ -190794,6 +190830,8 @@ type billing_match_transaction_linesUpdateInput = {
|
|
|
190794
190830
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190795
190831
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190796
190832
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190833
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190834
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190797
190835
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190798
190836
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190799
190837
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -190861,6 +190899,8 @@ type billing_match_transaction_linesUncheckedUpdateInput = {
|
|
|
190861
190899
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190862
190900
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190863
190901
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190902
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190903
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190864
190904
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190865
190905
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190866
190906
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -190908,6 +190948,8 @@ type billing_match_transaction_linesCreateManyInput = {
|
|
|
190908
190948
|
local_currency_name?: string | null;
|
|
190909
190949
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190910
190950
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190951
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190952
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190911
190953
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
190912
190954
|
house_bill_number?: string | null;
|
|
190913
190955
|
master_bill_number?: string | null;
|
|
@@ -190934,6 +190976,8 @@ type billing_match_transaction_linesUpdateManyMutationInput = {
|
|
|
190934
190976
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190935
190977
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190936
190978
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190979
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190980
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190937
190981
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190938
190982
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190939
190983
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -190980,6 +191024,8 @@ type billing_match_transaction_linesUncheckedUpdateManyInput = {
|
|
|
190980
191024
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190981
191025
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190982
191026
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
191027
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
191028
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190983
191029
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
190984
191030
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
190985
191031
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -191034,6 +191080,8 @@ type billing_match_transaction_linesCountOrderByAggregateInput = {
|
|
|
191034
191080
|
local_currency_name?: SortOrder;
|
|
191035
191081
|
outstanding_amount?: SortOrder;
|
|
191036
191082
|
local_outstanding?: SortOrder;
|
|
191083
|
+
paid_amount?: SortOrder;
|
|
191084
|
+
local_paid_amount?: SortOrder;
|
|
191037
191085
|
ex_rate?: SortOrder;
|
|
191038
191086
|
house_bill_number?: SortOrder;
|
|
191039
191087
|
master_bill_number?: SortOrder;
|
|
@@ -191045,6 +191093,8 @@ type billing_match_transaction_linesCountOrderByAggregateInput = {
|
|
|
191045
191093
|
type billing_match_transaction_linesAvgOrderByAggregateInput = {
|
|
191046
191094
|
outstanding_amount?: SortOrder;
|
|
191047
191095
|
local_outstanding?: SortOrder;
|
|
191096
|
+
paid_amount?: SortOrder;
|
|
191097
|
+
local_paid_amount?: SortOrder;
|
|
191048
191098
|
ex_rate?: SortOrder;
|
|
191049
191099
|
};
|
|
191050
191100
|
type billing_match_transaction_linesMaxOrderByAggregateInput = {
|
|
@@ -191085,6 +191135,8 @@ type billing_match_transaction_linesMaxOrderByAggregateInput = {
|
|
|
191085
191135
|
local_currency_name?: SortOrder;
|
|
191086
191136
|
outstanding_amount?: SortOrder;
|
|
191087
191137
|
local_outstanding?: SortOrder;
|
|
191138
|
+
paid_amount?: SortOrder;
|
|
191139
|
+
local_paid_amount?: SortOrder;
|
|
191088
191140
|
ex_rate?: SortOrder;
|
|
191089
191141
|
house_bill_number?: SortOrder;
|
|
191090
191142
|
master_bill_number?: SortOrder;
|
|
@@ -191131,6 +191183,8 @@ type billing_match_transaction_linesMinOrderByAggregateInput = {
|
|
|
191131
191183
|
local_currency_name?: SortOrder;
|
|
191132
191184
|
outstanding_amount?: SortOrder;
|
|
191133
191185
|
local_outstanding?: SortOrder;
|
|
191186
|
+
paid_amount?: SortOrder;
|
|
191187
|
+
local_paid_amount?: SortOrder;
|
|
191134
191188
|
ex_rate?: SortOrder;
|
|
191135
191189
|
house_bill_number?: SortOrder;
|
|
191136
191190
|
master_bill_number?: SortOrder;
|
|
@@ -191142,6 +191196,8 @@ type billing_match_transaction_linesMinOrderByAggregateInput = {
|
|
|
191142
191196
|
type billing_match_transaction_linesSumOrderByAggregateInput = {
|
|
191143
191197
|
outstanding_amount?: SortOrder;
|
|
191144
191198
|
local_outstanding?: SortOrder;
|
|
191199
|
+
paid_amount?: SortOrder;
|
|
191200
|
+
local_paid_amount?: SortOrder;
|
|
191145
191201
|
ex_rate?: SortOrder;
|
|
191146
191202
|
};
|
|
191147
191203
|
type Billing_match_transaction_linesNullableScalarRelationFilter = {
|
|
@@ -191940,6 +191996,8 @@ type billing_match_transaction_linesCreateWithoutAp_transactionInput = {
|
|
|
191940
191996
|
local_currency_name?: string | null;
|
|
191941
191997
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
191942
191998
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
191999
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192000
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
191943
192001
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
191944
192002
|
house_bill_number?: string | null;
|
|
191945
192003
|
master_bill_number?: string | null;
|
|
@@ -192005,6 +192063,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAp_transactionInput =
|
|
|
192005
192063
|
local_currency_name?: string | null;
|
|
192006
192064
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192007
192065
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192066
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192067
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192008
192068
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192009
192069
|
house_bill_number?: string | null;
|
|
192010
192070
|
master_bill_number?: string | null;
|
|
@@ -192076,6 +192136,8 @@ type billing_match_transaction_linesScalarWhereInput = {
|
|
|
192076
192136
|
local_currency_name?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
192077
192137
|
outstanding_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
192078
192138
|
local_outstanding?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
192139
|
+
paid_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
192140
|
+
local_paid_amount?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
192079
192141
|
ex_rate?: DecimalNullableFilter<"billing_match_transaction_lines"> | Decimal | DecimalJsLike$1 | number | string | null;
|
|
192080
192142
|
house_bill_number?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
192081
192143
|
master_bill_number?: StringNullableFilter<"billing_match_transaction_lines"> | string | null;
|
|
@@ -192102,6 +192164,8 @@ type billing_match_transaction_linesCreateWithoutAp_journalInput = {
|
|
|
192102
192164
|
local_currency_name?: string | null;
|
|
192103
192165
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192104
192166
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192167
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192168
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192105
192169
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192106
192170
|
house_bill_number?: string | null;
|
|
192107
192171
|
master_bill_number?: string | null;
|
|
@@ -192167,6 +192231,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAp_journalInput = {
|
|
|
192167
192231
|
local_currency_name?: string | null;
|
|
192168
192232
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192169
192233
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192234
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192235
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192170
192236
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192171
192237
|
house_bill_number?: string | null;
|
|
192172
192238
|
master_bill_number?: string | null;
|
|
@@ -192215,6 +192281,8 @@ type billing_match_transaction_linesCreateWithoutAp_transferInput = {
|
|
|
192215
192281
|
local_currency_name?: string | null;
|
|
192216
192282
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192217
192283
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192284
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192285
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192218
192286
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192219
192287
|
house_bill_number?: string | null;
|
|
192220
192288
|
master_bill_number?: string | null;
|
|
@@ -192280,6 +192348,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAp_transferInput = {
|
|
|
192280
192348
|
local_currency_name?: string | null;
|
|
192281
192349
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192282
192350
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192351
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192352
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192283
192353
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192284
192354
|
house_bill_number?: string | null;
|
|
192285
192355
|
master_bill_number?: string | null;
|
|
@@ -192328,6 +192398,8 @@ type billing_match_transaction_linesCreateWithoutAp_receiptInput = {
|
|
|
192328
192398
|
local_currency_name?: string | null;
|
|
192329
192399
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192330
192400
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192401
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192402
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192331
192403
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192332
192404
|
house_bill_number?: string | null;
|
|
192333
192405
|
master_bill_number?: string | null;
|
|
@@ -192393,6 +192465,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAp_receiptInput = {
|
|
|
192393
192465
|
local_currency_name?: string | null;
|
|
192394
192466
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192395
192467
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192468
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192469
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192396
192470
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192397
192471
|
house_bill_number?: string | null;
|
|
192398
192472
|
master_bill_number?: string | null;
|
|
@@ -192441,6 +192515,8 @@ type billing_match_transaction_linesCreateWithoutAp_paymentInput = {
|
|
|
192441
192515
|
local_currency_name?: string | null;
|
|
192442
192516
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192443
192517
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192518
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192519
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192444
192520
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192445
192521
|
house_bill_number?: string | null;
|
|
192446
192522
|
master_bill_number?: string | null;
|
|
@@ -192506,6 +192582,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAp_paymentInput = {
|
|
|
192506
192582
|
local_currency_name?: string | null;
|
|
192507
192583
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192508
192584
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192585
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192586
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192509
192587
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192510
192588
|
house_bill_number?: string | null;
|
|
192511
192589
|
master_bill_number?: string | null;
|
|
@@ -192554,6 +192632,8 @@ type billing_match_transaction_linesCreateWithoutAr_transactionInput = {
|
|
|
192554
192632
|
local_currency_name?: string | null;
|
|
192555
192633
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192556
192634
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192635
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192636
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192557
192637
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192558
192638
|
house_bill_number?: string | null;
|
|
192559
192639
|
master_bill_number?: string | null;
|
|
@@ -192619,6 +192699,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAr_transactionInput =
|
|
|
192619
192699
|
local_currency_name?: string | null;
|
|
192620
192700
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192621
192701
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192702
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192703
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192622
192704
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192623
192705
|
house_bill_number?: string | null;
|
|
192624
192706
|
master_bill_number?: string | null;
|
|
@@ -192667,6 +192749,8 @@ type billing_match_transaction_linesCreateWithoutAr_journalInput = {
|
|
|
192667
192749
|
local_currency_name?: string | null;
|
|
192668
192750
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192669
192751
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192752
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192753
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192670
192754
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192671
192755
|
house_bill_number?: string | null;
|
|
192672
192756
|
master_bill_number?: string | null;
|
|
@@ -192732,6 +192816,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAr_journalInput = {
|
|
|
192732
192816
|
local_currency_name?: string | null;
|
|
192733
192817
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192734
192818
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192819
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192820
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192735
192821
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192736
192822
|
house_bill_number?: string | null;
|
|
192737
192823
|
master_bill_number?: string | null;
|
|
@@ -192780,6 +192866,8 @@ type billing_match_transaction_linesCreateWithoutAr_transferInput = {
|
|
|
192780
192866
|
local_currency_name?: string | null;
|
|
192781
192867
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192782
192868
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192869
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192870
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192783
192871
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192784
192872
|
house_bill_number?: string | null;
|
|
192785
192873
|
master_bill_number?: string | null;
|
|
@@ -192845,6 +192933,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAr_transferInput = {
|
|
|
192845
192933
|
local_currency_name?: string | null;
|
|
192846
192934
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192847
192935
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192936
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192937
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192848
192938
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192849
192939
|
house_bill_number?: string | null;
|
|
192850
192940
|
master_bill_number?: string | null;
|
|
@@ -192893,6 +192983,8 @@ type billing_match_transaction_linesCreateWithoutAr_receiptInput = {
|
|
|
192893
192983
|
local_currency_name?: string | null;
|
|
192894
192984
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192895
192985
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192986
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192987
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192896
192988
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192897
192989
|
house_bill_number?: string | null;
|
|
192898
192990
|
master_bill_number?: string | null;
|
|
@@ -192958,6 +193050,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAr_receiptInput = {
|
|
|
192958
193050
|
local_currency_name?: string | null;
|
|
192959
193051
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192960
193052
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193053
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193054
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192961
193055
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
192962
193056
|
house_bill_number?: string | null;
|
|
192963
193057
|
master_bill_number?: string | null;
|
|
@@ -193006,6 +193100,8 @@ type billing_match_transaction_linesCreateWithoutAr_paymentInput = {
|
|
|
193006
193100
|
local_currency_name?: string | null;
|
|
193007
193101
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193008
193102
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193103
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193104
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193009
193105
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193010
193106
|
house_bill_number?: string | null;
|
|
193011
193107
|
master_bill_number?: string | null;
|
|
@@ -193071,6 +193167,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutAr_paymentInput = {
|
|
|
193071
193167
|
local_currency_name?: string | null;
|
|
193072
193168
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193073
193169
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193170
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193171
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193074
193172
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193075
193173
|
house_bill_number?: string | null;
|
|
193076
193174
|
master_bill_number?: string | null;
|
|
@@ -193119,6 +193217,8 @@ type billing_match_transaction_linesCreateWithoutContraInput = {
|
|
|
193119
193217
|
local_currency_name?: string | null;
|
|
193120
193218
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193121
193219
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193220
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193221
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193122
193222
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193123
193223
|
house_bill_number?: string | null;
|
|
193124
193224
|
master_bill_number?: string | null;
|
|
@@ -193184,6 +193284,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutContraInput = {
|
|
|
193184
193284
|
local_currency_name?: string | null;
|
|
193185
193285
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193186
193286
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193287
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193288
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193187
193289
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193188
193290
|
house_bill_number?: string | null;
|
|
193189
193291
|
master_bill_number?: string | null;
|
|
@@ -193232,6 +193334,8 @@ type billing_match_transaction_linesCreateWithoutMiscellaneous_transactionInput
|
|
|
193232
193334
|
local_currency_name?: string | null;
|
|
193233
193335
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193234
193336
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193337
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193338
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193235
193339
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193236
193340
|
house_bill_number?: string | null;
|
|
193237
193341
|
master_bill_number?: string | null;
|
|
@@ -193297,6 +193401,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutMiscellaneous_transact
|
|
|
193297
193401
|
local_currency_name?: string | null;
|
|
193298
193402
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193299
193403
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193404
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193405
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193300
193406
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193301
193407
|
house_bill_number?: string | null;
|
|
193302
193408
|
master_bill_number?: string | null;
|
|
@@ -193345,6 +193451,8 @@ type billing_match_transaction_linesCreateWithoutBilling_match_transactionInput
|
|
|
193345
193451
|
local_currency_name?: string | null;
|
|
193346
193452
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193347
193453
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193454
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193455
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193348
193456
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193349
193457
|
house_bill_number?: string | null;
|
|
193350
193458
|
master_bill_number?: string | null;
|
|
@@ -193410,6 +193518,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutBilling_match_transact
|
|
|
193410
193518
|
local_currency_name?: string | null;
|
|
193411
193519
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193412
193520
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193521
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193522
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193413
193523
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193414
193524
|
house_bill_number?: string | null;
|
|
193415
193525
|
master_bill_number?: string | null;
|
|
@@ -193458,6 +193568,8 @@ type billing_match_transaction_linesCreateWithoutBilling_match_line_logsInput =
|
|
|
193458
193568
|
local_currency_name?: string | null;
|
|
193459
193569
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193460
193570
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193571
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193572
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193461
193573
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193462
193574
|
house_bill_number?: string | null;
|
|
193463
193575
|
master_bill_number?: string | null;
|
|
@@ -193524,6 +193636,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutBilling_match_line_log
|
|
|
193524
193636
|
local_currency_name?: string | null;
|
|
193525
193637
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193526
193638
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193639
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193640
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193527
193641
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193528
193642
|
house_bill_number?: string | null;
|
|
193529
193643
|
master_bill_number?: string | null;
|
|
@@ -193563,6 +193677,8 @@ type billing_match_transaction_linesUpdateWithoutBilling_match_line_logsInput =
|
|
|
193563
193677
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
193564
193678
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193565
193679
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193680
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193681
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193566
193682
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193567
193683
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
193568
193684
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -193629,6 +193745,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutBilling_match_line_log
|
|
|
193629
193745
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
193630
193746
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193631
193747
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193748
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193749
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193632
193750
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
193633
193751
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
193634
193752
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -193655,6 +193773,8 @@ type billing_match_transaction_linesCreateWithoutForwarding_consolInput = {
|
|
|
193655
193773
|
local_currency_name?: string | null;
|
|
193656
193774
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193657
193775
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193776
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193777
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193658
193778
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193659
193779
|
house_bill_number?: string | null;
|
|
193660
193780
|
master_bill_number?: string | null;
|
|
@@ -193720,6 +193840,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutForwarding_consolInput
|
|
|
193720
193840
|
local_currency_name?: string | null;
|
|
193721
193841
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193722
193842
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193843
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193844
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193723
193845
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193724
193846
|
house_bill_number?: string | null;
|
|
193725
193847
|
master_bill_number?: string | null;
|
|
@@ -193768,6 +193890,8 @@ type billing_match_transaction_linesCreateWithoutOrganizationInput = {
|
|
|
193768
193890
|
local_currency_name?: string | null;
|
|
193769
193891
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193770
193892
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193893
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193894
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193771
193895
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193772
193896
|
house_bill_number?: string | null;
|
|
193773
193897
|
master_bill_number?: string | null;
|
|
@@ -193833,6 +193957,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutOrganizationInput = {
|
|
|
193833
193957
|
local_currency_name?: string | null;
|
|
193834
193958
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193835
193959
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193960
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193961
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193836
193962
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193837
193963
|
house_bill_number?: string | null;
|
|
193838
193964
|
master_bill_number?: string | null;
|
|
@@ -193881,6 +194007,8 @@ type billing_match_transaction_linesCreateWithoutCurrencyInput = {
|
|
|
193881
194007
|
local_currency_name?: string | null;
|
|
193882
194008
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193883
194009
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194010
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194011
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193884
194012
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193885
194013
|
house_bill_number?: string | null;
|
|
193886
194014
|
master_bill_number?: string | null;
|
|
@@ -193946,6 +194074,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutCurrencyInput = {
|
|
|
193946
194074
|
local_currency_name?: string | null;
|
|
193947
194075
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193948
194076
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194077
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194078
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193949
194079
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193950
194080
|
house_bill_number?: string | null;
|
|
193951
194081
|
master_bill_number?: string | null;
|
|
@@ -193981,6 +194111,8 @@ type billing_match_transaction_linesCreateWithoutLocal_currencyInput = {
|
|
|
193981
194111
|
local_currency_name?: string | null;
|
|
193982
194112
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193983
194113
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194114
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194115
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193984
194116
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
193985
194117
|
house_bill_number?: string | null;
|
|
193986
194118
|
master_bill_number?: string | null;
|
|
@@ -194046,6 +194178,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutLocal_currencyInput =
|
|
|
194046
194178
|
local_currency_name?: string | null;
|
|
194047
194179
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194048
194180
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194181
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194182
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194049
194183
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194050
194184
|
house_bill_number?: string | null;
|
|
194051
194185
|
master_bill_number?: string | null;
|
|
@@ -194107,6 +194241,8 @@ type billing_match_transaction_linesCreateWithoutTransaction_typeInput = {
|
|
|
194107
194241
|
local_currency_name?: string | null;
|
|
194108
194242
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194109
194243
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194244
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194245
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194110
194246
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194111
194247
|
house_bill_number?: string | null;
|
|
194112
194248
|
master_bill_number?: string | null;
|
|
@@ -194172,6 +194308,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutTransaction_typeInput
|
|
|
194172
194308
|
local_currency_name?: string | null;
|
|
194173
194309
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194174
194310
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194311
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194312
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194175
194313
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194176
194314
|
house_bill_number?: string | null;
|
|
194177
194315
|
master_bill_number?: string | null;
|
|
@@ -194220,6 +194358,8 @@ type billing_match_transaction_linesCreateWithoutBilling_ledgerInput = {
|
|
|
194220
194358
|
local_currency_name?: string | null;
|
|
194221
194359
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194222
194360
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194361
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194362
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194223
194363
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194224
194364
|
house_bill_number?: string | null;
|
|
194225
194365
|
master_bill_number?: string | null;
|
|
@@ -194285,6 +194425,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutBilling_ledgerInput =
|
|
|
194285
194425
|
local_currency_name?: string | null;
|
|
194286
194426
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194287
194427
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194428
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194429
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194288
194430
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194289
194431
|
house_bill_number?: string | null;
|
|
194290
194432
|
master_bill_number?: string | null;
|
|
@@ -194333,6 +194475,8 @@ type billing_match_transaction_linesCreateWithoutForwarding_shipmentInput = {
|
|
|
194333
194475
|
local_currency_name?: string | null;
|
|
194334
194476
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194335
194477
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194478
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194479
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194336
194480
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194337
194481
|
house_bill_number?: string | null;
|
|
194338
194482
|
master_bill_number?: string | null;
|
|
@@ -194398,6 +194542,8 @@ type billing_match_transaction_linesUncheckedCreateWithoutForwarding_shipmentInp
|
|
|
194398
194542
|
local_currency_name?: string | null;
|
|
194399
194543
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194400
194544
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194545
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194546
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194401
194547
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194402
194548
|
house_bill_number?: string | null;
|
|
194403
194549
|
master_bill_number?: string | null;
|
|
@@ -194465,6 +194611,8 @@ type billing_match_transaction_linesCreateManyAp_transactionInput = {
|
|
|
194465
194611
|
local_currency_name?: string | null;
|
|
194466
194612
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194467
194613
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194614
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194615
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194468
194616
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194469
194617
|
house_bill_number?: string | null;
|
|
194470
194618
|
master_bill_number?: string | null;
|
|
@@ -194491,6 +194639,8 @@ type billing_match_transaction_linesUpdateWithoutAp_transactionInput = {
|
|
|
194491
194639
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194492
194640
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194493
194641
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194642
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194643
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194494
194644
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194495
194645
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194496
194646
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194556,6 +194706,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAp_transactionInput =
|
|
|
194556
194706
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194557
194707
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194558
194708
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194709
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194710
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194559
194711
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194560
194712
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194561
194713
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194602,6 +194754,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAp_transactionInpu
|
|
|
194602
194754
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194603
194755
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194604
194756
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194757
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194758
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194605
194759
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194606
194760
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194607
194761
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194647,6 +194801,8 @@ type billing_match_transaction_linesCreateManyAp_journalInput = {
|
|
|
194647
194801
|
local_currency_name?: string | null;
|
|
194648
194802
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194649
194803
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194804
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194805
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194650
194806
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194651
194807
|
house_bill_number?: string | null;
|
|
194652
194808
|
master_bill_number?: string | null;
|
|
@@ -194673,6 +194829,8 @@ type billing_match_transaction_linesUpdateWithoutAp_journalInput = {
|
|
|
194673
194829
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194674
194830
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194675
194831
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194832
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194833
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194676
194834
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194677
194835
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194678
194836
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194738,6 +194896,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAp_journalInput = {
|
|
|
194738
194896
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194739
194897
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194740
194898
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194899
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194900
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194741
194901
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194742
194902
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194743
194903
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194784,6 +194944,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAp_journalInput =
|
|
|
194784
194944
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194785
194945
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194786
194946
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194947
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194948
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194787
194949
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194788
194950
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194789
194951
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194829,6 +194991,8 @@ type billing_match_transaction_linesCreateManyAp_transferInput = {
|
|
|
194829
194991
|
local_currency_name?: string | null;
|
|
194830
194992
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194831
194993
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194994
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194995
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194832
194996
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
194833
194997
|
house_bill_number?: string | null;
|
|
194834
194998
|
master_bill_number?: string | null;
|
|
@@ -194855,6 +195019,8 @@ type billing_match_transaction_linesUpdateWithoutAp_transferInput = {
|
|
|
194855
195019
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194856
195020
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194857
195021
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195022
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195023
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194858
195024
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194859
195025
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194860
195026
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194920,6 +195086,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAp_transferInput = {
|
|
|
194920
195086
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194921
195087
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194922
195088
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195089
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195090
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194923
195091
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194924
195092
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194925
195093
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -194966,6 +195134,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAp_transferInput =
|
|
|
194966
195134
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194967
195135
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194968
195136
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195137
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195138
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194969
195139
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
194970
195140
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
194971
195141
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195011,6 +195181,8 @@ type billing_match_transaction_linesCreateManyAp_receiptInput = {
|
|
|
195011
195181
|
local_currency_name?: string | null;
|
|
195012
195182
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195013
195183
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195184
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195185
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195014
195186
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195015
195187
|
house_bill_number?: string | null;
|
|
195016
195188
|
master_bill_number?: string | null;
|
|
@@ -195037,6 +195209,8 @@ type billing_match_transaction_linesUpdateWithoutAp_receiptInput = {
|
|
|
195037
195209
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195038
195210
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195039
195211
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195212
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195213
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195040
195214
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195041
195215
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195042
195216
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195102,6 +195276,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAp_receiptInput = {
|
|
|
195102
195276
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195103
195277
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195104
195278
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195279
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195280
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195105
195281
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195106
195282
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195107
195283
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195148,6 +195324,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAp_receiptInput =
|
|
|
195148
195324
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195149
195325
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195150
195326
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195327
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195328
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195151
195329
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195152
195330
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195153
195331
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195193,6 +195371,8 @@ type billing_match_transaction_linesCreateManyAp_paymentInput = {
|
|
|
195193
195371
|
local_currency_name?: string | null;
|
|
195194
195372
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195195
195373
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195374
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195375
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195196
195376
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195197
195377
|
house_bill_number?: string | null;
|
|
195198
195378
|
master_bill_number?: string | null;
|
|
@@ -195219,6 +195399,8 @@ type billing_match_transaction_linesUpdateWithoutAp_paymentInput = {
|
|
|
195219
195399
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195220
195400
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195221
195401
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195402
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195403
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195222
195404
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195223
195405
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195224
195406
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195284,6 +195466,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAp_paymentInput = {
|
|
|
195284
195466
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195285
195467
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195286
195468
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195469
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195470
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195287
195471
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195288
195472
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195289
195473
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195330,6 +195514,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAp_paymentInput =
|
|
|
195330
195514
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195331
195515
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195332
195516
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195517
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195518
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195333
195519
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195334
195520
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195335
195521
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195375,6 +195561,8 @@ type billing_match_transaction_linesCreateManyAr_transactionInput = {
|
|
|
195375
195561
|
local_currency_name?: string | null;
|
|
195376
195562
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195377
195563
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195564
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195565
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195378
195566
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195379
195567
|
house_bill_number?: string | null;
|
|
195380
195568
|
master_bill_number?: string | null;
|
|
@@ -195401,6 +195589,8 @@ type billing_match_transaction_linesUpdateWithoutAr_transactionInput = {
|
|
|
195401
195589
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195402
195590
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195403
195591
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195592
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195593
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195404
195594
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195405
195595
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195406
195596
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195466,6 +195656,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAr_transactionInput =
|
|
|
195466
195656
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195467
195657
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195468
195658
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195659
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195660
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195469
195661
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195470
195662
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195471
195663
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195512,6 +195704,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAr_transactionInpu
|
|
|
195512
195704
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195513
195705
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195514
195706
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195707
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195708
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195515
195709
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195516
195710
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195517
195711
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195557,6 +195751,8 @@ type billing_match_transaction_linesCreateManyAr_journalInput = {
|
|
|
195557
195751
|
local_currency_name?: string | null;
|
|
195558
195752
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195559
195753
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195754
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195755
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195560
195756
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195561
195757
|
house_bill_number?: string | null;
|
|
195562
195758
|
master_bill_number?: string | null;
|
|
@@ -195583,6 +195779,8 @@ type billing_match_transaction_linesUpdateWithoutAr_journalInput = {
|
|
|
195583
195779
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195584
195780
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195585
195781
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195782
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195783
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195586
195784
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195587
195785
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195588
195786
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195648,6 +195846,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAr_journalInput = {
|
|
|
195648
195846
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195649
195847
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195650
195848
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195849
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195850
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195651
195851
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195652
195852
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195653
195853
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195694,6 +195894,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAr_journalInput =
|
|
|
195694
195894
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195695
195895
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195696
195896
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195897
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195898
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195697
195899
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195698
195900
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195699
195901
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195739,6 +195941,8 @@ type billing_match_transaction_linesCreateManyAr_transferInput = {
|
|
|
195739
195941
|
local_currency_name?: string | null;
|
|
195740
195942
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195741
195943
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195944
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195945
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195742
195946
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195743
195947
|
house_bill_number?: string | null;
|
|
195744
195948
|
master_bill_number?: string | null;
|
|
@@ -195765,6 +195969,8 @@ type billing_match_transaction_linesUpdateWithoutAr_transferInput = {
|
|
|
195765
195969
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195766
195970
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195767
195971
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195972
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195973
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195768
195974
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195769
195975
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195770
195976
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195830,6 +196036,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAr_transferInput = {
|
|
|
195830
196036
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195831
196037
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195832
196038
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196039
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196040
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195833
196041
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195834
196042
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195835
196043
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195876,6 +196084,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAr_transferInput =
|
|
|
195876
196084
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195877
196085
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195878
196086
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196087
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196088
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195879
196089
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195880
196090
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195881
196091
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -195921,6 +196131,8 @@ type billing_match_transaction_linesCreateManyAr_receiptInput = {
|
|
|
195921
196131
|
local_currency_name?: string | null;
|
|
195922
196132
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195923
196133
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196134
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196135
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195924
196136
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
195925
196137
|
house_bill_number?: string | null;
|
|
195926
196138
|
master_bill_number?: string | null;
|
|
@@ -195947,6 +196159,8 @@ type billing_match_transaction_linesUpdateWithoutAr_receiptInput = {
|
|
|
195947
196159
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195948
196160
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195949
196161
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196162
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196163
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195950
196164
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
195951
196165
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
195952
196166
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196012,6 +196226,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAr_receiptInput = {
|
|
|
196012
196226
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196013
196227
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196014
196228
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196229
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196230
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196015
196231
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196016
196232
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196017
196233
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196058,6 +196274,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAr_receiptInput =
|
|
|
196058
196274
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196059
196275
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196060
196276
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196277
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196278
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196061
196279
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196062
196280
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196063
196281
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196103,6 +196321,8 @@ type billing_match_transaction_linesCreateManyAr_paymentInput = {
|
|
|
196103
196321
|
local_currency_name?: string | null;
|
|
196104
196322
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196105
196323
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196324
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196325
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196106
196326
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196107
196327
|
house_bill_number?: string | null;
|
|
196108
196328
|
master_bill_number?: string | null;
|
|
@@ -196129,6 +196349,8 @@ type billing_match_transaction_linesUpdateWithoutAr_paymentInput = {
|
|
|
196129
196349
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196130
196350
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196131
196351
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196352
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196353
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196132
196354
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196133
196355
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196134
196356
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196194,6 +196416,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutAr_paymentInput = {
|
|
|
196194
196416
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196195
196417
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196196
196418
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196419
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196420
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196197
196421
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196198
196422
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196199
196423
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196240,6 +196464,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutAr_paymentInput =
|
|
|
196240
196464
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196241
196465
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196242
196466
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196467
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196468
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196243
196469
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196244
196470
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196245
196471
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196285,6 +196511,8 @@ type billing_match_transaction_linesCreateManyContraInput = {
|
|
|
196285
196511
|
local_currency_name?: string | null;
|
|
196286
196512
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196287
196513
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196514
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196515
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196288
196516
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196289
196517
|
house_bill_number?: string | null;
|
|
196290
196518
|
master_bill_number?: string | null;
|
|
@@ -196311,6 +196539,8 @@ type billing_match_transaction_linesUpdateWithoutContraInput = {
|
|
|
196311
196539
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196312
196540
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196313
196541
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196542
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196543
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196314
196544
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196315
196545
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196316
196546
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196376,6 +196606,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutContraInput = {
|
|
|
196376
196606
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196377
196607
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196378
196608
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196609
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196610
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196379
196611
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196380
196612
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196381
196613
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196422,6 +196654,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutContraInput = {
|
|
|
196422
196654
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196423
196655
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196424
196656
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196657
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196658
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196425
196659
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196426
196660
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196427
196661
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196467,6 +196701,8 @@ type billing_match_transaction_linesCreateManyMiscellaneous_transactionInput = {
|
|
|
196467
196701
|
local_currency_name?: string | null;
|
|
196468
196702
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196469
196703
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196704
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196705
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196470
196706
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196471
196707
|
house_bill_number?: string | null;
|
|
196472
196708
|
master_bill_number?: string | null;
|
|
@@ -196493,6 +196729,8 @@ type billing_match_transaction_linesUpdateWithoutMiscellaneous_transactionInput
|
|
|
196493
196729
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196494
196730
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196495
196731
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196732
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196733
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196496
196734
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196497
196735
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196498
196736
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196558,6 +196796,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutMiscellaneous_transact
|
|
|
196558
196796
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196559
196797
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196560
196798
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196799
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196800
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196561
196801
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196562
196802
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196563
196803
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196604,6 +196844,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutMiscellaneous_tran
|
|
|
196604
196844
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196605
196845
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196606
196846
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196847
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196848
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196607
196849
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196608
196850
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196609
196851
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196649,6 +196891,8 @@ type billing_match_transaction_linesCreateManyBilling_match_transactionInput = {
|
|
|
196649
196891
|
local_currency_name?: string | null;
|
|
196650
196892
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196651
196893
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196894
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196895
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196652
196896
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196653
196897
|
house_bill_number?: string | null;
|
|
196654
196898
|
master_bill_number?: string | null;
|
|
@@ -196675,6 +196919,8 @@ type billing_match_transaction_linesUpdateWithoutBilling_match_transactionInput
|
|
|
196675
196919
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196676
196920
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196677
196921
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196922
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196923
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196678
196924
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196679
196925
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196680
196926
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196740,6 +196986,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutBilling_match_transact
|
|
|
196740
196986
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196741
196987
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196742
196988
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196989
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196990
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196743
196991
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196744
196992
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196745
196993
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196786,6 +197034,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutBilling_match_tran
|
|
|
196786
197034
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196787
197035
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196788
197036
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197037
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197038
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196789
197039
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196790
197040
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196791
197041
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196831,6 +197081,8 @@ type billing_match_transaction_linesCreateManyForwarding_consolInput = {
|
|
|
196831
197081
|
local_currency_name?: string | null;
|
|
196832
197082
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196833
197083
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197084
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197085
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196834
197086
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
196835
197087
|
house_bill_number?: string | null;
|
|
196836
197088
|
master_bill_number?: string | null;
|
|
@@ -196857,6 +197109,8 @@ type billing_match_transaction_linesUpdateWithoutForwarding_consolInput = {
|
|
|
196857
197109
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196858
197110
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196859
197111
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197112
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197113
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196860
197114
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196861
197115
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196862
197116
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196922,6 +197176,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutForwarding_consolInput
|
|
|
196922
197176
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196923
197177
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196924
197178
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197179
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197180
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196925
197181
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196926
197182
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196927
197183
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -196968,6 +197224,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutForwarding_consolI
|
|
|
196968
197224
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196969
197225
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196970
197226
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197227
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197228
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196971
197229
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
196972
197230
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
196973
197231
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197013,6 +197271,8 @@ type billing_match_transaction_linesCreateManyOrganizationInput = {
|
|
|
197013
197271
|
local_currency_name?: string | null;
|
|
197014
197272
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197015
197273
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197274
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197275
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197016
197276
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197017
197277
|
house_bill_number?: string | null;
|
|
197018
197278
|
master_bill_number?: string | null;
|
|
@@ -197039,6 +197299,8 @@ type billing_match_transaction_linesUpdateWithoutOrganizationInput = {
|
|
|
197039
197299
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197040
197300
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197041
197301
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197302
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197303
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197042
197304
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197043
197305
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197044
197306
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197104,6 +197366,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutOrganizationInput = {
|
|
|
197104
197366
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197105
197367
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197106
197368
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197369
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197370
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197107
197371
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197108
197372
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197109
197373
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197150,6 +197414,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutOrganizationInput
|
|
|
197150
197414
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197151
197415
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197152
197416
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197417
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197418
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197153
197419
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197154
197420
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197155
197421
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197195,6 +197461,8 @@ type billing_match_transaction_linesCreateManyCurrencyInput = {
|
|
|
197195
197461
|
local_currency_name?: string | null;
|
|
197196
197462
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197197
197463
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197464
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197465
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197198
197466
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197199
197467
|
house_bill_number?: string | null;
|
|
197200
197468
|
master_bill_number?: string | null;
|
|
@@ -197240,6 +197508,8 @@ type billing_match_transaction_linesCreateManyLocal_currencyInput = {
|
|
|
197240
197508
|
local_currency_name?: string | null;
|
|
197241
197509
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197242
197510
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197511
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197512
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197243
197513
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197244
197514
|
house_bill_number?: string | null;
|
|
197245
197515
|
master_bill_number?: string | null;
|
|
@@ -197266,6 +197536,8 @@ type billing_match_transaction_linesUpdateWithoutCurrencyInput = {
|
|
|
197266
197536
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197267
197537
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197268
197538
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197539
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197540
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197269
197541
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197270
197542
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197271
197543
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197331,6 +197603,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutCurrencyInput = {
|
|
|
197331
197603
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197332
197604
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197333
197605
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197606
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197607
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197334
197608
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197335
197609
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197336
197610
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197377,6 +197651,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutCurrencyInput = {
|
|
|
197377
197651
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197378
197652
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197379
197653
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197654
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197655
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197380
197656
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197381
197657
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197382
197658
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197403,6 +197679,8 @@ type billing_match_transaction_linesUpdateWithoutLocal_currencyInput = {
|
|
|
197403
197679
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197404
197680
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197405
197681
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197682
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197683
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197406
197684
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197407
197685
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197408
197686
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197468,6 +197746,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutLocal_currencyInput =
|
|
|
197468
197746
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197469
197747
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197470
197748
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197749
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197750
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197471
197751
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197472
197752
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197473
197753
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197514,6 +197794,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutLocal_currencyInpu
|
|
|
197514
197794
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197515
197795
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197516
197796
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197797
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197798
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197517
197799
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197518
197800
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197519
197801
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197559,6 +197841,8 @@ type billing_match_transaction_linesCreateManyTransaction_typeInput = {
|
|
|
197559
197841
|
local_currency_name?: string | null;
|
|
197560
197842
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197561
197843
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197844
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197845
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197562
197846
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197563
197847
|
house_bill_number?: string | null;
|
|
197564
197848
|
master_bill_number?: string | null;
|
|
@@ -197585,6 +197869,8 @@ type billing_match_transaction_linesUpdateWithoutTransaction_typeInput = {
|
|
|
197585
197869
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197586
197870
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197587
197871
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197872
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197873
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197588
197874
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197589
197875
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197590
197876
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197650,6 +197936,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutTransaction_typeInput
|
|
|
197650
197936
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197651
197937
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197652
197938
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197939
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197940
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197653
197941
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197654
197942
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197655
197943
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197696,6 +197984,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutTransaction_typeIn
|
|
|
197696
197984
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197697
197985
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197698
197986
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197987
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197988
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197699
197989
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197700
197990
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197701
197991
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197741,6 +198031,8 @@ type billing_match_transaction_linesCreateManyBilling_ledgerInput = {
|
|
|
197741
198031
|
local_currency_name?: string | null;
|
|
197742
198032
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197743
198033
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
198034
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
198035
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197744
198036
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197745
198037
|
house_bill_number?: string | null;
|
|
197746
198038
|
master_bill_number?: string | null;
|
|
@@ -197767,6 +198059,8 @@ type billing_match_transaction_linesUpdateWithoutBilling_ledgerInput = {
|
|
|
197767
198059
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197768
198060
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197769
198061
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198062
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198063
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197770
198064
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197771
198065
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197772
198066
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197832,6 +198126,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutBilling_ledgerInput =
|
|
|
197832
198126
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197833
198127
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197834
198128
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198129
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198130
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197835
198131
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197836
198132
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197837
198133
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197878,6 +198174,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutBilling_ledgerInpu
|
|
|
197878
198174
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197879
198175
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197880
198176
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198177
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198178
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197881
198179
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197882
198180
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197883
198181
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -197923,6 +198221,8 @@ type billing_match_transaction_linesCreateManyForwarding_shipmentInput = {
|
|
|
197923
198221
|
local_currency_name?: string | null;
|
|
197924
198222
|
outstanding_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197925
198223
|
local_outstanding?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
198224
|
+
paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
198225
|
+
local_paid_amount?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197926
198226
|
ex_rate?: Decimal | DecimalJsLike$1 | number | string | null;
|
|
197927
198227
|
house_bill_number?: string | null;
|
|
197928
198228
|
master_bill_number?: string | null;
|
|
@@ -197949,6 +198249,8 @@ type billing_match_transaction_linesUpdateWithoutForwarding_shipmentInput = {
|
|
|
197949
198249
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197950
198250
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197951
198251
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198252
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198253
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197952
198254
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
197953
198255
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
197954
198256
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -198014,6 +198316,8 @@ type billing_match_transaction_linesUncheckedUpdateWithoutForwarding_shipmentInp
|
|
|
198014
198316
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
198015
198317
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198016
198318
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198319
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198320
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198017
198321
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198018
198322
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
198019
198323
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -198060,6 +198364,8 @@ type billing_match_transaction_linesUncheckedUpdateManyWithoutForwarding_shipmen
|
|
|
198060
198364
|
local_currency_name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
198061
198365
|
outstanding_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198062
198366
|
local_outstanding?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198367
|
+
paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198368
|
+
local_paid_amount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198063
198369
|
ex_rate?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike$1 | number | string | null;
|
|
198064
198370
|
house_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
198065
198371
|
master_bill_number?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
@@ -198130,6 +198436,8 @@ type billing_match_transaction_linesSelect<ExtArgs extends Types$1.Extensions.In
|
|
|
198130
198436
|
local_currency_name?: boolean;
|
|
198131
198437
|
outstanding_amount?: boolean;
|
|
198132
198438
|
local_outstanding?: boolean;
|
|
198439
|
+
paid_amount?: boolean;
|
|
198440
|
+
local_paid_amount?: boolean;
|
|
198133
198441
|
ex_rate?: boolean;
|
|
198134
198442
|
house_bill_number?: boolean;
|
|
198135
198443
|
master_bill_number?: boolean;
|
|
@@ -198198,6 +198506,8 @@ type billing_match_transaction_linesSelectCreateManyAndReturn<ExtArgs extends Ty
|
|
|
198198
198506
|
local_currency_name?: boolean;
|
|
198199
198507
|
outstanding_amount?: boolean;
|
|
198200
198508
|
local_outstanding?: boolean;
|
|
198509
|
+
paid_amount?: boolean;
|
|
198510
|
+
local_paid_amount?: boolean;
|
|
198201
198511
|
ex_rate?: boolean;
|
|
198202
198512
|
house_bill_number?: boolean;
|
|
198203
198513
|
master_bill_number?: boolean;
|
|
@@ -198264,6 +198574,8 @@ type billing_match_transaction_linesSelectUpdateManyAndReturn<ExtArgs extends Ty
|
|
|
198264
198574
|
local_currency_name?: boolean;
|
|
198265
198575
|
outstanding_amount?: boolean;
|
|
198266
198576
|
local_outstanding?: boolean;
|
|
198577
|
+
paid_amount?: boolean;
|
|
198578
|
+
local_paid_amount?: boolean;
|
|
198267
198579
|
ex_rate?: boolean;
|
|
198268
198580
|
house_bill_number?: boolean;
|
|
198269
198581
|
master_bill_number?: boolean;
|
|
@@ -198330,6 +198642,8 @@ type billing_match_transaction_linesSelectScalar = {
|
|
|
198330
198642
|
local_currency_name?: boolean;
|
|
198331
198643
|
outstanding_amount?: boolean;
|
|
198332
198644
|
local_outstanding?: boolean;
|
|
198645
|
+
paid_amount?: boolean;
|
|
198646
|
+
local_paid_amount?: boolean;
|
|
198333
198647
|
ex_rate?: boolean;
|
|
198334
198648
|
house_bill_number?: boolean;
|
|
198335
198649
|
master_bill_number?: boolean;
|
|
@@ -198338,7 +198652,7 @@ type billing_match_transaction_linesSelectScalar = {
|
|
|
198338
198652
|
updated_at?: boolean;
|
|
198339
198653
|
updated_by?: boolean;
|
|
198340
198654
|
};
|
|
198341
|
-
type billing_match_transaction_linesOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_billing_match_transaction" | "id_ap_transaction" | "id_ar_transaction" | "id_ap_journal" | "id_ar_journal" | "id_ap_transfer" | "id_ar_transfer" | "id_ap_receipt" | "id_ar_receipt" | "id_ap_payment" | "id_ar_payment" | "id_contra" | "id_miscellaneous_transactions" | "id_organization" | "id_ledger" | "id_transaction_type" | "id_currency" | "id_local_currency" | "id_forwarding_shipment" | "id_forwarding_consol" | "organization_code" | "organization_name" | "ledger_code" | "ledger_name" | "transaction_type_code" | "transaction_type_name" | "reference_number" | "transaction_date" | "due_date" | "post_date" | "currency_code" | "currency_name" | "local_currency_code" | "local_currency_name" | "outstanding_amount" | "local_outstanding" | "ex_rate" | "house_bill_number" | "master_bill_number" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["billing_match_transaction_lines"]>;
|
|
198655
|
+
type billing_match_transaction_linesOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_billing_match_transaction" | "id_ap_transaction" | "id_ar_transaction" | "id_ap_journal" | "id_ar_journal" | "id_ap_transfer" | "id_ar_transfer" | "id_ap_receipt" | "id_ar_receipt" | "id_ap_payment" | "id_ar_payment" | "id_contra" | "id_miscellaneous_transactions" | "id_organization" | "id_ledger" | "id_transaction_type" | "id_currency" | "id_local_currency" | "id_forwarding_shipment" | "id_forwarding_consol" | "organization_code" | "organization_name" | "ledger_code" | "ledger_name" | "transaction_type_code" | "transaction_type_name" | "reference_number" | "transaction_date" | "due_date" | "post_date" | "currency_code" | "currency_name" | "local_currency_code" | "local_currency_name" | "outstanding_amount" | "local_outstanding" | "paid_amount" | "local_paid_amount" | "ex_rate" | "house_bill_number" | "master_bill_number" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["billing_match_transaction_lines"]>;
|
|
198342
198656
|
type billing_match_transaction_linesInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
|
|
198343
198657
|
billing_match_transaction?: boolean | billing_match_transaction_lines$billing_match_transactionArgs<ExtArgs>;
|
|
198344
198658
|
ap_transaction?: boolean | billing_match_transaction_lines$ap_transactionArgs<ExtArgs>;
|
|
@@ -198470,6 +198784,8 @@ type $billing_match_transaction_linesPayload<ExtArgs extends Types$1.Extensions.
|
|
|
198470
198784
|
local_currency_name: string | null;
|
|
198471
198785
|
outstanding_amount: Decimal | null;
|
|
198472
198786
|
local_outstanding: Decimal | null;
|
|
198787
|
+
paid_amount: Decimal | null;
|
|
198788
|
+
local_paid_amount: Decimal | null;
|
|
198473
198789
|
ex_rate: Decimal | null;
|
|
198474
198790
|
house_bill_number: string | null;
|
|
198475
198791
|
master_bill_number: string | null;
|
|
@@ -198876,6 +199192,8 @@ interface billing_match_transaction_linesFieldRefs {
|
|
|
198876
199192
|
readonly local_currency_name: FieldRef<"billing_match_transaction_lines", 'String'>;
|
|
198877
199193
|
readonly outstanding_amount: FieldRef<"billing_match_transaction_lines", 'Decimal'>;
|
|
198878
199194
|
readonly local_outstanding: FieldRef<"billing_match_transaction_lines", 'Decimal'>;
|
|
199195
|
+
readonly paid_amount: FieldRef<"billing_match_transaction_lines", 'Decimal'>;
|
|
199196
|
+
readonly local_paid_amount: FieldRef<"billing_match_transaction_lines", 'Decimal'>;
|
|
198879
199197
|
readonly ex_rate: FieldRef<"billing_match_transaction_lines", 'Decimal'>;
|
|
198880
199198
|
readonly house_bill_number: FieldRef<"billing_match_transaction_lines", 'String'>;
|
|
198881
199199
|
readonly master_bill_number: FieldRef<"billing_match_transaction_lines", 'String'>;
|
|
@@ -1134676,6 +1134994,8 @@ declare const Billing_match_transaction_linesScalarFieldEnum: {
|
|
|
1134676
1134994
|
readonly local_currency_name: "local_currency_name";
|
|
1134677
1134995
|
readonly outstanding_amount: "outstanding_amount";
|
|
1134678
1134996
|
readonly local_outstanding: "local_outstanding";
|
|
1134997
|
+
readonly paid_amount: "paid_amount";
|
|
1134998
|
+
readonly local_paid_amount: "local_paid_amount";
|
|
1134679
1134999
|
readonly ex_rate: "ex_rate";
|
|
1134680
1135000
|
readonly house_bill_number: "house_bill_number";
|
|
1134681
1135001
|
readonly master_bill_number: "master_bill_number";
|
|
@@ -1198687,25 +1199007,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1198687
1199007
|
updated_at: Date | null;
|
|
1198688
1199008
|
updated_by: string | null;
|
|
1198689
1199009
|
} | null;
|
|
1198690
|
-
ar_transfer_branch: {
|
|
1198691
|
-
is_active: boolean | null;
|
|
1198692
|
-
id: string;
|
|
1198693
|
-
logic_code: string | null;
|
|
1198694
|
-
name: string | null;
|
|
1198695
|
-
id_country: string | null;
|
|
1198696
|
-
id_state: string | null;
|
|
1198697
|
-
id_city: string | null;
|
|
1198698
|
-
id_postal_code: string | null;
|
|
1198699
|
-
id_company: string | null;
|
|
1198700
|
-
code: string | null;
|
|
1198701
|
-
address: string | null;
|
|
1198702
|
-
created_at: Date | null;
|
|
1198703
|
-
created_by: string | null;
|
|
1198704
|
-
updated_at: Date | null;
|
|
1198705
|
-
updated_by: string | null;
|
|
1198706
|
-
id_un_locode: string | null;
|
|
1198707
|
-
id_organization_self: string | null;
|
|
1198708
|
-
} | null;
|
|
1198709
1199010
|
from_account_org: {
|
|
1198710
1199011
|
is_active: boolean | null;
|
|
1198711
1199012
|
id: string;
|
|
@@ -1198824,6 +1199125,25 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1198824
1199125
|
decimal_unit: number | null;
|
|
1198825
1199126
|
iso_decimal: number | null;
|
|
1198826
1199127
|
} | null;
|
|
1199128
|
+
ar_transfer_branch: {
|
|
1199129
|
+
is_active: boolean | null;
|
|
1199130
|
+
id: string;
|
|
1199131
|
+
logic_code: string | null;
|
|
1199132
|
+
name: string | null;
|
|
1199133
|
+
id_country: string | null;
|
|
1199134
|
+
id_state: string | null;
|
|
1199135
|
+
id_city: string | null;
|
|
1199136
|
+
id_postal_code: string | null;
|
|
1199137
|
+
id_company: string | null;
|
|
1199138
|
+
code: string | null;
|
|
1199139
|
+
address: string | null;
|
|
1199140
|
+
created_at: Date | null;
|
|
1199141
|
+
created_by: string | null;
|
|
1199142
|
+
updated_at: Date | null;
|
|
1199143
|
+
updated_by: string | null;
|
|
1199144
|
+
id_un_locode: string | null;
|
|
1199145
|
+
id_organization_self: string | null;
|
|
1199146
|
+
} | null;
|
|
1198827
1199147
|
is_active: boolean | null;
|
|
1198828
1199148
|
id: string;
|
|
1198829
1199149
|
created_at: Date | null;
|
|
@@ -1198836,7 +1199156,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1198836
1199156
|
id_ledger: string | null;
|
|
1198837
1199157
|
post_date: Date | null;
|
|
1198838
1199158
|
is_posted: boolean | null;
|
|
1198839
|
-
id_ar_transfer_branch: string | null;
|
|
1198840
1199159
|
id_from_account_org: string | null;
|
|
1198841
1199160
|
id_to_account_org: string | null;
|
|
1198842
1199161
|
transfer_number: string | null;
|
|
@@ -1198857,6 +1199176,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1198857
1199176
|
to_due_date: Date | null;
|
|
1198858
1199177
|
to_amount_before: Decimal | null;
|
|
1198859
1199178
|
to_amount_after: Decimal | null;
|
|
1199179
|
+
id_ar_transfer_branch: string | null;
|
|
1198860
1199180
|
}[] | undefined;
|
|
1198861
1199181
|
total: number;
|
|
1198862
1199182
|
};
|
|
@@ -1198940,25 +1199260,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1198940
1199260
|
updated_at: Date | null;
|
|
1198941
1199261
|
updated_by: string | null;
|
|
1198942
1199262
|
} | null;
|
|
1198943
|
-
ar_transfer_branch: {
|
|
1198944
|
-
is_active: boolean | null;
|
|
1198945
|
-
id: string;
|
|
1198946
|
-
logic_code: string | null;
|
|
1198947
|
-
name: string | null;
|
|
1198948
|
-
id_country: string | null;
|
|
1198949
|
-
id_state: string | null;
|
|
1198950
|
-
id_city: string | null;
|
|
1198951
|
-
id_postal_code: string | null;
|
|
1198952
|
-
id_company: string | null;
|
|
1198953
|
-
code: string | null;
|
|
1198954
|
-
address: string | null;
|
|
1198955
|
-
created_at: Date | null;
|
|
1198956
|
-
created_by: string | null;
|
|
1198957
|
-
updated_at: Date | null;
|
|
1198958
|
-
updated_by: string | null;
|
|
1198959
|
-
id_un_locode: string | null;
|
|
1198960
|
-
id_organization_self: string | null;
|
|
1198961
|
-
} | null;
|
|
1198962
1199263
|
from_account_org: {
|
|
1198963
1199264
|
is_active: boolean | null;
|
|
1198964
1199265
|
id: string;
|
|
@@ -1199077,6 +1199378,25 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199077
1199378
|
decimal_unit: number | null;
|
|
1199078
1199379
|
iso_decimal: number | null;
|
|
1199079
1199380
|
} | null;
|
|
1199381
|
+
ar_transfer_branch: {
|
|
1199382
|
+
is_active: boolean | null;
|
|
1199383
|
+
id: string;
|
|
1199384
|
+
logic_code: string | null;
|
|
1199385
|
+
name: string | null;
|
|
1199386
|
+
id_country: string | null;
|
|
1199387
|
+
id_state: string | null;
|
|
1199388
|
+
id_city: string | null;
|
|
1199389
|
+
id_postal_code: string | null;
|
|
1199390
|
+
id_company: string | null;
|
|
1199391
|
+
code: string | null;
|
|
1199392
|
+
address: string | null;
|
|
1199393
|
+
created_at: Date | null;
|
|
1199394
|
+
created_by: string | null;
|
|
1199395
|
+
updated_at: Date | null;
|
|
1199396
|
+
updated_by: string | null;
|
|
1199397
|
+
id_un_locode: string | null;
|
|
1199398
|
+
id_organization_self: string | null;
|
|
1199399
|
+
} | null;
|
|
1199080
1199400
|
is_active: boolean | null;
|
|
1199081
1199401
|
id: string;
|
|
1199082
1199402
|
created_at: Date | null;
|
|
@@ -1199089,7 +1199409,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199089
1199409
|
id_ledger: string | null;
|
|
1199090
1199410
|
post_date: Date | null;
|
|
1199091
1199411
|
is_posted: boolean | null;
|
|
1199092
|
-
id_ar_transfer_branch: string | null;
|
|
1199093
1199412
|
id_from_account_org: string | null;
|
|
1199094
1199413
|
id_to_account_org: string | null;
|
|
1199095
1199414
|
transfer_number: string | null;
|
|
@@ -1199110,6 +1199429,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199110
1199429
|
to_due_date: Date | null;
|
|
1199111
1199430
|
to_amount_before: Decimal | null;
|
|
1199112
1199431
|
to_amount_after: Decimal | null;
|
|
1199432
|
+
id_ar_transfer_branch: string | null;
|
|
1199113
1199433
|
};
|
|
1199114
1199434
|
};
|
|
1199115
1199435
|
meta: object;
|
|
@@ -1199256,7 +1199576,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199256
1199576
|
id_ledger: string | null;
|
|
1199257
1199577
|
post_date: Date | null;
|
|
1199258
1199578
|
is_posted: boolean | null;
|
|
1199259
|
-
id_ar_transfer_branch: string | null;
|
|
1199260
1199579
|
id_from_account_org: string | null;
|
|
1199261
1199580
|
id_to_account_org: string | null;
|
|
1199262
1199581
|
transfer_number: string | null;
|
|
@@ -1199277,6 +1199596,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199277
1199596
|
to_due_date: Date | null;
|
|
1199278
1199597
|
to_amount_before: Decimal | null;
|
|
1199279
1199598
|
to_amount_after: Decimal | null;
|
|
1199599
|
+
id_ar_transfer_branch: string | null;
|
|
1199280
1199600
|
};
|
|
1199281
1199601
|
log: {
|
|
1199282
1199602
|
id: string;
|
|
@@ -1199338,7 +1199658,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199338
1199658
|
id_ledger: string | null;
|
|
1199339
1199659
|
post_date: Date | null;
|
|
1199340
1199660
|
is_posted: boolean | null;
|
|
1199341
|
-
id_ar_transfer_branch: string | null;
|
|
1199342
1199661
|
id_from_account_org: string | null;
|
|
1199343
1199662
|
id_to_account_org: string | null;
|
|
1199344
1199663
|
transfer_number: string | null;
|
|
@@ -1199359,6 +1199678,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199359
1199678
|
to_due_date: Date | null;
|
|
1199360
1199679
|
to_amount_before: Decimal | null;
|
|
1199361
1199680
|
to_amount_after: Decimal | null;
|
|
1199681
|
+
id_ar_transfer_branch: string | null;
|
|
1199362
1199682
|
};
|
|
1199363
1199683
|
log: {
|
|
1199364
1199684
|
id: string;
|
|
@@ -1199393,7 +1199713,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199393
1199713
|
id_ledger: string | null;
|
|
1199394
1199714
|
post_date: Date | null;
|
|
1199395
1199715
|
is_posted: boolean | null;
|
|
1199396
|
-
id_ar_transfer_branch: string | null;
|
|
1199397
1199716
|
id_from_account_org: string | null;
|
|
1199398
1199717
|
id_to_account_org: string | null;
|
|
1199399
1199718
|
transfer_number: string | null;
|
|
@@ -1199414,6 +1199733,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199414
1199733
|
to_due_date: Date | null;
|
|
1199415
1199734
|
to_amount_before: Decimal | null;
|
|
1199416
1199735
|
to_amount_after: Decimal | null;
|
|
1199736
|
+
id_ar_transfer_branch: string | null;
|
|
1199417
1199737
|
} | undefined)[] | undefined;
|
|
1199418
1199738
|
} | undefined;
|
|
1199419
1199739
|
meta: object;
|
|
@@ -1199495,7 +1199815,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199495
1199815
|
id_ledger: string | null;
|
|
1199496
1199816
|
post_date: Date | null;
|
|
1199497
1199817
|
is_posted: boolean | null;
|
|
1199498
|
-
id_ar_transfer_branch: string | null;
|
|
1199499
1199818
|
id_from_account_org: string | null;
|
|
1199500
1199819
|
id_to_account_org: string | null;
|
|
1199501
1199820
|
transfer_number: string | null;
|
|
@@ -1199516,6 +1199835,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199516
1199835
|
to_due_date: Date | null;
|
|
1199517
1199836
|
to_amount_before: Decimal | null;
|
|
1199518
1199837
|
to_amount_after: Decimal | null;
|
|
1199838
|
+
id_ar_transfer_branch: string | null;
|
|
1199519
1199839
|
};
|
|
1199520
1199840
|
log: {
|
|
1199521
1199841
|
id: string;
|
|
@@ -1199543,7 +1199863,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199543
1199863
|
id_ledger: string | null;
|
|
1199544
1199864
|
post_date: Date | null;
|
|
1199545
1199865
|
is_posted: boolean | null;
|
|
1199546
|
-
id_ar_transfer_branch: string | null;
|
|
1199547
1199866
|
id_from_account_org: string | null;
|
|
1199548
1199867
|
id_to_account_org: string | null;
|
|
1199549
1199868
|
transfer_number: string | null;
|
|
@@ -1199564,6 +1199883,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199564
1199883
|
to_due_date: Date | null;
|
|
1199565
1199884
|
to_amount_before: Decimal | null;
|
|
1199566
1199885
|
to_amount_after: Decimal | null;
|
|
1199886
|
+
id_ar_transfer_branch: string | null;
|
|
1199567
1199887
|
};
|
|
1199568
1199888
|
log: {
|
|
1199569
1199889
|
id: string;
|
|
@@ -1199717,25 +1200037,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199717
1200037
|
company_number: string | null;
|
|
1199718
1200038
|
company_tax_number: string | null;
|
|
1199719
1200039
|
} | null;
|
|
1199720
|
-
ar_receipt_branch: {
|
|
1199721
|
-
is_active: boolean | null;
|
|
1199722
|
-
id: string;
|
|
1199723
|
-
logic_code: string | null;
|
|
1199724
|
-
name: string | null;
|
|
1199725
|
-
id_country: string | null;
|
|
1199726
|
-
id_state: string | null;
|
|
1199727
|
-
id_city: string | null;
|
|
1199728
|
-
id_postal_code: string | null;
|
|
1199729
|
-
id_company: string | null;
|
|
1199730
|
-
code: string | null;
|
|
1199731
|
-
address: string | null;
|
|
1199732
|
-
created_at: Date | null;
|
|
1199733
|
-
created_by: string | null;
|
|
1199734
|
-
updated_at: Date | null;
|
|
1199735
|
-
updated_by: string | null;
|
|
1199736
|
-
id_un_locode: string | null;
|
|
1199737
|
-
id_organization_self: string | null;
|
|
1199738
|
-
} | null;
|
|
1199739
1200040
|
receipt_type: {
|
|
1199740
1200041
|
is_active: boolean | null;
|
|
1199741
1200042
|
id: string;
|
|
@@ -1199779,6 +1200080,25 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199779
1200080
|
is_detailed_deposit_slip: boolean | null;
|
|
1199780
1200081
|
is_default_receipt_account: boolean | null;
|
|
1199781
1200082
|
} | null;
|
|
1200083
|
+
ar_receipt_branch: {
|
|
1200084
|
+
is_active: boolean | null;
|
|
1200085
|
+
id: string;
|
|
1200086
|
+
logic_code: string | null;
|
|
1200087
|
+
name: string | null;
|
|
1200088
|
+
id_country: string | null;
|
|
1200089
|
+
id_state: string | null;
|
|
1200090
|
+
id_city: string | null;
|
|
1200091
|
+
id_postal_code: string | null;
|
|
1200092
|
+
id_company: string | null;
|
|
1200093
|
+
code: string | null;
|
|
1200094
|
+
address: string | null;
|
|
1200095
|
+
created_at: Date | null;
|
|
1200096
|
+
created_by: string | null;
|
|
1200097
|
+
updated_at: Date | null;
|
|
1200098
|
+
updated_by: string | null;
|
|
1200099
|
+
id_un_locode: string | null;
|
|
1200100
|
+
id_organization_self: string | null;
|
|
1200101
|
+
} | null;
|
|
1199782
1200102
|
is_active: boolean | null;
|
|
1199783
1200103
|
id: string;
|
|
1199784
1200104
|
created_at: Date | null;
|
|
@@ -1199792,7 +1200112,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199792
1200112
|
post_date: Date | null;
|
|
1199793
1200113
|
is_posted: boolean | null;
|
|
1199794
1200114
|
id_account_org: string | null;
|
|
1199795
|
-
id_ar_receipt_branch: string | null;
|
|
1199796
1200115
|
id_receipt_type: string | null;
|
|
1199797
1200116
|
id_bank_account: string | null;
|
|
1199798
1200117
|
receipt_base_rate: Decimal | null;
|
|
@@ -1199808,6 +1200127,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199808
1200127
|
cheque_bank: string | null;
|
|
1199809
1200128
|
cheque_branch: string | null;
|
|
1199810
1200129
|
receipt_number: string | null;
|
|
1200130
|
+
id_ar_receipt_branch: string | null;
|
|
1199811
1200131
|
}[] | undefined;
|
|
1199812
1200132
|
total: number;
|
|
1199813
1200133
|
};
|
|
@@ -1199915,25 +1200235,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199915
1200235
|
company_number: string | null;
|
|
1199916
1200236
|
company_tax_number: string | null;
|
|
1199917
1200237
|
} | null;
|
|
1199918
|
-
ar_receipt_branch: {
|
|
1199919
|
-
is_active: boolean | null;
|
|
1199920
|
-
id: string;
|
|
1199921
|
-
logic_code: string | null;
|
|
1199922
|
-
name: string | null;
|
|
1199923
|
-
id_country: string | null;
|
|
1199924
|
-
id_state: string | null;
|
|
1199925
|
-
id_city: string | null;
|
|
1199926
|
-
id_postal_code: string | null;
|
|
1199927
|
-
id_company: string | null;
|
|
1199928
|
-
code: string | null;
|
|
1199929
|
-
address: string | null;
|
|
1199930
|
-
created_at: Date | null;
|
|
1199931
|
-
created_by: string | null;
|
|
1199932
|
-
updated_at: Date | null;
|
|
1199933
|
-
updated_by: string | null;
|
|
1199934
|
-
id_un_locode: string | null;
|
|
1199935
|
-
id_organization_self: string | null;
|
|
1199936
|
-
} | null;
|
|
1199937
1200238
|
receipt_type: {
|
|
1199938
1200239
|
is_active: boolean | null;
|
|
1199939
1200240
|
id: string;
|
|
@@ -1199977,6 +1200278,25 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199977
1200278
|
is_detailed_deposit_slip: boolean | null;
|
|
1199978
1200279
|
is_default_receipt_account: boolean | null;
|
|
1199979
1200280
|
} | null;
|
|
1200281
|
+
ar_receipt_branch: {
|
|
1200282
|
+
is_active: boolean | null;
|
|
1200283
|
+
id: string;
|
|
1200284
|
+
logic_code: string | null;
|
|
1200285
|
+
name: string | null;
|
|
1200286
|
+
id_country: string | null;
|
|
1200287
|
+
id_state: string | null;
|
|
1200288
|
+
id_city: string | null;
|
|
1200289
|
+
id_postal_code: string | null;
|
|
1200290
|
+
id_company: string | null;
|
|
1200291
|
+
code: string | null;
|
|
1200292
|
+
address: string | null;
|
|
1200293
|
+
created_at: Date | null;
|
|
1200294
|
+
created_by: string | null;
|
|
1200295
|
+
updated_at: Date | null;
|
|
1200296
|
+
updated_by: string | null;
|
|
1200297
|
+
id_un_locode: string | null;
|
|
1200298
|
+
id_organization_self: string | null;
|
|
1200299
|
+
} | null;
|
|
1199980
1200300
|
is_active: boolean | null;
|
|
1199981
1200301
|
id: string;
|
|
1199982
1200302
|
created_at: Date | null;
|
|
@@ -1199990,7 +1200310,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1199990
1200310
|
post_date: Date | null;
|
|
1199991
1200311
|
is_posted: boolean | null;
|
|
1199992
1200312
|
id_account_org: string | null;
|
|
1199993
|
-
id_ar_receipt_branch: string | null;
|
|
1199994
1200313
|
id_receipt_type: string | null;
|
|
1199995
1200314
|
id_bank_account: string | null;
|
|
1199996
1200315
|
receipt_base_rate: Decimal | null;
|
|
@@ -1200006,6 +1200325,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200006
1200325
|
cheque_bank: string | null;
|
|
1200007
1200326
|
cheque_branch: string | null;
|
|
1200008
1200327
|
receipt_number: string | null;
|
|
1200328
|
+
id_ar_receipt_branch: string | null;
|
|
1200009
1200329
|
};
|
|
1200010
1200330
|
};
|
|
1200011
1200331
|
meta: object;
|
|
@@ -1200148,7 +1200468,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200148
1200468
|
post_date: Date | null;
|
|
1200149
1200469
|
is_posted: boolean | null;
|
|
1200150
1200470
|
id_account_org: string | null;
|
|
1200151
|
-
id_ar_receipt_branch: string | null;
|
|
1200152
1200471
|
id_receipt_type: string | null;
|
|
1200153
1200472
|
id_bank_account: string | null;
|
|
1200154
1200473
|
receipt_base_rate: Decimal | null;
|
|
@@ -1200164,6 +1200483,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200164
1200483
|
cheque_bank: string | null;
|
|
1200165
1200484
|
cheque_branch: string | null;
|
|
1200166
1200485
|
receipt_number: string | null;
|
|
1200486
|
+
id_ar_receipt_branch: string | null;
|
|
1200167
1200487
|
};
|
|
1200168
1200488
|
log: {
|
|
1200169
1200489
|
id: string;
|
|
@@ -1200221,7 +1200541,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200221
1200541
|
post_date: Date | null;
|
|
1200222
1200542
|
is_posted: boolean | null;
|
|
1200223
1200543
|
id_account_org: string | null;
|
|
1200224
|
-
id_ar_receipt_branch: string | null;
|
|
1200225
1200544
|
id_receipt_type: string | null;
|
|
1200226
1200545
|
id_bank_account: string | null;
|
|
1200227
1200546
|
receipt_base_rate: Decimal | null;
|
|
@@ -1200237,6 +1200556,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200237
1200556
|
cheque_bank: string | null;
|
|
1200238
1200557
|
cheque_branch: string | null;
|
|
1200239
1200558
|
receipt_number: string | null;
|
|
1200559
|
+
id_ar_receipt_branch: string | null;
|
|
1200240
1200560
|
};
|
|
1200241
1200561
|
log: {
|
|
1200242
1200562
|
id: string;
|
|
@@ -1200272,7 +1200592,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200272
1200592
|
post_date: Date | null;
|
|
1200273
1200593
|
is_posted: boolean | null;
|
|
1200274
1200594
|
id_account_org: string | null;
|
|
1200275
|
-
id_ar_receipt_branch: string | null;
|
|
1200276
1200595
|
id_receipt_type: string | null;
|
|
1200277
1200596
|
id_bank_account: string | null;
|
|
1200278
1200597
|
receipt_base_rate: Decimal | null;
|
|
@@ -1200288,6 +1200607,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200288
1200607
|
cheque_bank: string | null;
|
|
1200289
1200608
|
cheque_branch: string | null;
|
|
1200290
1200609
|
receipt_number: string | null;
|
|
1200610
|
+
id_ar_receipt_branch: string | null;
|
|
1200291
1200611
|
} | undefined)[] | undefined;
|
|
1200292
1200612
|
} | undefined;
|
|
1200293
1200613
|
meta: object;
|
|
@@ -1200360,7 +1200680,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200360
1200680
|
post_date: Date | null;
|
|
1200361
1200681
|
is_posted: boolean | null;
|
|
1200362
1200682
|
id_account_org: string | null;
|
|
1200363
|
-
id_ar_receipt_branch: string | null;
|
|
1200364
1200683
|
id_receipt_type: string | null;
|
|
1200365
1200684
|
id_bank_account: string | null;
|
|
1200366
1200685
|
receipt_base_rate: Decimal | null;
|
|
@@ -1200376,6 +1200695,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200376
1200695
|
cheque_bank: string | null;
|
|
1200377
1200696
|
cheque_branch: string | null;
|
|
1200378
1200697
|
receipt_number: string | null;
|
|
1200698
|
+
id_ar_receipt_branch: string | null;
|
|
1200379
1200699
|
};
|
|
1200380
1200700
|
log: {
|
|
1200381
1200701
|
id: string;
|
|
@@ -1200404,7 +1200724,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200404
1200724
|
post_date: Date | null;
|
|
1200405
1200725
|
is_posted: boolean | null;
|
|
1200406
1200726
|
id_account_org: string | null;
|
|
1200407
|
-
id_ar_receipt_branch: string | null;
|
|
1200408
1200727
|
id_receipt_type: string | null;
|
|
1200409
1200728
|
id_bank_account: string | null;
|
|
1200410
1200729
|
receipt_base_rate: Decimal | null;
|
|
@@ -1200420,6 +1200739,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200420
1200739
|
cheque_bank: string | null;
|
|
1200421
1200740
|
cheque_branch: string | null;
|
|
1200422
1200741
|
receipt_number: string | null;
|
|
1200742
|
+
id_ar_receipt_branch: string | null;
|
|
1200423
1200743
|
};
|
|
1200424
1200744
|
log: {
|
|
1200425
1200745
|
id: string;
|
|
@@ -1200608,25 +1200928,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200608
1200928
|
is_detailed_deposit_slip: boolean | null;
|
|
1200609
1200929
|
is_default_receipt_account: boolean | null;
|
|
1200610
1200930
|
} | null;
|
|
1200611
|
-
ar_payment_branch: {
|
|
1200612
|
-
is_active: boolean | null;
|
|
1200613
|
-
id: string;
|
|
1200614
|
-
logic_code: string | null;
|
|
1200615
|
-
name: string | null;
|
|
1200616
|
-
id_country: string | null;
|
|
1200617
|
-
id_state: string | null;
|
|
1200618
|
-
id_city: string | null;
|
|
1200619
|
-
id_postal_code: string | null;
|
|
1200620
|
-
id_company: string | null;
|
|
1200621
|
-
code: string | null;
|
|
1200622
|
-
address: string | null;
|
|
1200623
|
-
created_at: Date | null;
|
|
1200624
|
-
created_by: string | null;
|
|
1200625
|
-
updated_at: Date | null;
|
|
1200626
|
-
updated_by: string | null;
|
|
1200627
|
-
id_un_locode: string | null;
|
|
1200628
|
-
id_organization_self: string | null;
|
|
1200629
|
-
} | null;
|
|
1200630
1200931
|
account_org_address: {
|
|
1200631
1200932
|
is_active: boolean | null;
|
|
1200632
1200933
|
id: string;
|
|
@@ -1200671,6 +1200972,25 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200671
1200972
|
updated_at: Date | null;
|
|
1200672
1200973
|
updated_by: string | null;
|
|
1200673
1200974
|
} | null;
|
|
1200975
|
+
ar_payment_branch: {
|
|
1200976
|
+
is_active: boolean | null;
|
|
1200977
|
+
id: string;
|
|
1200978
|
+
logic_code: string | null;
|
|
1200979
|
+
name: string | null;
|
|
1200980
|
+
id_country: string | null;
|
|
1200981
|
+
id_state: string | null;
|
|
1200982
|
+
id_city: string | null;
|
|
1200983
|
+
id_postal_code: string | null;
|
|
1200984
|
+
id_company: string | null;
|
|
1200985
|
+
code: string | null;
|
|
1200986
|
+
address: string | null;
|
|
1200987
|
+
created_at: Date | null;
|
|
1200988
|
+
created_by: string | null;
|
|
1200989
|
+
updated_at: Date | null;
|
|
1200990
|
+
updated_by: string | null;
|
|
1200991
|
+
id_un_locode: string | null;
|
|
1200992
|
+
id_organization_self: string | null;
|
|
1200993
|
+
} | null;
|
|
1200674
1200994
|
is_active: boolean | null;
|
|
1200675
1200995
|
id: string;
|
|
1200676
1200996
|
created_at: Date | null;
|
|
@@ -1200689,7 +1201009,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200689
1201009
|
cheque_drawer: string | null;
|
|
1200690
1201010
|
cheque_bank: string | null;
|
|
1200691
1201011
|
cheque_branch: string | null;
|
|
1200692
|
-
id_ar_payment_branch: string | null;
|
|
1200693
1201012
|
id_account_org_address: string | null;
|
|
1200694
1201013
|
id_payment_method: string | null;
|
|
1200695
1201014
|
id_approval_status: string | null;
|
|
@@ -1200702,6 +1201021,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200702
1201021
|
payment_description: string | null;
|
|
1200703
1201022
|
payment_bank_ref_no: string | null;
|
|
1200704
1201023
|
payment_number: string | null;
|
|
1201024
|
+
id_ar_payment_branch: string | null;
|
|
1200705
1201025
|
}[] | undefined;
|
|
1200706
1201026
|
total: number;
|
|
1200707
1201027
|
};
|
|
@@ -1200842,25 +1201162,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200842
1201162
|
is_detailed_deposit_slip: boolean | null;
|
|
1200843
1201163
|
is_default_receipt_account: boolean | null;
|
|
1200844
1201164
|
} | null;
|
|
1200845
|
-
ar_payment_branch: {
|
|
1200846
|
-
is_active: boolean | null;
|
|
1200847
|
-
id: string;
|
|
1200848
|
-
logic_code: string | null;
|
|
1200849
|
-
name: string | null;
|
|
1200850
|
-
id_country: string | null;
|
|
1200851
|
-
id_state: string | null;
|
|
1200852
|
-
id_city: string | null;
|
|
1200853
|
-
id_postal_code: string | null;
|
|
1200854
|
-
id_company: string | null;
|
|
1200855
|
-
code: string | null;
|
|
1200856
|
-
address: string | null;
|
|
1200857
|
-
created_at: Date | null;
|
|
1200858
|
-
created_by: string | null;
|
|
1200859
|
-
updated_at: Date | null;
|
|
1200860
|
-
updated_by: string | null;
|
|
1200861
|
-
id_un_locode: string | null;
|
|
1200862
|
-
id_organization_self: string | null;
|
|
1200863
|
-
} | null;
|
|
1200864
1201165
|
account_org_address: {
|
|
1200865
1201166
|
is_active: boolean | null;
|
|
1200866
1201167
|
id: string;
|
|
@@ -1200905,6 +1201206,25 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200905
1201206
|
updated_at: Date | null;
|
|
1200906
1201207
|
updated_by: string | null;
|
|
1200907
1201208
|
} | null;
|
|
1201209
|
+
ar_payment_branch: {
|
|
1201210
|
+
is_active: boolean | null;
|
|
1201211
|
+
id: string;
|
|
1201212
|
+
logic_code: string | null;
|
|
1201213
|
+
name: string | null;
|
|
1201214
|
+
id_country: string | null;
|
|
1201215
|
+
id_state: string | null;
|
|
1201216
|
+
id_city: string | null;
|
|
1201217
|
+
id_postal_code: string | null;
|
|
1201218
|
+
id_company: string | null;
|
|
1201219
|
+
code: string | null;
|
|
1201220
|
+
address: string | null;
|
|
1201221
|
+
created_at: Date | null;
|
|
1201222
|
+
created_by: string | null;
|
|
1201223
|
+
updated_at: Date | null;
|
|
1201224
|
+
updated_by: string | null;
|
|
1201225
|
+
id_un_locode: string | null;
|
|
1201226
|
+
id_organization_self: string | null;
|
|
1201227
|
+
} | null;
|
|
1200908
1201228
|
is_active: boolean | null;
|
|
1200909
1201229
|
id: string;
|
|
1200910
1201230
|
created_at: Date | null;
|
|
@@ -1200923,7 +1201243,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200923
1201243
|
cheque_drawer: string | null;
|
|
1200924
1201244
|
cheque_bank: string | null;
|
|
1200925
1201245
|
cheque_branch: string | null;
|
|
1200926
|
-
id_ar_payment_branch: string | null;
|
|
1200927
1201246
|
id_account_org_address: string | null;
|
|
1200928
1201247
|
id_payment_method: string | null;
|
|
1200929
1201248
|
id_approval_status: string | null;
|
|
@@ -1200936,6 +1201255,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1200936
1201255
|
payment_description: string | null;
|
|
1200937
1201256
|
payment_bank_ref_no: string | null;
|
|
1200938
1201257
|
payment_number: string | null;
|
|
1201258
|
+
id_ar_payment_branch: string | null;
|
|
1200939
1201259
|
};
|
|
1200940
1201260
|
};
|
|
1200941
1201261
|
meta: object;
|
|
@@ -1201085,7 +1201405,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201085
1201405
|
cheque_drawer: string | null;
|
|
1201086
1201406
|
cheque_bank: string | null;
|
|
1201087
1201407
|
cheque_branch: string | null;
|
|
1201088
|
-
id_ar_payment_branch: string | null;
|
|
1201089
1201408
|
id_account_org_address: string | null;
|
|
1201090
1201409
|
id_payment_method: string | null;
|
|
1201091
1201410
|
id_approval_status: string | null;
|
|
@@ -1201098,6 +1201417,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201098
1201417
|
payment_description: string | null;
|
|
1201099
1201418
|
payment_bank_ref_no: string | null;
|
|
1201100
1201419
|
payment_number: string | null;
|
|
1201420
|
+
id_ar_payment_branch: string | null;
|
|
1201101
1201421
|
};
|
|
1201102
1201422
|
log: {
|
|
1201103
1201423
|
id: string;
|
|
@@ -1201162,7 +1201482,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201162
1201482
|
cheque_drawer: string | null;
|
|
1201163
1201483
|
cheque_bank: string | null;
|
|
1201164
1201484
|
cheque_branch: string | null;
|
|
1201165
|
-
id_ar_payment_branch: string | null;
|
|
1201166
1201485
|
id_account_org_address: string | null;
|
|
1201167
1201486
|
id_payment_method: string | null;
|
|
1201168
1201487
|
id_approval_status: string | null;
|
|
@@ -1201175,6 +1201494,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201175
1201494
|
payment_description: string | null;
|
|
1201176
1201495
|
payment_bank_ref_no: string | null;
|
|
1201177
1201496
|
payment_number: string | null;
|
|
1201497
|
+
id_ar_payment_branch: string | null;
|
|
1201178
1201498
|
};
|
|
1201179
1201499
|
log: {
|
|
1201180
1201500
|
id: string;
|
|
@@ -1201215,7 +1201535,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201215
1201535
|
cheque_drawer: string | null;
|
|
1201216
1201536
|
cheque_bank: string | null;
|
|
1201217
1201537
|
cheque_branch: string | null;
|
|
1201218
|
-
id_ar_payment_branch: string | null;
|
|
1201219
1201538
|
id_account_org_address: string | null;
|
|
1201220
1201539
|
id_payment_method: string | null;
|
|
1201221
1201540
|
id_approval_status: string | null;
|
|
@@ -1201228,6 +1201547,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201228
1201547
|
payment_description: string | null;
|
|
1201229
1201548
|
payment_bank_ref_no: string | null;
|
|
1201230
1201549
|
payment_number: string | null;
|
|
1201550
|
+
id_ar_payment_branch: string | null;
|
|
1201231
1201551
|
} | undefined)[] | undefined;
|
|
1201232
1201552
|
} | undefined;
|
|
1201233
1201553
|
meta: object;
|
|
@@ -1201309,7 +1201629,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201309
1201629
|
cheque_drawer: string | null;
|
|
1201310
1201630
|
cheque_bank: string | null;
|
|
1201311
1201631
|
cheque_branch: string | null;
|
|
1201312
|
-
id_ar_payment_branch: string | null;
|
|
1201313
1201632
|
id_account_org_address: string | null;
|
|
1201314
1201633
|
id_payment_method: string | null;
|
|
1201315
1201634
|
id_approval_status: string | null;
|
|
@@ -1201322,6 +1201641,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201322
1201641
|
payment_description: string | null;
|
|
1201323
1201642
|
payment_bank_ref_no: string | null;
|
|
1201324
1201643
|
payment_number: string | null;
|
|
1201644
|
+
id_ar_payment_branch: string | null;
|
|
1201325
1201645
|
};
|
|
1201326
1201646
|
log: {
|
|
1201327
1201647
|
id: string;
|
|
@@ -1201355,7 +1201675,6 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201355
1201675
|
cheque_drawer: string | null;
|
|
1201356
1201676
|
cheque_bank: string | null;
|
|
1201357
1201677
|
cheque_branch: string | null;
|
|
1201358
|
-
id_ar_payment_branch: string | null;
|
|
1201359
1201678
|
id_account_org_address: string | null;
|
|
1201360
1201679
|
id_payment_method: string | null;
|
|
1201361
1201680
|
id_approval_status: string | null;
|
|
@@ -1201368,6 +1201687,7 @@ declare const inflowRouter: BuiltRouter<{
|
|
|
1201368
1201687
|
payment_description: string | null;
|
|
1201369
1201688
|
payment_bank_ref_no: string | null;
|
|
1201370
1201689
|
payment_number: string | null;
|
|
1201690
|
+
id_ar_payment_branch: string | null;
|
|
1201371
1201691
|
};
|
|
1201372
1201692
|
log: {
|
|
1201373
1201693
|
id: string;
|
|
@@ -1206660,6 +1206980,25 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1206660
1206980
|
updated_at: Date | null;
|
|
1206661
1206981
|
updated_by: string | null;
|
|
1206662
1206982
|
} | null;
|
|
1206983
|
+
ap_transfer_branch: {
|
|
1206984
|
+
is_active: boolean | null;
|
|
1206985
|
+
id: string;
|
|
1206986
|
+
logic_code: string | null;
|
|
1206987
|
+
name: string | null;
|
|
1206988
|
+
id_country: string | null;
|
|
1206989
|
+
id_state: string | null;
|
|
1206990
|
+
id_city: string | null;
|
|
1206991
|
+
id_postal_code: string | null;
|
|
1206992
|
+
id_company: string | null;
|
|
1206993
|
+
code: string | null;
|
|
1206994
|
+
address: string | null;
|
|
1206995
|
+
created_at: Date | null;
|
|
1206996
|
+
created_by: string | null;
|
|
1206997
|
+
updated_at: Date | null;
|
|
1206998
|
+
updated_by: string | null;
|
|
1206999
|
+
id_un_locode: string | null;
|
|
1207000
|
+
id_organization_self: string | null;
|
|
1207001
|
+
} | null;
|
|
1206663
1207002
|
from_account_org: {
|
|
1206664
1207003
|
is_active: boolean | null;
|
|
1206665
1207004
|
id: string;
|
|
@@ -1206778,25 +1207117,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1206778
1207117
|
decimal_unit: number | null;
|
|
1206779
1207118
|
iso_decimal: number | null;
|
|
1206780
1207119
|
} | null;
|
|
1206781
|
-
ap_transfer_branch: {
|
|
1206782
|
-
is_active: boolean | null;
|
|
1206783
|
-
id: string;
|
|
1206784
|
-
logic_code: string | null;
|
|
1206785
|
-
name: string | null;
|
|
1206786
|
-
id_country: string | null;
|
|
1206787
|
-
id_state: string | null;
|
|
1206788
|
-
id_city: string | null;
|
|
1206789
|
-
id_postal_code: string | null;
|
|
1206790
|
-
id_company: string | null;
|
|
1206791
|
-
code: string | null;
|
|
1206792
|
-
address: string | null;
|
|
1206793
|
-
created_at: Date | null;
|
|
1206794
|
-
created_by: string | null;
|
|
1206795
|
-
updated_at: Date | null;
|
|
1206796
|
-
updated_by: string | null;
|
|
1206797
|
-
id_un_locode: string | null;
|
|
1206798
|
-
id_organization_self: string | null;
|
|
1206799
|
-
} | null;
|
|
1206800
1207120
|
is_active: boolean | null;
|
|
1206801
1207121
|
id: string;
|
|
1206802
1207122
|
created_at: Date | null;
|
|
@@ -1206809,6 +1207129,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1206809
1207129
|
id_ledger: string | null;
|
|
1206810
1207130
|
post_date: Date | null;
|
|
1206811
1207131
|
is_posted: boolean | null;
|
|
1207132
|
+
id_ap_transfer_branch: string | null;
|
|
1206812
1207133
|
id_from_account_org: string | null;
|
|
1206813
1207134
|
id_to_account_org: string | null;
|
|
1206814
1207135
|
transfer_number: string | null;
|
|
@@ -1206829,7 +1207150,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1206829
1207150
|
to_due_date: Date | null;
|
|
1206830
1207151
|
to_amount_before: Decimal | null;
|
|
1206831
1207152
|
to_amount_after: Decimal | null;
|
|
1206832
|
-
id_ap_transfer_branch: string | null;
|
|
1206833
1207153
|
}[] | undefined;
|
|
1206834
1207154
|
total: number;
|
|
1206835
1207155
|
};
|
|
@@ -1206913,6 +1207233,25 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1206913
1207233
|
updated_at: Date | null;
|
|
1206914
1207234
|
updated_by: string | null;
|
|
1206915
1207235
|
} | null;
|
|
1207236
|
+
ap_transfer_branch: {
|
|
1207237
|
+
is_active: boolean | null;
|
|
1207238
|
+
id: string;
|
|
1207239
|
+
logic_code: string | null;
|
|
1207240
|
+
name: string | null;
|
|
1207241
|
+
id_country: string | null;
|
|
1207242
|
+
id_state: string | null;
|
|
1207243
|
+
id_city: string | null;
|
|
1207244
|
+
id_postal_code: string | null;
|
|
1207245
|
+
id_company: string | null;
|
|
1207246
|
+
code: string | null;
|
|
1207247
|
+
address: string | null;
|
|
1207248
|
+
created_at: Date | null;
|
|
1207249
|
+
created_by: string | null;
|
|
1207250
|
+
updated_at: Date | null;
|
|
1207251
|
+
updated_by: string | null;
|
|
1207252
|
+
id_un_locode: string | null;
|
|
1207253
|
+
id_organization_self: string | null;
|
|
1207254
|
+
} | null;
|
|
1206916
1207255
|
from_account_org: {
|
|
1206917
1207256
|
is_active: boolean | null;
|
|
1206918
1207257
|
id: string;
|
|
@@ -1207031,25 +1207370,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207031
1207370
|
decimal_unit: number | null;
|
|
1207032
1207371
|
iso_decimal: number | null;
|
|
1207033
1207372
|
} | null;
|
|
1207034
|
-
ap_transfer_branch: {
|
|
1207035
|
-
is_active: boolean | null;
|
|
1207036
|
-
id: string;
|
|
1207037
|
-
logic_code: string | null;
|
|
1207038
|
-
name: string | null;
|
|
1207039
|
-
id_country: string | null;
|
|
1207040
|
-
id_state: string | null;
|
|
1207041
|
-
id_city: string | null;
|
|
1207042
|
-
id_postal_code: string | null;
|
|
1207043
|
-
id_company: string | null;
|
|
1207044
|
-
code: string | null;
|
|
1207045
|
-
address: string | null;
|
|
1207046
|
-
created_at: Date | null;
|
|
1207047
|
-
created_by: string | null;
|
|
1207048
|
-
updated_at: Date | null;
|
|
1207049
|
-
updated_by: string | null;
|
|
1207050
|
-
id_un_locode: string | null;
|
|
1207051
|
-
id_organization_self: string | null;
|
|
1207052
|
-
} | null;
|
|
1207053
1207373
|
is_active: boolean | null;
|
|
1207054
1207374
|
id: string;
|
|
1207055
1207375
|
created_at: Date | null;
|
|
@@ -1207062,6 +1207382,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207062
1207382
|
id_ledger: string | null;
|
|
1207063
1207383
|
post_date: Date | null;
|
|
1207064
1207384
|
is_posted: boolean | null;
|
|
1207385
|
+
id_ap_transfer_branch: string | null;
|
|
1207065
1207386
|
id_from_account_org: string | null;
|
|
1207066
1207387
|
id_to_account_org: string | null;
|
|
1207067
1207388
|
transfer_number: string | null;
|
|
@@ -1207082,7 +1207403,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207082
1207403
|
to_due_date: Date | null;
|
|
1207083
1207404
|
to_amount_before: Decimal | null;
|
|
1207084
1207405
|
to_amount_after: Decimal | null;
|
|
1207085
|
-
id_ap_transfer_branch: string | null;
|
|
1207086
1207406
|
};
|
|
1207087
1207407
|
};
|
|
1207088
1207408
|
meta: object;
|
|
@@ -1207229,6 +1207549,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207229
1207549
|
id_ledger: string | null;
|
|
1207230
1207550
|
post_date: Date | null;
|
|
1207231
1207551
|
is_posted: boolean | null;
|
|
1207552
|
+
id_ap_transfer_branch: string | null;
|
|
1207232
1207553
|
id_from_account_org: string | null;
|
|
1207233
1207554
|
id_to_account_org: string | null;
|
|
1207234
1207555
|
transfer_number: string | null;
|
|
@@ -1207249,7 +1207570,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207249
1207570
|
to_due_date: Date | null;
|
|
1207250
1207571
|
to_amount_before: Decimal | null;
|
|
1207251
1207572
|
to_amount_after: Decimal | null;
|
|
1207252
|
-
id_ap_transfer_branch: string | null;
|
|
1207253
1207573
|
};
|
|
1207254
1207574
|
log: {
|
|
1207255
1207575
|
id: string;
|
|
@@ -1207311,6 +1207631,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207311
1207631
|
id_ledger: string | null;
|
|
1207312
1207632
|
post_date: Date | null;
|
|
1207313
1207633
|
is_posted: boolean | null;
|
|
1207634
|
+
id_ap_transfer_branch: string | null;
|
|
1207314
1207635
|
id_from_account_org: string | null;
|
|
1207315
1207636
|
id_to_account_org: string | null;
|
|
1207316
1207637
|
transfer_number: string | null;
|
|
@@ -1207331,7 +1207652,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207331
1207652
|
to_due_date: Date | null;
|
|
1207332
1207653
|
to_amount_before: Decimal | null;
|
|
1207333
1207654
|
to_amount_after: Decimal | null;
|
|
1207334
|
-
id_ap_transfer_branch: string | null;
|
|
1207335
1207655
|
};
|
|
1207336
1207656
|
log: {
|
|
1207337
1207657
|
id: string;
|
|
@@ -1207366,6 +1207686,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207366
1207686
|
id_ledger: string | null;
|
|
1207367
1207687
|
post_date: Date | null;
|
|
1207368
1207688
|
is_posted: boolean | null;
|
|
1207689
|
+
id_ap_transfer_branch: string | null;
|
|
1207369
1207690
|
id_from_account_org: string | null;
|
|
1207370
1207691
|
id_to_account_org: string | null;
|
|
1207371
1207692
|
transfer_number: string | null;
|
|
@@ -1207386,7 +1207707,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207386
1207707
|
to_due_date: Date | null;
|
|
1207387
1207708
|
to_amount_before: Decimal | null;
|
|
1207388
1207709
|
to_amount_after: Decimal | null;
|
|
1207389
|
-
id_ap_transfer_branch: string | null;
|
|
1207390
1207710
|
} | undefined)[] | undefined;
|
|
1207391
1207711
|
} | undefined;
|
|
1207392
1207712
|
meta: object;
|
|
@@ -1207468,6 +1207788,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207468
1207788
|
id_ledger: string | null;
|
|
1207469
1207789
|
post_date: Date | null;
|
|
1207470
1207790
|
is_posted: boolean | null;
|
|
1207791
|
+
id_ap_transfer_branch: string | null;
|
|
1207471
1207792
|
id_from_account_org: string | null;
|
|
1207472
1207793
|
id_to_account_org: string | null;
|
|
1207473
1207794
|
transfer_number: string | null;
|
|
@@ -1207488,7 +1207809,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207488
1207809
|
to_due_date: Date | null;
|
|
1207489
1207810
|
to_amount_before: Decimal | null;
|
|
1207490
1207811
|
to_amount_after: Decimal | null;
|
|
1207491
|
-
id_ap_transfer_branch: string | null;
|
|
1207492
1207812
|
};
|
|
1207493
1207813
|
log: {
|
|
1207494
1207814
|
id: string;
|
|
@@ -1207516,6 +1207836,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207516
1207836
|
id_ledger: string | null;
|
|
1207517
1207837
|
post_date: Date | null;
|
|
1207518
1207838
|
is_posted: boolean | null;
|
|
1207839
|
+
id_ap_transfer_branch: string | null;
|
|
1207519
1207840
|
id_from_account_org: string | null;
|
|
1207520
1207841
|
id_to_account_org: string | null;
|
|
1207521
1207842
|
transfer_number: string | null;
|
|
@@ -1207536,7 +1207857,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207536
1207857
|
to_due_date: Date | null;
|
|
1207537
1207858
|
to_amount_before: Decimal | null;
|
|
1207538
1207859
|
to_amount_after: Decimal | null;
|
|
1207539
|
-
id_ap_transfer_branch: string | null;
|
|
1207540
1207860
|
};
|
|
1207541
1207861
|
log: {
|
|
1207542
1207862
|
id: string;
|
|
@@ -1207690,6 +1208010,25 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207690
1208010
|
company_number: string | null;
|
|
1207691
1208011
|
company_tax_number: string | null;
|
|
1207692
1208012
|
} | null;
|
|
1208013
|
+
ap_receipt_branch: {
|
|
1208014
|
+
is_active: boolean | null;
|
|
1208015
|
+
id: string;
|
|
1208016
|
+
logic_code: string | null;
|
|
1208017
|
+
name: string | null;
|
|
1208018
|
+
id_country: string | null;
|
|
1208019
|
+
id_state: string | null;
|
|
1208020
|
+
id_city: string | null;
|
|
1208021
|
+
id_postal_code: string | null;
|
|
1208022
|
+
id_company: string | null;
|
|
1208023
|
+
code: string | null;
|
|
1208024
|
+
address: string | null;
|
|
1208025
|
+
created_at: Date | null;
|
|
1208026
|
+
created_by: string | null;
|
|
1208027
|
+
updated_at: Date | null;
|
|
1208028
|
+
updated_by: string | null;
|
|
1208029
|
+
id_un_locode: string | null;
|
|
1208030
|
+
id_organization_self: string | null;
|
|
1208031
|
+
} | null;
|
|
1207693
1208032
|
receipt_type: {
|
|
1207694
1208033
|
is_active: boolean | null;
|
|
1207695
1208034
|
id: string;
|
|
@@ -1207733,25 +1208072,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207733
1208072
|
is_detailed_deposit_slip: boolean | null;
|
|
1207734
1208073
|
is_default_receipt_account: boolean | null;
|
|
1207735
1208074
|
} | null;
|
|
1207736
|
-
ap_receipt_branch: {
|
|
1207737
|
-
is_active: boolean | null;
|
|
1207738
|
-
id: string;
|
|
1207739
|
-
logic_code: string | null;
|
|
1207740
|
-
name: string | null;
|
|
1207741
|
-
id_country: string | null;
|
|
1207742
|
-
id_state: string | null;
|
|
1207743
|
-
id_city: string | null;
|
|
1207744
|
-
id_postal_code: string | null;
|
|
1207745
|
-
id_company: string | null;
|
|
1207746
|
-
code: string | null;
|
|
1207747
|
-
address: string | null;
|
|
1207748
|
-
created_at: Date | null;
|
|
1207749
|
-
created_by: string | null;
|
|
1207750
|
-
updated_at: Date | null;
|
|
1207751
|
-
updated_by: string | null;
|
|
1207752
|
-
id_un_locode: string | null;
|
|
1207753
|
-
id_organization_self: string | null;
|
|
1207754
|
-
} | null;
|
|
1207755
1208075
|
is_active: boolean | null;
|
|
1207756
1208076
|
id: string;
|
|
1207757
1208077
|
created_at: Date | null;
|
|
@@ -1207765,6 +1208085,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207765
1208085
|
post_date: Date | null;
|
|
1207766
1208086
|
is_posted: boolean | null;
|
|
1207767
1208087
|
id_account_org: string | null;
|
|
1208088
|
+
id_ap_receipt_branch: string | null;
|
|
1207768
1208089
|
id_receipt_type: string | null;
|
|
1207769
1208090
|
id_bank_account: string | null;
|
|
1207770
1208091
|
receipt_base_rate: Decimal | null;
|
|
@@ -1207780,7 +1208101,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207780
1208101
|
cheque_bank: string | null;
|
|
1207781
1208102
|
cheque_branch: string | null;
|
|
1207782
1208103
|
receipt_number: string | null;
|
|
1207783
|
-
id_ap_receipt_branch: string | null;
|
|
1207784
1208104
|
}[] | undefined;
|
|
1207785
1208105
|
total: number;
|
|
1207786
1208106
|
};
|
|
@@ -1207888,6 +1208208,25 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207888
1208208
|
company_number: string | null;
|
|
1207889
1208209
|
company_tax_number: string | null;
|
|
1207890
1208210
|
} | null;
|
|
1208211
|
+
ap_receipt_branch: {
|
|
1208212
|
+
is_active: boolean | null;
|
|
1208213
|
+
id: string;
|
|
1208214
|
+
logic_code: string | null;
|
|
1208215
|
+
name: string | null;
|
|
1208216
|
+
id_country: string | null;
|
|
1208217
|
+
id_state: string | null;
|
|
1208218
|
+
id_city: string | null;
|
|
1208219
|
+
id_postal_code: string | null;
|
|
1208220
|
+
id_company: string | null;
|
|
1208221
|
+
code: string | null;
|
|
1208222
|
+
address: string | null;
|
|
1208223
|
+
created_at: Date | null;
|
|
1208224
|
+
created_by: string | null;
|
|
1208225
|
+
updated_at: Date | null;
|
|
1208226
|
+
updated_by: string | null;
|
|
1208227
|
+
id_un_locode: string | null;
|
|
1208228
|
+
id_organization_self: string | null;
|
|
1208229
|
+
} | null;
|
|
1207891
1208230
|
receipt_type: {
|
|
1207892
1208231
|
is_active: boolean | null;
|
|
1207893
1208232
|
id: string;
|
|
@@ -1207931,25 +1208270,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207931
1208270
|
is_detailed_deposit_slip: boolean | null;
|
|
1207932
1208271
|
is_default_receipt_account: boolean | null;
|
|
1207933
1208272
|
} | null;
|
|
1207934
|
-
ap_receipt_branch: {
|
|
1207935
|
-
is_active: boolean | null;
|
|
1207936
|
-
id: string;
|
|
1207937
|
-
logic_code: string | null;
|
|
1207938
|
-
name: string | null;
|
|
1207939
|
-
id_country: string | null;
|
|
1207940
|
-
id_state: string | null;
|
|
1207941
|
-
id_city: string | null;
|
|
1207942
|
-
id_postal_code: string | null;
|
|
1207943
|
-
id_company: string | null;
|
|
1207944
|
-
code: string | null;
|
|
1207945
|
-
address: string | null;
|
|
1207946
|
-
created_at: Date | null;
|
|
1207947
|
-
created_by: string | null;
|
|
1207948
|
-
updated_at: Date | null;
|
|
1207949
|
-
updated_by: string | null;
|
|
1207950
|
-
id_un_locode: string | null;
|
|
1207951
|
-
id_organization_self: string | null;
|
|
1207952
|
-
} | null;
|
|
1207953
1208273
|
is_active: boolean | null;
|
|
1207954
1208274
|
id: string;
|
|
1207955
1208275
|
created_at: Date | null;
|
|
@@ -1207963,6 +1208283,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207963
1208283
|
post_date: Date | null;
|
|
1207964
1208284
|
is_posted: boolean | null;
|
|
1207965
1208285
|
id_account_org: string | null;
|
|
1208286
|
+
id_ap_receipt_branch: string | null;
|
|
1207966
1208287
|
id_receipt_type: string | null;
|
|
1207967
1208288
|
id_bank_account: string | null;
|
|
1207968
1208289
|
receipt_base_rate: Decimal | null;
|
|
@@ -1207978,7 +1208299,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1207978
1208299
|
cheque_bank: string | null;
|
|
1207979
1208300
|
cheque_branch: string | null;
|
|
1207980
1208301
|
receipt_number: string | null;
|
|
1207981
|
-
id_ap_receipt_branch: string | null;
|
|
1207982
1208302
|
};
|
|
1207983
1208303
|
};
|
|
1207984
1208304
|
meta: object;
|
|
@@ -1208121,6 +1208441,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208121
1208441
|
post_date: Date | null;
|
|
1208122
1208442
|
is_posted: boolean | null;
|
|
1208123
1208443
|
id_account_org: string | null;
|
|
1208444
|
+
id_ap_receipt_branch: string | null;
|
|
1208124
1208445
|
id_receipt_type: string | null;
|
|
1208125
1208446
|
id_bank_account: string | null;
|
|
1208126
1208447
|
receipt_base_rate: Decimal | null;
|
|
@@ -1208136,7 +1208457,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208136
1208457
|
cheque_bank: string | null;
|
|
1208137
1208458
|
cheque_branch: string | null;
|
|
1208138
1208459
|
receipt_number: string | null;
|
|
1208139
|
-
id_ap_receipt_branch: string | null;
|
|
1208140
1208460
|
};
|
|
1208141
1208461
|
log: {
|
|
1208142
1208462
|
id: string;
|
|
@@ -1208194,6 +1208514,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208194
1208514
|
post_date: Date | null;
|
|
1208195
1208515
|
is_posted: boolean | null;
|
|
1208196
1208516
|
id_account_org: string | null;
|
|
1208517
|
+
id_ap_receipt_branch: string | null;
|
|
1208197
1208518
|
id_receipt_type: string | null;
|
|
1208198
1208519
|
id_bank_account: string | null;
|
|
1208199
1208520
|
receipt_base_rate: Decimal | null;
|
|
@@ -1208209,7 +1208530,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208209
1208530
|
cheque_bank: string | null;
|
|
1208210
1208531
|
cheque_branch: string | null;
|
|
1208211
1208532
|
receipt_number: string | null;
|
|
1208212
|
-
id_ap_receipt_branch: string | null;
|
|
1208213
1208533
|
};
|
|
1208214
1208534
|
log: {
|
|
1208215
1208535
|
id: string;
|
|
@@ -1208245,6 +1208565,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208245
1208565
|
post_date: Date | null;
|
|
1208246
1208566
|
is_posted: boolean | null;
|
|
1208247
1208567
|
id_account_org: string | null;
|
|
1208568
|
+
id_ap_receipt_branch: string | null;
|
|
1208248
1208569
|
id_receipt_type: string | null;
|
|
1208249
1208570
|
id_bank_account: string | null;
|
|
1208250
1208571
|
receipt_base_rate: Decimal | null;
|
|
@@ -1208260,7 +1208581,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208260
1208581
|
cheque_bank: string | null;
|
|
1208261
1208582
|
cheque_branch: string | null;
|
|
1208262
1208583
|
receipt_number: string | null;
|
|
1208263
|
-
id_ap_receipt_branch: string | null;
|
|
1208264
1208584
|
} | undefined)[] | undefined;
|
|
1208265
1208585
|
} | undefined;
|
|
1208266
1208586
|
meta: object;
|
|
@@ -1208333,6 +1208653,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208333
1208653
|
post_date: Date | null;
|
|
1208334
1208654
|
is_posted: boolean | null;
|
|
1208335
1208655
|
id_account_org: string | null;
|
|
1208656
|
+
id_ap_receipt_branch: string | null;
|
|
1208336
1208657
|
id_receipt_type: string | null;
|
|
1208337
1208658
|
id_bank_account: string | null;
|
|
1208338
1208659
|
receipt_base_rate: Decimal | null;
|
|
@@ -1208348,7 +1208669,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208348
1208669
|
cheque_bank: string | null;
|
|
1208349
1208670
|
cheque_branch: string | null;
|
|
1208350
1208671
|
receipt_number: string | null;
|
|
1208351
|
-
id_ap_receipt_branch: string | null;
|
|
1208352
1208672
|
};
|
|
1208353
1208673
|
log: {
|
|
1208354
1208674
|
id: string;
|
|
@@ -1208377,6 +1208697,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208377
1208697
|
post_date: Date | null;
|
|
1208378
1208698
|
is_posted: boolean | null;
|
|
1208379
1208699
|
id_account_org: string | null;
|
|
1208700
|
+
id_ap_receipt_branch: string | null;
|
|
1208380
1208701
|
id_receipt_type: string | null;
|
|
1208381
1208702
|
id_bank_account: string | null;
|
|
1208382
1208703
|
receipt_base_rate: Decimal | null;
|
|
@@ -1208392,7 +1208713,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208392
1208713
|
cheque_bank: string | null;
|
|
1208393
1208714
|
cheque_branch: string | null;
|
|
1208394
1208715
|
receipt_number: string | null;
|
|
1208395
|
-
id_ap_receipt_branch: string | null;
|
|
1208396
1208716
|
};
|
|
1208397
1208717
|
log: {
|
|
1208398
1208718
|
id: string;
|
|
@@ -1208581,40 +1208901,47 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208581
1208901
|
is_detailed_deposit_slip: boolean | null;
|
|
1208582
1208902
|
is_default_receipt_account: boolean | null;
|
|
1208583
1208903
|
} | null;
|
|
1208584
|
-
|
|
1208904
|
+
ap_payment_branch: {
|
|
1208585
1208905
|
is_active: boolean | null;
|
|
1208586
1208906
|
id: string;
|
|
1208587
1208907
|
logic_code: string | null;
|
|
1208908
|
+
name: string | null;
|
|
1208588
1208909
|
id_country: string | null;
|
|
1208589
1208910
|
id_state: string | null;
|
|
1208590
1208911
|
id_city: string | null;
|
|
1208591
1208912
|
id_postal_code: string | null;
|
|
1208913
|
+
id_company: string | null;
|
|
1208592
1208914
|
code: string | null;
|
|
1208593
1208915
|
address: string | null;
|
|
1208594
|
-
mobile_phone: string | null;
|
|
1208595
1208916
|
created_at: Date | null;
|
|
1208596
1208917
|
created_by: string | null;
|
|
1208597
1208918
|
updated_at: Date | null;
|
|
1208598
1208919
|
updated_by: string | null;
|
|
1208599
1208920
|
id_un_locode: string | null;
|
|
1208600
|
-
|
|
1208601
|
-
id_organization: string | null;
|
|
1208602
|
-
phone: string | null;
|
|
1208603
|
-
fax: string | null;
|
|
1208921
|
+
id_organization_self: string | null;
|
|
1208604
1208922
|
} | null;
|
|
1208605
|
-
|
|
1208923
|
+
account_org_address: {
|
|
1208606
1208924
|
is_active: boolean | null;
|
|
1208607
1208925
|
id: string;
|
|
1208608
1208926
|
logic_code: string | null;
|
|
1208609
|
-
|
|
1208927
|
+
id_country: string | null;
|
|
1208928
|
+
id_state: string | null;
|
|
1208929
|
+
id_city: string | null;
|
|
1208930
|
+
id_postal_code: string | null;
|
|
1208610
1208931
|
code: string | null;
|
|
1208932
|
+
address: string | null;
|
|
1208933
|
+
mobile_phone: string | null;
|
|
1208611
1208934
|
created_at: Date | null;
|
|
1208612
1208935
|
created_by: string | null;
|
|
1208613
1208936
|
updated_at: Date | null;
|
|
1208614
1208937
|
updated_by: string | null;
|
|
1208615
|
-
|
|
1208938
|
+
id_un_locode: string | null;
|
|
1208939
|
+
email: string | null;
|
|
1208940
|
+
id_organization: string | null;
|
|
1208941
|
+
phone: string | null;
|
|
1208942
|
+
fax: string | null;
|
|
1208616
1208943
|
} | null;
|
|
1208617
|
-
|
|
1208944
|
+
payment_method: {
|
|
1208618
1208945
|
is_active: boolean | null;
|
|
1208619
1208946
|
id: string;
|
|
1208620
1208947
|
logic_code: string | null;
|
|
@@ -1208624,25 +1208951,18 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208624
1208951
|
created_by: string | null;
|
|
1208625
1208952
|
updated_at: Date | null;
|
|
1208626
1208953
|
updated_by: string | null;
|
|
1208954
|
+
is_cheque: boolean | null;
|
|
1208627
1208955
|
} | null;
|
|
1208628
|
-
|
|
1208956
|
+
approval_status: {
|
|
1208629
1208957
|
is_active: boolean | null;
|
|
1208630
1208958
|
id: string;
|
|
1208631
1208959
|
logic_code: string | null;
|
|
1208632
1208960
|
name: string | null;
|
|
1208633
|
-
id_country: string | null;
|
|
1208634
|
-
id_state: string | null;
|
|
1208635
|
-
id_city: string | null;
|
|
1208636
|
-
id_postal_code: string | null;
|
|
1208637
|
-
id_company: string | null;
|
|
1208638
1208961
|
code: string | null;
|
|
1208639
|
-
address: string | null;
|
|
1208640
1208962
|
created_at: Date | null;
|
|
1208641
1208963
|
created_by: string | null;
|
|
1208642
1208964
|
updated_at: Date | null;
|
|
1208643
1208965
|
updated_by: string | null;
|
|
1208644
|
-
id_un_locode: string | null;
|
|
1208645
|
-
id_organization_self: string | null;
|
|
1208646
1208966
|
} | null;
|
|
1208647
1208967
|
is_active: boolean | null;
|
|
1208648
1208968
|
id: string;
|
|
@@ -1208662,6 +1208982,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208662
1208982
|
cheque_drawer: string | null;
|
|
1208663
1208983
|
cheque_bank: string | null;
|
|
1208664
1208984
|
cheque_branch: string | null;
|
|
1208985
|
+
id_ap_payment_branch: string | null;
|
|
1208665
1208986
|
id_account_org_address: string | null;
|
|
1208666
1208987
|
id_payment_method: string | null;
|
|
1208667
1208988
|
id_approval_status: string | null;
|
|
@@ -1208674,7 +1208995,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208674
1208995
|
payment_description: string | null;
|
|
1208675
1208996
|
payment_bank_ref_no: string | null;
|
|
1208676
1208997
|
payment_number: string | null;
|
|
1208677
|
-
id_ap_payment_branch: string | null;
|
|
1208678
1208998
|
}[] | undefined;
|
|
1208679
1208999
|
total: number;
|
|
1208680
1209000
|
};
|
|
@@ -1208815,40 +1209135,47 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208815
1209135
|
is_detailed_deposit_slip: boolean | null;
|
|
1208816
1209136
|
is_default_receipt_account: boolean | null;
|
|
1208817
1209137
|
} | null;
|
|
1208818
|
-
|
|
1209138
|
+
ap_payment_branch: {
|
|
1208819
1209139
|
is_active: boolean | null;
|
|
1208820
1209140
|
id: string;
|
|
1208821
1209141
|
logic_code: string | null;
|
|
1209142
|
+
name: string | null;
|
|
1208822
1209143
|
id_country: string | null;
|
|
1208823
1209144
|
id_state: string | null;
|
|
1208824
1209145
|
id_city: string | null;
|
|
1208825
1209146
|
id_postal_code: string | null;
|
|
1209147
|
+
id_company: string | null;
|
|
1208826
1209148
|
code: string | null;
|
|
1208827
1209149
|
address: string | null;
|
|
1208828
|
-
mobile_phone: string | null;
|
|
1208829
1209150
|
created_at: Date | null;
|
|
1208830
1209151
|
created_by: string | null;
|
|
1208831
1209152
|
updated_at: Date | null;
|
|
1208832
1209153
|
updated_by: string | null;
|
|
1208833
1209154
|
id_un_locode: string | null;
|
|
1208834
|
-
|
|
1208835
|
-
id_organization: string | null;
|
|
1208836
|
-
phone: string | null;
|
|
1208837
|
-
fax: string | null;
|
|
1209155
|
+
id_organization_self: string | null;
|
|
1208838
1209156
|
} | null;
|
|
1208839
|
-
|
|
1209157
|
+
account_org_address: {
|
|
1208840
1209158
|
is_active: boolean | null;
|
|
1208841
1209159
|
id: string;
|
|
1208842
1209160
|
logic_code: string | null;
|
|
1208843
|
-
|
|
1209161
|
+
id_country: string | null;
|
|
1209162
|
+
id_state: string | null;
|
|
1209163
|
+
id_city: string | null;
|
|
1209164
|
+
id_postal_code: string | null;
|
|
1208844
1209165
|
code: string | null;
|
|
1209166
|
+
address: string | null;
|
|
1209167
|
+
mobile_phone: string | null;
|
|
1208845
1209168
|
created_at: Date | null;
|
|
1208846
1209169
|
created_by: string | null;
|
|
1208847
1209170
|
updated_at: Date | null;
|
|
1208848
1209171
|
updated_by: string | null;
|
|
1208849
|
-
|
|
1209172
|
+
id_un_locode: string | null;
|
|
1209173
|
+
email: string | null;
|
|
1209174
|
+
id_organization: string | null;
|
|
1209175
|
+
phone: string | null;
|
|
1209176
|
+
fax: string | null;
|
|
1208850
1209177
|
} | null;
|
|
1208851
|
-
|
|
1209178
|
+
payment_method: {
|
|
1208852
1209179
|
is_active: boolean | null;
|
|
1208853
1209180
|
id: string;
|
|
1208854
1209181
|
logic_code: string | null;
|
|
@@ -1208858,25 +1209185,18 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208858
1209185
|
created_by: string | null;
|
|
1208859
1209186
|
updated_at: Date | null;
|
|
1208860
1209187
|
updated_by: string | null;
|
|
1209188
|
+
is_cheque: boolean | null;
|
|
1208861
1209189
|
} | null;
|
|
1208862
|
-
|
|
1209190
|
+
approval_status: {
|
|
1208863
1209191
|
is_active: boolean | null;
|
|
1208864
1209192
|
id: string;
|
|
1208865
1209193
|
logic_code: string | null;
|
|
1208866
1209194
|
name: string | null;
|
|
1208867
|
-
id_country: string | null;
|
|
1208868
|
-
id_state: string | null;
|
|
1208869
|
-
id_city: string | null;
|
|
1208870
|
-
id_postal_code: string | null;
|
|
1208871
|
-
id_company: string | null;
|
|
1208872
1209195
|
code: string | null;
|
|
1208873
|
-
address: string | null;
|
|
1208874
1209196
|
created_at: Date | null;
|
|
1208875
1209197
|
created_by: string | null;
|
|
1208876
1209198
|
updated_at: Date | null;
|
|
1208877
1209199
|
updated_by: string | null;
|
|
1208878
|
-
id_un_locode: string | null;
|
|
1208879
|
-
id_organization_self: string | null;
|
|
1208880
1209200
|
} | null;
|
|
1208881
1209201
|
is_active: boolean | null;
|
|
1208882
1209202
|
id: string;
|
|
@@ -1208896,6 +1209216,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208896
1209216
|
cheque_drawer: string | null;
|
|
1208897
1209217
|
cheque_bank: string | null;
|
|
1208898
1209218
|
cheque_branch: string | null;
|
|
1209219
|
+
id_ap_payment_branch: string | null;
|
|
1208899
1209220
|
id_account_org_address: string | null;
|
|
1208900
1209221
|
id_payment_method: string | null;
|
|
1208901
1209222
|
id_approval_status: string | null;
|
|
@@ -1208908,7 +1209229,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1208908
1209229
|
payment_description: string | null;
|
|
1208909
1209230
|
payment_bank_ref_no: string | null;
|
|
1208910
1209231
|
payment_number: string | null;
|
|
1208911
|
-
id_ap_payment_branch: string | null;
|
|
1208912
1209232
|
};
|
|
1208913
1209233
|
};
|
|
1208914
1209234
|
meta: object;
|
|
@@ -1209058,6 +1209378,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209058
1209378
|
cheque_drawer: string | null;
|
|
1209059
1209379
|
cheque_bank: string | null;
|
|
1209060
1209380
|
cheque_branch: string | null;
|
|
1209381
|
+
id_ap_payment_branch: string | null;
|
|
1209061
1209382
|
id_account_org_address: string | null;
|
|
1209062
1209383
|
id_payment_method: string | null;
|
|
1209063
1209384
|
id_approval_status: string | null;
|
|
@@ -1209070,7 +1209391,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209070
1209391
|
payment_description: string | null;
|
|
1209071
1209392
|
payment_bank_ref_no: string | null;
|
|
1209072
1209393
|
payment_number: string | null;
|
|
1209073
|
-
id_ap_payment_branch: string | null;
|
|
1209074
1209394
|
};
|
|
1209075
1209395
|
log: {
|
|
1209076
1209396
|
id: string;
|
|
@@ -1209135,6 +1209455,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209135
1209455
|
cheque_drawer: string | null;
|
|
1209136
1209456
|
cheque_bank: string | null;
|
|
1209137
1209457
|
cheque_branch: string | null;
|
|
1209458
|
+
id_ap_payment_branch: string | null;
|
|
1209138
1209459
|
id_account_org_address: string | null;
|
|
1209139
1209460
|
id_payment_method: string | null;
|
|
1209140
1209461
|
id_approval_status: string | null;
|
|
@@ -1209147,7 +1209468,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209147
1209468
|
payment_description: string | null;
|
|
1209148
1209469
|
payment_bank_ref_no: string | null;
|
|
1209149
1209470
|
payment_number: string | null;
|
|
1209150
|
-
id_ap_payment_branch: string | null;
|
|
1209151
1209471
|
};
|
|
1209152
1209472
|
log: {
|
|
1209153
1209473
|
id: string;
|
|
@@ -1209188,6 +1209508,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209188
1209508
|
cheque_drawer: string | null;
|
|
1209189
1209509
|
cheque_bank: string | null;
|
|
1209190
1209510
|
cheque_branch: string | null;
|
|
1209511
|
+
id_ap_payment_branch: string | null;
|
|
1209191
1209512
|
id_account_org_address: string | null;
|
|
1209192
1209513
|
id_payment_method: string | null;
|
|
1209193
1209514
|
id_approval_status: string | null;
|
|
@@ -1209200,7 +1209521,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209200
1209521
|
payment_description: string | null;
|
|
1209201
1209522
|
payment_bank_ref_no: string | null;
|
|
1209202
1209523
|
payment_number: string | null;
|
|
1209203
|
-
id_ap_payment_branch: string | null;
|
|
1209204
1209524
|
} | undefined)[] | undefined;
|
|
1209205
1209525
|
} | undefined;
|
|
1209206
1209526
|
meta: object;
|
|
@@ -1209282,6 +1209602,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209282
1209602
|
cheque_drawer: string | null;
|
|
1209283
1209603
|
cheque_bank: string | null;
|
|
1209284
1209604
|
cheque_branch: string | null;
|
|
1209605
|
+
id_ap_payment_branch: string | null;
|
|
1209285
1209606
|
id_account_org_address: string | null;
|
|
1209286
1209607
|
id_payment_method: string | null;
|
|
1209287
1209608
|
id_approval_status: string | null;
|
|
@@ -1209294,7 +1209615,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209294
1209615
|
payment_description: string | null;
|
|
1209295
1209616
|
payment_bank_ref_no: string | null;
|
|
1209296
1209617
|
payment_number: string | null;
|
|
1209297
|
-
id_ap_payment_branch: string | null;
|
|
1209298
1209618
|
};
|
|
1209299
1209619
|
log: {
|
|
1209300
1209620
|
id: string;
|
|
@@ -1209328,6 +1209648,7 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209328
1209648
|
cheque_drawer: string | null;
|
|
1209329
1209649
|
cheque_bank: string | null;
|
|
1209330
1209650
|
cheque_branch: string | null;
|
|
1209651
|
+
id_ap_payment_branch: string | null;
|
|
1209331
1209652
|
id_account_org_address: string | null;
|
|
1209332
1209653
|
id_payment_method: string | null;
|
|
1209333
1209654
|
id_approval_status: string | null;
|
|
@@ -1209340,7 +1209661,6 @@ declare const outflowRouter: BuiltRouter<{
|
|
|
1209340
1209661
|
payment_description: string | null;
|
|
1209341
1209662
|
payment_bank_ref_no: string | null;
|
|
1209342
1209663
|
payment_number: string | null;
|
|
1209343
|
-
id_ap_payment_branch: string | null;
|
|
1209344
1209664
|
};
|
|
1209345
1209665
|
log: {
|
|
1209346
1209666
|
id: string;
|
|
@@ -1209478,6 +1209798,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1209478
1209798
|
outstanding_amount?: Decimal | undefined;
|
|
1209479
1209799
|
local_outstanding?: Decimal | undefined;
|
|
1209480
1209800
|
ex_rate?: Decimal | undefined;
|
|
1209801
|
+
job_invoice_number?: string | undefined;
|
|
1209481
1209802
|
house_bill_number?: string | undefined;
|
|
1209482
1209803
|
master_bill_number?: string | undefined;
|
|
1209483
1209804
|
}[] | undefined;
|
|
@@ -1211899,40 +1212220,275 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1211899
1212220
|
company_number: string | null;
|
|
1211900
1212221
|
company_tax_number: string | null;
|
|
1211901
1212222
|
} | null;
|
|
1211902
|
-
transaction_agreed_payment_method: {
|
|
1212223
|
+
transaction_agreed_payment_method: {
|
|
1212224
|
+
is_active: boolean | null;
|
|
1212225
|
+
id: string;
|
|
1212226
|
+
logic_code: string | null;
|
|
1212227
|
+
name: string | null;
|
|
1212228
|
+
code: string | null;
|
|
1212229
|
+
created_at: Date | null;
|
|
1212230
|
+
created_by: string | null;
|
|
1212231
|
+
updated_at: Date | null;
|
|
1212232
|
+
updated_by: string | null;
|
|
1212233
|
+
} | null;
|
|
1212234
|
+
ar_journal_branch: {
|
|
1212235
|
+
is_active: boolean | null;
|
|
1212236
|
+
id: string;
|
|
1212237
|
+
logic_code: string | null;
|
|
1212238
|
+
name: string | null;
|
|
1212239
|
+
id_country: string | null;
|
|
1212240
|
+
id_state: string | null;
|
|
1212241
|
+
id_city: string | null;
|
|
1212242
|
+
id_postal_code: string | null;
|
|
1212243
|
+
id_company: string | null;
|
|
1212244
|
+
code: string | null;
|
|
1212245
|
+
address: string | null;
|
|
1212246
|
+
created_at: Date | null;
|
|
1212247
|
+
created_by: string | null;
|
|
1212248
|
+
updated_at: Date | null;
|
|
1212249
|
+
updated_by: string | null;
|
|
1212250
|
+
id_un_locode: string | null;
|
|
1212251
|
+
id_organization_self: string | null;
|
|
1212252
|
+
} | null;
|
|
1212253
|
+
is_active: boolean | null;
|
|
1212254
|
+
id: string;
|
|
1212255
|
+
id_branch: string | null;
|
|
1212256
|
+
id_department: string | null;
|
|
1212257
|
+
created_at: Date | null;
|
|
1212258
|
+
created_by: string | null;
|
|
1212259
|
+
updated_at: Date | null;
|
|
1212260
|
+
updated_by: string | null;
|
|
1212261
|
+
id_currency: string | null;
|
|
1212262
|
+
id_local_currency: string | null;
|
|
1212263
|
+
id_transaction_type: string | null;
|
|
1212264
|
+
id_ledger: string | null;
|
|
1212265
|
+
post_date: Date | null;
|
|
1212266
|
+
due_date: Date | null;
|
|
1212267
|
+
is_posted: boolean | null;
|
|
1212268
|
+
id_gl_account: string | null;
|
|
1212269
|
+
credit_debit: ("CREDIT" | "DEBIT") | null;
|
|
1212270
|
+
id_journal_source: string | null;
|
|
1212271
|
+
id_account_org: string | null;
|
|
1212272
|
+
id_transaction_agreed_payment_method: string | null;
|
|
1212273
|
+
journal_number: string | null;
|
|
1212274
|
+
journal_description: string | null;
|
|
1212275
|
+
journal_base_rate: Decimal | null;
|
|
1212276
|
+
journal_amount: Decimal | null;
|
|
1212277
|
+
journal_local_amount: Decimal | null;
|
|
1212278
|
+
journal_outstanding_amount: Decimal | null;
|
|
1212279
|
+
journal_local_outstanding_amount: Decimal | null;
|
|
1212280
|
+
journal_date: Date | null;
|
|
1212281
|
+
id_ar_journal_branch: string | null;
|
|
1212282
|
+
} | undefined;
|
|
1212283
|
+
ap_transfer?: {
|
|
1212284
|
+
_count: {
|
|
1212285
|
+
ap_transfer_branch: number;
|
|
1212286
|
+
transaction_type: number;
|
|
1212287
|
+
currency: number;
|
|
1212288
|
+
local_currency: number;
|
|
1212289
|
+
from_account_org: number;
|
|
1212290
|
+
from_currency_before: number;
|
|
1212291
|
+
from_currency_after: number;
|
|
1212292
|
+
to_account_org: number;
|
|
1212293
|
+
to_currency_before: number;
|
|
1212294
|
+
to_currency_after: number;
|
|
1212295
|
+
ap_transfer_logs: number;
|
|
1212296
|
+
billing_ledger: number;
|
|
1212297
|
+
billing_match_transaction_lines: number;
|
|
1212298
|
+
};
|
|
1212299
|
+
currency: {
|
|
1212300
|
+
symbol: string | null;
|
|
1212301
|
+
is_active: boolean | null;
|
|
1212302
|
+
id: string;
|
|
1212303
|
+
logic_code: string | null;
|
|
1212304
|
+
created_at: Date | null;
|
|
1212305
|
+
created_by: string | null;
|
|
1212306
|
+
updated_at: Date | null;
|
|
1212307
|
+
updated_by: string | null;
|
|
1212308
|
+
currency_code: string | null;
|
|
1212309
|
+
currency_name: string | null;
|
|
1212310
|
+
major_unit: string | null;
|
|
1212311
|
+
minor_unit: string | null;
|
|
1212312
|
+
decimal_unit: number | null;
|
|
1212313
|
+
iso_decimal: number | null;
|
|
1212314
|
+
} | null;
|
|
1212315
|
+
local_currency: {
|
|
1212316
|
+
symbol: string | null;
|
|
1212317
|
+
is_active: boolean | null;
|
|
1212318
|
+
id: string;
|
|
1212319
|
+
logic_code: string | null;
|
|
1212320
|
+
created_at: Date | null;
|
|
1212321
|
+
created_by: string | null;
|
|
1212322
|
+
updated_at: Date | null;
|
|
1212323
|
+
updated_by: string | null;
|
|
1212324
|
+
currency_code: string | null;
|
|
1212325
|
+
currency_name: string | null;
|
|
1212326
|
+
major_unit: string | null;
|
|
1212327
|
+
minor_unit: string | null;
|
|
1212328
|
+
decimal_unit: number | null;
|
|
1212329
|
+
iso_decimal: number | null;
|
|
1212330
|
+
} | null;
|
|
1212331
|
+
billing_ledger: {
|
|
1212332
|
+
is_active: boolean | null;
|
|
1212333
|
+
id: string;
|
|
1212334
|
+
logic_code: string | null;
|
|
1212335
|
+
name: string | null;
|
|
1212336
|
+
code: string | null;
|
|
1212337
|
+
created_at: Date | null;
|
|
1212338
|
+
created_by: string | null;
|
|
1212339
|
+
updated_at: Date | null;
|
|
1212340
|
+
updated_by: string | null;
|
|
1212341
|
+
} | null;
|
|
1212342
|
+
transaction_type: {
|
|
1212343
|
+
is_active: boolean | null;
|
|
1212344
|
+
id: string;
|
|
1212345
|
+
logic_code: string | null;
|
|
1212346
|
+
name: string | null;
|
|
1212347
|
+
code: string | null;
|
|
1212348
|
+
created_at: Date | null;
|
|
1212349
|
+
created_by: string | null;
|
|
1212350
|
+
updated_at: Date | null;
|
|
1212351
|
+
updated_by: string | null;
|
|
1212352
|
+
} | null;
|
|
1212353
|
+
ap_transfer_branch: {
|
|
1212354
|
+
is_active: boolean | null;
|
|
1212355
|
+
id: string;
|
|
1212356
|
+
logic_code: string | null;
|
|
1212357
|
+
name: string | null;
|
|
1212358
|
+
id_country: string | null;
|
|
1212359
|
+
id_state: string | null;
|
|
1212360
|
+
id_city: string | null;
|
|
1212361
|
+
id_postal_code: string | null;
|
|
1212362
|
+
id_company: string | null;
|
|
1212363
|
+
code: string | null;
|
|
1212364
|
+
address: string | null;
|
|
1212365
|
+
created_at: Date | null;
|
|
1212366
|
+
created_by: string | null;
|
|
1212367
|
+
updated_at: Date | null;
|
|
1212368
|
+
updated_by: string | null;
|
|
1212369
|
+
id_un_locode: string | null;
|
|
1212370
|
+
id_organization_self: string | null;
|
|
1212371
|
+
} | null;
|
|
1212372
|
+
from_account_org: {
|
|
1212373
|
+
is_active: boolean | null;
|
|
1212374
|
+
id: string;
|
|
1212375
|
+
logic_code: string | null;
|
|
1212376
|
+
name: string | null;
|
|
1212377
|
+
id_country: string | null;
|
|
1212378
|
+
id_state: string | null;
|
|
1212379
|
+
id_city: string | null;
|
|
1212380
|
+
id_postal_code: string | null;
|
|
1212381
|
+
id_company: string | null;
|
|
1212382
|
+
id_branch: string | null;
|
|
1212383
|
+
code: string | null;
|
|
1212384
|
+
created_at: Date | null;
|
|
1212385
|
+
created_by: string | null;
|
|
1212386
|
+
updated_at: Date | null;
|
|
1212387
|
+
updated_by: string | null;
|
|
1212388
|
+
id_un_locode: string | null;
|
|
1212389
|
+
email: string | null;
|
|
1212390
|
+
id_business_category: string | null;
|
|
1212391
|
+
id_controlling_branch: string | null;
|
|
1212392
|
+
id_airline: string | null;
|
|
1212393
|
+
id_shipping_line: string | null;
|
|
1212394
|
+
phone: string | null;
|
|
1212395
|
+
website_url: string | null;
|
|
1212396
|
+
company_number: string | null;
|
|
1212397
|
+
company_tax_number: string | null;
|
|
1212398
|
+
} | null;
|
|
1212399
|
+
from_currency_before: {
|
|
1212400
|
+
symbol: string | null;
|
|
1212401
|
+
is_active: boolean | null;
|
|
1212402
|
+
id: string;
|
|
1212403
|
+
logic_code: string | null;
|
|
1212404
|
+
created_at: Date | null;
|
|
1212405
|
+
created_by: string | null;
|
|
1212406
|
+
updated_at: Date | null;
|
|
1212407
|
+
updated_by: string | null;
|
|
1212408
|
+
currency_code: string | null;
|
|
1212409
|
+
currency_name: string | null;
|
|
1212410
|
+
major_unit: string | null;
|
|
1212411
|
+
minor_unit: string | null;
|
|
1212412
|
+
decimal_unit: number | null;
|
|
1212413
|
+
iso_decimal: number | null;
|
|
1212414
|
+
} | null;
|
|
1212415
|
+
from_currency_after: {
|
|
1212416
|
+
symbol: string | null;
|
|
1212417
|
+
is_active: boolean | null;
|
|
1212418
|
+
id: string;
|
|
1212419
|
+
logic_code: string | null;
|
|
1212420
|
+
created_at: Date | null;
|
|
1212421
|
+
created_by: string | null;
|
|
1212422
|
+
updated_at: Date | null;
|
|
1212423
|
+
updated_by: string | null;
|
|
1212424
|
+
currency_code: string | null;
|
|
1212425
|
+
currency_name: string | null;
|
|
1212426
|
+
major_unit: string | null;
|
|
1212427
|
+
minor_unit: string | null;
|
|
1212428
|
+
decimal_unit: number | null;
|
|
1212429
|
+
iso_decimal: number | null;
|
|
1212430
|
+
} | null;
|
|
1212431
|
+
to_account_org: {
|
|
1212432
|
+
is_active: boolean | null;
|
|
1212433
|
+
id: string;
|
|
1212434
|
+
logic_code: string | null;
|
|
1212435
|
+
name: string | null;
|
|
1212436
|
+
id_country: string | null;
|
|
1212437
|
+
id_state: string | null;
|
|
1212438
|
+
id_city: string | null;
|
|
1212439
|
+
id_postal_code: string | null;
|
|
1212440
|
+
id_company: string | null;
|
|
1212441
|
+
id_branch: string | null;
|
|
1212442
|
+
code: string | null;
|
|
1212443
|
+
created_at: Date | null;
|
|
1212444
|
+
created_by: string | null;
|
|
1212445
|
+
updated_at: Date | null;
|
|
1212446
|
+
updated_by: string | null;
|
|
1212447
|
+
id_un_locode: string | null;
|
|
1212448
|
+
email: string | null;
|
|
1212449
|
+
id_business_category: string | null;
|
|
1212450
|
+
id_controlling_branch: string | null;
|
|
1212451
|
+
id_airline: string | null;
|
|
1212452
|
+
id_shipping_line: string | null;
|
|
1212453
|
+
phone: string | null;
|
|
1212454
|
+
website_url: string | null;
|
|
1212455
|
+
company_number: string | null;
|
|
1212456
|
+
company_tax_number: string | null;
|
|
1212457
|
+
} | null;
|
|
1212458
|
+
to_currency_before: {
|
|
1212459
|
+
symbol: string | null;
|
|
1211903
1212460
|
is_active: boolean | null;
|
|
1211904
1212461
|
id: string;
|
|
1211905
1212462
|
logic_code: string | null;
|
|
1211906
|
-
name: string | null;
|
|
1211907
|
-
code: string | null;
|
|
1211908
1212463
|
created_at: Date | null;
|
|
1211909
1212464
|
created_by: string | null;
|
|
1211910
1212465
|
updated_at: Date | null;
|
|
1211911
1212466
|
updated_by: string | null;
|
|
1212467
|
+
currency_code: string | null;
|
|
1212468
|
+
currency_name: string | null;
|
|
1212469
|
+
major_unit: string | null;
|
|
1212470
|
+
minor_unit: string | null;
|
|
1212471
|
+
decimal_unit: number | null;
|
|
1212472
|
+
iso_decimal: number | null;
|
|
1211912
1212473
|
} | null;
|
|
1211913
|
-
|
|
1212474
|
+
to_currency_after: {
|
|
1212475
|
+
symbol: string | null;
|
|
1211914
1212476
|
is_active: boolean | null;
|
|
1211915
1212477
|
id: string;
|
|
1211916
1212478
|
logic_code: string | null;
|
|
1211917
|
-
name: string | null;
|
|
1211918
|
-
id_country: string | null;
|
|
1211919
|
-
id_state: string | null;
|
|
1211920
|
-
id_city: string | null;
|
|
1211921
|
-
id_postal_code: string | null;
|
|
1211922
|
-
id_company: string | null;
|
|
1211923
|
-
code: string | null;
|
|
1211924
|
-
address: string | null;
|
|
1211925
1212479
|
created_at: Date | null;
|
|
1211926
1212480
|
created_by: string | null;
|
|
1211927
1212481
|
updated_at: Date | null;
|
|
1211928
1212482
|
updated_by: string | null;
|
|
1211929
|
-
|
|
1211930
|
-
|
|
1212483
|
+
currency_code: string | null;
|
|
1212484
|
+
currency_name: string | null;
|
|
1212485
|
+
major_unit: string | null;
|
|
1212486
|
+
minor_unit: string | null;
|
|
1212487
|
+
decimal_unit: number | null;
|
|
1212488
|
+
iso_decimal: number | null;
|
|
1211931
1212489
|
} | null;
|
|
1211932
1212490
|
is_active: boolean | null;
|
|
1211933
1212491
|
id: string;
|
|
1211934
|
-
id_branch: string | null;
|
|
1211935
|
-
id_department: string | null;
|
|
1211936
1212492
|
created_at: Date | null;
|
|
1211937
1212493
|
created_by: string | null;
|
|
1211938
1212494
|
updated_at: Date | null;
|
|
@@ -1211942,26 +1212498,32 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1211942
1212498
|
id_transaction_type: string | null;
|
|
1211943
1212499
|
id_ledger: string | null;
|
|
1211944
1212500
|
post_date: Date | null;
|
|
1211945
|
-
due_date: Date | null;
|
|
1211946
1212501
|
is_posted: boolean | null;
|
|
1211947
|
-
|
|
1211948
|
-
|
|
1211949
|
-
|
|
1211950
|
-
|
|
1211951
|
-
|
|
1211952
|
-
|
|
1211953
|
-
|
|
1211954
|
-
|
|
1211955
|
-
|
|
1211956
|
-
|
|
1211957
|
-
|
|
1211958
|
-
|
|
1211959
|
-
|
|
1211960
|
-
|
|
1212502
|
+
id_ap_transfer_branch: string | null;
|
|
1212503
|
+
id_from_account_org: string | null;
|
|
1212504
|
+
id_to_account_org: string | null;
|
|
1212505
|
+
transfer_number: string | null;
|
|
1212506
|
+
transfer_base_rate: Decimal | null;
|
|
1212507
|
+
transfer_amount: Decimal | null;
|
|
1212508
|
+
transfer_local_amount: Decimal | null;
|
|
1212509
|
+
transfer_outstanding_amount: Decimal | null;
|
|
1212510
|
+
transfer_local_outstanding_amount: Decimal | null;
|
|
1212511
|
+
transfer_date: Date | null;
|
|
1212512
|
+
transfer_description: string | null;
|
|
1212513
|
+
id_from_currency_before: string | null;
|
|
1212514
|
+
id_from_currency_after: string | null;
|
|
1212515
|
+
from_due_date: Date | null;
|
|
1212516
|
+
from_amount_before: Decimal | null;
|
|
1212517
|
+
from_amount_after: Decimal | null;
|
|
1212518
|
+
id_to_currency_before: string | null;
|
|
1212519
|
+
id_to_currency_after: string | null;
|
|
1212520
|
+
to_due_date: Date | null;
|
|
1212521
|
+
to_amount_before: Decimal | null;
|
|
1212522
|
+
to_amount_after: Decimal | null;
|
|
1211961
1212523
|
} | undefined;
|
|
1211962
|
-
|
|
1212524
|
+
ar_transfer?: {
|
|
1211963
1212525
|
_count: {
|
|
1211964
|
-
|
|
1212526
|
+
ar_transfer_branch: number;
|
|
1211965
1212527
|
transaction_type: number;
|
|
1211966
1212528
|
currency: number;
|
|
1211967
1212529
|
local_currency: number;
|
|
@@ -1211971,7 +1212533,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1211971
1212533
|
to_account_org: number;
|
|
1211972
1212534
|
to_currency_before: number;
|
|
1211973
1212535
|
to_currency_after: number;
|
|
1211974
|
-
|
|
1212536
|
+
ar_transfer_logs: number;
|
|
1211975
1212537
|
billing_ledger: number;
|
|
1211976
1212538
|
billing_match_transaction_lines: number;
|
|
1211977
1212539
|
};
|
|
@@ -1212147,7 +1212709,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212147
1212709
|
decimal_unit: number | null;
|
|
1212148
1212710
|
iso_decimal: number | null;
|
|
1212149
1212711
|
} | null;
|
|
1212150
|
-
|
|
1212712
|
+
ar_transfer_branch: {
|
|
1212151
1212713
|
is_active: boolean | null;
|
|
1212152
1212714
|
id: string;
|
|
1212153
1212715
|
logic_code: string | null;
|
|
@@ -1212198,21 +1212760,18 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212198
1212760
|
to_due_date: Date | null;
|
|
1212199
1212761
|
to_amount_before: Decimal | null;
|
|
1212200
1212762
|
to_amount_after: Decimal | null;
|
|
1212201
|
-
|
|
1212763
|
+
id_ar_transfer_branch: string | null;
|
|
1212202
1212764
|
} | undefined;
|
|
1212203
|
-
|
|
1212765
|
+
ap_receipt?: {
|
|
1212204
1212766
|
_count: {
|
|
1212205
|
-
|
|
1212767
|
+
ap_receipt_branch: number;
|
|
1212206
1212768
|
transaction_type: number;
|
|
1212769
|
+
account_org: number;
|
|
1212207
1212770
|
currency: number;
|
|
1212208
1212771
|
local_currency: number;
|
|
1212209
|
-
|
|
1212210
|
-
|
|
1212211
|
-
|
|
1212212
|
-
to_account_org: number;
|
|
1212213
|
-
to_currency_before: number;
|
|
1212214
|
-
to_currency_after: number;
|
|
1212215
|
-
ar_transfer_logs: number;
|
|
1212772
|
+
receipt_type: number;
|
|
1212773
|
+
bank_account: number;
|
|
1212774
|
+
ap_receipt_logs: number;
|
|
1212216
1212775
|
billing_ledger: number;
|
|
1212217
1212776
|
billing_match_transaction_lines: number;
|
|
1212218
1212777
|
};
|
|
@@ -1212270,26 +1212829,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212270
1212829
|
updated_at: Date | null;
|
|
1212271
1212830
|
updated_by: string | null;
|
|
1212272
1212831
|
} | null;
|
|
1212273
|
-
|
|
1212274
|
-
is_active: boolean | null;
|
|
1212275
|
-
id: string;
|
|
1212276
|
-
logic_code: string | null;
|
|
1212277
|
-
name: string | null;
|
|
1212278
|
-
id_country: string | null;
|
|
1212279
|
-
id_state: string | null;
|
|
1212280
|
-
id_city: string | null;
|
|
1212281
|
-
id_postal_code: string | null;
|
|
1212282
|
-
id_company: string | null;
|
|
1212283
|
-
code: string | null;
|
|
1212284
|
-
address: string | null;
|
|
1212285
|
-
created_at: Date | null;
|
|
1212286
|
-
created_by: string | null;
|
|
1212287
|
-
updated_at: Date | null;
|
|
1212288
|
-
updated_by: string | null;
|
|
1212289
|
-
id_un_locode: string | null;
|
|
1212290
|
-
id_organization_self: string | null;
|
|
1212291
|
-
} | null;
|
|
1212292
|
-
from_account_org: {
|
|
1212832
|
+
account_org: {
|
|
1212293
1212833
|
is_active: boolean | null;
|
|
1212294
1212834
|
id: string;
|
|
1212295
1212835
|
logic_code: string | null;
|
|
@@ -1212316,39 +1212856,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212316
1212856
|
company_number: string | null;
|
|
1212317
1212857
|
company_tax_number: string | null;
|
|
1212318
1212858
|
} | null;
|
|
1212319
|
-
|
|
1212320
|
-
symbol: string | null;
|
|
1212321
|
-
is_active: boolean | null;
|
|
1212322
|
-
id: string;
|
|
1212323
|
-
logic_code: string | null;
|
|
1212324
|
-
created_at: Date | null;
|
|
1212325
|
-
created_by: string | null;
|
|
1212326
|
-
updated_at: Date | null;
|
|
1212327
|
-
updated_by: string | null;
|
|
1212328
|
-
currency_code: string | null;
|
|
1212329
|
-
currency_name: string | null;
|
|
1212330
|
-
major_unit: string | null;
|
|
1212331
|
-
minor_unit: string | null;
|
|
1212332
|
-
decimal_unit: number | null;
|
|
1212333
|
-
iso_decimal: number | null;
|
|
1212334
|
-
} | null;
|
|
1212335
|
-
from_currency_after: {
|
|
1212336
|
-
symbol: string | null;
|
|
1212337
|
-
is_active: boolean | null;
|
|
1212338
|
-
id: string;
|
|
1212339
|
-
logic_code: string | null;
|
|
1212340
|
-
created_at: Date | null;
|
|
1212341
|
-
created_by: string | null;
|
|
1212342
|
-
updated_at: Date | null;
|
|
1212343
|
-
updated_by: string | null;
|
|
1212344
|
-
currency_code: string | null;
|
|
1212345
|
-
currency_name: string | null;
|
|
1212346
|
-
major_unit: string | null;
|
|
1212347
|
-
minor_unit: string | null;
|
|
1212348
|
-
decimal_unit: number | null;
|
|
1212349
|
-
iso_decimal: number | null;
|
|
1212350
|
-
} | null;
|
|
1212351
|
-
to_account_org: {
|
|
1212859
|
+
ap_receipt_branch: {
|
|
1212352
1212860
|
is_active: boolean | null;
|
|
1212353
1212861
|
id: string;
|
|
1212354
1212862
|
logic_code: string | null;
|
|
@@ -1212358,54 +1212866,57 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212358
1212866
|
id_city: string | null;
|
|
1212359
1212867
|
id_postal_code: string | null;
|
|
1212360
1212868
|
id_company: string | null;
|
|
1212361
|
-
id_branch: string | null;
|
|
1212362
1212869
|
code: string | null;
|
|
1212870
|
+
address: string | null;
|
|
1212363
1212871
|
created_at: Date | null;
|
|
1212364
1212872
|
created_by: string | null;
|
|
1212365
1212873
|
updated_at: Date | null;
|
|
1212366
1212874
|
updated_by: string | null;
|
|
1212367
1212875
|
id_un_locode: string | null;
|
|
1212368
|
-
|
|
1212369
|
-
id_business_category: string | null;
|
|
1212370
|
-
id_controlling_branch: string | null;
|
|
1212371
|
-
id_airline: string | null;
|
|
1212372
|
-
id_shipping_line: string | null;
|
|
1212373
|
-
phone: string | null;
|
|
1212374
|
-
website_url: string | null;
|
|
1212375
|
-
company_number: string | null;
|
|
1212376
|
-
company_tax_number: string | null;
|
|
1212876
|
+
id_organization_self: string | null;
|
|
1212377
1212877
|
} | null;
|
|
1212378
|
-
|
|
1212379
|
-
symbol: string | null;
|
|
1212878
|
+
receipt_type: {
|
|
1212380
1212879
|
is_active: boolean | null;
|
|
1212381
1212880
|
id: string;
|
|
1212382
1212881
|
logic_code: string | null;
|
|
1212882
|
+
name: string | null;
|
|
1212883
|
+
code: string | null;
|
|
1212383
1212884
|
created_at: Date | null;
|
|
1212384
1212885
|
created_by: string | null;
|
|
1212385
1212886
|
updated_at: Date | null;
|
|
1212386
1212887
|
updated_by: string | null;
|
|
1212387
|
-
|
|
1212388
|
-
currency_name: string | null;
|
|
1212389
|
-
major_unit: string | null;
|
|
1212390
|
-
minor_unit: string | null;
|
|
1212391
|
-
decimal_unit: number | null;
|
|
1212392
|
-
iso_decimal: number | null;
|
|
1212888
|
+
is_cheque: boolean | null;
|
|
1212393
1212889
|
} | null;
|
|
1212394
|
-
|
|
1212395
|
-
symbol: string | null;
|
|
1212890
|
+
bank_account: {
|
|
1212396
1212891
|
is_active: boolean | null;
|
|
1212397
1212892
|
id: string;
|
|
1212398
1212893
|
logic_code: string | null;
|
|
1212894
|
+
name: string | null;
|
|
1212895
|
+
id_country: string | null;
|
|
1212896
|
+
id_company: string | null;
|
|
1212897
|
+
id_branch: string | null;
|
|
1212898
|
+
code: string | null;
|
|
1212399
1212899
|
created_at: Date | null;
|
|
1212400
1212900
|
created_by: string | null;
|
|
1212401
1212901
|
updated_at: Date | null;
|
|
1212402
1212902
|
updated_by: string | null;
|
|
1212403
|
-
|
|
1212404
|
-
|
|
1212405
|
-
|
|
1212406
|
-
|
|
1212407
|
-
|
|
1212408
|
-
|
|
1212903
|
+
id_currency: string | null;
|
|
1212904
|
+
id_type: string | null;
|
|
1212905
|
+
id_gl_account: string | null;
|
|
1212906
|
+
id_os_balance_currency: string | null;
|
|
1212907
|
+
id_local_balance_currency: string | null;
|
|
1212908
|
+
bank_name: string | null;
|
|
1212909
|
+
bank_address: string | null;
|
|
1212910
|
+
bank_account_name: string | null;
|
|
1212911
|
+
bank_account_number: string | null;
|
|
1212912
|
+
bank_bsb_number: string | null;
|
|
1212913
|
+
bank_swift_code: string | null;
|
|
1212914
|
+
bank_iban_code: string | null;
|
|
1212915
|
+
bank_unique_account_number: string | null;
|
|
1212916
|
+
opening_os_balance: Decimal | null;
|
|
1212917
|
+
opening_local_balance: Decimal | null;
|
|
1212918
|
+
is_detailed_deposit_slip: boolean | null;
|
|
1212919
|
+
is_default_receipt_account: boolean | null;
|
|
1212409
1212920
|
} | null;
|
|
1212410
1212921
|
is_active: boolean | null;
|
|
1212411
1212922
|
id: string;
|
|
@@ -1212419,38 +1212930,34 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212419
1212930
|
id_ledger: string | null;
|
|
1212420
1212931
|
post_date: Date | null;
|
|
1212421
1212932
|
is_posted: boolean | null;
|
|
1212422
|
-
|
|
1212423
|
-
|
|
1212424
|
-
|
|
1212425
|
-
|
|
1212426
|
-
|
|
1212427
|
-
|
|
1212428
|
-
|
|
1212429
|
-
|
|
1212430
|
-
|
|
1212431
|
-
|
|
1212432
|
-
|
|
1212433
|
-
|
|
1212434
|
-
|
|
1212435
|
-
|
|
1212436
|
-
|
|
1212437
|
-
|
|
1212438
|
-
|
|
1212439
|
-
id_to_currency_after: string | null;
|
|
1212440
|
-
to_due_date: Date | null;
|
|
1212441
|
-
to_amount_before: Decimal | null;
|
|
1212442
|
-
to_amount_after: Decimal | null;
|
|
1212933
|
+
id_account_org: string | null;
|
|
1212934
|
+
id_ap_receipt_branch: string | null;
|
|
1212935
|
+
id_receipt_type: string | null;
|
|
1212936
|
+
id_bank_account: string | null;
|
|
1212937
|
+
receipt_base_rate: Decimal | null;
|
|
1212938
|
+
receipt_amount: Decimal | null;
|
|
1212939
|
+
receipt_local_amount: Decimal | null;
|
|
1212940
|
+
receipt_outstanding_amount: Decimal | null;
|
|
1212941
|
+
receipt_local_outstanding_amount: Decimal | null;
|
|
1212942
|
+
receipt_date: Date | null;
|
|
1212943
|
+
receipt_description: string | null;
|
|
1212944
|
+
receipt_bank_ref_no: string | null;
|
|
1212945
|
+
cheque_number: string | null;
|
|
1212946
|
+
cheque_drawer: string | null;
|
|
1212947
|
+
cheque_bank: string | null;
|
|
1212948
|
+
cheque_branch: string | null;
|
|
1212949
|
+
receipt_number: string | null;
|
|
1212443
1212950
|
} | undefined;
|
|
1212444
|
-
|
|
1212951
|
+
ar_receipt?: {
|
|
1212445
1212952
|
_count: {
|
|
1212446
|
-
|
|
1212953
|
+
ar_receipt_branch: number;
|
|
1212447
1212954
|
transaction_type: number;
|
|
1212448
1212955
|
account_org: number;
|
|
1212449
1212956
|
currency: number;
|
|
1212450
1212957
|
local_currency: number;
|
|
1212451
1212958
|
receipt_type: number;
|
|
1212452
1212959
|
bank_account: number;
|
|
1212453
|
-
|
|
1212960
|
+
ar_receipt_logs: number;
|
|
1212454
1212961
|
billing_ledger: number;
|
|
1212455
1212962
|
billing_match_transaction_lines: number;
|
|
1212456
1212963
|
};
|
|
@@ -1212578,7 +1213085,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212578
1213085
|
is_detailed_deposit_slip: boolean | null;
|
|
1212579
1213086
|
is_default_receipt_account: boolean | null;
|
|
1212580
1213087
|
} | null;
|
|
1212581
|
-
|
|
1213088
|
+
ar_receipt_branch: {
|
|
1212582
1213089
|
is_active: boolean | null;
|
|
1212583
1213090
|
id: string;
|
|
1212584
1213091
|
logic_code: string | null;
|
|
@@ -1212625,19 +1213132,21 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212625
1213132
|
cheque_bank: string | null;
|
|
1212626
1213133
|
cheque_branch: string | null;
|
|
1212627
1213134
|
receipt_number: string | null;
|
|
1212628
|
-
|
|
1213135
|
+
id_ar_receipt_branch: string | null;
|
|
1212629
1213136
|
} | undefined;
|
|
1212630
|
-
|
|
1213137
|
+
ap_payment?: {
|
|
1212631
1213138
|
_count: {
|
|
1212632
|
-
|
|
1213139
|
+
ap_payment_branch: number;
|
|
1212633
1213140
|
transaction_type: number;
|
|
1213141
|
+
billing_ledger: number;
|
|
1212634
1213142
|
account_org: number;
|
|
1213143
|
+
account_org_address: number;
|
|
1212635
1213144
|
currency: number;
|
|
1212636
1213145
|
local_currency: number;
|
|
1212637
|
-
|
|
1213146
|
+
payment_method: number;
|
|
1212638
1213147
|
bank_account: number;
|
|
1212639
|
-
|
|
1212640
|
-
|
|
1213148
|
+
approval_status: number;
|
|
1213149
|
+
ap_payment_logs: number;
|
|
1212641
1213150
|
billing_match_transaction_lines: number;
|
|
1212642
1213151
|
};
|
|
1212643
1213152
|
currency: {
|
|
@@ -1212721,37 +1213230,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212721
1213230
|
company_number: string | null;
|
|
1212722
1213231
|
company_tax_number: string | null;
|
|
1212723
1213232
|
} | null;
|
|
1212724
|
-
ar_receipt_branch: {
|
|
1212725
|
-
is_active: boolean | null;
|
|
1212726
|
-
id: string;
|
|
1212727
|
-
logic_code: string | null;
|
|
1212728
|
-
name: string | null;
|
|
1212729
|
-
id_country: string | null;
|
|
1212730
|
-
id_state: string | null;
|
|
1212731
|
-
id_city: string | null;
|
|
1212732
|
-
id_postal_code: string | null;
|
|
1212733
|
-
id_company: string | null;
|
|
1212734
|
-
code: string | null;
|
|
1212735
|
-
address: string | null;
|
|
1212736
|
-
created_at: Date | null;
|
|
1212737
|
-
created_by: string | null;
|
|
1212738
|
-
updated_at: Date | null;
|
|
1212739
|
-
updated_by: string | null;
|
|
1212740
|
-
id_un_locode: string | null;
|
|
1212741
|
-
id_organization_self: string | null;
|
|
1212742
|
-
} | null;
|
|
1212743
|
-
receipt_type: {
|
|
1212744
|
-
is_active: boolean | null;
|
|
1212745
|
-
id: string;
|
|
1212746
|
-
logic_code: string | null;
|
|
1212747
|
-
name: string | null;
|
|
1212748
|
-
code: string | null;
|
|
1212749
|
-
created_at: Date | null;
|
|
1212750
|
-
created_by: string | null;
|
|
1212751
|
-
updated_at: Date | null;
|
|
1212752
|
-
updated_by: string | null;
|
|
1212753
|
-
is_cheque: boolean | null;
|
|
1212754
|
-
} | null;
|
|
1212755
1213233
|
bank_account: {
|
|
1212756
1213234
|
is_active: boolean | null;
|
|
1212757
1213235
|
id: string;
|
|
@@ -1212783,106 +1213261,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212783
1213261
|
is_detailed_deposit_slip: boolean | null;
|
|
1212784
1213262
|
is_default_receipt_account: boolean | null;
|
|
1212785
1213263
|
} | null;
|
|
1212786
|
-
|
|
1212787
|
-
id: string;
|
|
1212788
|
-
created_at: Date | null;
|
|
1212789
|
-
created_by: string | null;
|
|
1212790
|
-
updated_at: Date | null;
|
|
1212791
|
-
updated_by: string | null;
|
|
1212792
|
-
id_currency: string | null;
|
|
1212793
|
-
id_local_currency: string | null;
|
|
1212794
|
-
id_transaction_type: string | null;
|
|
1212795
|
-
id_ledger: string | null;
|
|
1212796
|
-
post_date: Date | null;
|
|
1212797
|
-
is_posted: boolean | null;
|
|
1212798
|
-
id_account_org: string | null;
|
|
1212799
|
-
id_ar_receipt_branch: string | null;
|
|
1212800
|
-
id_receipt_type: string | null;
|
|
1212801
|
-
id_bank_account: string | null;
|
|
1212802
|
-
receipt_base_rate: Decimal | null;
|
|
1212803
|
-
receipt_amount: Decimal | null;
|
|
1212804
|
-
receipt_local_amount: Decimal | null;
|
|
1212805
|
-
receipt_outstanding_amount: Decimal | null;
|
|
1212806
|
-
receipt_local_outstanding_amount: Decimal | null;
|
|
1212807
|
-
receipt_date: Date | null;
|
|
1212808
|
-
receipt_description: string | null;
|
|
1212809
|
-
receipt_bank_ref_no: string | null;
|
|
1212810
|
-
cheque_number: string | null;
|
|
1212811
|
-
cheque_drawer: string | null;
|
|
1212812
|
-
cheque_bank: string | null;
|
|
1212813
|
-
cheque_branch: string | null;
|
|
1212814
|
-
receipt_number: string | null;
|
|
1212815
|
-
} | undefined;
|
|
1212816
|
-
ap_payment?: {
|
|
1212817
|
-
_count: {
|
|
1212818
|
-
ap_payment_branch: number;
|
|
1212819
|
-
transaction_type: number;
|
|
1212820
|
-
billing_ledger: number;
|
|
1212821
|
-
account_org: number;
|
|
1212822
|
-
account_org_address: number;
|
|
1212823
|
-
currency: number;
|
|
1212824
|
-
local_currency: number;
|
|
1212825
|
-
payment_method: number;
|
|
1212826
|
-
bank_account: number;
|
|
1212827
|
-
approval_status: number;
|
|
1212828
|
-
ap_payment_logs: number;
|
|
1212829
|
-
billing_match_transaction_lines: number;
|
|
1212830
|
-
};
|
|
1212831
|
-
currency: {
|
|
1212832
|
-
symbol: string | null;
|
|
1212833
|
-
is_active: boolean | null;
|
|
1212834
|
-
id: string;
|
|
1212835
|
-
logic_code: string | null;
|
|
1212836
|
-
created_at: Date | null;
|
|
1212837
|
-
created_by: string | null;
|
|
1212838
|
-
updated_at: Date | null;
|
|
1212839
|
-
updated_by: string | null;
|
|
1212840
|
-
currency_code: string | null;
|
|
1212841
|
-
currency_name: string | null;
|
|
1212842
|
-
major_unit: string | null;
|
|
1212843
|
-
minor_unit: string | null;
|
|
1212844
|
-
decimal_unit: number | null;
|
|
1212845
|
-
iso_decimal: number | null;
|
|
1212846
|
-
} | null;
|
|
1212847
|
-
local_currency: {
|
|
1212848
|
-
symbol: string | null;
|
|
1212849
|
-
is_active: boolean | null;
|
|
1212850
|
-
id: string;
|
|
1212851
|
-
logic_code: string | null;
|
|
1212852
|
-
created_at: Date | null;
|
|
1212853
|
-
created_by: string | null;
|
|
1212854
|
-
updated_at: Date | null;
|
|
1212855
|
-
updated_by: string | null;
|
|
1212856
|
-
currency_code: string | null;
|
|
1212857
|
-
currency_name: string | null;
|
|
1212858
|
-
major_unit: string | null;
|
|
1212859
|
-
minor_unit: string | null;
|
|
1212860
|
-
decimal_unit: number | null;
|
|
1212861
|
-
iso_decimal: number | null;
|
|
1212862
|
-
} | null;
|
|
1212863
|
-
billing_ledger: {
|
|
1212864
|
-
is_active: boolean | null;
|
|
1212865
|
-
id: string;
|
|
1212866
|
-
logic_code: string | null;
|
|
1212867
|
-
name: string | null;
|
|
1212868
|
-
code: string | null;
|
|
1212869
|
-
created_at: Date | null;
|
|
1212870
|
-
created_by: string | null;
|
|
1212871
|
-
updated_at: Date | null;
|
|
1212872
|
-
updated_by: string | null;
|
|
1212873
|
-
} | null;
|
|
1212874
|
-
transaction_type: {
|
|
1212875
|
-
is_active: boolean | null;
|
|
1212876
|
-
id: string;
|
|
1212877
|
-
logic_code: string | null;
|
|
1212878
|
-
name: string | null;
|
|
1212879
|
-
code: string | null;
|
|
1212880
|
-
created_at: Date | null;
|
|
1212881
|
-
created_by: string | null;
|
|
1212882
|
-
updated_at: Date | null;
|
|
1212883
|
-
updated_by: string | null;
|
|
1212884
|
-
} | null;
|
|
1212885
|
-
account_org: {
|
|
1213264
|
+
ap_payment_branch: {
|
|
1212886
1213265
|
is_active: boolean | null;
|
|
1212887
1213266
|
id: string;
|
|
1212888
1213267
|
logic_code: string | null;
|
|
@@ -1212892,53 +1213271,14 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212892
1213271
|
id_city: string | null;
|
|
1212893
1213272
|
id_postal_code: string | null;
|
|
1212894
1213273
|
id_company: string | null;
|
|
1212895
|
-
id_branch: string | null;
|
|
1212896
1213274
|
code: string | null;
|
|
1213275
|
+
address: string | null;
|
|
1212897
1213276
|
created_at: Date | null;
|
|
1212898
1213277
|
created_by: string | null;
|
|
1212899
1213278
|
updated_at: Date | null;
|
|
1212900
1213279
|
updated_by: string | null;
|
|
1212901
1213280
|
id_un_locode: string | null;
|
|
1212902
|
-
|
|
1212903
|
-
id_business_category: string | null;
|
|
1212904
|
-
id_controlling_branch: string | null;
|
|
1212905
|
-
id_airline: string | null;
|
|
1212906
|
-
id_shipping_line: string | null;
|
|
1212907
|
-
phone: string | null;
|
|
1212908
|
-
website_url: string | null;
|
|
1212909
|
-
company_number: string | null;
|
|
1212910
|
-
company_tax_number: string | null;
|
|
1212911
|
-
} | null;
|
|
1212912
|
-
bank_account: {
|
|
1212913
|
-
is_active: boolean | null;
|
|
1212914
|
-
id: string;
|
|
1212915
|
-
logic_code: string | null;
|
|
1212916
|
-
name: string | null;
|
|
1212917
|
-
id_country: string | null;
|
|
1212918
|
-
id_company: string | null;
|
|
1212919
|
-
id_branch: string | null;
|
|
1212920
|
-
code: string | null;
|
|
1212921
|
-
created_at: Date | null;
|
|
1212922
|
-
created_by: string | null;
|
|
1212923
|
-
updated_at: Date | null;
|
|
1212924
|
-
updated_by: string | null;
|
|
1212925
|
-
id_currency: string | null;
|
|
1212926
|
-
id_type: string | null;
|
|
1212927
|
-
id_gl_account: string | null;
|
|
1212928
|
-
id_os_balance_currency: string | null;
|
|
1212929
|
-
id_local_balance_currency: string | null;
|
|
1212930
|
-
bank_name: string | null;
|
|
1212931
|
-
bank_address: string | null;
|
|
1212932
|
-
bank_account_name: string | null;
|
|
1212933
|
-
bank_account_number: string | null;
|
|
1212934
|
-
bank_bsb_number: string | null;
|
|
1212935
|
-
bank_swift_code: string | null;
|
|
1212936
|
-
bank_iban_code: string | null;
|
|
1212937
|
-
bank_unique_account_number: string | null;
|
|
1212938
|
-
opening_os_balance: Decimal | null;
|
|
1212939
|
-
opening_local_balance: Decimal | null;
|
|
1212940
|
-
is_detailed_deposit_slip: boolean | null;
|
|
1212941
|
-
is_default_receipt_account: boolean | null;
|
|
1213281
|
+
id_organization_self: string | null;
|
|
1212942
1213282
|
} | null;
|
|
1212943
1213283
|
account_org_address: {
|
|
1212944
1213284
|
is_active: boolean | null;
|
|
@@ -1212984,25 +1213324,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1212984
1213324
|
updated_at: Date | null;
|
|
1212985
1213325
|
updated_by: string | null;
|
|
1212986
1213326
|
} | null;
|
|
1212987
|
-
ap_payment_branch: {
|
|
1212988
|
-
is_active: boolean | null;
|
|
1212989
|
-
id: string;
|
|
1212990
|
-
logic_code: string | null;
|
|
1212991
|
-
name: string | null;
|
|
1212992
|
-
id_country: string | null;
|
|
1212993
|
-
id_state: string | null;
|
|
1212994
|
-
id_city: string | null;
|
|
1212995
|
-
id_postal_code: string | null;
|
|
1212996
|
-
id_company: string | null;
|
|
1212997
|
-
code: string | null;
|
|
1212998
|
-
address: string | null;
|
|
1212999
|
-
created_at: Date | null;
|
|
1213000
|
-
created_by: string | null;
|
|
1213001
|
-
updated_at: Date | null;
|
|
1213002
|
-
updated_by: string | null;
|
|
1213003
|
-
id_un_locode: string | null;
|
|
1213004
|
-
id_organization_self: string | null;
|
|
1213005
|
-
} | null;
|
|
1213006
1213327
|
is_active: boolean | null;
|
|
1213007
1213328
|
id: string;
|
|
1213008
1213329
|
created_at: Date | null;
|
|
@@ -1213021,6 +1213342,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213021
1213342
|
cheque_drawer: string | null;
|
|
1213022
1213343
|
cheque_bank: string | null;
|
|
1213023
1213344
|
cheque_branch: string | null;
|
|
1213345
|
+
id_ap_payment_branch: string | null;
|
|
1213024
1213346
|
id_account_org_address: string | null;
|
|
1213025
1213347
|
id_payment_method: string | null;
|
|
1213026
1213348
|
id_approval_status: string | null;
|
|
@@ -1213033,7 +1213355,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213033
1213355
|
payment_description: string | null;
|
|
1213034
1213356
|
payment_bank_ref_no: string | null;
|
|
1213035
1213357
|
payment_number: string | null;
|
|
1213036
|
-
id_ap_payment_branch: string | null;
|
|
1213037
1213358
|
} | undefined;
|
|
1213038
1213359
|
ar_payment?: {
|
|
1213039
1213360
|
_count: {
|
|
@@ -1213162,25 +1213483,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213162
1213483
|
is_detailed_deposit_slip: boolean | null;
|
|
1213163
1213484
|
is_default_receipt_account: boolean | null;
|
|
1213164
1213485
|
} | null;
|
|
1213165
|
-
ar_payment_branch: {
|
|
1213166
|
-
is_active: boolean | null;
|
|
1213167
|
-
id: string;
|
|
1213168
|
-
logic_code: string | null;
|
|
1213169
|
-
name: string | null;
|
|
1213170
|
-
id_country: string | null;
|
|
1213171
|
-
id_state: string | null;
|
|
1213172
|
-
id_city: string | null;
|
|
1213173
|
-
id_postal_code: string | null;
|
|
1213174
|
-
id_company: string | null;
|
|
1213175
|
-
code: string | null;
|
|
1213176
|
-
address: string | null;
|
|
1213177
|
-
created_at: Date | null;
|
|
1213178
|
-
created_by: string | null;
|
|
1213179
|
-
updated_at: Date | null;
|
|
1213180
|
-
updated_by: string | null;
|
|
1213181
|
-
id_un_locode: string | null;
|
|
1213182
|
-
id_organization_self: string | null;
|
|
1213183
|
-
} | null;
|
|
1213184
1213486
|
account_org_address: {
|
|
1213185
1213487
|
is_active: boolean | null;
|
|
1213186
1213488
|
id: string;
|
|
@@ -1213225,6 +1213527,25 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213225
1213527
|
updated_at: Date | null;
|
|
1213226
1213528
|
updated_by: string | null;
|
|
1213227
1213529
|
} | null;
|
|
1213530
|
+
ar_payment_branch: {
|
|
1213531
|
+
is_active: boolean | null;
|
|
1213532
|
+
id: string;
|
|
1213533
|
+
logic_code: string | null;
|
|
1213534
|
+
name: string | null;
|
|
1213535
|
+
id_country: string | null;
|
|
1213536
|
+
id_state: string | null;
|
|
1213537
|
+
id_city: string | null;
|
|
1213538
|
+
id_postal_code: string | null;
|
|
1213539
|
+
id_company: string | null;
|
|
1213540
|
+
code: string | null;
|
|
1213541
|
+
address: string | null;
|
|
1213542
|
+
created_at: Date | null;
|
|
1213543
|
+
created_by: string | null;
|
|
1213544
|
+
updated_at: Date | null;
|
|
1213545
|
+
updated_by: string | null;
|
|
1213546
|
+
id_un_locode: string | null;
|
|
1213547
|
+
id_organization_self: string | null;
|
|
1213548
|
+
} | null;
|
|
1213228
1213549
|
is_active: boolean | null;
|
|
1213229
1213550
|
id: string;
|
|
1213230
1213551
|
created_at: Date | null;
|
|
@@ -1213243,7 +1213564,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213243
1213564
|
cheque_drawer: string | null;
|
|
1213244
1213565
|
cheque_bank: string | null;
|
|
1213245
1213566
|
cheque_branch: string | null;
|
|
1213246
|
-
id_ar_payment_branch: string | null;
|
|
1213247
1213567
|
id_account_org_address: string | null;
|
|
1213248
1213568
|
id_payment_method: string | null;
|
|
1213249
1213569
|
id_approval_status: string | null;
|
|
@@ -1213256,6 +1213576,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213256
1213576
|
payment_description: string | null;
|
|
1213257
1213577
|
payment_bank_ref_no: string | null;
|
|
1213258
1213578
|
payment_number: string | null;
|
|
1213579
|
+
id_ar_payment_branch: string | null;
|
|
1213259
1213580
|
} | undefined;
|
|
1213260
1213581
|
contra?: {
|
|
1213261
1213582
|
_count: {
|
|
@@ -1213546,6 +1213867,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1213546
1213867
|
outstanding_amount?: Decimal | undefined;
|
|
1213547
1213868
|
local_outstanding?: Decimal | undefined;
|
|
1213548
1213869
|
ex_rate?: Decimal | undefined;
|
|
1213870
|
+
job_invoice_number?: string | undefined;
|
|
1213549
1213871
|
house_bill_number?: string | undefined;
|
|
1213550
1213872
|
master_bill_number?: string | undefined;
|
|
1213551
1213873
|
};
|
|
@@ -1214664,6 +1214986,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1214664
1214986
|
master_bill_number: string | null;
|
|
1214665
1214987
|
id_billing_match_transaction: string | null;
|
|
1214666
1214988
|
id_miscellaneous_transactions: string | null;
|
|
1214989
|
+
paid_amount: Decimal | null;
|
|
1214990
|
+
local_paid_amount: Decimal | null;
|
|
1214667
1214991
|
}[];
|
|
1214668
1214992
|
primary_organization: {
|
|
1214669
1214993
|
is_active: boolean | null;
|
|
@@ -1214998,6 +1215322,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1214998
1215322
|
id_ledger: string | null;
|
|
1214999
1215323
|
post_date: Date | null;
|
|
1215000
1215324
|
is_posted: boolean | null;
|
|
1215325
|
+
id_ap_transfer_branch: string | null;
|
|
1215001
1215326
|
id_from_account_org: string | null;
|
|
1215002
1215327
|
id_to_account_org: string | null;
|
|
1215003
1215328
|
transfer_number: string | null;
|
|
@@ -1215018,7 +1215343,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215018
1215343
|
to_due_date: Date | null;
|
|
1215019
1215344
|
to_amount_before: Decimal | null;
|
|
1215020
1215345
|
to_amount_after: Decimal | null;
|
|
1215021
|
-
id_ap_transfer_branch: string | null;
|
|
1215022
1215346
|
} | null;
|
|
1215023
1215347
|
ar_transfer: {
|
|
1215024
1215348
|
is_active: boolean | null;
|
|
@@ -1215033,7 +1215357,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215033
1215357
|
id_ledger: string | null;
|
|
1215034
1215358
|
post_date: Date | null;
|
|
1215035
1215359
|
is_posted: boolean | null;
|
|
1215036
|
-
id_ar_transfer_branch: string | null;
|
|
1215037
1215360
|
id_from_account_org: string | null;
|
|
1215038
1215361
|
id_to_account_org: string | null;
|
|
1215039
1215362
|
transfer_number: string | null;
|
|
@@ -1215054,6 +1215377,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215054
1215377
|
to_due_date: Date | null;
|
|
1215055
1215378
|
to_amount_before: Decimal | null;
|
|
1215056
1215379
|
to_amount_after: Decimal | null;
|
|
1215380
|
+
id_ar_transfer_branch: string | null;
|
|
1215057
1215381
|
} | null;
|
|
1215058
1215382
|
ap_receipt: {
|
|
1215059
1215383
|
is_active: boolean | null;
|
|
@@ -1215069,6 +1215393,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215069
1215393
|
post_date: Date | null;
|
|
1215070
1215394
|
is_posted: boolean | null;
|
|
1215071
1215395
|
id_account_org: string | null;
|
|
1215396
|
+
id_ap_receipt_branch: string | null;
|
|
1215072
1215397
|
id_receipt_type: string | null;
|
|
1215073
1215398
|
id_bank_account: string | null;
|
|
1215074
1215399
|
receipt_base_rate: Decimal | null;
|
|
@@ -1215084,7 +1215409,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215084
1215409
|
cheque_bank: string | null;
|
|
1215085
1215410
|
cheque_branch: string | null;
|
|
1215086
1215411
|
receipt_number: string | null;
|
|
1215087
|
-
id_ap_receipt_branch: string | null;
|
|
1215088
1215412
|
} | null;
|
|
1215089
1215413
|
ar_receipt: {
|
|
1215090
1215414
|
is_active: boolean | null;
|
|
@@ -1215100,7 +1215424,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215100
1215424
|
post_date: Date | null;
|
|
1215101
1215425
|
is_posted: boolean | null;
|
|
1215102
1215426
|
id_account_org: string | null;
|
|
1215103
|
-
id_ar_receipt_branch: string | null;
|
|
1215104
1215427
|
id_receipt_type: string | null;
|
|
1215105
1215428
|
id_bank_account: string | null;
|
|
1215106
1215429
|
receipt_base_rate: Decimal | null;
|
|
@@ -1215116,6 +1215439,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215116
1215439
|
cheque_bank: string | null;
|
|
1215117
1215440
|
cheque_branch: string | null;
|
|
1215118
1215441
|
receipt_number: string | null;
|
|
1215442
|
+
id_ar_receipt_branch: string | null;
|
|
1215119
1215443
|
} | null;
|
|
1215120
1215444
|
ap_payment: {
|
|
1215121
1215445
|
is_active: boolean | null;
|
|
@@ -1215136,6 +1215460,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215136
1215460
|
cheque_drawer: string | null;
|
|
1215137
1215461
|
cheque_bank: string | null;
|
|
1215138
1215462
|
cheque_branch: string | null;
|
|
1215463
|
+
id_ap_payment_branch: string | null;
|
|
1215139
1215464
|
id_account_org_address: string | null;
|
|
1215140
1215465
|
id_payment_method: string | null;
|
|
1215141
1215466
|
id_approval_status: string | null;
|
|
@@ -1215148,7 +1215473,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215148
1215473
|
payment_description: string | null;
|
|
1215149
1215474
|
payment_bank_ref_no: string | null;
|
|
1215150
1215475
|
payment_number: string | null;
|
|
1215151
|
-
id_ap_payment_branch: string | null;
|
|
1215152
1215476
|
} | null;
|
|
1215153
1215477
|
ar_payment: {
|
|
1215154
1215478
|
is_active: boolean | null;
|
|
@@ -1215169,7 +1215493,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215169
1215493
|
cheque_drawer: string | null;
|
|
1215170
1215494
|
cheque_bank: string | null;
|
|
1215171
1215495
|
cheque_branch: string | null;
|
|
1215172
|
-
id_ar_payment_branch: string | null;
|
|
1215173
1215496
|
id_account_org_address: string | null;
|
|
1215174
1215497
|
id_payment_method: string | null;
|
|
1215175
1215498
|
id_approval_status: string | null;
|
|
@@ -1215182,6 +1215505,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215182
1215505
|
payment_description: string | null;
|
|
1215183
1215506
|
payment_bank_ref_no: string | null;
|
|
1215184
1215507
|
payment_number: string | null;
|
|
1215508
|
+
id_ar_payment_branch: string | null;
|
|
1215185
1215509
|
} | null;
|
|
1215186
1215510
|
contra: {
|
|
1215187
1215511
|
is_active: boolean | null;
|
|
@@ -1215388,6 +1215712,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215388
1215712
|
master_bill_number: string | null;
|
|
1215389
1215713
|
id_billing_match_transaction: string | null;
|
|
1215390
1215714
|
id_miscellaneous_transactions: string | null;
|
|
1215715
|
+
paid_amount: Decimal | null;
|
|
1215716
|
+
local_paid_amount: Decimal | null;
|
|
1215391
1215717
|
}[];
|
|
1215392
1215718
|
_count: {
|
|
1215393
1215719
|
primary_organization: number;
|
|
@@ -1215617,6 +1215943,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215617
1215943
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1215618
1215944
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1215619
1215945
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1215946
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1215947
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1215620
1215948
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1215621
1215949
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1215622
1215950
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1215702,6 +1216030,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215702
1216030
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1215703
1216031
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1215704
1216032
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1216033
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1216034
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1215705
1216035
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1215706
1216036
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1215707
1216037
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1215816,6 +1216146,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215816
1216146
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1215817
1216147
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1215818
1216148
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1216149
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1216150
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1215819
1216151
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1215820
1216152
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1215821
1216153
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1215868,6 +1216200,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1215868
1216200
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1215869
1216201
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1215870
1216202
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1216203
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1216204
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1215871
1216205
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1215872
1216206
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1215873
1216207
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1216259,6 +1216593,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216259
1216593
|
master_bill_number: string | null;
|
|
1216260
1216594
|
id_billing_match_transaction: string | null;
|
|
1216261
1216595
|
id_miscellaneous_transactions: string | null;
|
|
1216596
|
+
paid_amount: Decimal | null;
|
|
1216597
|
+
local_paid_amount: Decimal | null;
|
|
1216262
1216598
|
}[] | undefined;
|
|
1216263
1216599
|
total: number | undefined;
|
|
1216264
1216600
|
};
|
|
@@ -1216549,6 +1216885,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216549
1216885
|
id_ledger: string | null;
|
|
1216550
1216886
|
post_date: Date | null;
|
|
1216551
1216887
|
is_posted: boolean | null;
|
|
1216888
|
+
id_ap_transfer_branch: string | null;
|
|
1216552
1216889
|
id_from_account_org: string | null;
|
|
1216553
1216890
|
id_to_account_org: string | null;
|
|
1216554
1216891
|
transfer_number: string | null;
|
|
@@ -1216569,7 +1216906,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216569
1216906
|
to_due_date: Date | null;
|
|
1216570
1216907
|
to_amount_before: Decimal | null;
|
|
1216571
1216908
|
to_amount_after: Decimal | null;
|
|
1216572
|
-
id_ap_transfer_branch: string | null;
|
|
1216573
1216909
|
} | null;
|
|
1216574
1216910
|
ar_transfer: {
|
|
1216575
1216911
|
is_active: boolean | null;
|
|
@@ -1216584,7 +1216920,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216584
1216920
|
id_ledger: string | null;
|
|
1216585
1216921
|
post_date: Date | null;
|
|
1216586
1216922
|
is_posted: boolean | null;
|
|
1216587
|
-
id_ar_transfer_branch: string | null;
|
|
1216588
1216923
|
id_from_account_org: string | null;
|
|
1216589
1216924
|
id_to_account_org: string | null;
|
|
1216590
1216925
|
transfer_number: string | null;
|
|
@@ -1216605,6 +1216940,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216605
1216940
|
to_due_date: Date | null;
|
|
1216606
1216941
|
to_amount_before: Decimal | null;
|
|
1216607
1216942
|
to_amount_after: Decimal | null;
|
|
1216943
|
+
id_ar_transfer_branch: string | null;
|
|
1216608
1216944
|
} | null;
|
|
1216609
1216945
|
ap_receipt: {
|
|
1216610
1216946
|
is_active: boolean | null;
|
|
@@ -1216620,6 +1216956,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216620
1216956
|
post_date: Date | null;
|
|
1216621
1216957
|
is_posted: boolean | null;
|
|
1216622
1216958
|
id_account_org: string | null;
|
|
1216959
|
+
id_ap_receipt_branch: string | null;
|
|
1216623
1216960
|
id_receipt_type: string | null;
|
|
1216624
1216961
|
id_bank_account: string | null;
|
|
1216625
1216962
|
receipt_base_rate: Decimal | null;
|
|
@@ -1216635,7 +1216972,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216635
1216972
|
cheque_bank: string | null;
|
|
1216636
1216973
|
cheque_branch: string | null;
|
|
1216637
1216974
|
receipt_number: string | null;
|
|
1216638
|
-
id_ap_receipt_branch: string | null;
|
|
1216639
1216975
|
} | null;
|
|
1216640
1216976
|
ar_receipt: {
|
|
1216641
1216977
|
is_active: boolean | null;
|
|
@@ -1216651,7 +1216987,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216651
1216987
|
post_date: Date | null;
|
|
1216652
1216988
|
is_posted: boolean | null;
|
|
1216653
1216989
|
id_account_org: string | null;
|
|
1216654
|
-
id_ar_receipt_branch: string | null;
|
|
1216655
1216990
|
id_receipt_type: string | null;
|
|
1216656
1216991
|
id_bank_account: string | null;
|
|
1216657
1216992
|
receipt_base_rate: Decimal | null;
|
|
@@ -1216667,6 +1217002,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216667
1217002
|
cheque_bank: string | null;
|
|
1216668
1217003
|
cheque_branch: string | null;
|
|
1216669
1217004
|
receipt_number: string | null;
|
|
1217005
|
+
id_ar_receipt_branch: string | null;
|
|
1216670
1217006
|
} | null;
|
|
1216671
1217007
|
ap_payment: {
|
|
1216672
1217008
|
is_active: boolean | null;
|
|
@@ -1216687,6 +1217023,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216687
1217023
|
cheque_drawer: string | null;
|
|
1216688
1217024
|
cheque_bank: string | null;
|
|
1216689
1217025
|
cheque_branch: string | null;
|
|
1217026
|
+
id_ap_payment_branch: string | null;
|
|
1216690
1217027
|
id_account_org_address: string | null;
|
|
1216691
1217028
|
id_payment_method: string | null;
|
|
1216692
1217029
|
id_approval_status: string | null;
|
|
@@ -1216699,7 +1217036,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216699
1217036
|
payment_description: string | null;
|
|
1216700
1217037
|
payment_bank_ref_no: string | null;
|
|
1216701
1217038
|
payment_number: string | null;
|
|
1216702
|
-
id_ap_payment_branch: string | null;
|
|
1216703
1217039
|
} | null;
|
|
1216704
1217040
|
ar_payment: {
|
|
1216705
1217041
|
is_active: boolean | null;
|
|
@@ -1216720,7 +1217056,6 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216720
1217056
|
cheque_drawer: string | null;
|
|
1216721
1217057
|
cheque_bank: string | null;
|
|
1216722
1217058
|
cheque_branch: string | null;
|
|
1216723
|
-
id_ar_payment_branch: string | null;
|
|
1216724
1217059
|
id_account_org_address: string | null;
|
|
1216725
1217060
|
id_payment_method: string | null;
|
|
1216726
1217061
|
id_approval_status: string | null;
|
|
@@ -1216733,6 +1217068,7 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216733
1217068
|
payment_description: string | null;
|
|
1216734
1217069
|
payment_bank_ref_no: string | null;
|
|
1216735
1217070
|
payment_number: string | null;
|
|
1217071
|
+
id_ar_payment_branch: string | null;
|
|
1216736
1217072
|
} | null;
|
|
1216737
1217073
|
contra: {
|
|
1216738
1217074
|
is_active: boolean | null;
|
|
@@ -1216952,6 +1217288,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1216952
1217288
|
master_bill_number: string | null;
|
|
1216953
1217289
|
id_billing_match_transaction: string | null;
|
|
1216954
1217290
|
id_miscellaneous_transactions: string | null;
|
|
1217291
|
+
paid_amount: Decimal | null;
|
|
1217292
|
+
local_paid_amount: Decimal | null;
|
|
1216955
1217293
|
};
|
|
1216956
1217294
|
};
|
|
1216957
1217295
|
meta: object;
|
|
@@ -1217101,6 +1217439,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217101
1217439
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1217102
1217440
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1217103
1217441
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1217442
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1217443
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1217104
1217444
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1217105
1217445
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1217106
1217446
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1217151,6 +1217491,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217151
1217491
|
master_bill_number: string | null;
|
|
1217152
1217492
|
id_billing_match_transaction: string | null;
|
|
1217153
1217493
|
id_miscellaneous_transactions: string | null;
|
|
1217494
|
+
paid_amount: Decimal | null;
|
|
1217495
|
+
local_paid_amount: Decimal | null;
|
|
1217154
1217496
|
};
|
|
1217155
1217497
|
log: {
|
|
1217156
1217498
|
id: string;
|
|
@@ -1217212,6 +1217554,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217212
1217554
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1217213
1217555
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1217214
1217556
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1217557
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1217558
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1217215
1217559
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1217216
1217560
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1217217
1217561
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1217262,6 +1217606,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217262
1217606
|
master_bill_number: string | null;
|
|
1217263
1217607
|
id_billing_match_transaction: string | null;
|
|
1217264
1217608
|
id_miscellaneous_transactions: string | null;
|
|
1217609
|
+
paid_amount: Decimal | null;
|
|
1217610
|
+
local_paid_amount: Decimal | null;
|
|
1217265
1217611
|
};
|
|
1217266
1217612
|
log: {
|
|
1217267
1217613
|
id: string;
|
|
@@ -1217332,6 +1217678,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217332
1217678
|
master_bill_number: string | null;
|
|
1217333
1217679
|
id_billing_match_transaction: string | null;
|
|
1217334
1217680
|
id_miscellaneous_transactions: string | null;
|
|
1217681
|
+
paid_amount: Decimal | null;
|
|
1217682
|
+
local_paid_amount: Decimal | null;
|
|
1217335
1217683
|
} | undefined)[] | undefined;
|
|
1217336
1217684
|
} | undefined;
|
|
1217337
1217685
|
meta: object;
|
|
@@ -1217375,6 +1217723,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217375
1217723
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1217376
1217724
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1217377
1217725
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1217726
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1217727
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1217378
1217728
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1217379
1217729
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1217380
1217730
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1217420,6 +1217770,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217420
1217770
|
local_currency_name?: string | number | boolean | null | undefined;
|
|
1217421
1217771
|
outstanding_amount?: string | number | boolean | null | undefined;
|
|
1217422
1217772
|
local_outstanding?: string | number | boolean | null | undefined;
|
|
1217773
|
+
paid_amount?: string | number | boolean | null | undefined;
|
|
1217774
|
+
local_paid_amount?: string | number | boolean | null | undefined;
|
|
1217423
1217775
|
ex_rate?: string | number | boolean | null | undefined;
|
|
1217424
1217776
|
house_bill_number?: string | number | boolean | null | undefined;
|
|
1217425
1217777
|
master_bill_number?: string | number | boolean | null | undefined;
|
|
@@ -1217472,6 +1217824,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217472
1217824
|
master_bill_number: string | null;
|
|
1217473
1217825
|
id_billing_match_transaction: string | null;
|
|
1217474
1217826
|
id_miscellaneous_transactions: string | null;
|
|
1217827
|
+
paid_amount: Decimal | null;
|
|
1217828
|
+
local_paid_amount: Decimal | null;
|
|
1217475
1217829
|
};
|
|
1217476
1217830
|
log: {
|
|
1217477
1217831
|
id: string;
|
|
@@ -1217535,6 +1217889,8 @@ declare const transactionsRouter: BuiltRouter<{
|
|
|
1217535
1217889
|
master_bill_number: string | null;
|
|
1217536
1217890
|
id_billing_match_transaction: string | null;
|
|
1217537
1217891
|
id_miscellaneous_transactions: string | null;
|
|
1217892
|
+
paid_amount: Decimal | null;
|
|
1217893
|
+
local_paid_amount: Decimal | null;
|
|
1217538
1217894
|
};
|
|
1217539
1217895
|
log: {
|
|
1217540
1217896
|
id: string;
|