@be-logixpair/api 0.0.36 → 0.0.38

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2816 -60
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -26444,6 +26444,7 @@ type Charge_codesMinAggregateOutputType = {
26444
26444
  remarks: string | null;
26445
26445
  margin: Decimal$1 | null;
26446
26446
  is_active: boolean | null;
26447
+ is_show_on_console: boolean | null;
26447
26448
  is_show_on_quote: boolean | null;
26448
26449
  is_show_if_zero: boolean | null;
26449
26450
  created_at: Date | null;
@@ -26473,6 +26474,7 @@ type Charge_codesMaxAggregateOutputType = {
26473
26474
  remarks: string | null;
26474
26475
  margin: Decimal$1 | null;
26475
26476
  is_active: boolean | null;
26477
+ is_show_on_console: boolean | null;
26476
26478
  is_show_on_quote: boolean | null;
26477
26479
  is_show_if_zero: boolean | null;
26478
26480
  created_at: Date | null;
@@ -26502,6 +26504,7 @@ type Charge_codesCountAggregateOutputType = {
26502
26504
  remarks: number;
26503
26505
  margin: number;
26504
26506
  is_active: number;
26507
+ is_show_on_console: number;
26505
26508
  is_show_on_quote: number;
26506
26509
  is_show_if_zero: number;
26507
26510
  created_at: number;
@@ -26568,6 +26571,7 @@ type Charge_codesMinAggregateInputType = {
26568
26571
  remarks?: true;
26569
26572
  margin?: true;
26570
26573
  is_active?: true;
26574
+ is_show_on_console?: true;
26571
26575
  is_show_on_quote?: true;
26572
26576
  is_show_if_zero?: true;
26573
26577
  created_at?: true;
@@ -26597,6 +26601,7 @@ type Charge_codesMaxAggregateInputType = {
26597
26601
  remarks?: true;
26598
26602
  margin?: true;
26599
26603
  is_active?: true;
26604
+ is_show_on_console?: true;
26600
26605
  is_show_on_quote?: true;
26601
26606
  is_show_if_zero?: true;
26602
26607
  created_at?: true;
@@ -26626,6 +26631,7 @@ type Charge_codesCountAggregateInputType = {
26626
26631
  remarks?: true;
26627
26632
  margin?: true;
26628
26633
  is_active?: true;
26634
+ is_show_on_console?: true;
26629
26635
  is_show_on_quote?: true;
26630
26636
  is_show_if_zero?: true;
26631
26637
  created_at?: true;
@@ -26730,6 +26736,7 @@ type Charge_codesGroupByOutputType = {
26730
26736
  remarks: string | null;
26731
26737
  margin: Decimal$1 | null;
26732
26738
  is_active: boolean | null;
26739
+ is_show_on_console: boolean | null;
26733
26740
  is_show_on_quote: boolean | null;
26734
26741
  is_show_if_zero: boolean | null;
26735
26742
  created_at: Date | null;
@@ -26768,6 +26775,7 @@ type charge_codesWhereInput = {
26768
26775
  remarks?: StringNullableFilter<"charge_codes"> | string | null;
26769
26776
  margin?: DecimalNullableFilter<"charge_codes"> | Decimal$1 | DecimalJsLike | number | string | null;
26770
26777
  is_active?: BoolNullableFilter<"charge_codes"> | boolean | null;
26778
+ is_show_on_console?: BoolNullableFilter<"charge_codes"> | boolean | null;
26771
26779
  is_show_on_quote?: BoolNullableFilter<"charge_codes"> | boolean | null;
26772
26780
  is_show_if_zero?: BoolNullableFilter<"charge_codes"> | boolean | null;
26773
26781
  created_at?: DateTimeNullableFilter<"charge_codes"> | Date | string | null;
@@ -26815,6 +26823,7 @@ type charge_codesOrderByWithRelationInput = {
26815
26823
  remarks?: SortOrderInput | SortOrder;
26816
26824
  margin?: SortOrderInput | SortOrder;
26817
26825
  is_active?: SortOrderInput | SortOrder;
26826
+ is_show_on_console?: SortOrderInput | SortOrder;
26818
26827
  is_show_on_quote?: SortOrderInput | SortOrder;
26819
26828
  is_show_if_zero?: SortOrderInput | SortOrder;
26820
26829
  created_at?: SortOrderInput | SortOrder;
@@ -26865,6 +26874,7 @@ type charge_codesWhereUniqueInput = AtLeast<{
26865
26874
  remarks?: StringNullableFilter<"charge_codes"> | string | null;
26866
26875
  margin?: DecimalNullableFilter<"charge_codes"> | Decimal$1 | DecimalJsLike | number | string | null;
26867
26876
  is_active?: BoolNullableFilter<"charge_codes"> | boolean | null;
26877
+ is_show_on_console?: BoolNullableFilter<"charge_codes"> | boolean | null;
26868
26878
  is_show_on_quote?: BoolNullableFilter<"charge_codes"> | boolean | null;
26869
26879
  is_show_if_zero?: BoolNullableFilter<"charge_codes"> | boolean | null;
26870
26880
  created_at?: DateTimeNullableFilter<"charge_codes"> | Date | string | null;
@@ -26912,6 +26922,7 @@ type charge_codesOrderByWithAggregationInput = {
26912
26922
  remarks?: SortOrderInput | SortOrder;
26913
26923
  margin?: SortOrderInput | SortOrder;
26914
26924
  is_active?: SortOrderInput | SortOrder;
26925
+ is_show_on_console?: SortOrderInput | SortOrder;
26915
26926
  is_show_on_quote?: SortOrderInput | SortOrder;
26916
26927
  is_show_if_zero?: SortOrderInput | SortOrder;
26917
26928
  created_at?: SortOrderInput | SortOrder;
@@ -26949,6 +26960,7 @@ type charge_codesScalarWhereWithAggregatesInput = {
26949
26960
  remarks?: StringNullableWithAggregatesFilter<"charge_codes"> | string | null;
26950
26961
  margin?: DecimalNullableWithAggregatesFilter<"charge_codes"> | Decimal$1 | DecimalJsLike | number | string | null;
26951
26962
  is_active?: BoolNullableWithAggregatesFilter<"charge_codes"> | boolean | null;
26963
+ is_show_on_console?: BoolNullableWithAggregatesFilter<"charge_codes"> | boolean | null;
26952
26964
  is_show_on_quote?: BoolNullableWithAggregatesFilter<"charge_codes"> | boolean | null;
26953
26965
  is_show_if_zero?: BoolNullableWithAggregatesFilter<"charge_codes"> | boolean | null;
26954
26966
  created_at?: DateTimeNullableWithAggregatesFilter<"charge_codes"> | Date | string | null;
@@ -26963,6 +26975,7 @@ type charge_codesCreateInput = {
26963
26975
  remarks?: string | null;
26964
26976
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
26965
26977
  is_active?: boolean | null;
26978
+ is_show_on_console?: boolean | null;
26966
26979
  is_show_on_quote?: boolean | null;
26967
26980
  is_show_if_zero?: boolean | null;
26968
26981
  created_at?: Date | string | null;
@@ -27010,6 +27023,7 @@ type charge_codesUncheckedCreateInput = {
27010
27023
  remarks?: string | null;
27011
27024
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
27012
27025
  is_active?: boolean | null;
27026
+ is_show_on_console?: boolean | null;
27013
27027
  is_show_on_quote?: boolean | null;
27014
27028
  is_show_if_zero?: boolean | null;
27015
27029
  created_at?: Date | string | null;
@@ -27028,6 +27042,7 @@ type charge_codesUpdateInput = {
27028
27042
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
27029
27043
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
27030
27044
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27045
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27031
27046
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27032
27047
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27033
27048
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -27075,6 +27090,7 @@ type charge_codesUncheckedUpdateInput = {
27075
27090
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
27076
27091
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
27077
27092
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27093
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27078
27094
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27079
27095
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27080
27096
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -27108,6 +27124,7 @@ type charge_codesCreateManyInput = {
27108
27124
  remarks?: string | null;
27109
27125
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
27110
27126
  is_active?: boolean | null;
27127
+ is_show_on_console?: boolean | null;
27111
27128
  is_show_on_quote?: boolean | null;
27112
27129
  is_show_if_zero?: boolean | null;
27113
27130
  created_at?: Date | string | null;
@@ -27122,6 +27139,7 @@ type charge_codesUpdateManyMutationInput = {
27122
27139
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
27123
27140
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
27124
27141
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27142
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27125
27143
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27126
27144
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27127
27145
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -27151,6 +27169,7 @@ type charge_codesUncheckedUpdateManyInput = {
27151
27169
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
27152
27170
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
27153
27171
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27172
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27154
27173
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27155
27174
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
27156
27175
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -27188,6 +27207,7 @@ type charge_codesCountOrderByAggregateInput = {
27188
27207
  remarks?: SortOrder;
27189
27208
  margin?: SortOrder;
27190
27209
  is_active?: SortOrder;
27210
+ is_show_on_console?: SortOrder;
27191
27211
  is_show_on_quote?: SortOrder;
27192
27212
  is_show_if_zero?: SortOrder;
27193
27213
  created_at?: SortOrder;
@@ -27235,6 +27255,7 @@ type charge_codesMaxOrderByAggregateInput = {
27235
27255
  remarks?: SortOrder;
27236
27256
  margin?: SortOrder;
27237
27257
  is_active?: SortOrder;
27258
+ is_show_on_console?: SortOrder;
27238
27259
  is_show_on_quote?: SortOrder;
27239
27260
  is_show_if_zero?: SortOrder;
27240
27261
  created_at?: SortOrder;
@@ -27264,6 +27285,7 @@ type charge_codesMinOrderByAggregateInput = {
27264
27285
  remarks?: SortOrder;
27265
27286
  margin?: SortOrder;
27266
27287
  is_active?: SortOrder;
27288
+ is_show_on_console?: SortOrder;
27267
27289
  is_show_on_quote?: SortOrder;
27268
27290
  is_show_if_zero?: SortOrder;
27269
27291
  created_at?: SortOrder;
@@ -27888,6 +27910,7 @@ type charge_codesCreateWithoutTax_ratesInput = {
27888
27910
  remarks?: string | null;
27889
27911
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
27890
27912
  is_active?: boolean | null;
27913
+ is_show_on_console?: boolean | null;
27891
27914
  is_show_on_quote?: boolean | null;
27892
27915
  is_show_if_zero?: boolean | null;
27893
27916
  created_at?: Date | string | null;
@@ -27933,6 +27956,7 @@ type charge_codesUncheckedCreateWithoutTax_ratesInput = {
27933
27956
  remarks?: string | null;
27934
27957
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
27935
27958
  is_active?: boolean | null;
27959
+ is_show_on_console?: boolean | null;
27936
27960
  is_show_on_quote?: boolean | null;
27937
27961
  is_show_if_zero?: boolean | null;
27938
27962
  created_at?: Date | string | null;
@@ -27990,6 +28014,7 @@ type charge_codesScalarWhereInput = {
27990
28014
  remarks?: StringNullableFilter<"charge_codes"> | string | null;
27991
28015
  margin?: DecimalNullableFilter<"charge_codes"> | Decimal$1 | DecimalJsLike | number | string | null;
27992
28016
  is_active?: BoolNullableFilter<"charge_codes"> | boolean | null;
28017
+ is_show_on_console?: BoolNullableFilter<"charge_codes"> | boolean | null;
27993
28018
  is_show_on_quote?: BoolNullableFilter<"charge_codes"> | boolean | null;
27994
28019
  is_show_if_zero?: BoolNullableFilter<"charge_codes"> | boolean | null;
27995
28020
  created_at?: DateTimeNullableFilter<"charge_codes"> | Date | string | null;
@@ -28004,6 +28029,7 @@ type charge_codesCreateWithoutRevenue_accountInput = {
28004
28029
  remarks?: string | null;
28005
28030
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28006
28031
  is_active?: boolean | null;
28032
+ is_show_on_console?: boolean | null;
28007
28033
  is_show_on_quote?: boolean | null;
28008
28034
  is_show_if_zero?: boolean | null;
28009
28035
  created_at?: Date | string | null;
@@ -28049,6 +28075,7 @@ type charge_codesUncheckedCreateWithoutRevenue_accountInput = {
28049
28075
  remarks?: string | null;
28050
28076
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28051
28077
  is_active?: boolean | null;
28078
+ is_show_on_console?: boolean | null;
28052
28079
  is_show_on_quote?: boolean | null;
28053
28080
  is_show_if_zero?: boolean | null;
28054
28081
  created_at?: Date | string | null;
@@ -28075,6 +28102,7 @@ type charge_codesCreateWithoutWip_accountInput = {
28075
28102
  remarks?: string | null;
28076
28103
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28077
28104
  is_active?: boolean | null;
28105
+ is_show_on_console?: boolean | null;
28078
28106
  is_show_on_quote?: boolean | null;
28079
28107
  is_show_if_zero?: boolean | null;
28080
28108
  created_at?: Date | string | null;
@@ -28120,6 +28148,7 @@ type charge_codesUncheckedCreateWithoutWip_accountInput = {
28120
28148
  remarks?: string | null;
28121
28149
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28122
28150
  is_active?: boolean | null;
28151
+ is_show_on_console?: boolean | null;
28123
28152
  is_show_on_quote?: boolean | null;
28124
28153
  is_show_if_zero?: boolean | null;
28125
28154
  created_at?: Date | string | null;
@@ -28146,6 +28175,7 @@ type charge_codesCreateWithoutCost_accountInput = {
28146
28175
  remarks?: string | null;
28147
28176
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28148
28177
  is_active?: boolean | null;
28178
+ is_show_on_console?: boolean | null;
28149
28179
  is_show_on_quote?: boolean | null;
28150
28180
  is_show_if_zero?: boolean | null;
28151
28181
  created_at?: Date | string | null;
@@ -28191,6 +28221,7 @@ type charge_codesUncheckedCreateWithoutCost_accountInput = {
28191
28221
  remarks?: string | null;
28192
28222
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28193
28223
  is_active?: boolean | null;
28224
+ is_show_on_console?: boolean | null;
28194
28225
  is_show_on_quote?: boolean | null;
28195
28226
  is_show_if_zero?: boolean | null;
28196
28227
  created_at?: Date | string | null;
@@ -28217,6 +28248,7 @@ type charge_codesCreateWithoutAccrual_accountInput = {
28217
28248
  remarks?: string | null;
28218
28249
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28219
28250
  is_active?: boolean | null;
28251
+ is_show_on_console?: boolean | null;
28220
28252
  is_show_on_quote?: boolean | null;
28221
28253
  is_show_if_zero?: boolean | null;
28222
28254
  created_at?: Date | string | null;
@@ -28262,6 +28294,7 @@ type charge_codesUncheckedCreateWithoutAccrual_accountInput = {
28262
28294
  remarks?: string | null;
28263
28295
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28264
28296
  is_active?: boolean | null;
28297
+ is_show_on_console?: boolean | null;
28265
28298
  is_show_on_quote?: boolean | null;
28266
28299
  is_show_if_zero?: boolean | null;
28267
28300
  created_at?: Date | string | null;
@@ -28340,6 +28373,7 @@ type charge_codesCreateWithoutCharge_code_typeInput = {
28340
28373
  remarks?: string | null;
28341
28374
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28342
28375
  is_active?: boolean | null;
28376
+ is_show_on_console?: boolean | null;
28343
28377
  is_show_on_quote?: boolean | null;
28344
28378
  is_show_if_zero?: boolean | null;
28345
28379
  created_at?: Date | string | null;
@@ -28385,6 +28419,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_typeInput = {
28385
28419
  remarks?: string | null;
28386
28420
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28387
28421
  is_active?: boolean | null;
28422
+ is_show_on_console?: boolean | null;
28388
28423
  is_show_on_quote?: boolean | null;
28389
28424
  is_show_if_zero?: boolean | null;
28390
28425
  created_at?: Date | string | null;
@@ -28424,6 +28459,7 @@ type charge_codesCreateWithoutCharge_code_wht_typeInput = {
28424
28459
  remarks?: string | null;
28425
28460
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28426
28461
  is_active?: boolean | null;
28462
+ is_show_on_console?: boolean | null;
28427
28463
  is_show_on_quote?: boolean | null;
28428
28464
  is_show_if_zero?: boolean | null;
28429
28465
  created_at?: Date | string | null;
@@ -28469,6 +28505,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_wht_typeInput = {
28469
28505
  remarks?: string | null;
28470
28506
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28471
28507
  is_active?: boolean | null;
28508
+ is_show_on_console?: boolean | null;
28472
28509
  is_show_on_quote?: boolean | null;
28473
28510
  is_show_if_zero?: boolean | null;
28474
28511
  created_at?: Date | string | null;
@@ -28508,6 +28545,7 @@ type charge_codesCreateWithoutCharge_code_sales_groupInput = {
28508
28545
  remarks?: string | null;
28509
28546
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28510
28547
  is_active?: boolean | null;
28548
+ is_show_on_console?: boolean | null;
28511
28549
  is_show_on_quote?: boolean | null;
28512
28550
  is_show_if_zero?: boolean | null;
28513
28551
  created_at?: Date | string | null;
@@ -28553,6 +28591,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_sales_groupInput = {
28553
28591
  remarks?: string | null;
28554
28592
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28555
28593
  is_active?: boolean | null;
28594
+ is_show_on_console?: boolean | null;
28556
28595
  is_show_on_quote?: boolean | null;
28557
28596
  is_show_if_zero?: boolean | null;
28558
28597
  created_at?: Date | string | null;
@@ -28579,6 +28618,7 @@ type charge_codesCreateWithoutCharge_code_expense_groupInput = {
28579
28618
  remarks?: string | null;
28580
28619
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28581
28620
  is_active?: boolean | null;
28621
+ is_show_on_console?: boolean | null;
28582
28622
  is_show_on_quote?: boolean | null;
28583
28623
  is_show_if_zero?: boolean | null;
28584
28624
  created_at?: Date | string | null;
@@ -28624,6 +28664,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_expense_groupInput = {
28624
28664
  remarks?: string | null;
28625
28665
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28626
28666
  is_active?: boolean | null;
28667
+ is_show_on_console?: boolean | null;
28627
28668
  is_show_on_quote?: boolean | null;
28628
28669
  is_show_if_zero?: boolean | null;
28629
28670
  created_at?: Date | string | null;
@@ -28676,6 +28717,7 @@ type charge_codesCreateWithoutCharge_code_groupsInput = {
28676
28717
  remarks?: string | null;
28677
28718
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28678
28719
  is_active?: boolean | null;
28720
+ is_show_on_console?: boolean | null;
28679
28721
  is_show_on_quote?: boolean | null;
28680
28722
  is_show_if_zero?: boolean | null;
28681
28723
  created_at?: Date | string | null;
@@ -28721,6 +28763,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_groupsInput = {
28721
28763
  remarks?: string | null;
28722
28764
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28723
28765
  is_active?: boolean | null;
28766
+ is_show_on_console?: boolean | null;
28724
28767
  is_show_on_quote?: boolean | null;
28725
28768
  is_show_if_zero?: boolean | null;
28726
28769
  created_at?: Date | string | null;
@@ -28760,6 +28803,7 @@ type charge_codesCreateWithoutSub_groupInput = {
28760
28803
  remarks?: string | null;
28761
28804
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28762
28805
  is_active?: boolean | null;
28806
+ is_show_on_console?: boolean | null;
28763
28807
  is_show_on_quote?: boolean | null;
28764
28808
  is_show_if_zero?: boolean | null;
28765
28809
  created_at?: Date | string | null;
@@ -28805,6 +28849,7 @@ type charge_codesUncheckedCreateWithoutSub_groupInput = {
28805
28849
  remarks?: string | null;
28806
28850
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28807
28851
  is_active?: boolean | null;
28852
+ is_show_on_console?: boolean | null;
28808
28853
  is_show_on_quote?: boolean | null;
28809
28854
  is_show_if_zero?: boolean | null;
28810
28855
  created_at?: Date | string | null;
@@ -28844,6 +28889,7 @@ type charge_codesCreateWithoutCharge_code_rate_calculationInput = {
28844
28889
  remarks?: string | null;
28845
28890
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28846
28891
  is_active?: boolean | null;
28892
+ is_show_on_console?: boolean | null;
28847
28893
  is_show_on_quote?: boolean | null;
28848
28894
  is_show_if_zero?: boolean | null;
28849
28895
  created_at?: Date | string | null;
@@ -28889,6 +28935,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_rate_calculationInput = {
28889
28935
  remarks?: string | null;
28890
28936
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28891
28937
  is_active?: boolean | null;
28938
+ is_show_on_console?: boolean | null;
28892
28939
  is_show_on_quote?: boolean | null;
28893
28940
  is_show_if_zero?: boolean | null;
28894
28941
  created_at?: Date | string | null;
@@ -28928,6 +28975,7 @@ type charge_codesCreateWithoutCharge_code_logsInput = {
28928
28975
  remarks?: string | null;
28929
28976
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28930
28977
  is_active?: boolean | null;
28978
+ is_show_on_console?: boolean | null;
28931
28979
  is_show_on_quote?: boolean | null;
28932
28980
  is_show_if_zero?: boolean | null;
28933
28981
  created_at?: Date | string | null;
@@ -28974,6 +29022,7 @@ type charge_codesUncheckedCreateWithoutCharge_code_logsInput = {
28974
29022
  remarks?: string | null;
28975
29023
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
28976
29024
  is_active?: boolean | null;
29025
+ is_show_on_console?: boolean | null;
28977
29026
  is_show_on_quote?: boolean | null;
28978
29027
  is_show_if_zero?: boolean | null;
28979
29028
  created_at?: Date | string | null;
@@ -29004,6 +29053,7 @@ type charge_codesUpdateWithoutCharge_code_logsInput = {
29004
29053
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29005
29054
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29006
29055
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29056
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29007
29057
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29008
29058
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29009
29059
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29050,6 +29100,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_logsInput = {
29050
29100
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29051
29101
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29052
29102
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29103
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29053
29104
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29054
29105
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29055
29106
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29067,6 +29118,7 @@ type charge_codesCreateWithoutForwarding_shipment_billing_detailsInput = {
29067
29118
  remarks?: string | null;
29068
29119
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29069
29120
  is_active?: boolean | null;
29121
+ is_show_on_console?: boolean | null;
29070
29122
  is_show_on_quote?: boolean | null;
29071
29123
  is_show_if_zero?: boolean | null;
29072
29124
  created_at?: Date | string | null;
@@ -29113,6 +29165,7 @@ type charge_codesUncheckedCreateWithoutForwarding_shipment_billing_detailsInput
29113
29165
  remarks?: string | null;
29114
29166
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29115
29167
  is_active?: boolean | null;
29168
+ is_show_on_console?: boolean | null;
29116
29169
  is_show_on_quote?: boolean | null;
29117
29170
  is_show_if_zero?: boolean | null;
29118
29171
  created_at?: Date | string | null;
@@ -29143,6 +29196,7 @@ type charge_codesUpdateWithoutForwarding_shipment_billing_detailsInput = {
29143
29196
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29144
29197
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29145
29198
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29199
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29146
29200
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29147
29201
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29148
29202
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29189,6 +29243,7 @@ type charge_codesUncheckedUpdateWithoutForwarding_shipment_billing_detailsInput
29189
29243
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29190
29244
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29191
29245
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29246
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29192
29247
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29193
29248
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29194
29249
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29206,6 +29261,7 @@ type charge_codesCreateWithoutForwarding_console_billing_detailsInput = {
29206
29261
  remarks?: string | null;
29207
29262
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29208
29263
  is_active?: boolean | null;
29264
+ is_show_on_console?: boolean | null;
29209
29265
  is_show_on_quote?: boolean | null;
29210
29266
  is_show_if_zero?: boolean | null;
29211
29267
  created_at?: Date | string | null;
@@ -29252,6 +29308,7 @@ type charge_codesUncheckedCreateWithoutForwarding_console_billing_detailsInput =
29252
29308
  remarks?: string | null;
29253
29309
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29254
29310
  is_active?: boolean | null;
29311
+ is_show_on_console?: boolean | null;
29255
29312
  is_show_on_quote?: boolean | null;
29256
29313
  is_show_if_zero?: boolean | null;
29257
29314
  created_at?: Date | string | null;
@@ -29282,6 +29339,7 @@ type charge_codesUpdateWithoutForwarding_console_billing_detailsInput = {
29282
29339
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29283
29340
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29284
29341
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29342
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29285
29343
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29286
29344
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29287
29345
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29328,6 +29386,7 @@ type charge_codesUncheckedUpdateWithoutForwarding_console_billing_detailsInput =
29328
29386
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29329
29387
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29330
29388
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29389
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29331
29390
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29332
29391
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29333
29392
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29345,6 +29404,7 @@ type charge_codesCreateWithoutOrganization_account_bank_detailsInput = {
29345
29404
  remarks?: string | null;
29346
29405
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29347
29406
  is_active?: boolean | null;
29407
+ is_show_on_console?: boolean | null;
29348
29408
  is_show_on_quote?: boolean | null;
29349
29409
  is_show_if_zero?: boolean | null;
29350
29410
  created_at?: Date | string | null;
@@ -29391,6 +29451,7 @@ type charge_codesUncheckedCreateWithoutOrganization_account_bank_detailsInput =
29391
29451
  remarks?: string | null;
29392
29452
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29393
29453
  is_active?: boolean | null;
29454
+ is_show_on_console?: boolean | null;
29394
29455
  is_show_on_quote?: boolean | null;
29395
29456
  is_show_if_zero?: boolean | null;
29396
29457
  created_at?: Date | string | null;
@@ -29421,6 +29482,7 @@ type charge_codesUpdateWithoutOrganization_account_bank_detailsInput = {
29421
29482
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29422
29483
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29423
29484
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29485
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29424
29486
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29425
29487
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29426
29488
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29467,6 +29529,7 @@ type charge_codesUncheckedUpdateWithoutOrganization_account_bank_detailsInput =
29467
29529
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29468
29530
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29469
29531
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29532
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29470
29533
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29471
29534
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29472
29535
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29484,6 +29547,7 @@ type charge_codesCreateWithoutIncotermInput = {
29484
29547
  remarks?: string | null;
29485
29548
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29486
29549
  is_active?: boolean | null;
29550
+ is_show_on_console?: boolean | null;
29487
29551
  is_show_on_quote?: boolean | null;
29488
29552
  is_show_if_zero?: boolean | null;
29489
29553
  created_at?: Date | string | null;
@@ -29529,6 +29593,7 @@ type charge_codesUncheckedCreateWithoutIncotermInput = {
29529
29593
  remarks?: string | null;
29530
29594
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29531
29595
  is_active?: boolean | null;
29596
+ is_show_on_console?: boolean | null;
29532
29597
  is_show_on_quote?: boolean | null;
29533
29598
  is_show_if_zero?: boolean | null;
29534
29599
  created_at?: Date | string | null;
@@ -29568,6 +29633,7 @@ type charge_codesCreateWithoutDepartmentInput = {
29568
29633
  remarks?: string | null;
29569
29634
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29570
29635
  is_active?: boolean | null;
29636
+ is_show_on_console?: boolean | null;
29571
29637
  is_show_on_quote?: boolean | null;
29572
29638
  is_show_if_zero?: boolean | null;
29573
29639
  created_at?: Date | string | null;
@@ -29613,6 +29679,7 @@ type charge_codesUncheckedCreateWithoutDepartmentInput = {
29613
29679
  remarks?: string | null;
29614
29680
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29615
29681
  is_active?: boolean | null;
29682
+ is_show_on_console?: boolean | null;
29616
29683
  is_show_on_quote?: boolean | null;
29617
29684
  is_show_if_zero?: boolean | null;
29618
29685
  created_at?: Date | string | null;
@@ -29666,6 +29733,7 @@ type charge_codesCreateManyTax_ratesInput = {
29666
29733
  remarks?: string | null;
29667
29734
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29668
29735
  is_active?: boolean | null;
29736
+ is_show_on_console?: boolean | null;
29669
29737
  is_show_on_quote?: boolean | null;
29670
29738
  is_show_if_zero?: boolean | null;
29671
29739
  created_at?: Date | string | null;
@@ -29680,6 +29748,7 @@ type charge_codesUpdateWithoutTax_ratesInput = {
29680
29748
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29681
29749
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29682
29750
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29751
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29683
29752
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29684
29753
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29685
29754
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29725,6 +29794,7 @@ type charge_codesUncheckedUpdateWithoutTax_ratesInput = {
29725
29794
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29726
29795
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29727
29796
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29797
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29728
29798
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29729
29799
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29730
29800
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29757,6 +29827,7 @@ type charge_codesUncheckedUpdateManyWithoutTax_ratesInput = {
29757
29827
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29758
29828
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29759
29829
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29830
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29760
29831
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29761
29832
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29762
29833
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29785,6 +29856,7 @@ type charge_codesCreateManyRevenue_accountInput = {
29785
29856
  remarks?: string | null;
29786
29857
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29787
29858
  is_active?: boolean | null;
29859
+ is_show_on_console?: boolean | null;
29788
29860
  is_show_on_quote?: boolean | null;
29789
29861
  is_show_if_zero?: boolean | null;
29790
29862
  created_at?: Date | string | null;
@@ -29813,6 +29885,7 @@ type charge_codesCreateManyWip_accountInput = {
29813
29885
  remarks?: string | null;
29814
29886
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29815
29887
  is_active?: boolean | null;
29888
+ is_show_on_console?: boolean | null;
29816
29889
  is_show_on_quote?: boolean | null;
29817
29890
  is_show_if_zero?: boolean | null;
29818
29891
  created_at?: Date | string | null;
@@ -29841,6 +29914,7 @@ type charge_codesCreateManyCost_accountInput = {
29841
29914
  remarks?: string | null;
29842
29915
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29843
29916
  is_active?: boolean | null;
29917
+ is_show_on_console?: boolean | null;
29844
29918
  is_show_on_quote?: boolean | null;
29845
29919
  is_show_if_zero?: boolean | null;
29846
29920
  created_at?: Date | string | null;
@@ -29869,6 +29943,7 @@ type charge_codesCreateManyAccrual_accountInput = {
29869
29943
  remarks?: string | null;
29870
29944
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
29871
29945
  is_active?: boolean | null;
29946
+ is_show_on_console?: boolean | null;
29872
29947
  is_show_on_quote?: boolean | null;
29873
29948
  is_show_if_zero?: boolean | null;
29874
29949
  created_at?: Date | string | null;
@@ -29883,6 +29958,7 @@ type charge_codesUpdateWithoutRevenue_accountInput = {
29883
29958
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29884
29959
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29885
29960
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29961
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29886
29962
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29887
29963
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29888
29964
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29928,6 +30004,7 @@ type charge_codesUncheckedUpdateWithoutRevenue_accountInput = {
29928
30004
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29929
30005
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29930
30006
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30007
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29931
30008
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29932
30009
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29933
30010
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29960,6 +30037,7 @@ type charge_codesUncheckedUpdateManyWithoutRevenue_accountInput = {
29960
30037
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29961
30038
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29962
30039
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30040
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29963
30041
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29964
30042
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29965
30043
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -29974,6 +30052,7 @@ type charge_codesUpdateWithoutWip_accountInput = {
29974
30052
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
29975
30053
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
29976
30054
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30055
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29977
30056
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29978
30057
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
29979
30058
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30019,6 +30098,7 @@ type charge_codesUncheckedUpdateWithoutWip_accountInput = {
30019
30098
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30020
30099
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30021
30100
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30101
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30022
30102
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30023
30103
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30024
30104
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30051,6 +30131,7 @@ type charge_codesUncheckedUpdateManyWithoutWip_accountInput = {
30051
30131
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30052
30132
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30053
30133
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30134
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30054
30135
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30055
30136
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30056
30137
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30065,6 +30146,7 @@ type charge_codesUpdateWithoutCost_accountInput = {
30065
30146
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30066
30147
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30067
30148
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30149
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30068
30150
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30069
30151
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30070
30152
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30110,6 +30192,7 @@ type charge_codesUncheckedUpdateWithoutCost_accountInput = {
30110
30192
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30111
30193
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30112
30194
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30195
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30113
30196
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30114
30197
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30115
30198
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30142,6 +30225,7 @@ type charge_codesUncheckedUpdateManyWithoutCost_accountInput = {
30142
30225
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30143
30226
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30144
30227
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30228
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30145
30229
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30146
30230
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30147
30231
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30156,6 +30240,7 @@ type charge_codesUpdateWithoutAccrual_accountInput = {
30156
30240
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30157
30241
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30158
30242
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30243
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30159
30244
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30160
30245
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30161
30246
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30201,6 +30286,7 @@ type charge_codesUncheckedUpdateWithoutAccrual_accountInput = {
30201
30286
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30202
30287
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30203
30288
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30289
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30204
30290
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30205
30291
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30206
30292
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30233,6 +30319,7 @@ type charge_codesUncheckedUpdateManyWithoutAccrual_accountInput = {
30233
30319
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30234
30320
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30235
30321
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30322
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30236
30323
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30237
30324
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30238
30325
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30261,6 +30348,7 @@ type charge_codesCreateManyCharge_code_typeInput = {
30261
30348
  remarks?: string | null;
30262
30349
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30263
30350
  is_active?: boolean | null;
30351
+ is_show_on_console?: boolean | null;
30264
30352
  is_show_on_quote?: boolean | null;
30265
30353
  is_show_if_zero?: boolean | null;
30266
30354
  created_at?: Date | string | null;
@@ -30275,6 +30363,7 @@ type charge_codesUpdateWithoutCharge_code_typeInput = {
30275
30363
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30276
30364
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30277
30365
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30366
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30278
30367
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30279
30368
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30280
30369
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30320,6 +30409,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_typeInput = {
30320
30409
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30321
30410
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30322
30411
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30412
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30323
30413
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30324
30414
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30325
30415
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30352,6 +30442,7 @@ type charge_codesUncheckedUpdateManyWithoutCharge_code_typeInput = {
30352
30442
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30353
30443
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30354
30444
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30445
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30355
30446
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30356
30447
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30357
30448
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30380,6 +30471,7 @@ type charge_codesCreateManyCharge_code_wht_typeInput = {
30380
30471
  remarks?: string | null;
30381
30472
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30382
30473
  is_active?: boolean | null;
30474
+ is_show_on_console?: boolean | null;
30383
30475
  is_show_on_quote?: boolean | null;
30384
30476
  is_show_if_zero?: boolean | null;
30385
30477
  created_at?: Date | string | null;
@@ -30394,6 +30486,7 @@ type charge_codesUpdateWithoutCharge_code_wht_typeInput = {
30394
30486
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30395
30487
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30396
30488
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30489
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30397
30490
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30398
30491
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30399
30492
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30439,6 +30532,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_wht_typeInput = {
30439
30532
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30440
30533
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30441
30534
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30535
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30442
30536
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30443
30537
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30444
30538
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30471,6 +30565,7 @@ type charge_codesUncheckedUpdateManyWithoutCharge_code_wht_typeInput = {
30471
30565
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30472
30566
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30473
30567
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30568
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30474
30569
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30475
30570
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30476
30571
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30499,6 +30594,7 @@ type charge_codesCreateManyCharge_code_sales_groupInput = {
30499
30594
  remarks?: string | null;
30500
30595
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30501
30596
  is_active?: boolean | null;
30597
+ is_show_on_console?: boolean | null;
30502
30598
  is_show_on_quote?: boolean | null;
30503
30599
  is_show_if_zero?: boolean | null;
30504
30600
  created_at?: Date | string | null;
@@ -30527,6 +30623,7 @@ type charge_codesCreateManyCharge_code_expense_groupInput = {
30527
30623
  remarks?: string | null;
30528
30624
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30529
30625
  is_active?: boolean | null;
30626
+ is_show_on_console?: boolean | null;
30530
30627
  is_show_on_quote?: boolean | null;
30531
30628
  is_show_if_zero?: boolean | null;
30532
30629
  created_at?: Date | string | null;
@@ -30541,6 +30638,7 @@ type charge_codesUpdateWithoutCharge_code_sales_groupInput = {
30541
30638
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30542
30639
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30543
30640
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30641
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30544
30642
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30545
30643
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30546
30644
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30586,6 +30684,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_sales_groupInput = {
30586
30684
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30587
30685
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30588
30686
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30687
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30589
30688
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30590
30689
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30591
30690
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30618,6 +30717,7 @@ type charge_codesUncheckedUpdateManyWithoutCharge_code_sales_groupInput = {
30618
30717
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30619
30718
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30620
30719
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30720
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30621
30721
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30622
30722
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30623
30723
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30632,6 +30732,7 @@ type charge_codesUpdateWithoutCharge_code_expense_groupInput = {
30632
30732
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30633
30733
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30634
30734
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30735
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30635
30736
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30636
30737
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30637
30738
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30677,6 +30778,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_expense_groupInput = {
30677
30778
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30678
30779
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30679
30780
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30781
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30680
30782
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30681
30783
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30682
30784
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30709,6 +30811,7 @@ type charge_codesUncheckedUpdateManyWithoutCharge_code_expense_groupInput = {
30709
30811
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30710
30812
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30711
30813
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30814
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30712
30815
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30713
30816
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30714
30817
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30737,6 +30840,7 @@ type charge_codesCreateManyCharge_code_groupsInput = {
30737
30840
  remarks?: string | null;
30738
30841
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30739
30842
  is_active?: boolean | null;
30843
+ is_show_on_console?: boolean | null;
30740
30844
  is_show_on_quote?: boolean | null;
30741
30845
  is_show_if_zero?: boolean | null;
30742
30846
  created_at?: Date | string | null;
@@ -30751,6 +30855,7 @@ type charge_codesUpdateWithoutCharge_code_groupsInput = {
30751
30855
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30752
30856
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30753
30857
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30858
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30754
30859
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30755
30860
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30756
30861
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30796,6 +30901,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_groupsInput = {
30796
30901
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30797
30902
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30798
30903
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30904
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30799
30905
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30800
30906
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30801
30907
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30828,6 +30934,7 @@ type charge_codesUncheckedUpdateManyWithoutCharge_code_groupsInput = {
30828
30934
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30829
30935
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30830
30936
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30937
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30831
30938
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30832
30939
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30833
30940
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30856,6 +30963,7 @@ type charge_codesCreateManySub_groupInput = {
30856
30963
  remarks?: string | null;
30857
30964
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30858
30965
  is_active?: boolean | null;
30966
+ is_show_on_console?: boolean | null;
30859
30967
  is_show_on_quote?: boolean | null;
30860
30968
  is_show_if_zero?: boolean | null;
30861
30969
  created_at?: Date | string | null;
@@ -30870,6 +30978,7 @@ type charge_codesUpdateWithoutSub_groupInput = {
30870
30978
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30871
30979
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30872
30980
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30981
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30873
30982
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30874
30983
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30875
30984
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30915,6 +31024,7 @@ type charge_codesUncheckedUpdateWithoutSub_groupInput = {
30915
31024
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30916
31025
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30917
31026
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31027
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30918
31028
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30919
31029
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30920
31030
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30947,6 +31057,7 @@ type charge_codesUncheckedUpdateManyWithoutSub_groupInput = {
30947
31057
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30948
31058
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30949
31059
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31060
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30950
31061
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30951
31062
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30952
31063
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -30975,6 +31086,7 @@ type charge_codesCreateManyCharge_code_rate_calculationInput = {
30975
31086
  remarks?: string | null;
30976
31087
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
30977
31088
  is_active?: boolean | null;
31089
+ is_show_on_console?: boolean | null;
30978
31090
  is_show_on_quote?: boolean | null;
30979
31091
  is_show_if_zero?: boolean | null;
30980
31092
  created_at?: Date | string | null;
@@ -30989,6 +31101,7 @@ type charge_codesUpdateWithoutCharge_code_rate_calculationInput = {
30989
31101
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
30990
31102
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
30991
31103
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31104
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30992
31105
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30993
31106
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
30994
31107
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31034,6 +31147,7 @@ type charge_codesUncheckedUpdateWithoutCharge_code_rate_calculationInput = {
31034
31147
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31035
31148
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31036
31149
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31150
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31037
31151
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31038
31152
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31039
31153
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31066,6 +31180,7 @@ type charge_codesUncheckedUpdateManyWithoutCharge_code_rate_calculationInput = {
31066
31180
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31067
31181
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31068
31182
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31183
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31069
31184
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31070
31185
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31071
31186
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31094,6 +31209,7 @@ type charge_codesCreateManyIncotermInput = {
31094
31209
  remarks?: string | null;
31095
31210
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
31096
31211
  is_active?: boolean | null;
31212
+ is_show_on_console?: boolean | null;
31097
31213
  is_show_on_quote?: boolean | null;
31098
31214
  is_show_if_zero?: boolean | null;
31099
31215
  created_at?: Date | string | null;
@@ -31108,6 +31224,7 @@ type charge_codesUpdateWithoutIncotermInput = {
31108
31224
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31109
31225
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31110
31226
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31227
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31111
31228
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31112
31229
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31113
31230
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31153,6 +31270,7 @@ type charge_codesUncheckedUpdateWithoutIncotermInput = {
31153
31270
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31154
31271
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31155
31272
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31273
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31156
31274
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31157
31275
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31158
31276
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31185,6 +31303,7 @@ type charge_codesUncheckedUpdateManyWithoutIncotermInput = {
31185
31303
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31186
31304
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31187
31305
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31306
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31188
31307
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31189
31308
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31190
31309
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31213,6 +31332,7 @@ type charge_codesCreateManyDepartmentInput = {
31213
31332
  remarks?: string | null;
31214
31333
  margin?: Decimal$1 | DecimalJsLike | number | string | null;
31215
31334
  is_active?: boolean | null;
31335
+ is_show_on_console?: boolean | null;
31216
31336
  is_show_on_quote?: boolean | null;
31217
31337
  is_show_if_zero?: boolean | null;
31218
31338
  created_at?: Date | string | null;
@@ -31227,6 +31347,7 @@ type charge_codesUpdateWithoutDepartmentInput = {
31227
31347
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31228
31348
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31229
31349
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31350
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31230
31351
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31231
31352
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31232
31353
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31272,6 +31393,7 @@ type charge_codesUncheckedUpdateWithoutDepartmentInput = {
31272
31393
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31273
31394
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31274
31395
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31396
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31275
31397
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31276
31398
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31277
31399
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31304,6 +31426,7 @@ type charge_codesUncheckedUpdateManyWithoutDepartmentInput = {
31304
31426
  remarks?: NullableStringFieldUpdateOperationsInput | string | null;
31305
31427
  margin?: NullableDecimalFieldUpdateOperationsInput | Decimal$1 | DecimalJsLike | number | string | null;
31306
31428
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31429
+ is_show_on_console?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31307
31430
  is_show_on_quote?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31308
31431
  is_show_if_zero?: NullableBoolFieldUpdateOperationsInput | boolean | null;
31309
31432
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
@@ -31376,6 +31499,7 @@ type charge_codesSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Types$
31376
31499
  remarks?: boolean;
31377
31500
  margin?: boolean;
31378
31501
  is_active?: boolean;
31502
+ is_show_on_console?: boolean;
31379
31503
  is_show_on_quote?: boolean;
31380
31504
  is_show_if_zero?: boolean;
31381
31505
  created_at?: boolean;
@@ -31424,6 +31548,7 @@ type charge_codesSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensions.In
31424
31548
  remarks?: boolean;
31425
31549
  margin?: boolean;
31426
31550
  is_active?: boolean;
31551
+ is_show_on_console?: boolean;
31427
31552
  is_show_on_quote?: boolean;
31428
31553
  is_show_if_zero?: boolean;
31429
31554
  created_at?: boolean;
@@ -31467,6 +31592,7 @@ type charge_codesSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions.In
31467
31592
  remarks?: boolean;
31468
31593
  margin?: boolean;
31469
31594
  is_active?: boolean;
31595
+ is_show_on_console?: boolean;
31470
31596
  is_show_on_quote?: boolean;
31471
31597
  is_show_if_zero?: boolean;
31472
31598
  created_at?: boolean;
@@ -31488,7 +31614,7 @@ type charge_codesSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions.In
31488
31614
  charge_code_rate_calculation?: boolean | charge_codes$charge_code_rate_calculationArgs<ExtArgs>;
31489
31615
  incoterm?: boolean | charge_codes$incotermArgs<ExtArgs>;
31490
31616
  }, ExtArgs["result"]["charge_codes"]>;
31491
- type charge_codesOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_type" | "id_wht_type" | "id_tax_rate" | "id_revenue" | "id_wip" | "id_cost" | "id_accrual" | "id_sales_group" | "id_expense_group" | "id_group" | "id_sub_group" | "id_department" | "id_rate_calculation" | "id_incoterm" | "logic_code" | "code" | "name" | "remarks" | "margin" | "is_active" | "is_show_on_quote" | "is_show_if_zero" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["charge_codes"]>;
31617
+ type charge_codesOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "id_type" | "id_wht_type" | "id_tax_rate" | "id_revenue" | "id_wip" | "id_cost" | "id_accrual" | "id_sales_group" | "id_expense_group" | "id_group" | "id_sub_group" | "id_department" | "id_rate_calculation" | "id_incoterm" | "logic_code" | "code" | "name" | "remarks" | "margin" | "is_active" | "is_show_on_console" | "is_show_on_quote" | "is_show_if_zero" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["charge_codes"]>;
31492
31618
  type charge_codesInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
31493
31619
  charge_code_type?: boolean | charge_codes$charge_code_typeArgs<ExtArgs>;
31494
31620
  charge_code_wht_type?: boolean | charge_codes$charge_code_wht_typeArgs<ExtArgs>;
@@ -31586,6 +31712,7 @@ type $charge_codesPayload<ExtArgs extends Types$1.Extensions.InternalArgs = Type
31586
31712
  remarks: string | null;
31587
31713
  margin: Decimal$1 | null;
31588
31714
  is_active: boolean | null;
31715
+ is_show_on_console: boolean | null;
31589
31716
  is_show_on_quote: boolean | null;
31590
31717
  is_show_if_zero: boolean | null;
31591
31718
  created_at: Date | null;
@@ -31971,6 +32098,7 @@ interface charge_codesFieldRefs {
31971
32098
  readonly remarks: FieldRef<"charge_codes", 'String'>;
31972
32099
  readonly margin: FieldRef<"charge_codes", 'Decimal'>;
31973
32100
  readonly is_active: FieldRef<"charge_codes", 'Boolean'>;
32101
+ readonly is_show_on_console: FieldRef<"charge_codes", 'Boolean'>;
31974
32102
  readonly is_show_on_quote: FieldRef<"charge_codes", 'Boolean'>;
31975
32103
  readonly is_show_if_zero: FieldRef<"charge_codes", 'Boolean'>;
31976
32104
  readonly created_at: FieldRef<"charge_codes", 'DateTime'>;
@@ -429882,6 +430010,7 @@ type IncotermsMinAggregateOutputType = {
429882
430010
  logic_code: string | null;
429883
430011
  code: string | null;
429884
430012
  name: string | null;
430013
+ description: string | null;
429885
430014
  is_active: boolean | null;
429886
430015
  created_at: Date | null;
429887
430016
  created_by: string | null;
@@ -429893,6 +430022,7 @@ type IncotermsMaxAggregateOutputType = {
429893
430022
  logic_code: string | null;
429894
430023
  code: string | null;
429895
430024
  name: string | null;
430025
+ description: string | null;
429896
430026
  is_active: boolean | null;
429897
430027
  created_at: Date | null;
429898
430028
  created_by: string | null;
@@ -429904,6 +430034,7 @@ type IncotermsCountAggregateOutputType = {
429904
430034
  logic_code: number;
429905
430035
  code: number;
429906
430036
  name: number;
430037
+ description: number;
429907
430038
  is_active: number;
429908
430039
  created_at: number;
429909
430040
  created_by: number;
@@ -429922,6 +430053,7 @@ type IncotermsMinAggregateInputType = {
429922
430053
  logic_code?: true;
429923
430054
  code?: true;
429924
430055
  name?: true;
430056
+ description?: true;
429925
430057
  is_active?: true;
429926
430058
  created_at?: true;
429927
430059
  created_by?: true;
@@ -429933,6 +430065,7 @@ type IncotermsMaxAggregateInputType = {
429933
430065
  logic_code?: true;
429934
430066
  code?: true;
429935
430067
  name?: true;
430068
+ description?: true;
429936
430069
  is_active?: true;
429937
430070
  created_at?: true;
429938
430071
  created_by?: true;
@@ -429944,6 +430077,7 @@ type IncotermsCountAggregateInputType = {
429944
430077
  logic_code?: true;
429945
430078
  code?: true;
429946
430079
  name?: true;
430080
+ description?: true;
429947
430081
  is_active?: true;
429948
430082
  created_at?: true;
429949
430083
  created_by?: true;
@@ -430030,6 +430164,7 @@ type IncotermsGroupByOutputType = {
430030
430164
  logic_code: string | null;
430031
430165
  code: string | null;
430032
430166
  name: string | null;
430167
+ description: string | null;
430033
430168
  is_active: boolean | null;
430034
430169
  created_at: Date | null;
430035
430170
  created_by: string | null;
@@ -430050,6 +430185,7 @@ type incotermsWhereInput = {
430050
430185
  logic_code?: StringNullableFilter<"incoterms"> | string | null;
430051
430186
  code?: StringNullableFilter<"incoterms"> | string | null;
430052
430187
  name?: StringNullableFilter<"incoterms"> | string | null;
430188
+ description?: StringNullableFilter<"incoterms"> | string | null;
430053
430189
  is_active?: BoolNullableFilter<"incoterms"> | boolean | null;
430054
430190
  created_at?: DateTimeNullableFilter<"incoterms"> | Date | string | null;
430055
430191
  created_by?: StringNullableFilter<"incoterms"> | string | null;
@@ -430065,6 +430201,7 @@ type incotermsOrderByWithRelationInput = {
430065
430201
  logic_code?: SortOrderInput | SortOrder;
430066
430202
  code?: SortOrderInput | SortOrder;
430067
430203
  name?: SortOrderInput | SortOrder;
430204
+ description?: SortOrderInput | SortOrder;
430068
430205
  is_active?: SortOrderInput | SortOrder;
430069
430206
  created_at?: SortOrderInput | SortOrder;
430070
430207
  created_by?: SortOrderInput | SortOrder;
@@ -430083,6 +430220,7 @@ type incotermsWhereUniqueInput = AtLeast<{
430083
430220
  NOT?: incotermsWhereInput | incotermsWhereInput[];
430084
430221
  code?: StringNullableFilter<"incoterms"> | string | null;
430085
430222
  name?: StringNullableFilter<"incoterms"> | string | null;
430223
+ description?: StringNullableFilter<"incoterms"> | string | null;
430086
430224
  is_active?: BoolNullableFilter<"incoterms"> | boolean | null;
430087
430225
  created_at?: DateTimeNullableFilter<"incoterms"> | Date | string | null;
430088
430226
  created_by?: StringNullableFilter<"incoterms"> | string | null;
@@ -430098,6 +430236,7 @@ type incotermsOrderByWithAggregationInput = {
430098
430236
  logic_code?: SortOrderInput | SortOrder;
430099
430237
  code?: SortOrderInput | SortOrder;
430100
430238
  name?: SortOrderInput | SortOrder;
430239
+ description?: SortOrderInput | SortOrder;
430101
430240
  is_active?: SortOrderInput | SortOrder;
430102
430241
  created_at?: SortOrderInput | SortOrder;
430103
430242
  created_by?: SortOrderInput | SortOrder;
@@ -430117,6 +430256,7 @@ type incotermsScalarWhereWithAggregatesInput = {
430117
430256
  logic_code?: StringNullableWithAggregatesFilter<"incoterms"> | string | null;
430118
430257
  code?: StringNullableWithAggregatesFilter<"incoterms"> | string | null;
430119
430258
  name?: StringNullableWithAggregatesFilter<"incoterms"> | string | null;
430259
+ description?: StringNullableWithAggregatesFilter<"incoterms"> | string | null;
430120
430260
  is_active?: BoolNullableWithAggregatesFilter<"incoterms"> | boolean | null;
430121
430261
  created_at?: DateTimeNullableWithAggregatesFilter<"incoterms"> | Date | string | null;
430122
430262
  created_by?: StringNullableWithAggregatesFilter<"incoterms"> | string | null;
@@ -430127,6 +430267,7 @@ type incotermsCreateInput = {
430127
430267
  logic_code?: string | null;
430128
430268
  code?: string | null;
430129
430269
  name?: string | null;
430270
+ description?: string | null;
430130
430271
  is_active?: boolean | null;
430131
430272
  created_at?: Date | string | null;
430132
430273
  created_by?: string | null;
@@ -430142,6 +430283,7 @@ type incotermsUncheckedCreateInput = {
430142
430283
  logic_code?: string | null;
430143
430284
  code?: string | null;
430144
430285
  name?: string | null;
430286
+ description?: string | null;
430145
430287
  is_active?: boolean | null;
430146
430288
  created_at?: Date | string | null;
430147
430289
  created_by?: string | null;
@@ -430156,6 +430298,7 @@ type incotermsUpdateInput = {
430156
430298
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430157
430299
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430158
430300
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430301
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430159
430302
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430160
430303
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430161
430304
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430171,6 +430314,7 @@ type incotermsUncheckedUpdateInput = {
430171
430314
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430172
430315
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430173
430316
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430317
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430174
430318
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430175
430319
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430176
430320
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430186,6 +430330,7 @@ type incotermsCreateManyInput = {
430186
430330
  logic_code?: string | null;
430187
430331
  code?: string | null;
430188
430332
  name?: string | null;
430333
+ description?: string | null;
430189
430334
  is_active?: boolean | null;
430190
430335
  created_at?: Date | string | null;
430191
430336
  created_by?: string | null;
@@ -430196,6 +430341,7 @@ type incotermsUpdateManyMutationInput = {
430196
430341
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430197
430342
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430198
430343
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430344
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430199
430345
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430200
430346
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430201
430347
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430207,6 +430353,7 @@ type incotermsUncheckedUpdateManyInput = {
430207
430353
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430208
430354
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430209
430355
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430356
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430210
430357
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430211
430358
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430212
430359
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430222,6 +430369,7 @@ type incotermsCountOrderByAggregateInput = {
430222
430369
  logic_code?: SortOrder;
430223
430370
  code?: SortOrder;
430224
430371
  name?: SortOrder;
430372
+ description?: SortOrder;
430225
430373
  is_active?: SortOrder;
430226
430374
  created_at?: SortOrder;
430227
430375
  created_by?: SortOrder;
@@ -430236,6 +430384,7 @@ type incotermsMaxOrderByAggregateInput = {
430236
430384
  logic_code?: SortOrder;
430237
430385
  code?: SortOrder;
430238
430386
  name?: SortOrder;
430387
+ description?: SortOrder;
430239
430388
  is_active?: SortOrder;
430240
430389
  created_at?: SortOrder;
430241
430390
  created_by?: SortOrder;
@@ -430247,6 +430396,7 @@ type incotermsMinOrderByAggregateInput = {
430247
430396
  logic_code?: SortOrder;
430248
430397
  code?: SortOrder;
430249
430398
  name?: SortOrder;
430399
+ description?: SortOrder;
430250
430400
  is_active?: SortOrder;
430251
430401
  created_at?: SortOrder;
430252
430402
  created_by?: SortOrder;
@@ -430316,6 +430466,7 @@ type incotermsCreateWithoutCharge_codesInput = {
430316
430466
  logic_code?: string | null;
430317
430467
  code?: string | null;
430318
430468
  name?: string | null;
430469
+ description?: string | null;
430319
430470
  is_active?: boolean | null;
430320
430471
  created_at?: Date | string | null;
430321
430472
  created_by?: string | null;
@@ -430330,6 +430481,7 @@ type incotermsUncheckedCreateWithoutCharge_codesInput = {
430330
430481
  logic_code?: string | null;
430331
430482
  code?: string | null;
430332
430483
  name?: string | null;
430484
+ description?: string | null;
430333
430485
  is_active?: boolean | null;
430334
430486
  created_at?: Date | string | null;
430335
430487
  created_by?: string | null;
@@ -430356,6 +430508,7 @@ type incotermsUpdateWithoutCharge_codesInput = {
430356
430508
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430357
430509
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430358
430510
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430511
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430359
430512
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430360
430513
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430361
430514
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430370,6 +430523,7 @@ type incotermsUncheckedUpdateWithoutCharge_codesInput = {
430370
430523
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430371
430524
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430372
430525
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430526
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430373
430527
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430374
430528
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430375
430529
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430383,6 +430537,7 @@ type incotermsCreateWithoutForwarding_bookingsInput = {
430383
430537
  logic_code?: string | null;
430384
430538
  code?: string | null;
430385
430539
  name?: string | null;
430540
+ description?: string | null;
430386
430541
  is_active?: boolean | null;
430387
430542
  created_at?: Date | string | null;
430388
430543
  created_by?: string | null;
@@ -430397,6 +430552,7 @@ type incotermsUncheckedCreateWithoutForwarding_bookingsInput = {
430397
430552
  logic_code?: string | null;
430398
430553
  code?: string | null;
430399
430554
  name?: string | null;
430555
+ description?: string | null;
430400
430556
  is_active?: boolean | null;
430401
430557
  created_at?: Date | string | null;
430402
430558
  created_by?: string | null;
@@ -430423,6 +430579,7 @@ type incotermsUpdateWithoutForwarding_bookingsInput = {
430423
430579
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430424
430580
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430425
430581
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430582
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430426
430583
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430427
430584
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430428
430585
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430437,6 +430594,7 @@ type incotermsUncheckedUpdateWithoutForwarding_bookingsInput = {
430437
430594
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430438
430595
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430439
430596
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430597
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430440
430598
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430441
430599
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430442
430600
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430450,6 +430608,7 @@ type incotermsCreateWithoutIncoterm_logsInput = {
430450
430608
  logic_code?: string | null;
430451
430609
  code?: string | null;
430452
430610
  name?: string | null;
430611
+ description?: string | null;
430453
430612
  is_active?: boolean | null;
430454
430613
  created_at?: Date | string | null;
430455
430614
  created_by?: string | null;
@@ -430464,6 +430623,7 @@ type incotermsUncheckedCreateWithoutIncoterm_logsInput = {
430464
430623
  logic_code?: string | null;
430465
430624
  code?: string | null;
430466
430625
  name?: string | null;
430626
+ description?: string | null;
430467
430627
  is_active?: boolean | null;
430468
430628
  created_at?: Date | string | null;
430469
430629
  created_by?: string | null;
@@ -430490,6 +430650,7 @@ type incotermsUpdateWithoutIncoterm_logsInput = {
430490
430650
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430491
430651
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430492
430652
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430653
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430493
430654
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430494
430655
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430495
430656
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430504,6 +430665,7 @@ type incotermsUncheckedUpdateWithoutIncoterm_logsInput = {
430504
430665
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430505
430666
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430506
430667
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430668
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430507
430669
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430508
430670
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430509
430671
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430517,6 +430679,7 @@ type incotermsCreateWithoutForwarding_shipmentsInput = {
430517
430679
  logic_code?: string | null;
430518
430680
  code?: string | null;
430519
430681
  name?: string | null;
430682
+ description?: string | null;
430520
430683
  is_active?: boolean | null;
430521
430684
  created_at?: Date | string | null;
430522
430685
  created_by?: string | null;
@@ -430531,6 +430694,7 @@ type incotermsUncheckedCreateWithoutForwarding_shipmentsInput = {
430531
430694
  logic_code?: string | null;
430532
430695
  code?: string | null;
430533
430696
  name?: string | null;
430697
+ description?: string | null;
430534
430698
  is_active?: boolean | null;
430535
430699
  created_at?: Date | string | null;
430536
430700
  created_by?: string | null;
@@ -430557,6 +430721,7 @@ type incotermsUpdateWithoutForwarding_shipmentsInput = {
430557
430721
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430558
430722
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430559
430723
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430724
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430560
430725
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430561
430726
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430562
430727
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430571,6 +430736,7 @@ type incotermsUncheckedUpdateWithoutForwarding_shipmentsInput = {
430571
430736
  logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
430572
430737
  code?: NullableStringFieldUpdateOperationsInput | string | null;
430573
430738
  name?: NullableStringFieldUpdateOperationsInput | string | null;
430739
+ description?: NullableStringFieldUpdateOperationsInput | string | null;
430574
430740
  is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
430575
430741
  created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
430576
430742
  created_by?: NullableStringFieldUpdateOperationsInput | string | null;
@@ -430628,6 +430794,7 @@ type incotermsSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.E
430628
430794
  logic_code?: boolean;
430629
430795
  code?: boolean;
430630
430796
  name?: boolean;
430797
+ description?: boolean;
430631
430798
  is_active?: boolean;
430632
430799
  created_at?: boolean;
430633
430800
  created_by?: boolean;
@@ -430644,6 +430811,7 @@ type incotermsSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensions.Inter
430644
430811
  logic_code?: boolean;
430645
430812
  code?: boolean;
430646
430813
  name?: boolean;
430814
+ description?: boolean;
430647
430815
  is_active?: boolean;
430648
430816
  created_at?: boolean;
430649
430817
  created_by?: boolean;
@@ -430655,13 +430823,14 @@ type incotermsSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions.Inter
430655
430823
  logic_code?: boolean;
430656
430824
  code?: boolean;
430657
430825
  name?: boolean;
430826
+ description?: boolean;
430658
430827
  is_active?: boolean;
430659
430828
  created_at?: boolean;
430660
430829
  created_by?: boolean;
430661
430830
  updated_at?: boolean;
430662
430831
  updated_by?: boolean;
430663
430832
  }, ExtArgs["result"]["incoterms"]>;
430664
- type incotermsOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "logic_code" | "code" | "name" | "is_active" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["incoterms"]>;
430833
+ type incotermsOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "logic_code" | "code" | "name" | "description" | "is_active" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["incoterms"]>;
430665
430834
  type incotermsInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
430666
430835
  incoterm_logs?: boolean | incoterms$incoterm_logsArgs<ExtArgs>;
430667
430836
  charge_codes?: boolean | incoterms$charge_codesArgs<ExtArgs>;
@@ -430682,6 +430851,7 @@ type $incotermsPayload<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1
430682
430851
  logic_code: string | null;
430683
430852
  code: string | null;
430684
430853
  name: string | null;
430854
+ description: string | null;
430685
430855
  is_active: boolean | null;
430686
430856
  created_at: Date | null;
430687
430857
  created_by: string | null;
@@ -431035,6 +431205,7 @@ interface incotermsFieldRefs {
431035
431205
  readonly logic_code: FieldRef<"incoterms", 'String'>;
431036
431206
  readonly code: FieldRef<"incoterms", 'String'>;
431037
431207
  readonly name: FieldRef<"incoterms", 'String'>;
431208
+ readonly description: FieldRef<"incoterms", 'String'>;
431038
431209
  readonly is_active: FieldRef<"incoterms", 'Boolean'>;
431039
431210
  readonly created_at: FieldRef<"incoterms", 'DateTime'>;
431040
431211
  readonly created_by: FieldRef<"incoterms", 'String'>;
@@ -631122,6 +631293,7 @@ declare const Charge_codesScalarFieldEnum: {
631122
631293
  readonly remarks: "remarks";
631123
631294
  readonly margin: "margin";
631124
631295
  readonly is_active: "is_active";
631296
+ readonly is_show_on_console: "is_show_on_console";
631125
631297
  readonly is_show_on_quote: "is_show_on_quote";
631126
631298
  readonly is_show_if_zero: "is_show_if_zero";
631127
631299
  readonly created_at: "created_at";
@@ -633372,6 +633544,7 @@ declare const IncotermsScalarFieldEnum: {
633372
633544
  readonly logic_code: "logic_code";
633373
633545
  readonly code: "code";
633374
633546
  readonly name: "name";
633547
+ readonly description: "description";
633375
633548
  readonly is_active: "is_active";
633376
633549
  readonly created_at: "created_at";
633377
633550
  readonly created_by: "created_by";
@@ -639653,7 +639826,6 @@ declare const appRouter: BuiltRouter<{
639653
639826
  };
639654
639827
  output: {
639655
639828
  data: {
639656
- params: Record<string, unknown>;
639657
639829
  log_type: {
639658
639830
  is_active: boolean | null;
639659
639831
  id: number;
@@ -639668,6 +639840,7 @@ declare const appRouter: BuiltRouter<{
639668
639840
  id_log_type: number | null;
639669
639841
  id_airline: number | null;
639670
639842
  url: string | null;
639843
+ params: SimpleJson;
639671
639844
  action: string | null;
639672
639845
  action_by: string | null;
639673
639846
  action_id: string | null;
@@ -639684,7 +639857,6 @@ declare const appRouter: BuiltRouter<{
639684
639857
  };
639685
639858
  output: {
639686
639859
  data: {
639687
- params: Record<string, unknown>;
639688
639860
  log_type: {
639689
639861
  is_active: boolean | null;
639690
639862
  id: number;
@@ -639699,6 +639871,7 @@ declare const appRouter: BuiltRouter<{
639699
639871
  id_log_type: number | null;
639700
639872
  id_airline: number | null;
639701
639873
  url: string | null;
639874
+ params: SimpleJson;
639702
639875
  action: string | null;
639703
639876
  action_by: string | null;
639704
639877
  action_id: string | null;
@@ -647394,7 +647567,6 @@ declare const appRouter: BuiltRouter<{
647394
647567
  };
647395
647568
  output: {
647396
647569
  data: {
647397
- params: Record<string, unknown>;
647398
647570
  log_type: {
647399
647571
  is_active: boolean | null;
647400
647572
  id: number;
@@ -647408,6 +647580,7 @@ declare const appRouter: BuiltRouter<{
647408
647580
  id: number;
647409
647581
  id_log_type: number | null;
647410
647582
  url: string | null;
647583
+ params: SimpleJson;
647411
647584
  action: string | null;
647412
647585
  action_by: string | null;
647413
647586
  action_id: string | null;
@@ -647425,7 +647598,6 @@ declare const appRouter: BuiltRouter<{
647425
647598
  };
647426
647599
  output: {
647427
647600
  data: {
647428
- params: Record<string, unknown>;
647429
647601
  log_type: {
647430
647602
  is_active: boolean | null;
647431
647603
  id: number;
@@ -647439,6 +647611,7 @@ declare const appRouter: BuiltRouter<{
647439
647611
  id: number;
647440
647612
  id_log_type: number | null;
647441
647613
  url: string | null;
647614
+ params: SimpleJson;
647442
647615
  action: string | null;
647443
647616
  action_by: string | null;
647444
647617
  action_id: string | null;
@@ -647793,7 +647966,7 @@ declare const appRouter: BuiltRouter<{
647793
647966
  }>;
647794
647967
  }>>;
647795
647968
  }>>;
647796
- commodities: BuiltRouter<{
647969
+ incoterms: BuiltRouter<{
647797
647970
  ctx: Context;
647798
647971
  meta: object;
647799
647972
  errorShape: DefaultErrorShape;
@@ -647819,49 +647992,9 @@ declare const appRouter: BuiltRouter<{
647819
647992
  field: string;
647820
647993
  direction: "asc" | "desc";
647821
647994
  }[] | null | undefined;
647822
- id_commodity?: number | null | undefined;
647823
- ids_commodity?: number[] | null | undefined;
647824
- id_iata_commodity?: number | null | undefined;
647825
- ids_iata_commodity?: number[] | null | undefined;
647826
- id_universal_group?: number | null | undefined;
647827
- ids_universal_group?: number[] | null | undefined;
647828
647995
  };
647829
647996
  output: {
647830
- data: ({
647831
- iata_commodity: {
647832
- is_active: boolean | null;
647833
- id: number;
647834
- name: string | null;
647835
- logic_code: string | null;
647836
- created_at: Date | null;
647837
- created_by: string | null;
647838
- updated_at: Date | null;
647839
- updated_by: string | null;
647840
- code: string | null;
647841
- } | null;
647842
- universal_group: {
647843
- is_active: boolean | null;
647844
- id: number;
647845
- name: string | null;
647846
- logic_code: string | null;
647847
- created_at: Date | null;
647848
- created_by: string | null;
647849
- updated_at: Date | null;
647850
- updated_by: string | null;
647851
- code: string | null;
647852
- } | null;
647853
- expiration_date_unit: {
647854
- is_active: boolean | null;
647855
- id: number;
647856
- name: string | null;
647857
- logic_code: string | null;
647858
- created_at: Date | null;
647859
- created_by: string | null;
647860
- updated_at: Date | null;
647861
- updated_by: string | null;
647862
- code: string | null;
647863
- } | null;
647864
- } & {
647997
+ data: {
647865
647998
  is_active: boolean | null;
647866
647999
  id: number;
647867
648000
  name: string | null;
@@ -647870,19 +648003,313 @@ declare const appRouter: BuiltRouter<{
647870
648003
  created_by: string | null;
647871
648004
  updated_at: Date | null;
647872
648005
  updated_by: string | null;
648006
+ description: string | null;
647873
648007
  code: string | null;
647874
- id_iata_commodity: number | null;
647875
- id_universal_group: number | null;
647876
- id_expiration_date_unit: number | null;
647877
- reefer_min_temp: Decimal | null;
647878
- reefer_max_temp: Decimal | null;
647879
- is_hazardous: boolean;
647880
- is_perishable: boolean;
647881
- is_flammable: boolean;
647882
- is_timber: boolean;
647883
- is_vent_required: boolean;
647884
- expiration_date: number | null;
647885
- })[] | undefined;
648008
+ }[] | undefined;
648009
+ total: number | undefined;
648010
+ };
648011
+ meta: object;
648012
+ }>;
648013
+ getDetail: MutationProcedure<{
648014
+ input: {
648015
+ id?: number | null | undefined;
648016
+ id_string?: string | null | undefined;
648017
+ };
648018
+ output: {
648019
+ data: {
648020
+ _count: {
648021
+ incoterm_logs: number;
648022
+ charge_codes: number;
648023
+ forwarding_bookings: number;
648024
+ forwarding_shipments: number;
648025
+ };
648026
+ } & {
648027
+ is_active: boolean | null;
648028
+ id: number;
648029
+ name: string | null;
648030
+ logic_code: string | null;
648031
+ created_at: Date | null;
648032
+ created_by: string | null;
648033
+ updated_at: Date | null;
648034
+ updated_by: string | null;
648035
+ description: string | null;
648036
+ code: string | null;
648037
+ };
648038
+ };
648039
+ meta: object;
648040
+ }>;
648041
+ histories: BuiltRouter<{
648042
+ ctx: Context;
648043
+ meta: object;
648044
+ errorShape: DefaultErrorShape;
648045
+ transformer: false;
648046
+ }, DecorateCreateRouterOptions<{
648047
+ get: MutationProcedure<{
648048
+ input: {
648049
+ search?: string | null | undefined;
648050
+ take?: number | null | undefined;
648051
+ skip?: number | null | undefined;
648052
+ is_active?: boolean[] | null | undefined;
648053
+ ids_include?: number[] | null | undefined;
648054
+ ids_exclude?: number[] | null | undefined;
648055
+ ids_string_include?: string[] | null | undefined;
648056
+ ids_string_exclude?: string[] | null | undefined;
648057
+ logic_codes_include?: string[] | null | undefined;
648058
+ logic_codes_exclude?: string[] | null | undefined;
648059
+ order_by?: {
648060
+ field: string;
648061
+ direction: "asc" | "desc";
648062
+ } | null | undefined;
648063
+ order_bys?: {
648064
+ field: string;
648065
+ direction: "asc" | "desc";
648066
+ }[] | null | undefined;
648067
+ id_log_type?: number | null | undefined;
648068
+ ids_log_type?: number[] | null | undefined;
648069
+ id_incoterm?: number | null | undefined;
648070
+ ids_incoterm?: number[] | null | undefined;
648071
+ };
648072
+ output: {
648073
+ data: {
648074
+ log_type: {
648075
+ is_active: boolean | null;
648076
+ id: number;
648077
+ name: string | null;
648078
+ logic_code: string | null;
648079
+ created_at: Date | null;
648080
+ created_by: string | null;
648081
+ updated_at: Date | null;
648082
+ updated_by: string | null;
648083
+ } | null;
648084
+ id: number;
648085
+ id_log_type: number | null;
648086
+ url: string | null;
648087
+ params: SimpleJson;
648088
+ action: string | null;
648089
+ action_by: string | null;
648090
+ action_id: string | null;
648091
+ action_at: Date | null;
648092
+ id_incoterm: number | null;
648093
+ }[] | undefined;
648094
+ total: number | undefined;
648095
+ };
648096
+ meta: object;
648097
+ }>;
648098
+ getDetail: MutationProcedure<{
648099
+ input: {
648100
+ id?: number | null | undefined;
648101
+ id_string?: string | null | undefined;
648102
+ };
648103
+ output: {
648104
+ data: {
648105
+ log_type: {
648106
+ is_active: boolean | null;
648107
+ id: number;
648108
+ name: string | null;
648109
+ logic_code: string | null;
648110
+ created_at: Date | null;
648111
+ created_by: string | null;
648112
+ updated_at: Date | null;
648113
+ updated_by: string | null;
648114
+ } | null;
648115
+ id: number;
648116
+ id_log_type: number | null;
648117
+ url: string | null;
648118
+ params: SimpleJson;
648119
+ action: string | null;
648120
+ action_by: string | null;
648121
+ action_id: string | null;
648122
+ action_at: Date | null;
648123
+ id_incoterm: number | null;
648124
+ } | undefined;
648125
+ };
648126
+ meta: object;
648127
+ }>;
648128
+ }>>;
648129
+ create: MutationProcedure<{
648130
+ input: {
648131
+ is_active?: boolean | undefined;
648132
+ code?: string | null | undefined;
648133
+ name?: string | null | undefined;
648134
+ description?: string | null | undefined;
648135
+ };
648136
+ output: {
648137
+ data: {
648138
+ is_active: boolean | null;
648139
+ id: number;
648140
+ name: string | null;
648141
+ logic_code: string | null;
648142
+ created_at: Date | null;
648143
+ created_by: string | null;
648144
+ updated_at: Date | null;
648145
+ updated_by: string | null;
648146
+ description: string | null;
648147
+ code: string | null;
648148
+ } | undefined;
648149
+ log: {
648150
+ id: number;
648151
+ id_log_type: number | null;
648152
+ url: string | null;
648153
+ params: SimpleJson;
648154
+ action: string | null;
648155
+ action_by: string | null;
648156
+ action_id: string | null;
648157
+ action_at: Date | null;
648158
+ id_incoterm: number | null;
648159
+ } | undefined;
648160
+ };
648161
+ meta: object;
648162
+ }>;
648163
+ update: MutationProcedure<{
648164
+ input: {
648165
+ id?: number | null | undefined;
648166
+ id_string?: string | null | undefined;
648167
+ is_active?: boolean | undefined;
648168
+ code?: string | null | undefined;
648169
+ name?: string | null | undefined;
648170
+ description?: string | null | undefined;
648171
+ };
648172
+ output: {
648173
+ data: {
648174
+ is_active: boolean | null;
648175
+ id: number;
648176
+ name: string | null;
648177
+ logic_code: string | null;
648178
+ created_at: Date | null;
648179
+ created_by: string | null;
648180
+ updated_at: Date | null;
648181
+ updated_by: string | null;
648182
+ description: string | null;
648183
+ code: string | null;
648184
+ } | undefined;
648185
+ log: {
648186
+ id: number;
648187
+ id_log_type: number | null;
648188
+ url: string | null;
648189
+ params: SimpleJson;
648190
+ action: string | null;
648191
+ action_by: string | null;
648192
+ action_id: string | null;
648193
+ action_at: Date | null;
648194
+ id_incoterm: number | null;
648195
+ } | undefined;
648196
+ };
648197
+ meta: object;
648198
+ }>;
648199
+ delete: MutationProcedure<{
648200
+ input: {
648201
+ id?: number | null | undefined;
648202
+ ids?: number[] | null | undefined;
648203
+ id_string?: string | null | undefined;
648204
+ ids_string?: string[] | null | undefined;
648205
+ };
648206
+ output: {
648207
+ data: ({
648208
+ is_active: boolean | null;
648209
+ id: number;
648210
+ name: string | null;
648211
+ logic_code: string | null;
648212
+ created_at: Date | null;
648213
+ created_by: string | null;
648214
+ updated_at: Date | null;
648215
+ updated_by: string | null;
648216
+ description: string | null;
648217
+ code: string | null;
648218
+ } | undefined)[] | undefined;
648219
+ };
648220
+ meta: object;
648221
+ }>;
648222
+ }>>;
648223
+ commodities: BuiltRouter<{
648224
+ ctx: Context;
648225
+ meta: object;
648226
+ errorShape: DefaultErrorShape;
648227
+ transformer: false;
648228
+ }, DecorateCreateRouterOptions<{
648229
+ get: MutationProcedure<{
648230
+ input: {
648231
+ search?: string | null | undefined;
648232
+ take?: number | null | undefined;
648233
+ skip?: number | null | undefined;
648234
+ is_active?: boolean[] | null | undefined;
648235
+ ids_include?: number[] | null | undefined;
648236
+ ids_exclude?: number[] | null | undefined;
648237
+ ids_string_include?: string[] | null | undefined;
648238
+ ids_string_exclude?: string[] | null | undefined;
648239
+ logic_codes_include?: string[] | null | undefined;
648240
+ logic_codes_exclude?: string[] | null | undefined;
648241
+ order_by?: {
648242
+ field: string;
648243
+ direction: "asc" | "desc";
648244
+ } | null | undefined;
648245
+ order_bys?: {
648246
+ field: string;
648247
+ direction: "asc" | "desc";
648248
+ }[] | null | undefined;
648249
+ id_commodity?: number | null | undefined;
648250
+ ids_commodity?: number[] | null | undefined;
648251
+ id_iata_commodity?: number | null | undefined;
648252
+ ids_iata_commodity?: number[] | null | undefined;
648253
+ id_universal_group?: number | null | undefined;
648254
+ ids_universal_group?: number[] | null | undefined;
648255
+ };
648256
+ output: {
648257
+ data: ({
648258
+ iata_commodity: {
648259
+ is_active: boolean | null;
648260
+ id: number;
648261
+ name: string | null;
648262
+ logic_code: string | null;
648263
+ created_at: Date | null;
648264
+ created_by: string | null;
648265
+ updated_at: Date | null;
648266
+ updated_by: string | null;
648267
+ code: string | null;
648268
+ } | null;
648269
+ universal_group: {
648270
+ is_active: boolean | null;
648271
+ id: number;
648272
+ name: string | null;
648273
+ logic_code: string | null;
648274
+ created_at: Date | null;
648275
+ created_by: string | null;
648276
+ updated_at: Date | null;
648277
+ updated_by: string | null;
648278
+ code: string | null;
648279
+ } | null;
648280
+ expiration_date_unit: {
648281
+ is_active: boolean | null;
648282
+ id: number;
648283
+ name: string | null;
648284
+ logic_code: string | null;
648285
+ created_at: Date | null;
648286
+ created_by: string | null;
648287
+ updated_at: Date | null;
648288
+ updated_by: string | null;
648289
+ code: string | null;
648290
+ } | null;
648291
+ } & {
648292
+ is_active: boolean | null;
648293
+ id: number;
648294
+ name: string | null;
648295
+ logic_code: string | null;
648296
+ created_at: Date | null;
648297
+ created_by: string | null;
648298
+ updated_at: Date | null;
648299
+ updated_by: string | null;
648300
+ code: string | null;
648301
+ id_iata_commodity: number | null;
648302
+ id_universal_group: number | null;
648303
+ id_expiration_date_unit: number | null;
648304
+ reefer_min_temp: Decimal | null;
648305
+ reefer_max_temp: Decimal | null;
648306
+ is_hazardous: boolean;
648307
+ is_perishable: boolean;
648308
+ is_flammable: boolean;
648309
+ is_timber: boolean;
648310
+ is_vent_required: boolean;
648311
+ expiration_date: number | null;
648312
+ })[] | undefined;
647886
648313
  total: number | undefined;
647887
648314
  };
647888
648315
  meta: object;
@@ -652651,6 +653078,2335 @@ declare const appRouter: BuiltRouter<{
652651
653078
  }>;
652652
653079
  }>>;
652653
653080
  }>>;
653081
+ chargeCodes: BuiltRouter<{
653082
+ ctx: Context;
653083
+ meta: object;
653084
+ errorShape: DefaultErrorShape;
653085
+ transformer: false;
653086
+ }, DecorateCreateRouterOptions<{
653087
+ get: MutationProcedure<{
653088
+ input: {
653089
+ search?: string | null | undefined;
653090
+ take?: number | null | undefined;
653091
+ skip?: number | null | undefined;
653092
+ is_active?: boolean[] | null | undefined;
653093
+ ids_include?: number[] | null | undefined;
653094
+ ids_exclude?: number[] | null | undefined;
653095
+ ids_string_include?: string[] | null | undefined;
653096
+ ids_string_exclude?: string[] | null | undefined;
653097
+ logic_codes_include?: string[] | null | undefined;
653098
+ logic_codes_exclude?: string[] | null | undefined;
653099
+ order_by?: {
653100
+ field: string;
653101
+ direction: "asc" | "desc";
653102
+ } | null | undefined;
653103
+ order_bys?: {
653104
+ field: string;
653105
+ direction: "asc" | "desc";
653106
+ }[] | null | undefined;
653107
+ id_type?: number | null | undefined;
653108
+ ids_type?: number[] | null | undefined;
653109
+ id_wht_type?: number | null | undefined;
653110
+ ids_wht_type?: number[] | null | undefined;
653111
+ id_tax_rate?: number | null | undefined;
653112
+ ids_tax_rate?: number[] | null | undefined;
653113
+ id_sales_group?: number | null | undefined;
653114
+ ids_sales_group?: number[] | null | undefined;
653115
+ id_expense_group?: number | null | undefined;
653116
+ ids_expense_group?: number[] | null | undefined;
653117
+ id_group?: number | null | undefined;
653118
+ ids_group?: number[] | null | undefined;
653119
+ id_sub_group?: number | null | undefined;
653120
+ ids_sub_group?: number[] | null | undefined;
653121
+ id_department?: number | null | undefined;
653122
+ ids_department?: number[] | null | undefined;
653123
+ id_rate_calculation?: number | null | undefined;
653124
+ ids_rate_calculation?: number[] | null | undefined;
653125
+ id_incoterm?: number | null | undefined;
653126
+ ids_incoterm?: number[] | null | undefined;
653127
+ is_arr_show_on_console?: boolean[] | null | undefined;
653128
+ is_arr_show_on_quote?: boolean[] | null | undefined;
653129
+ is_arr_show_if_zero?: boolean[] | null | undefined;
653130
+ };
653131
+ output: {
653132
+ data: ({
653133
+ tax_rates: {
653134
+ is_active: boolean | null;
653135
+ id_country: number | null;
653136
+ id: number;
653137
+ name: string | null;
653138
+ logic_code: string | null;
653139
+ created_at: Date | null;
653140
+ created_by: string | null;
653141
+ updated_at: Date | null;
653142
+ updated_by: string | null;
653143
+ code: string | null;
653144
+ id_type: number | null;
653145
+ rate: Decimal | null;
653146
+ id_system: number | null;
653147
+ tax_message: string | null;
653148
+ } | null;
653149
+ charge_code_groups: {
653150
+ is_active: boolean | null;
653151
+ id: number;
653152
+ name: string | null;
653153
+ logic_code: string | null;
653154
+ created_at: Date | null;
653155
+ created_by: string | null;
653156
+ updated_at: Date | null;
653157
+ updated_by: string | null;
653158
+ code: string | null;
653159
+ } | null;
653160
+ incoterm: {
653161
+ is_active: boolean | null;
653162
+ id: number;
653163
+ name: string | null;
653164
+ logic_code: string | null;
653165
+ created_at: Date | null;
653166
+ created_by: string | null;
653167
+ updated_at: Date | null;
653168
+ updated_by: string | null;
653169
+ description: string | null;
653170
+ code: string | null;
653171
+ } | null;
653172
+ department: {
653173
+ is_active: boolean | null;
653174
+ id: number;
653175
+ name: string | null;
653176
+ logic_code: string | null;
653177
+ created_at: Date | null;
653178
+ created_by: string | null;
653179
+ updated_at: Date | null;
653180
+ updated_by: string | null;
653181
+ code: string | null;
653182
+ id_company: number | null;
653183
+ } | null;
653184
+ charge_code_type: {
653185
+ is_active: boolean | null;
653186
+ id: number;
653187
+ name: string | null;
653188
+ logic_code: string | null;
653189
+ created_at: Date | null;
653190
+ created_by: string | null;
653191
+ updated_at: Date | null;
653192
+ updated_by: string | null;
653193
+ code: string | null;
653194
+ } | null;
653195
+ charge_code_wht_type: {
653196
+ is_active: boolean | null;
653197
+ id: number;
653198
+ name: string | null;
653199
+ logic_code: string | null;
653200
+ created_at: Date | null;
653201
+ created_by: string | null;
653202
+ updated_at: Date | null;
653203
+ updated_by: string | null;
653204
+ code: string | null;
653205
+ } | null;
653206
+ charge_code_rate_calculation: {
653207
+ is_active: boolean | null;
653208
+ id: number;
653209
+ name: string | null;
653210
+ logic_code: string | null;
653211
+ created_at: Date | null;
653212
+ created_by: string | null;
653213
+ updated_at: Date | null;
653214
+ updated_by: string | null;
653215
+ code: string | null;
653216
+ } | null;
653217
+ charge_code_sales_group: {
653218
+ is_active: boolean | null;
653219
+ id: number;
653220
+ name: string | null;
653221
+ logic_code: string | null;
653222
+ created_at: Date | null;
653223
+ created_by: string | null;
653224
+ updated_at: Date | null;
653225
+ updated_by: string | null;
653226
+ code: string | null;
653227
+ is_sales_group: boolean | null;
653228
+ is_expense_group: boolean | null;
653229
+ } | null;
653230
+ charge_code_expense_group: {
653231
+ is_active: boolean | null;
653232
+ id: number;
653233
+ name: string | null;
653234
+ logic_code: string | null;
653235
+ created_at: Date | null;
653236
+ created_by: string | null;
653237
+ updated_at: Date | null;
653238
+ updated_by: string | null;
653239
+ code: string | null;
653240
+ is_sales_group: boolean | null;
653241
+ is_expense_group: boolean | null;
653242
+ } | null;
653243
+ revenue_account: {
653244
+ is_active: boolean | null;
653245
+ id: number;
653246
+ name: string | null;
653247
+ logic_code: string | null;
653248
+ created_at: Date | null;
653249
+ created_by: string | null;
653250
+ updated_at: Date | null;
653251
+ updated_by: string | null;
653252
+ code: string | null;
653253
+ id_type: number | null;
653254
+ id_percent_of_account: number | null;
653255
+ id_consolidate_account: number | null;
653256
+ id_alternate_account: number | null;
653257
+ id_section: number | null;
653258
+ id_cash_flow_type: number | null;
653259
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653260
+ code_account_for_total: string | null;
653261
+ total_level: number | null;
653262
+ is_controllable: boolean | null;
653263
+ is_global: boolean | null;
653264
+ is_no_direct_posting: boolean | null;
653265
+ } | null;
653266
+ wip_account: {
653267
+ is_active: boolean | null;
653268
+ id: number;
653269
+ name: string | null;
653270
+ logic_code: string | null;
653271
+ created_at: Date | null;
653272
+ created_by: string | null;
653273
+ updated_at: Date | null;
653274
+ updated_by: string | null;
653275
+ code: string | null;
653276
+ id_type: number | null;
653277
+ id_percent_of_account: number | null;
653278
+ id_consolidate_account: number | null;
653279
+ id_alternate_account: number | null;
653280
+ id_section: number | null;
653281
+ id_cash_flow_type: number | null;
653282
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653283
+ code_account_for_total: string | null;
653284
+ total_level: number | null;
653285
+ is_controllable: boolean | null;
653286
+ is_global: boolean | null;
653287
+ is_no_direct_posting: boolean | null;
653288
+ } | null;
653289
+ cost_account: {
653290
+ is_active: boolean | null;
653291
+ id: number;
653292
+ name: string | null;
653293
+ logic_code: string | null;
653294
+ created_at: Date | null;
653295
+ created_by: string | null;
653296
+ updated_at: Date | null;
653297
+ updated_by: string | null;
653298
+ code: string | null;
653299
+ id_type: number | null;
653300
+ id_percent_of_account: number | null;
653301
+ id_consolidate_account: number | null;
653302
+ id_alternate_account: number | null;
653303
+ id_section: number | null;
653304
+ id_cash_flow_type: number | null;
653305
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653306
+ code_account_for_total: string | null;
653307
+ total_level: number | null;
653308
+ is_controllable: boolean | null;
653309
+ is_global: boolean | null;
653310
+ is_no_direct_posting: boolean | null;
653311
+ } | null;
653312
+ accrual_account: {
653313
+ is_active: boolean | null;
653314
+ id: number;
653315
+ name: string | null;
653316
+ logic_code: string | null;
653317
+ created_at: Date | null;
653318
+ created_by: string | null;
653319
+ updated_at: Date | null;
653320
+ updated_by: string | null;
653321
+ code: string | null;
653322
+ id_type: number | null;
653323
+ id_percent_of_account: number | null;
653324
+ id_consolidate_account: number | null;
653325
+ id_alternate_account: number | null;
653326
+ id_section: number | null;
653327
+ id_cash_flow_type: number | null;
653328
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653329
+ code_account_for_total: string | null;
653330
+ total_level: number | null;
653331
+ is_controllable: boolean | null;
653332
+ is_global: boolean | null;
653333
+ is_no_direct_posting: boolean | null;
653334
+ } | null;
653335
+ sub_group: {
653336
+ is_active: boolean | null;
653337
+ id: number;
653338
+ name: string | null;
653339
+ logic_code: string | null;
653340
+ created_at: Date | null;
653341
+ created_by: string | null;
653342
+ updated_at: Date | null;
653343
+ updated_by: string | null;
653344
+ code: string | null;
653345
+ } | null;
653346
+ } & {
653347
+ is_active: boolean | null;
653348
+ id: number;
653349
+ name: string | null;
653350
+ logic_code: string | null;
653351
+ created_at: Date | null;
653352
+ created_by: string | null;
653353
+ updated_at: Date | null;
653354
+ updated_by: string | null;
653355
+ code: string | null;
653356
+ id_type: number | null;
653357
+ id_incoterm: number | null;
653358
+ id_wht_type: number | null;
653359
+ id_tax_rate: number | null;
653360
+ id_sales_group: number | null;
653361
+ id_expense_group: number | null;
653362
+ id_group: number | null;
653363
+ id_sub_group: number | null;
653364
+ id_department: number | null;
653365
+ id_rate_calculation: number | null;
653366
+ id_revenue: number | null;
653367
+ id_wip: number | null;
653368
+ id_cost: number | null;
653369
+ id_accrual: number | null;
653370
+ remarks: string | null;
653371
+ margin: Decimal | null;
653372
+ is_show_on_console: boolean | null;
653373
+ is_show_on_quote: boolean | null;
653374
+ is_show_if_zero: boolean | null;
653375
+ })[] | undefined;
653376
+ total: number | undefined;
653377
+ };
653378
+ meta: object;
653379
+ }>;
653380
+ getDetail: MutationProcedure<{
653381
+ input: {
653382
+ id?: number | null | undefined;
653383
+ id_string?: string | null | undefined;
653384
+ };
653385
+ output: {
653386
+ data: {
653387
+ _count: {
653388
+ charge_code_type: number;
653389
+ charge_code_wht_type: number;
653390
+ tax_rates: number;
653391
+ charge_code_sales_group: number;
653392
+ charge_code_expense_group: number;
653393
+ revenue_account: number;
653394
+ wip_account: number;
653395
+ cost_account: number;
653396
+ accrual_account: number;
653397
+ charge_code_groups: number;
653398
+ sub_group: number;
653399
+ department: number;
653400
+ charge_code_rate_calculation: number;
653401
+ incoterm: number;
653402
+ charge_code_logs: number;
653403
+ forwarding_shipment_billing_details: number;
653404
+ forwarding_console_billing_details: number;
653405
+ organization_account_bank_details: number;
653406
+ };
653407
+ tax_rates: {
653408
+ is_active: boolean | null;
653409
+ id_country: number | null;
653410
+ id: number;
653411
+ name: string | null;
653412
+ logic_code: string | null;
653413
+ created_at: Date | null;
653414
+ created_by: string | null;
653415
+ updated_at: Date | null;
653416
+ updated_by: string | null;
653417
+ code: string | null;
653418
+ id_type: number | null;
653419
+ rate: Decimal | null;
653420
+ id_system: number | null;
653421
+ tax_message: string | null;
653422
+ } | null;
653423
+ charge_code_groups: {
653424
+ is_active: boolean | null;
653425
+ id: number;
653426
+ name: string | null;
653427
+ logic_code: string | null;
653428
+ created_at: Date | null;
653429
+ created_by: string | null;
653430
+ updated_at: Date | null;
653431
+ updated_by: string | null;
653432
+ code: string | null;
653433
+ } | null;
653434
+ incoterm: {
653435
+ is_active: boolean | null;
653436
+ id: number;
653437
+ name: string | null;
653438
+ logic_code: string | null;
653439
+ created_at: Date | null;
653440
+ created_by: string | null;
653441
+ updated_at: Date | null;
653442
+ updated_by: string | null;
653443
+ description: string | null;
653444
+ code: string | null;
653445
+ } | null;
653446
+ department: {
653447
+ is_active: boolean | null;
653448
+ id: number;
653449
+ name: string | null;
653450
+ logic_code: string | null;
653451
+ created_at: Date | null;
653452
+ created_by: string | null;
653453
+ updated_at: Date | null;
653454
+ updated_by: string | null;
653455
+ code: string | null;
653456
+ id_company: number | null;
653457
+ } | null;
653458
+ charge_code_type: {
653459
+ is_active: boolean | null;
653460
+ id: number;
653461
+ name: string | null;
653462
+ logic_code: string | null;
653463
+ created_at: Date | null;
653464
+ created_by: string | null;
653465
+ updated_at: Date | null;
653466
+ updated_by: string | null;
653467
+ code: string | null;
653468
+ } | null;
653469
+ charge_code_wht_type: {
653470
+ is_active: boolean | null;
653471
+ id: number;
653472
+ name: string | null;
653473
+ logic_code: string | null;
653474
+ created_at: Date | null;
653475
+ created_by: string | null;
653476
+ updated_at: Date | null;
653477
+ updated_by: string | null;
653478
+ code: string | null;
653479
+ } | null;
653480
+ charge_code_rate_calculation: {
653481
+ is_active: boolean | null;
653482
+ id: number;
653483
+ name: string | null;
653484
+ logic_code: string | null;
653485
+ created_at: Date | null;
653486
+ created_by: string | null;
653487
+ updated_at: Date | null;
653488
+ updated_by: string | null;
653489
+ code: string | null;
653490
+ } | null;
653491
+ charge_code_sales_group: {
653492
+ is_active: boolean | null;
653493
+ id: number;
653494
+ name: string | null;
653495
+ logic_code: string | null;
653496
+ created_at: Date | null;
653497
+ created_by: string | null;
653498
+ updated_at: Date | null;
653499
+ updated_by: string | null;
653500
+ code: string | null;
653501
+ is_sales_group: boolean | null;
653502
+ is_expense_group: boolean | null;
653503
+ } | null;
653504
+ charge_code_expense_group: {
653505
+ is_active: boolean | null;
653506
+ id: number;
653507
+ name: string | null;
653508
+ logic_code: string | null;
653509
+ created_at: Date | null;
653510
+ created_by: string | null;
653511
+ updated_at: Date | null;
653512
+ updated_by: string | null;
653513
+ code: string | null;
653514
+ is_sales_group: boolean | null;
653515
+ is_expense_group: boolean | null;
653516
+ } | null;
653517
+ revenue_account: {
653518
+ is_active: boolean | null;
653519
+ id: number;
653520
+ name: string | null;
653521
+ logic_code: string | null;
653522
+ created_at: Date | null;
653523
+ created_by: string | null;
653524
+ updated_at: Date | null;
653525
+ updated_by: string | null;
653526
+ code: string | null;
653527
+ id_type: number | null;
653528
+ id_percent_of_account: number | null;
653529
+ id_consolidate_account: number | null;
653530
+ id_alternate_account: number | null;
653531
+ id_section: number | null;
653532
+ id_cash_flow_type: number | null;
653533
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653534
+ code_account_for_total: string | null;
653535
+ total_level: number | null;
653536
+ is_controllable: boolean | null;
653537
+ is_global: boolean | null;
653538
+ is_no_direct_posting: boolean | null;
653539
+ } | null;
653540
+ wip_account: {
653541
+ is_active: boolean | null;
653542
+ id: number;
653543
+ name: string | null;
653544
+ logic_code: string | null;
653545
+ created_at: Date | null;
653546
+ created_by: string | null;
653547
+ updated_at: Date | null;
653548
+ updated_by: string | null;
653549
+ code: string | null;
653550
+ id_type: number | null;
653551
+ id_percent_of_account: number | null;
653552
+ id_consolidate_account: number | null;
653553
+ id_alternate_account: number | null;
653554
+ id_section: number | null;
653555
+ id_cash_flow_type: number | null;
653556
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653557
+ code_account_for_total: string | null;
653558
+ total_level: number | null;
653559
+ is_controllable: boolean | null;
653560
+ is_global: boolean | null;
653561
+ is_no_direct_posting: boolean | null;
653562
+ } | null;
653563
+ cost_account: {
653564
+ is_active: boolean | null;
653565
+ id: number;
653566
+ name: string | null;
653567
+ logic_code: string | null;
653568
+ created_at: Date | null;
653569
+ created_by: string | null;
653570
+ updated_at: Date | null;
653571
+ updated_by: string | null;
653572
+ code: string | null;
653573
+ id_type: number | null;
653574
+ id_percent_of_account: number | null;
653575
+ id_consolidate_account: number | null;
653576
+ id_alternate_account: number | null;
653577
+ id_section: number | null;
653578
+ id_cash_flow_type: number | null;
653579
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653580
+ code_account_for_total: string | null;
653581
+ total_level: number | null;
653582
+ is_controllable: boolean | null;
653583
+ is_global: boolean | null;
653584
+ is_no_direct_posting: boolean | null;
653585
+ } | null;
653586
+ accrual_account: {
653587
+ is_active: boolean | null;
653588
+ id: number;
653589
+ name: string | null;
653590
+ logic_code: string | null;
653591
+ created_at: Date | null;
653592
+ created_by: string | null;
653593
+ updated_at: Date | null;
653594
+ updated_by: string | null;
653595
+ code: string | null;
653596
+ id_type: number | null;
653597
+ id_percent_of_account: number | null;
653598
+ id_consolidate_account: number | null;
653599
+ id_alternate_account: number | null;
653600
+ id_section: number | null;
653601
+ id_cash_flow_type: number | null;
653602
+ credit_debit: ("CREDIT" | "DEBIT") | null;
653603
+ code_account_for_total: string | null;
653604
+ total_level: number | null;
653605
+ is_controllable: boolean | null;
653606
+ is_global: boolean | null;
653607
+ is_no_direct_posting: boolean | null;
653608
+ } | null;
653609
+ sub_group: {
653610
+ is_active: boolean | null;
653611
+ id: number;
653612
+ name: string | null;
653613
+ logic_code: string | null;
653614
+ created_at: Date | null;
653615
+ created_by: string | null;
653616
+ updated_at: Date | null;
653617
+ updated_by: string | null;
653618
+ code: string | null;
653619
+ } | null;
653620
+ } & {
653621
+ is_active: boolean | null;
653622
+ id: number;
653623
+ name: string | null;
653624
+ logic_code: string | null;
653625
+ created_at: Date | null;
653626
+ created_by: string | null;
653627
+ updated_at: Date | null;
653628
+ updated_by: string | null;
653629
+ code: string | null;
653630
+ id_type: number | null;
653631
+ id_incoterm: number | null;
653632
+ id_wht_type: number | null;
653633
+ id_tax_rate: number | null;
653634
+ id_sales_group: number | null;
653635
+ id_expense_group: number | null;
653636
+ id_group: number | null;
653637
+ id_sub_group: number | null;
653638
+ id_department: number | null;
653639
+ id_rate_calculation: number | null;
653640
+ id_revenue: number | null;
653641
+ id_wip: number | null;
653642
+ id_cost: number | null;
653643
+ id_accrual: number | null;
653644
+ remarks: string | null;
653645
+ margin: Decimal | null;
653646
+ is_show_on_console: boolean | null;
653647
+ is_show_on_quote: boolean | null;
653648
+ is_show_if_zero: boolean | null;
653649
+ };
653650
+ };
653651
+ meta: object;
653652
+ }>;
653653
+ histories: BuiltRouter<{
653654
+ ctx: Context;
653655
+ meta: object;
653656
+ errorShape: DefaultErrorShape;
653657
+ transformer: false;
653658
+ }, DecorateCreateRouterOptions<{
653659
+ get: MutationProcedure<{
653660
+ input: {
653661
+ search?: string | null | undefined;
653662
+ take?: number | null | undefined;
653663
+ skip?: number | null | undefined;
653664
+ is_active?: boolean[] | null | undefined;
653665
+ ids_include?: number[] | null | undefined;
653666
+ ids_exclude?: number[] | null | undefined;
653667
+ ids_string_include?: string[] | null | undefined;
653668
+ ids_string_exclude?: string[] | null | undefined;
653669
+ logic_codes_include?: string[] | null | undefined;
653670
+ logic_codes_exclude?: string[] | null | undefined;
653671
+ order_by?: {
653672
+ field: string;
653673
+ direction: "asc" | "desc";
653674
+ } | null | undefined;
653675
+ order_bys?: {
653676
+ field: string;
653677
+ direction: "asc" | "desc";
653678
+ }[] | null | undefined;
653679
+ id_log_type?: number | null | undefined;
653680
+ ids_log_type?: number[] | null | undefined;
653681
+ id_charge_code?: number | null | undefined;
653682
+ ids_charge_code?: number[] | null | undefined;
653683
+ };
653684
+ output: {
653685
+ data: {
653686
+ log_type: {
653687
+ is_active: boolean | null;
653688
+ id: number;
653689
+ name: string | null;
653690
+ logic_code: string | null;
653691
+ created_at: Date | null;
653692
+ created_by: string | null;
653693
+ updated_at: Date | null;
653694
+ updated_by: string | null;
653695
+ } | null;
653696
+ id: number;
653697
+ id_log_type: number | null;
653698
+ url: string | null;
653699
+ params: SimpleJson;
653700
+ action: string | null;
653701
+ action_by: string | null;
653702
+ action_id: string | null;
653703
+ action_at: Date | null;
653704
+ id_charge_code: number | null;
653705
+ }[] | undefined;
653706
+ total: number | undefined;
653707
+ };
653708
+ meta: object;
653709
+ }>;
653710
+ getDetail: MutationProcedure<{
653711
+ input: {
653712
+ id?: number | null | undefined;
653713
+ id_string?: string | null | undefined;
653714
+ };
653715
+ output: {
653716
+ data: {
653717
+ log_type: {
653718
+ is_active: boolean | null;
653719
+ id: number;
653720
+ name: string | null;
653721
+ logic_code: string | null;
653722
+ created_at: Date | null;
653723
+ created_by: string | null;
653724
+ updated_at: Date | null;
653725
+ updated_by: string | null;
653726
+ } | null;
653727
+ id: number;
653728
+ id_log_type: number | null;
653729
+ url: string | null;
653730
+ params: SimpleJson;
653731
+ action: string | null;
653732
+ action_by: string | null;
653733
+ action_id: string | null;
653734
+ action_at: Date | null;
653735
+ id_charge_code: number | null;
653736
+ } | undefined;
653737
+ };
653738
+ meta: object;
653739
+ }>;
653740
+ }>>;
653741
+ create: MutationProcedure<{
653742
+ input: {
653743
+ is_active?: boolean | undefined;
653744
+ id_type?: number | null | undefined;
653745
+ id_wht_type?: number | null | undefined;
653746
+ id_tax_rate?: number | null | undefined;
653747
+ id_revenue?: number | null | undefined;
653748
+ id_wip?: number | null | undefined;
653749
+ id_cost?: number | null | undefined;
653750
+ id_accrual?: number | null | undefined;
653751
+ id_sales_group?: number | null | undefined;
653752
+ id_expense_group?: number | null | undefined;
653753
+ id_group?: number | null | undefined;
653754
+ id_sub_group?: number | null | undefined;
653755
+ id_department?: number | null | undefined;
653756
+ id_rate_calculation?: number | null | undefined;
653757
+ id_incoterm?: number | null | undefined;
653758
+ code?: string | null | undefined;
653759
+ name?: string | null | undefined;
653760
+ remarks?: string | null | undefined;
653761
+ margin?: string | null | undefined;
653762
+ is_show_on_console?: boolean | null | undefined;
653763
+ is_show_on_quote?: boolean | null | undefined;
653764
+ is_show_if_zero?: boolean | null | undefined;
653765
+ };
653766
+ output: {
653767
+ data: {
653768
+ is_active: boolean | null;
653769
+ id: number;
653770
+ name: string | null;
653771
+ logic_code: string | null;
653772
+ created_at: Date | null;
653773
+ created_by: string | null;
653774
+ updated_at: Date | null;
653775
+ updated_by: string | null;
653776
+ code: string | null;
653777
+ id_type: number | null;
653778
+ id_incoterm: number | null;
653779
+ id_wht_type: number | null;
653780
+ id_tax_rate: number | null;
653781
+ id_sales_group: number | null;
653782
+ id_expense_group: number | null;
653783
+ id_group: number | null;
653784
+ id_sub_group: number | null;
653785
+ id_department: number | null;
653786
+ id_rate_calculation: number | null;
653787
+ id_revenue: number | null;
653788
+ id_wip: number | null;
653789
+ id_cost: number | null;
653790
+ id_accrual: number | null;
653791
+ remarks: string | null;
653792
+ margin: Decimal | null;
653793
+ is_show_on_console: boolean | null;
653794
+ is_show_on_quote: boolean | null;
653795
+ is_show_if_zero: boolean | null;
653796
+ } | undefined;
653797
+ log: {
653798
+ id: number;
653799
+ id_log_type: number | null;
653800
+ url: string | null;
653801
+ params: SimpleJson;
653802
+ action: string | null;
653803
+ action_by: string | null;
653804
+ action_id: string | null;
653805
+ action_at: Date | null;
653806
+ id_charge_code: number | null;
653807
+ } | undefined;
653808
+ };
653809
+ meta: object;
653810
+ }>;
653811
+ update: MutationProcedure<{
653812
+ input: {
653813
+ id?: number | null | undefined;
653814
+ id_string?: string | null | undefined;
653815
+ is_active?: boolean | undefined;
653816
+ id_type?: number | null | undefined;
653817
+ id_wht_type?: number | null | undefined;
653818
+ id_tax_rate?: number | null | undefined;
653819
+ id_revenue?: number | null | undefined;
653820
+ id_wip?: number | null | undefined;
653821
+ id_cost?: number | null | undefined;
653822
+ id_accrual?: number | null | undefined;
653823
+ id_sales_group?: number | null | undefined;
653824
+ id_expense_group?: number | null | undefined;
653825
+ id_group?: number | null | undefined;
653826
+ id_sub_group?: number | null | undefined;
653827
+ id_department?: number | null | undefined;
653828
+ id_rate_calculation?: number | null | undefined;
653829
+ id_incoterm?: number | null | undefined;
653830
+ code?: string | null | undefined;
653831
+ name?: string | null | undefined;
653832
+ remarks?: string | null | undefined;
653833
+ margin?: string | null | undefined;
653834
+ is_show_on_console?: boolean | null | undefined;
653835
+ is_show_on_quote?: boolean | null | undefined;
653836
+ is_show_if_zero?: boolean | null | undefined;
653837
+ };
653838
+ output: {
653839
+ data: {
653840
+ is_active: boolean | null;
653841
+ id: number;
653842
+ name: string | null;
653843
+ logic_code: string | null;
653844
+ created_at: Date | null;
653845
+ created_by: string | null;
653846
+ updated_at: Date | null;
653847
+ updated_by: string | null;
653848
+ code: string | null;
653849
+ id_type: number | null;
653850
+ id_incoterm: number | null;
653851
+ id_wht_type: number | null;
653852
+ id_tax_rate: number | null;
653853
+ id_sales_group: number | null;
653854
+ id_expense_group: number | null;
653855
+ id_group: number | null;
653856
+ id_sub_group: number | null;
653857
+ id_department: number | null;
653858
+ id_rate_calculation: number | null;
653859
+ id_revenue: number | null;
653860
+ id_wip: number | null;
653861
+ id_cost: number | null;
653862
+ id_accrual: number | null;
653863
+ remarks: string | null;
653864
+ margin: Decimal | null;
653865
+ is_show_on_console: boolean | null;
653866
+ is_show_on_quote: boolean | null;
653867
+ is_show_if_zero: boolean | null;
653868
+ } | undefined;
653869
+ log: {
653870
+ id: number;
653871
+ id_log_type: number | null;
653872
+ url: string | null;
653873
+ params: SimpleJson;
653874
+ action: string | null;
653875
+ action_by: string | null;
653876
+ action_id: string | null;
653877
+ action_at: Date | null;
653878
+ id_charge_code: number | null;
653879
+ } | undefined;
653880
+ };
653881
+ meta: object;
653882
+ }>;
653883
+ delete: MutationProcedure<{
653884
+ input: {
653885
+ id?: number | null | undefined;
653886
+ ids?: number[] | null | undefined;
653887
+ id_string?: string | null | undefined;
653888
+ ids_string?: string[] | null | undefined;
653889
+ };
653890
+ output: {
653891
+ data: ({
653892
+ is_active: boolean | null;
653893
+ id: number;
653894
+ name: string | null;
653895
+ logic_code: string | null;
653896
+ created_at: Date | null;
653897
+ created_by: string | null;
653898
+ updated_at: Date | null;
653899
+ updated_by: string | null;
653900
+ code: string | null;
653901
+ id_type: number | null;
653902
+ id_incoterm: number | null;
653903
+ id_wht_type: number | null;
653904
+ id_tax_rate: number | null;
653905
+ id_sales_group: number | null;
653906
+ id_expense_group: number | null;
653907
+ id_group: number | null;
653908
+ id_sub_group: number | null;
653909
+ id_department: number | null;
653910
+ id_rate_calculation: number | null;
653911
+ id_revenue: number | null;
653912
+ id_wip: number | null;
653913
+ id_cost: number | null;
653914
+ id_accrual: number | null;
653915
+ remarks: string | null;
653916
+ margin: Decimal | null;
653917
+ is_show_on_console: boolean | null;
653918
+ is_show_on_quote: boolean | null;
653919
+ is_show_if_zero: boolean | null;
653920
+ } | undefined)[] | undefined;
653921
+ };
653922
+ meta: object;
653923
+ }>;
653924
+ types: BuiltRouter<{
653925
+ ctx: Context;
653926
+ meta: object;
653927
+ errorShape: DefaultErrorShape;
653928
+ transformer: false;
653929
+ }, DecorateCreateRouterOptions<{
653930
+ get: MutationProcedure<{
653931
+ input: {
653932
+ search?: string | null | undefined;
653933
+ take?: number | null | undefined;
653934
+ skip?: number | null | undefined;
653935
+ is_active?: boolean[] | null | undefined;
653936
+ ids_include?: number[] | null | undefined;
653937
+ ids_exclude?: number[] | null | undefined;
653938
+ ids_string_include?: string[] | null | undefined;
653939
+ ids_string_exclude?: string[] | null | undefined;
653940
+ logic_codes_include?: string[] | null | undefined;
653941
+ logic_codes_exclude?: string[] | null | undefined;
653942
+ order_by?: {
653943
+ field: string;
653944
+ direction: "asc" | "desc";
653945
+ } | null | undefined;
653946
+ order_bys?: {
653947
+ field: string;
653948
+ direction: "asc" | "desc";
653949
+ }[] | null | undefined;
653950
+ };
653951
+ output: {
653952
+ data: {
653953
+ is_active: boolean | null;
653954
+ id: number;
653955
+ name: string | null;
653956
+ logic_code: string | null;
653957
+ created_at: Date | null;
653958
+ created_by: string | null;
653959
+ updated_at: Date | null;
653960
+ updated_by: string | null;
653961
+ code: string | null;
653962
+ }[] | undefined;
653963
+ total: number | undefined;
653964
+ };
653965
+ meta: object;
653966
+ }>;
653967
+ getDetail: MutationProcedure<{
653968
+ input: {
653969
+ id?: number | null | undefined;
653970
+ id_string?: string | null | undefined;
653971
+ };
653972
+ output: {
653973
+ data: {
653974
+ _count: {
653975
+ charge_code_type_logs: number;
653976
+ charge_codes: number;
653977
+ };
653978
+ } & {
653979
+ is_active: boolean | null;
653980
+ id: number;
653981
+ name: string | null;
653982
+ logic_code: string | null;
653983
+ created_at: Date | null;
653984
+ created_by: string | null;
653985
+ updated_at: Date | null;
653986
+ updated_by: string | null;
653987
+ code: string | null;
653988
+ };
653989
+ };
653990
+ meta: object;
653991
+ }>;
653992
+ histories: BuiltRouter<{
653993
+ ctx: Context;
653994
+ meta: object;
653995
+ errorShape: DefaultErrorShape;
653996
+ transformer: false;
653997
+ }, DecorateCreateRouterOptions<{
653998
+ get: MutationProcedure<{
653999
+ input: {
654000
+ search?: string | null | undefined;
654001
+ take?: number | null | undefined;
654002
+ skip?: number | null | undefined;
654003
+ is_active?: boolean[] | null | undefined;
654004
+ ids_include?: number[] | null | undefined;
654005
+ ids_exclude?: number[] | null | undefined;
654006
+ ids_string_include?: string[] | null | undefined;
654007
+ ids_string_exclude?: string[] | null | undefined;
654008
+ logic_codes_include?: string[] | null | undefined;
654009
+ logic_codes_exclude?: string[] | null | undefined;
654010
+ order_by?: {
654011
+ field: string;
654012
+ direction: "asc" | "desc";
654013
+ } | null | undefined;
654014
+ order_bys?: {
654015
+ field: string;
654016
+ direction: "asc" | "desc";
654017
+ }[] | null | undefined;
654018
+ id_log_type?: number | null | undefined;
654019
+ ids_log_type?: number[] | null | undefined;
654020
+ id_charge_code_type?: number | null | undefined;
654021
+ ids_charge_code_type?: number[] | null | undefined;
654022
+ };
654023
+ output: {
654024
+ data: {
654025
+ log_type: {
654026
+ is_active: boolean | null;
654027
+ id: number;
654028
+ name: string | null;
654029
+ logic_code: string | null;
654030
+ created_at: Date | null;
654031
+ created_by: string | null;
654032
+ updated_at: Date | null;
654033
+ updated_by: string | null;
654034
+ } | null;
654035
+ id: number;
654036
+ id_log_type: number | null;
654037
+ url: string | null;
654038
+ params: SimpleJson;
654039
+ action: string | null;
654040
+ action_by: string | null;
654041
+ action_id: string | null;
654042
+ action_at: Date | null;
654043
+ id_charge_code_type: number | null;
654044
+ }[] | undefined;
654045
+ total: number | undefined;
654046
+ };
654047
+ meta: object;
654048
+ }>;
654049
+ getDetail: MutationProcedure<{
654050
+ input: {
654051
+ id?: number | null | undefined;
654052
+ id_string?: string | null | undefined;
654053
+ };
654054
+ output: {
654055
+ data: {
654056
+ log_type: {
654057
+ is_active: boolean | null;
654058
+ id: number;
654059
+ name: string | null;
654060
+ logic_code: string | null;
654061
+ created_at: Date | null;
654062
+ created_by: string | null;
654063
+ updated_at: Date | null;
654064
+ updated_by: string | null;
654065
+ } | null;
654066
+ id: number;
654067
+ id_log_type: number | null;
654068
+ url: string | null;
654069
+ params: SimpleJson;
654070
+ action: string | null;
654071
+ action_by: string | null;
654072
+ action_id: string | null;
654073
+ action_at: Date | null;
654074
+ id_charge_code_type: number | null;
654075
+ } | undefined;
654076
+ };
654077
+ meta: object;
654078
+ }>;
654079
+ }>>;
654080
+ create: MutationProcedure<{
654081
+ input: {
654082
+ is_active?: boolean | undefined;
654083
+ code?: string | null | undefined;
654084
+ name?: string | null | undefined;
654085
+ };
654086
+ output: {
654087
+ data: {
654088
+ is_active: boolean | null;
654089
+ id: number;
654090
+ name: string | null;
654091
+ logic_code: string | null;
654092
+ created_at: Date | null;
654093
+ created_by: string | null;
654094
+ updated_at: Date | null;
654095
+ updated_by: string | null;
654096
+ code: string | null;
654097
+ } | undefined;
654098
+ log: {
654099
+ id: number;
654100
+ id_log_type: number | null;
654101
+ url: string | null;
654102
+ params: SimpleJson;
654103
+ action: string | null;
654104
+ action_by: string | null;
654105
+ action_id: string | null;
654106
+ action_at: Date | null;
654107
+ id_charge_code_type: number | null;
654108
+ } | undefined;
654109
+ };
654110
+ meta: object;
654111
+ }>;
654112
+ update: MutationProcedure<{
654113
+ input: {
654114
+ id?: number | null | undefined;
654115
+ id_string?: string | null | undefined;
654116
+ is_active?: boolean | undefined;
654117
+ code?: string | null | undefined;
654118
+ name?: string | null | undefined;
654119
+ };
654120
+ output: {
654121
+ data: {
654122
+ is_active: boolean | null;
654123
+ id: number;
654124
+ name: string | null;
654125
+ logic_code: string | null;
654126
+ created_at: Date | null;
654127
+ created_by: string | null;
654128
+ updated_at: Date | null;
654129
+ updated_by: string | null;
654130
+ code: string | null;
654131
+ } | undefined;
654132
+ log: {
654133
+ id: number;
654134
+ id_log_type: number | null;
654135
+ url: string | null;
654136
+ params: SimpleJson;
654137
+ action: string | null;
654138
+ action_by: string | null;
654139
+ action_id: string | null;
654140
+ action_at: Date | null;
654141
+ id_charge_code_type: number | null;
654142
+ } | undefined;
654143
+ };
654144
+ meta: object;
654145
+ }>;
654146
+ delete: MutationProcedure<{
654147
+ input: {
654148
+ id?: number | null | undefined;
654149
+ ids?: number[] | null | undefined;
654150
+ id_string?: string | null | undefined;
654151
+ ids_string?: string[] | null | undefined;
654152
+ };
654153
+ output: {
654154
+ data: ({
654155
+ is_active: boolean | null;
654156
+ id: number;
654157
+ name: string | null;
654158
+ logic_code: string | null;
654159
+ created_at: Date | null;
654160
+ created_by: string | null;
654161
+ updated_at: Date | null;
654162
+ updated_by: string | null;
654163
+ code: string | null;
654164
+ } | undefined)[] | undefined;
654165
+ };
654166
+ meta: object;
654167
+ }>;
654168
+ }>>;
654169
+ whtTypes: BuiltRouter<{
654170
+ ctx: Context;
654171
+ meta: object;
654172
+ errorShape: DefaultErrorShape;
654173
+ transformer: false;
654174
+ }, DecorateCreateRouterOptions<{
654175
+ get: MutationProcedure<{
654176
+ input: {
654177
+ search?: string | null | undefined;
654178
+ take?: number | null | undefined;
654179
+ skip?: number | null | undefined;
654180
+ is_active?: boolean[] | null | undefined;
654181
+ ids_include?: number[] | null | undefined;
654182
+ ids_exclude?: number[] | null | undefined;
654183
+ ids_string_include?: string[] | null | undefined;
654184
+ ids_string_exclude?: string[] | null | undefined;
654185
+ logic_codes_include?: string[] | null | undefined;
654186
+ logic_codes_exclude?: string[] | null | undefined;
654187
+ order_by?: {
654188
+ field: string;
654189
+ direction: "asc" | "desc";
654190
+ } | null | undefined;
654191
+ order_bys?: {
654192
+ field: string;
654193
+ direction: "asc" | "desc";
654194
+ }[] | null | undefined;
654195
+ };
654196
+ output: {
654197
+ data: {
654198
+ is_active: boolean | null;
654199
+ id: number;
654200
+ name: string | null;
654201
+ logic_code: string | null;
654202
+ created_at: Date | null;
654203
+ created_by: string | null;
654204
+ updated_at: Date | null;
654205
+ updated_by: string | null;
654206
+ code: string | null;
654207
+ }[] | undefined;
654208
+ total: number | undefined;
654209
+ };
654210
+ meta: object;
654211
+ }>;
654212
+ getDetail: MutationProcedure<{
654213
+ input: {
654214
+ id?: number | null | undefined;
654215
+ id_string?: string | null | undefined;
654216
+ };
654217
+ output: {
654218
+ data: {
654219
+ _count: {
654220
+ charge_code_wht_type_logs: number;
654221
+ charge_codes: number;
654222
+ };
654223
+ } & {
654224
+ is_active: boolean | null;
654225
+ id: number;
654226
+ name: string | null;
654227
+ logic_code: string | null;
654228
+ created_at: Date | null;
654229
+ created_by: string | null;
654230
+ updated_at: Date | null;
654231
+ updated_by: string | null;
654232
+ code: string | null;
654233
+ };
654234
+ };
654235
+ meta: object;
654236
+ }>;
654237
+ histories: BuiltRouter<{
654238
+ ctx: Context;
654239
+ meta: object;
654240
+ errorShape: DefaultErrorShape;
654241
+ transformer: false;
654242
+ }, DecorateCreateRouterOptions<{
654243
+ get: MutationProcedure<{
654244
+ input: {
654245
+ search?: string | null | undefined;
654246
+ take?: number | null | undefined;
654247
+ skip?: number | null | undefined;
654248
+ is_active?: boolean[] | null | undefined;
654249
+ ids_include?: number[] | null | undefined;
654250
+ ids_exclude?: number[] | null | undefined;
654251
+ ids_string_include?: string[] | null | undefined;
654252
+ ids_string_exclude?: string[] | null | undefined;
654253
+ logic_codes_include?: string[] | null | undefined;
654254
+ logic_codes_exclude?: string[] | null | undefined;
654255
+ order_by?: {
654256
+ field: string;
654257
+ direction: "asc" | "desc";
654258
+ } | null | undefined;
654259
+ order_bys?: {
654260
+ field: string;
654261
+ direction: "asc" | "desc";
654262
+ }[] | null | undefined;
654263
+ id_log_type?: number | null | undefined;
654264
+ ids_log_type?: number[] | null | undefined;
654265
+ id_charge_code_wht_type?: number | null | undefined;
654266
+ ids_charge_code_wht_type?: number[] | null | undefined;
654267
+ };
654268
+ output: {
654269
+ data: {
654270
+ log_type: {
654271
+ is_active: boolean | null;
654272
+ id: number;
654273
+ name: string | null;
654274
+ logic_code: string | null;
654275
+ created_at: Date | null;
654276
+ created_by: string | null;
654277
+ updated_at: Date | null;
654278
+ updated_by: string | null;
654279
+ } | null;
654280
+ id: number;
654281
+ id_log_type: number | null;
654282
+ url: string | null;
654283
+ params: SimpleJson;
654284
+ action: string | null;
654285
+ action_by: string | null;
654286
+ action_id: string | null;
654287
+ action_at: Date | null;
654288
+ id_charge_code_wht_type: number | null;
654289
+ }[] | undefined;
654290
+ total: number | undefined;
654291
+ };
654292
+ meta: object;
654293
+ }>;
654294
+ getDetail: MutationProcedure<{
654295
+ input: {
654296
+ id?: number | null | undefined;
654297
+ id_string?: string | null | undefined;
654298
+ };
654299
+ output: {
654300
+ data: {
654301
+ log_type: {
654302
+ is_active: boolean | null;
654303
+ id: number;
654304
+ name: string | null;
654305
+ logic_code: string | null;
654306
+ created_at: Date | null;
654307
+ created_by: string | null;
654308
+ updated_at: Date | null;
654309
+ updated_by: string | null;
654310
+ } | null;
654311
+ id: number;
654312
+ id_log_type: number | null;
654313
+ url: string | null;
654314
+ params: SimpleJson;
654315
+ action: string | null;
654316
+ action_by: string | null;
654317
+ action_id: string | null;
654318
+ action_at: Date | null;
654319
+ id_charge_code_wht_type: number | null;
654320
+ } | undefined;
654321
+ };
654322
+ meta: object;
654323
+ }>;
654324
+ }>>;
654325
+ create: MutationProcedure<{
654326
+ input: {
654327
+ is_active?: boolean | undefined;
654328
+ code?: string | null | undefined;
654329
+ name?: string | null | undefined;
654330
+ };
654331
+ output: {
654332
+ data: {
654333
+ is_active: boolean | null;
654334
+ id: number;
654335
+ name: string | null;
654336
+ logic_code: string | null;
654337
+ created_at: Date | null;
654338
+ created_by: string | null;
654339
+ updated_at: Date | null;
654340
+ updated_by: string | null;
654341
+ code: string | null;
654342
+ } | undefined;
654343
+ log: {
654344
+ id: number;
654345
+ id_log_type: number | null;
654346
+ url: string | null;
654347
+ params: SimpleJson;
654348
+ action: string | null;
654349
+ action_by: string | null;
654350
+ action_id: string | null;
654351
+ action_at: Date | null;
654352
+ id_charge_code_wht_type: number | null;
654353
+ } | undefined;
654354
+ };
654355
+ meta: object;
654356
+ }>;
654357
+ update: MutationProcedure<{
654358
+ input: {
654359
+ id?: number | null | undefined;
654360
+ id_string?: string | null | undefined;
654361
+ is_active?: boolean | undefined;
654362
+ code?: string | null | undefined;
654363
+ name?: string | null | undefined;
654364
+ };
654365
+ output: {
654366
+ data: {
654367
+ is_active: boolean | null;
654368
+ id: number;
654369
+ name: string | null;
654370
+ logic_code: string | null;
654371
+ created_at: Date | null;
654372
+ created_by: string | null;
654373
+ updated_at: Date | null;
654374
+ updated_by: string | null;
654375
+ code: string | null;
654376
+ } | undefined;
654377
+ log: {
654378
+ id: number;
654379
+ id_log_type: number | null;
654380
+ url: string | null;
654381
+ params: SimpleJson;
654382
+ action: string | null;
654383
+ action_by: string | null;
654384
+ action_id: string | null;
654385
+ action_at: Date | null;
654386
+ id_charge_code_wht_type: number | null;
654387
+ } | undefined;
654388
+ };
654389
+ meta: object;
654390
+ }>;
654391
+ delete: MutationProcedure<{
654392
+ input: {
654393
+ id?: number | null | undefined;
654394
+ ids?: number[] | null | undefined;
654395
+ id_string?: string | null | undefined;
654396
+ ids_string?: string[] | null | undefined;
654397
+ };
654398
+ output: {
654399
+ data: ({
654400
+ is_active: boolean | null;
654401
+ id: number;
654402
+ name: string | null;
654403
+ logic_code: string | null;
654404
+ created_at: Date | null;
654405
+ created_by: string | null;
654406
+ updated_at: Date | null;
654407
+ updated_by: string | null;
654408
+ code: string | null;
654409
+ } | undefined)[] | undefined;
654410
+ };
654411
+ meta: object;
654412
+ }>;
654413
+ }>>;
654414
+ salesExpenseGroups: BuiltRouter<{
654415
+ ctx: Context;
654416
+ meta: object;
654417
+ errorShape: DefaultErrorShape;
654418
+ transformer: false;
654419
+ }, DecorateCreateRouterOptions<{
654420
+ get: MutationProcedure<{
654421
+ input: {
654422
+ search?: string | null | undefined;
654423
+ take?: number | null | undefined;
654424
+ skip?: number | null | undefined;
654425
+ is_active?: boolean[] | null | undefined;
654426
+ ids_include?: number[] | null | undefined;
654427
+ ids_exclude?: number[] | null | undefined;
654428
+ ids_string_include?: string[] | null | undefined;
654429
+ ids_string_exclude?: string[] | null | undefined;
654430
+ logic_codes_include?: string[] | null | undefined;
654431
+ logic_codes_exclude?: string[] | null | undefined;
654432
+ order_by?: {
654433
+ field: string;
654434
+ direction: "asc" | "desc";
654435
+ } | null | undefined;
654436
+ order_bys?: {
654437
+ field: string;
654438
+ direction: "asc" | "desc";
654439
+ }[] | null | undefined;
654440
+ };
654441
+ output: {
654442
+ data: {
654443
+ is_active: boolean | null;
654444
+ id: number;
654445
+ name: string | null;
654446
+ logic_code: string | null;
654447
+ created_at: Date | null;
654448
+ created_by: string | null;
654449
+ updated_at: Date | null;
654450
+ updated_by: string | null;
654451
+ code: string | null;
654452
+ is_sales_group: boolean | null;
654453
+ is_expense_group: boolean | null;
654454
+ }[] | undefined;
654455
+ total: number | undefined;
654456
+ };
654457
+ meta: object;
654458
+ }>;
654459
+ getDetail: MutationProcedure<{
654460
+ input: {
654461
+ id?: number | null | undefined;
654462
+ id_string?: string | null | undefined;
654463
+ };
654464
+ output: {
654465
+ data: {
654466
+ _count: {
654467
+ charge_code_sales_expense_group_logs: number;
654468
+ charge_codes_sales_group: number;
654469
+ charge_codes_expense_group: number;
654470
+ };
654471
+ } & {
654472
+ is_active: boolean | null;
654473
+ id: number;
654474
+ name: string | null;
654475
+ logic_code: string | null;
654476
+ created_at: Date | null;
654477
+ created_by: string | null;
654478
+ updated_at: Date | null;
654479
+ updated_by: string | null;
654480
+ code: string | null;
654481
+ is_sales_group: boolean | null;
654482
+ is_expense_group: boolean | null;
654483
+ };
654484
+ };
654485
+ meta: object;
654486
+ }>;
654487
+ histories: BuiltRouter<{
654488
+ ctx: Context;
654489
+ meta: object;
654490
+ errorShape: DefaultErrorShape;
654491
+ transformer: false;
654492
+ }, DecorateCreateRouterOptions<{
654493
+ get: MutationProcedure<{
654494
+ input: {
654495
+ search?: string | null | undefined;
654496
+ take?: number | null | undefined;
654497
+ skip?: number | null | undefined;
654498
+ is_active?: boolean[] | null | undefined;
654499
+ ids_include?: number[] | null | undefined;
654500
+ ids_exclude?: number[] | null | undefined;
654501
+ ids_string_include?: string[] | null | undefined;
654502
+ ids_string_exclude?: string[] | null | undefined;
654503
+ logic_codes_include?: string[] | null | undefined;
654504
+ logic_codes_exclude?: string[] | null | undefined;
654505
+ order_by?: {
654506
+ field: string;
654507
+ direction: "asc" | "desc";
654508
+ } | null | undefined;
654509
+ order_bys?: {
654510
+ field: string;
654511
+ direction: "asc" | "desc";
654512
+ }[] | null | undefined;
654513
+ id_log_type?: number | null | undefined;
654514
+ ids_log_type?: number[] | null | undefined;
654515
+ id_charge_code_sales_expense_group?: number | null | undefined;
654516
+ ids_charge_code_sales_expense_group?: number[] | null | undefined;
654517
+ };
654518
+ output: {
654519
+ data: {
654520
+ log_type: {
654521
+ is_active: boolean | null;
654522
+ id: number;
654523
+ name: string | null;
654524
+ logic_code: string | null;
654525
+ created_at: Date | null;
654526
+ created_by: string | null;
654527
+ updated_at: Date | null;
654528
+ updated_by: string | null;
654529
+ } | null;
654530
+ id: number;
654531
+ id_log_type: number | null;
654532
+ url: string | null;
654533
+ params: SimpleJson;
654534
+ action: string | null;
654535
+ action_by: string | null;
654536
+ action_id: string | null;
654537
+ action_at: Date | null;
654538
+ id_charge_code_sales_expense_group: number | null;
654539
+ }[] | undefined;
654540
+ total: number | undefined;
654541
+ };
654542
+ meta: object;
654543
+ }>;
654544
+ getDetail: MutationProcedure<{
654545
+ input: {
654546
+ id?: number | null | undefined;
654547
+ id_string?: string | null | undefined;
654548
+ };
654549
+ output: {
654550
+ data: {
654551
+ log_type: {
654552
+ is_active: boolean | null;
654553
+ id: number;
654554
+ name: string | null;
654555
+ logic_code: string | null;
654556
+ created_at: Date | null;
654557
+ created_by: string | null;
654558
+ updated_at: Date | null;
654559
+ updated_by: string | null;
654560
+ } | null;
654561
+ id: number;
654562
+ id_log_type: number | null;
654563
+ url: string | null;
654564
+ params: SimpleJson;
654565
+ action: string | null;
654566
+ action_by: string | null;
654567
+ action_id: string | null;
654568
+ action_at: Date | null;
654569
+ id_charge_code_sales_expense_group: number | null;
654570
+ } | undefined;
654571
+ };
654572
+ meta: object;
654573
+ }>;
654574
+ }>>;
654575
+ create: MutationProcedure<{
654576
+ input: {
654577
+ is_active?: boolean | undefined;
654578
+ code?: string | null | undefined;
654579
+ name?: string | null | undefined;
654580
+ is_sales_group?: boolean | null | undefined;
654581
+ is_expense_group?: boolean | null | undefined;
654582
+ };
654583
+ output: {
654584
+ data: {
654585
+ is_active: boolean | null;
654586
+ id: number;
654587
+ name: string | null;
654588
+ logic_code: string | null;
654589
+ created_at: Date | null;
654590
+ created_by: string | null;
654591
+ updated_at: Date | null;
654592
+ updated_by: string | null;
654593
+ code: string | null;
654594
+ is_sales_group: boolean | null;
654595
+ is_expense_group: boolean | null;
654596
+ } | undefined;
654597
+ log: {
654598
+ id: number;
654599
+ id_log_type: number | null;
654600
+ url: string | null;
654601
+ params: SimpleJson;
654602
+ action: string | null;
654603
+ action_by: string | null;
654604
+ action_id: string | null;
654605
+ action_at: Date | null;
654606
+ id_charge_code_sales_expense_group: number | null;
654607
+ } | undefined;
654608
+ };
654609
+ meta: object;
654610
+ }>;
654611
+ update: MutationProcedure<{
654612
+ input: {
654613
+ id?: number | null | undefined;
654614
+ id_string?: string | null | undefined;
654615
+ is_active?: boolean | undefined;
654616
+ code?: string | null | undefined;
654617
+ name?: string | null | undefined;
654618
+ is_sales_group?: boolean | null | undefined;
654619
+ is_expense_group?: boolean | null | undefined;
654620
+ };
654621
+ output: {
654622
+ data: {
654623
+ is_active: boolean | null;
654624
+ id: number;
654625
+ name: string | null;
654626
+ logic_code: string | null;
654627
+ created_at: Date | null;
654628
+ created_by: string | null;
654629
+ updated_at: Date | null;
654630
+ updated_by: string | null;
654631
+ code: string | null;
654632
+ is_sales_group: boolean | null;
654633
+ is_expense_group: boolean | null;
654634
+ } | undefined;
654635
+ log: {
654636
+ id: number;
654637
+ id_log_type: number | null;
654638
+ url: string | null;
654639
+ params: SimpleJson;
654640
+ action: string | null;
654641
+ action_by: string | null;
654642
+ action_id: string | null;
654643
+ action_at: Date | null;
654644
+ id_charge_code_sales_expense_group: number | null;
654645
+ } | undefined;
654646
+ };
654647
+ meta: object;
654648
+ }>;
654649
+ delete: MutationProcedure<{
654650
+ input: {
654651
+ id?: number | null | undefined;
654652
+ ids?: number[] | null | undefined;
654653
+ id_string?: string | null | undefined;
654654
+ ids_string?: string[] | null | undefined;
654655
+ };
654656
+ output: {
654657
+ data: ({
654658
+ is_active: boolean | null;
654659
+ id: number;
654660
+ name: string | null;
654661
+ logic_code: string | null;
654662
+ created_at: Date | null;
654663
+ created_by: string | null;
654664
+ updated_at: Date | null;
654665
+ updated_by: string | null;
654666
+ code: string | null;
654667
+ is_sales_group: boolean | null;
654668
+ is_expense_group: boolean | null;
654669
+ } | undefined)[] | undefined;
654670
+ };
654671
+ meta: object;
654672
+ }>;
654673
+ }>>;
654674
+ groups: BuiltRouter<{
654675
+ ctx: Context;
654676
+ meta: object;
654677
+ errorShape: DefaultErrorShape;
654678
+ transformer: false;
654679
+ }, DecorateCreateRouterOptions<{
654680
+ get: MutationProcedure<{
654681
+ input: {
654682
+ search?: string | null | undefined;
654683
+ take?: number | null | undefined;
654684
+ skip?: number | null | undefined;
654685
+ is_active?: boolean[] | null | undefined;
654686
+ ids_include?: number[] | null | undefined;
654687
+ ids_exclude?: number[] | null | undefined;
654688
+ ids_string_include?: string[] | null | undefined;
654689
+ ids_string_exclude?: string[] | null | undefined;
654690
+ logic_codes_include?: string[] | null | undefined;
654691
+ logic_codes_exclude?: string[] | null | undefined;
654692
+ order_by?: {
654693
+ field: string;
654694
+ direction: "asc" | "desc";
654695
+ } | null | undefined;
654696
+ order_bys?: {
654697
+ field: string;
654698
+ direction: "asc" | "desc";
654699
+ }[] | null | undefined;
654700
+ };
654701
+ output: {
654702
+ data: {
654703
+ is_active: boolean | null;
654704
+ id: number;
654705
+ name: string | null;
654706
+ logic_code: string | null;
654707
+ created_at: Date | null;
654708
+ created_by: string | null;
654709
+ updated_at: Date | null;
654710
+ updated_by: string | null;
654711
+ code: string | null;
654712
+ }[] | undefined;
654713
+ total: number | undefined;
654714
+ };
654715
+ meta: object;
654716
+ }>;
654717
+ getDetail: MutationProcedure<{
654718
+ input: {
654719
+ id?: number | null | undefined;
654720
+ id_string?: string | null | undefined;
654721
+ };
654722
+ output: {
654723
+ data: {
654724
+ _count: {
654725
+ charge_code_group_logs: number;
654726
+ charge_codes: number;
654727
+ };
654728
+ } & {
654729
+ is_active: boolean | null;
654730
+ id: number;
654731
+ name: string | null;
654732
+ logic_code: string | null;
654733
+ created_at: Date | null;
654734
+ created_by: string | null;
654735
+ updated_at: Date | null;
654736
+ updated_by: string | null;
654737
+ code: string | null;
654738
+ };
654739
+ };
654740
+ meta: object;
654741
+ }>;
654742
+ histories: BuiltRouter<{
654743
+ ctx: Context;
654744
+ meta: object;
654745
+ errorShape: DefaultErrorShape;
654746
+ transformer: false;
654747
+ }, DecorateCreateRouterOptions<{
654748
+ get: MutationProcedure<{
654749
+ input: {
654750
+ search?: string | null | undefined;
654751
+ take?: number | null | undefined;
654752
+ skip?: number | null | undefined;
654753
+ is_active?: boolean[] | null | undefined;
654754
+ ids_include?: number[] | null | undefined;
654755
+ ids_exclude?: number[] | null | undefined;
654756
+ ids_string_include?: string[] | null | undefined;
654757
+ ids_string_exclude?: string[] | null | undefined;
654758
+ logic_codes_include?: string[] | null | undefined;
654759
+ logic_codes_exclude?: string[] | null | undefined;
654760
+ order_by?: {
654761
+ field: string;
654762
+ direction: "asc" | "desc";
654763
+ } | null | undefined;
654764
+ order_bys?: {
654765
+ field: string;
654766
+ direction: "asc" | "desc";
654767
+ }[] | null | undefined;
654768
+ id_log_type?: number | null | undefined;
654769
+ ids_log_type?: number[] | null | undefined;
654770
+ id_charge_code_group?: number | null | undefined;
654771
+ ids_charge_code_group?: number[] | null | undefined;
654772
+ };
654773
+ output: {
654774
+ data: {
654775
+ log_type: {
654776
+ is_active: boolean | null;
654777
+ id: number;
654778
+ name: string | null;
654779
+ logic_code: string | null;
654780
+ created_at: Date | null;
654781
+ created_by: string | null;
654782
+ updated_at: Date | null;
654783
+ updated_by: string | null;
654784
+ } | null;
654785
+ id: number;
654786
+ id_log_type: number | null;
654787
+ url: string | null;
654788
+ params: SimpleJson;
654789
+ action: string | null;
654790
+ action_by: string | null;
654791
+ action_id: string | null;
654792
+ action_at: Date | null;
654793
+ id_charge_code_group: number | null;
654794
+ }[] | undefined;
654795
+ total: number | undefined;
654796
+ };
654797
+ meta: object;
654798
+ }>;
654799
+ getDetail: MutationProcedure<{
654800
+ input: {
654801
+ id?: number | null | undefined;
654802
+ id_string?: string | null | undefined;
654803
+ };
654804
+ output: {
654805
+ data: {
654806
+ log_type: {
654807
+ is_active: boolean | null;
654808
+ id: number;
654809
+ name: string | null;
654810
+ logic_code: string | null;
654811
+ created_at: Date | null;
654812
+ created_by: string | null;
654813
+ updated_at: Date | null;
654814
+ updated_by: string | null;
654815
+ } | null;
654816
+ id: number;
654817
+ id_log_type: number | null;
654818
+ url: string | null;
654819
+ params: SimpleJson;
654820
+ action: string | null;
654821
+ action_by: string | null;
654822
+ action_id: string | null;
654823
+ action_at: Date | null;
654824
+ id_charge_code_group: number | null;
654825
+ } | undefined;
654826
+ };
654827
+ meta: object;
654828
+ }>;
654829
+ }>>;
654830
+ create: MutationProcedure<{
654831
+ input: {
654832
+ is_active?: boolean | undefined;
654833
+ code?: string | null | undefined;
654834
+ name?: string | null | undefined;
654835
+ };
654836
+ output: {
654837
+ data: {
654838
+ is_active: boolean | null;
654839
+ id: number;
654840
+ name: string | null;
654841
+ logic_code: string | null;
654842
+ created_at: Date | null;
654843
+ created_by: string | null;
654844
+ updated_at: Date | null;
654845
+ updated_by: string | null;
654846
+ code: string | null;
654847
+ } | undefined;
654848
+ log: {
654849
+ id: number;
654850
+ id_log_type: number | null;
654851
+ url: string | null;
654852
+ params: SimpleJson;
654853
+ action: string | null;
654854
+ action_by: string | null;
654855
+ action_id: string | null;
654856
+ action_at: Date | null;
654857
+ id_charge_code_group: number | null;
654858
+ } | undefined;
654859
+ };
654860
+ meta: object;
654861
+ }>;
654862
+ update: MutationProcedure<{
654863
+ input: {
654864
+ id?: number | null | undefined;
654865
+ id_string?: string | null | undefined;
654866
+ is_active?: boolean | undefined;
654867
+ code?: string | null | undefined;
654868
+ name?: string | null | undefined;
654869
+ };
654870
+ output: {
654871
+ data: {
654872
+ is_active: boolean | null;
654873
+ id: number;
654874
+ name: string | null;
654875
+ logic_code: string | null;
654876
+ created_at: Date | null;
654877
+ created_by: string | null;
654878
+ updated_at: Date | null;
654879
+ updated_by: string | null;
654880
+ code: string | null;
654881
+ } | undefined;
654882
+ log: {
654883
+ id: number;
654884
+ id_log_type: number | null;
654885
+ url: string | null;
654886
+ params: SimpleJson;
654887
+ action: string | null;
654888
+ action_by: string | null;
654889
+ action_id: string | null;
654890
+ action_at: Date | null;
654891
+ id_charge_code_group: number | null;
654892
+ } | undefined;
654893
+ };
654894
+ meta: object;
654895
+ }>;
654896
+ delete: MutationProcedure<{
654897
+ input: {
654898
+ id?: number | null | undefined;
654899
+ ids?: number[] | null | undefined;
654900
+ id_string?: string | null | undefined;
654901
+ ids_string?: string[] | null | undefined;
654902
+ };
654903
+ output: {
654904
+ data: ({
654905
+ is_active: boolean | null;
654906
+ id: number;
654907
+ name: string | null;
654908
+ logic_code: string | null;
654909
+ created_at: Date | null;
654910
+ created_by: string | null;
654911
+ updated_at: Date | null;
654912
+ updated_by: string | null;
654913
+ code: string | null;
654914
+ } | undefined)[] | undefined;
654915
+ };
654916
+ meta: object;
654917
+ }>;
654918
+ }>>;
654919
+ subGroups: BuiltRouter<{
654920
+ ctx: Context;
654921
+ meta: object;
654922
+ errorShape: DefaultErrorShape;
654923
+ transformer: false;
654924
+ }, DecorateCreateRouterOptions<{
654925
+ get: MutationProcedure<{
654926
+ input: {
654927
+ search?: string | null | undefined;
654928
+ take?: number | null | undefined;
654929
+ skip?: number | null | undefined;
654930
+ is_active?: boolean[] | null | undefined;
654931
+ ids_include?: number[] | null | undefined;
654932
+ ids_exclude?: number[] | null | undefined;
654933
+ ids_string_include?: string[] | null | undefined;
654934
+ ids_string_exclude?: string[] | null | undefined;
654935
+ logic_codes_include?: string[] | null | undefined;
654936
+ logic_codes_exclude?: string[] | null | undefined;
654937
+ order_by?: {
654938
+ field: string;
654939
+ direction: "asc" | "desc";
654940
+ } | null | undefined;
654941
+ order_bys?: {
654942
+ field: string;
654943
+ direction: "asc" | "desc";
654944
+ }[] | null | undefined;
654945
+ };
654946
+ output: {
654947
+ data: {
654948
+ is_active: boolean | null;
654949
+ id: number;
654950
+ name: string | null;
654951
+ logic_code: string | null;
654952
+ created_at: Date | null;
654953
+ created_by: string | null;
654954
+ updated_at: Date | null;
654955
+ updated_by: string | null;
654956
+ code: string | null;
654957
+ }[] | undefined;
654958
+ total: number | undefined;
654959
+ };
654960
+ meta: object;
654961
+ }>;
654962
+ getDetail: MutationProcedure<{
654963
+ input: {
654964
+ id?: number | null | undefined;
654965
+ id_string?: string | null | undefined;
654966
+ };
654967
+ output: {
654968
+ data: {
654969
+ _count: {
654970
+ charge_code_sub_group_logs: number;
654971
+ charge_codes: number;
654972
+ };
654973
+ } & {
654974
+ is_active: boolean | null;
654975
+ id: number;
654976
+ name: string | null;
654977
+ logic_code: string | null;
654978
+ created_at: Date | null;
654979
+ created_by: string | null;
654980
+ updated_at: Date | null;
654981
+ updated_by: string | null;
654982
+ code: string | null;
654983
+ };
654984
+ };
654985
+ meta: object;
654986
+ }>;
654987
+ histories: BuiltRouter<{
654988
+ ctx: Context;
654989
+ meta: object;
654990
+ errorShape: DefaultErrorShape;
654991
+ transformer: false;
654992
+ }, DecorateCreateRouterOptions<{
654993
+ get: MutationProcedure<{
654994
+ input: {
654995
+ search?: string | null | undefined;
654996
+ take?: number | null | undefined;
654997
+ skip?: number | null | undefined;
654998
+ is_active?: boolean[] | null | undefined;
654999
+ ids_include?: number[] | null | undefined;
655000
+ ids_exclude?: number[] | null | undefined;
655001
+ ids_string_include?: string[] | null | undefined;
655002
+ ids_string_exclude?: string[] | null | undefined;
655003
+ logic_codes_include?: string[] | null | undefined;
655004
+ logic_codes_exclude?: string[] | null | undefined;
655005
+ order_by?: {
655006
+ field: string;
655007
+ direction: "asc" | "desc";
655008
+ } | null | undefined;
655009
+ order_bys?: {
655010
+ field: string;
655011
+ direction: "asc" | "desc";
655012
+ }[] | null | undefined;
655013
+ id_log_type?: number | null | undefined;
655014
+ ids_log_type?: number[] | null | undefined;
655015
+ id_charge_code_sub_group?: number | null | undefined;
655016
+ ids_charge_code_sub_group?: number[] | null | undefined;
655017
+ };
655018
+ output: {
655019
+ data: {
655020
+ log_type: {
655021
+ is_active: boolean | null;
655022
+ id: number;
655023
+ name: string | null;
655024
+ logic_code: string | null;
655025
+ created_at: Date | null;
655026
+ created_by: string | null;
655027
+ updated_at: Date | null;
655028
+ updated_by: string | null;
655029
+ } | null;
655030
+ id: number;
655031
+ id_log_type: number | null;
655032
+ url: string | null;
655033
+ params: SimpleJson;
655034
+ action: string | null;
655035
+ action_by: string | null;
655036
+ action_id: string | null;
655037
+ action_at: Date | null;
655038
+ id_charge_code_sub_group: number | null;
655039
+ }[] | undefined;
655040
+ total: number | undefined;
655041
+ };
655042
+ meta: object;
655043
+ }>;
655044
+ getDetail: MutationProcedure<{
655045
+ input: {
655046
+ id?: number | null | undefined;
655047
+ id_string?: string | null | undefined;
655048
+ };
655049
+ output: {
655050
+ data: {
655051
+ log_type: {
655052
+ is_active: boolean | null;
655053
+ id: number;
655054
+ name: string | null;
655055
+ logic_code: string | null;
655056
+ created_at: Date | null;
655057
+ created_by: string | null;
655058
+ updated_at: Date | null;
655059
+ updated_by: string | null;
655060
+ } | null;
655061
+ id: number;
655062
+ id_log_type: number | null;
655063
+ url: string | null;
655064
+ params: SimpleJson;
655065
+ action: string | null;
655066
+ action_by: string | null;
655067
+ action_id: string | null;
655068
+ action_at: Date | null;
655069
+ id_charge_code_sub_group: number | null;
655070
+ } | undefined;
655071
+ };
655072
+ meta: object;
655073
+ }>;
655074
+ }>>;
655075
+ create: MutationProcedure<{
655076
+ input: {
655077
+ is_active?: boolean | undefined;
655078
+ code?: string | null | undefined;
655079
+ name?: string | null | undefined;
655080
+ };
655081
+ output: {
655082
+ data: {
655083
+ is_active: boolean | null;
655084
+ id: number;
655085
+ name: string | null;
655086
+ logic_code: string | null;
655087
+ created_at: Date | null;
655088
+ created_by: string | null;
655089
+ updated_at: Date | null;
655090
+ updated_by: string | null;
655091
+ code: string | null;
655092
+ } | undefined;
655093
+ log: {
655094
+ id: number;
655095
+ id_log_type: number | null;
655096
+ url: string | null;
655097
+ params: SimpleJson;
655098
+ action: string | null;
655099
+ action_by: string | null;
655100
+ action_id: string | null;
655101
+ action_at: Date | null;
655102
+ id_charge_code_sub_group: number | null;
655103
+ } | undefined;
655104
+ };
655105
+ meta: object;
655106
+ }>;
655107
+ update: MutationProcedure<{
655108
+ input: {
655109
+ id?: number | null | undefined;
655110
+ id_string?: string | null | undefined;
655111
+ is_active?: boolean | undefined;
655112
+ code?: string | null | undefined;
655113
+ name?: string | null | undefined;
655114
+ };
655115
+ output: {
655116
+ data: {
655117
+ is_active: boolean | null;
655118
+ id: number;
655119
+ name: string | null;
655120
+ logic_code: string | null;
655121
+ created_at: Date | null;
655122
+ created_by: string | null;
655123
+ updated_at: Date | null;
655124
+ updated_by: string | null;
655125
+ code: string | null;
655126
+ } | undefined;
655127
+ log: {
655128
+ id: number;
655129
+ id_log_type: number | null;
655130
+ url: string | null;
655131
+ params: SimpleJson;
655132
+ action: string | null;
655133
+ action_by: string | null;
655134
+ action_id: string | null;
655135
+ action_at: Date | null;
655136
+ id_charge_code_sub_group: number | null;
655137
+ } | undefined;
655138
+ };
655139
+ meta: object;
655140
+ }>;
655141
+ delete: MutationProcedure<{
655142
+ input: {
655143
+ id?: number | null | undefined;
655144
+ ids?: number[] | null | undefined;
655145
+ id_string?: string | null | undefined;
655146
+ ids_string?: string[] | null | undefined;
655147
+ };
655148
+ output: {
655149
+ data: ({
655150
+ is_active: boolean | null;
655151
+ id: number;
655152
+ name: string | null;
655153
+ logic_code: string | null;
655154
+ created_at: Date | null;
655155
+ created_by: string | null;
655156
+ updated_at: Date | null;
655157
+ updated_by: string | null;
655158
+ code: string | null;
655159
+ } | undefined)[] | undefined;
655160
+ };
655161
+ meta: object;
655162
+ }>;
655163
+ }>>;
655164
+ rateCalculations: BuiltRouter<{
655165
+ ctx: Context;
655166
+ meta: object;
655167
+ errorShape: DefaultErrorShape;
655168
+ transformer: false;
655169
+ }, DecorateCreateRouterOptions<{
655170
+ get: MutationProcedure<{
655171
+ input: {
655172
+ search?: string | null | undefined;
655173
+ take?: number | null | undefined;
655174
+ skip?: number | null | undefined;
655175
+ is_active?: boolean[] | null | undefined;
655176
+ ids_include?: number[] | null | undefined;
655177
+ ids_exclude?: number[] | null | undefined;
655178
+ ids_string_include?: string[] | null | undefined;
655179
+ ids_string_exclude?: string[] | null | undefined;
655180
+ logic_codes_include?: string[] | null | undefined;
655181
+ logic_codes_exclude?: string[] | null | undefined;
655182
+ order_by?: {
655183
+ field: string;
655184
+ direction: "asc" | "desc";
655185
+ } | null | undefined;
655186
+ order_bys?: {
655187
+ field: string;
655188
+ direction: "asc" | "desc";
655189
+ }[] | null | undefined;
655190
+ };
655191
+ output: {
655192
+ data: {
655193
+ is_active: boolean | null;
655194
+ id: number;
655195
+ name: string | null;
655196
+ logic_code: string | null;
655197
+ created_at: Date | null;
655198
+ created_by: string | null;
655199
+ updated_at: Date | null;
655200
+ updated_by: string | null;
655201
+ code: string | null;
655202
+ }[] | undefined;
655203
+ total: number | undefined;
655204
+ };
655205
+ meta: object;
655206
+ }>;
655207
+ getDetail: MutationProcedure<{
655208
+ input: {
655209
+ id?: number | null | undefined;
655210
+ id_string?: string | null | undefined;
655211
+ };
655212
+ output: {
655213
+ data: {
655214
+ _count: {
655215
+ charge_code_rate_calculation_logs: number;
655216
+ charge_codes: number;
655217
+ };
655218
+ } & {
655219
+ is_active: boolean | null;
655220
+ id: number;
655221
+ name: string | null;
655222
+ logic_code: string | null;
655223
+ created_at: Date | null;
655224
+ created_by: string | null;
655225
+ updated_at: Date | null;
655226
+ updated_by: string | null;
655227
+ code: string | null;
655228
+ };
655229
+ };
655230
+ meta: object;
655231
+ }>;
655232
+ histories: BuiltRouter<{
655233
+ ctx: Context;
655234
+ meta: object;
655235
+ errorShape: DefaultErrorShape;
655236
+ transformer: false;
655237
+ }, DecorateCreateRouterOptions<{
655238
+ get: MutationProcedure<{
655239
+ input: {
655240
+ search?: string | null | undefined;
655241
+ take?: number | null | undefined;
655242
+ skip?: number | null | undefined;
655243
+ is_active?: boolean[] | null | undefined;
655244
+ ids_include?: number[] | null | undefined;
655245
+ ids_exclude?: number[] | null | undefined;
655246
+ ids_string_include?: string[] | null | undefined;
655247
+ ids_string_exclude?: string[] | null | undefined;
655248
+ logic_codes_include?: string[] | null | undefined;
655249
+ logic_codes_exclude?: string[] | null | undefined;
655250
+ order_by?: {
655251
+ field: string;
655252
+ direction: "asc" | "desc";
655253
+ } | null | undefined;
655254
+ order_bys?: {
655255
+ field: string;
655256
+ direction: "asc" | "desc";
655257
+ }[] | null | undefined;
655258
+ id_log_type?: number | null | undefined;
655259
+ ids_log_type?: number[] | null | undefined;
655260
+ id_charge_code_rate_calculation?: number | null | undefined;
655261
+ ids_charge_code_rate_calculation?: number[] | null | undefined;
655262
+ };
655263
+ output: {
655264
+ data: {
655265
+ log_type: {
655266
+ is_active: boolean | null;
655267
+ id: number;
655268
+ name: string | null;
655269
+ logic_code: string | null;
655270
+ created_at: Date | null;
655271
+ created_by: string | null;
655272
+ updated_at: Date | null;
655273
+ updated_by: string | null;
655274
+ } | null;
655275
+ id: number;
655276
+ id_log_type: number | null;
655277
+ url: string | null;
655278
+ params: SimpleJson;
655279
+ action: string | null;
655280
+ action_by: string | null;
655281
+ action_id: string | null;
655282
+ action_at: Date | null;
655283
+ id_charge_code_rate_calculation: number | null;
655284
+ }[] | undefined;
655285
+ total: number | undefined;
655286
+ };
655287
+ meta: object;
655288
+ }>;
655289
+ getDetail: MutationProcedure<{
655290
+ input: {
655291
+ id?: number | null | undefined;
655292
+ id_string?: string | null | undefined;
655293
+ };
655294
+ output: {
655295
+ data: {
655296
+ log_type: {
655297
+ is_active: boolean | null;
655298
+ id: number;
655299
+ name: string | null;
655300
+ logic_code: string | null;
655301
+ created_at: Date | null;
655302
+ created_by: string | null;
655303
+ updated_at: Date | null;
655304
+ updated_by: string | null;
655305
+ } | null;
655306
+ id: number;
655307
+ id_log_type: number | null;
655308
+ url: string | null;
655309
+ params: SimpleJson;
655310
+ action: string | null;
655311
+ action_by: string | null;
655312
+ action_id: string | null;
655313
+ action_at: Date | null;
655314
+ id_charge_code_rate_calculation: number | null;
655315
+ } | undefined;
655316
+ };
655317
+ meta: object;
655318
+ }>;
655319
+ }>>;
655320
+ create: MutationProcedure<{
655321
+ input: {
655322
+ is_active?: boolean | undefined;
655323
+ code?: string | null | undefined;
655324
+ name?: string | null | undefined;
655325
+ };
655326
+ output: {
655327
+ data: {
655328
+ is_active: boolean | null;
655329
+ id: number;
655330
+ name: string | null;
655331
+ logic_code: string | null;
655332
+ created_at: Date | null;
655333
+ created_by: string | null;
655334
+ updated_at: Date | null;
655335
+ updated_by: string | null;
655336
+ code: string | null;
655337
+ } | undefined;
655338
+ log: {
655339
+ id: number;
655340
+ id_log_type: number | null;
655341
+ url: string | null;
655342
+ params: SimpleJson;
655343
+ action: string | null;
655344
+ action_by: string | null;
655345
+ action_id: string | null;
655346
+ action_at: Date | null;
655347
+ id_charge_code_rate_calculation: number | null;
655348
+ } | undefined;
655349
+ };
655350
+ meta: object;
655351
+ }>;
655352
+ update: MutationProcedure<{
655353
+ input: {
655354
+ id?: number | null | undefined;
655355
+ id_string?: string | null | undefined;
655356
+ is_active?: boolean | undefined;
655357
+ code?: string | null | undefined;
655358
+ name?: string | null | undefined;
655359
+ };
655360
+ output: {
655361
+ data: {
655362
+ is_active: boolean | null;
655363
+ id: number;
655364
+ name: string | null;
655365
+ logic_code: string | null;
655366
+ created_at: Date | null;
655367
+ created_by: string | null;
655368
+ updated_at: Date | null;
655369
+ updated_by: string | null;
655370
+ code: string | null;
655371
+ } | undefined;
655372
+ log: {
655373
+ id: number;
655374
+ id_log_type: number | null;
655375
+ url: string | null;
655376
+ params: SimpleJson;
655377
+ action: string | null;
655378
+ action_by: string | null;
655379
+ action_id: string | null;
655380
+ action_at: Date | null;
655381
+ id_charge_code_rate_calculation: number | null;
655382
+ } | undefined;
655383
+ };
655384
+ meta: object;
655385
+ }>;
655386
+ delete: MutationProcedure<{
655387
+ input: {
655388
+ id?: number | null | undefined;
655389
+ ids?: number[] | null | undefined;
655390
+ id_string?: string | null | undefined;
655391
+ ids_string?: string[] | null | undefined;
655392
+ };
655393
+ output: {
655394
+ data: ({
655395
+ is_active: boolean | null;
655396
+ id: number;
655397
+ name: string | null;
655398
+ logic_code: string | null;
655399
+ created_at: Date | null;
655400
+ created_by: string | null;
655401
+ updated_at: Date | null;
655402
+ updated_by: string | null;
655403
+ code: string | null;
655404
+ } | undefined)[] | undefined;
655405
+ };
655406
+ meta: object;
655407
+ }>;
655408
+ }>>;
655409
+ }>>;
652654
655410
  glAccounts: BuiltRouter<{
652655
655411
  ctx: Context;
652656
655412
  meta: object;