ionic-vhframeworks 4.0.8 → 4.1.1

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.
@@ -1087,6 +1087,7 @@ export declare class VhQueryCafe {
1087
1087
  private printers;
1088
1088
  private discount_bills;
1089
1089
  private discount_saless;
1090
+ private customer_classs;
1090
1091
  private commissions;
1091
1092
  private hwinfo;
1092
1093
  private appsettingstations;
@@ -1109,6 +1110,7 @@ export declare class VhQueryCafe {
1109
1110
  private subjectareas;
1110
1111
  private subjecttables;
1111
1112
  private subjectdiscount_bills;
1113
+ private subjectcustomer_classs;
1112
1114
  private callbackdispatcher;
1113
1115
  private callbacksyncopeningbill;
1114
1116
  private sync_code;
@@ -1167,12 +1169,41 @@ export declare class VhQueryCafe {
1167
1169
  * @returns void
1168
1170
  */
1169
1171
  closeSyncCollections(): void;
1172
+ /**
1173
+ * VhQueryCafe
1174
+ * @returns
1175
+ */
1170
1176
  private callbackCollectionInsert;
1177
+ /**
1178
+ * VhQueryCafe
1179
+ * @returns
1180
+ */
1171
1181
  private callbackCollectionUpdate;
1182
+ /**
1183
+ * VhQueryCafe
1184
+ * @returns
1185
+ */
1172
1186
  private callbackCollectionDelete;
1187
+ /**
1188
+ * VhQueryCafe
1189
+ * @returns
1190
+ */
1173
1191
  initChatToAppCare(): Promise<any>;
1192
+ /**
1193
+ * VhQueryCafe
1194
+ * @returns
1195
+ */
1174
1196
  listeningChatToAppCare_Insert(): Observable<unknown>;
1197
+ /**
1198
+ * VhQueryCafe
1199
+ * @returns
1200
+ */
1175
1201
  listeningChatToAppCare_Update(): Observable<unknown>;
1202
+ /**
1203
+ *
1204
+ * @param limit VhQueryCafe
1205
+ * @returns
1206
+ */
1176
1207
  getOldMessages(limit: number): Promise<unknown>;
1177
1208
  /**
1178
1209
  * @example:
@@ -2366,7 +2397,76 @@ export declare class VhQueryCafe {
2366
2397
  * @return Promise => array(object) = [{},{},..]
2367
2398
  */
2368
2399
  getInventorytimes(): Promise<unknown>;
2400
+ private publishObservableEventCustomerClasss;
2401
+ private observableLocalCustomerClasss;
2402
+ /**
2403
+ * @example:
2404
+ * this.observableCustomerClasss = this.vhQueryCafe.getObservableLocalCustomerClasss().subscribe((localCustomer_classs:any) => {
2405
+ do something...
2406
+ })
2407
+
2408
+ ngOnDestroy(){
2409
+ this.observableCustomerClasss.unsubscribe();
2410
+ }
2411
+ * @returns Observerble (Array) => Array(object) => array = [{},{},...]
2412
+ */
2413
+ private getObservableLocalCustomerClasss;
2414
+ /**
2415
+ * @example:
2416
+ * let customer_class = this.vhQueryCafe.getlocalCustomerClass('5fb6780ca2148e09806c5b01');
2417
+ * @param id_customer_class
2418
+ * @return Object => obj = {} or null
2419
+ */
2420
+ getlocalCustomerClass(id_customer_class: any): any;
2421
+ /**
2422
+ * @example:
2423
+ * let customer_classs = this.vhQueryCafe.getlocalCustomerClasss();
2424
+ * @return Array(object) => array = [{},{},...]
2425
+ */
2426
+ getlocalCustomerClasss(): any;
2427
+ /**
2428
+ * @example:
2429
+ * this.vhQueryCafe.addCustomerClass({name:'camera 2', quantity:20, price:200000})
2430
+ .then((customer_class)=>{
2431
+ console.log('addCustomerClass', customer_class);
2432
+ },error=>{
2433
+ console.log('error', error);
2434
+ })
2435
+ * @param colname
2436
+ * @param data
2437
+ * @return Promise => obj = {}
2438
+ * Luu ý: chỉ có 2 trường hợp, hoặc là thêm thành công, hoặc là báo lỗi error
2439
+ */
2440
+ addCustomerClass(data: object): Promise<unknown>;
2441
+ /**
2442
+ * @example:
2443
+ * this.vhQueryCafe.updateCustomerClass('5fb6780ca2148e09806c5b01', {quantity:400})
2444
+ .then((bool)=>{
2445
+ console.log('updateCustomerClass', bool);
2446
+ })
2447
+ * @param id_customer_class
2448
+ * @param data
2449
+ * @return Promise => bool = true or false
2450
+ */
2451
+ updateCustomerClass(id_customer_class: string, data: object): Promise<unknown>;
2452
+ /**
2453
+ * @example:
2454
+ * this.vhQueryCafe.deleteCustomerClass('5fb67fda87c0f21d484cbdf3')
2455
+ .then((bool)=>{
2456
+ console.log('deleteCustomerClass', bool);
2457
+ })
2458
+ * @param id_customer_class
2459
+ * @return Promise => bool = true or false
2460
+ */
2461
+ deleteCustomerClass(id_customer_class: string): Promise<unknown>;
2462
+ /**
2463
+ * vhQueryCafe
2464
+ */
2369
2465
  private publishObservableEventDiscount_bills;
2466
+ /**
2467
+ * vhQueryCafe
2468
+ * @returns
2469
+ */
2370
2470
  private observableLocalDiscount_bills;
2371
2471
  /**
2372
2472
  * @example:
@@ -2459,7 +2559,7 @@ export declare class VhQueryCafe {
2459
2559
  .then((bool)=>{
2460
2560
  console.log('deleteDiscount_sales', bool);
2461
2561
  })
2462
- * @param id_discount_saless
2562
+ * @param id_discount_sales
2463
2563
  * @return Promise => bool = true or false
2464
2564
  */
2465
2565
  deleteDiscount_sales(id_discount_sales: string): Promise<unknown>;
@@ -3314,7 +3414,7 @@ export declare class VhQueryCafe {
3314
3414
  * @notice : hàm này chỉ dùng tạo những bill_type mà không có phát sinh bill_detail
3315
3415
  * Luu ý: chỉ có 2 trường hợp, hoặc là thêm thành công, hoặc là báo lỗi error
3316
3416
  */
3317
- createBill(data: object): Promise<unknown>;
3417
+ createBill(data: any): Promise<unknown>;
3318
3418
  /**
3319
3419
  * @example:
3320
3420
  * this.vhQueryCafe.updateBill('5fb6780ca2148e09806c5b01', {name:'Khuyến mãi 12/12'})
@@ -3344,16 +3444,26 @@ export declare class VhQueryCafe {
3344
3444
  * Hàm này dùng để đồng bộ hóa đơn đang mở ở 2 giao diện hoặc 2 thiết bị khác nhau
3345
3445
  * @example:
3346
3446
  * this.vhQueryCafe.observableSyncOpeningBill('5fb6780ca2148e09806c5b01', 5)
3347
- .subscribe((bill)=> {
3348
- console.log('observableSyncOpeningBill', bill);
3447
+ .subscribe((rsp)=> {
3448
+ if(rsp.vcode === 0){
3449
+ //-----------your code 0-----------
3450
+ let bill = rsp.data;
3451
+ console.log('observableSyncOpeningBill', bill);
3452
+ }else if(rsp.vcode === 1){
3453
+ //-----------your code 1-----------
3454
+ }else if(rsp.vcode === 2){
3455
+ //-----------your code 2-----------
3456
+ }
3349
3457
  },(error:any) => {
3350
3458
  console.log(error);
3351
3459
  })
3352
3460
  * @param id_bill
3353
3461
  * @param bill_type
3354
3462
  * @returns Observable => bill hoặc null;
3355
- * + trả về bill hóa đơn đó đang được sử ở thiết bị khác;
3356
- * + trả về null hóa đơn đó đã bị xóa hoặc đã chuyển sang trạng thái bill_type khác
3463
+ * @return Observable object => rsp = {vcode, message, data}
3464
+ * vcode == 0: repaired bill by another device
3465
+ * vcode == 1: changed bill_type by another device
3466
+ * vcode == 2: deleted bill by unknown device
3357
3467
  * @notice : nhớ đóng closeSyncOpeningBill() khi thoát trang hiện tại this.vhQueryCafe.closeSyncOpeningBill();
3358
3468
  */
3359
3469
  observableSyncOpeningBill(id_bill: string, bill_type: number): Observable<unknown>;
@@ -4846,9 +4956,25 @@ export declare class VhQueryCloudCam {
4846
4956
  * @returns void
4847
4957
  */
4848
4958
  closeSyncCollections(): void;
4959
+ /**
4960
+ * vhQuerySmhome
4961
+ * @returns
4962
+ */
4849
4963
  private callbackCollectionInsert;
4964
+ /**
4965
+ * vhQuerySmhome
4966
+ * @returns
4967
+ */
4850
4968
  private callbackCollectionUpdate;
4969
+ /**
4970
+ * vhQuerySmhome
4971
+ * @returns
4972
+ */
4851
4973
  private callbackCollectionDelete;
4974
+ /**
4975
+ * vhQuerySmhome
4976
+ * @returns
4977
+ */
4852
4978
  startLocalStorage(): Promise<any>;
4853
4979
  /**
4854
4980
  * lấy về recordserverURL, APP gửi recordserverURL cho Cloudcam Box, Box dùng kiểm recordedfile với RecordServer và upload recordedfile chưa có lên RecordServer
@@ -6039,9 +6165,25 @@ export declare class VhQueryClouds {
6039
6165
  * @returns void
6040
6166
  */
6041
6167
  closeSyncCollections(): void;
6168
+ /**
6169
+ * vhQueryClouds
6170
+ * @returns
6171
+ */
6042
6172
  private callbackCollectionInsert;
6173
+ /**
6174
+ * vhQueryClouds
6175
+ * @returns
6176
+ */
6043
6177
  private callbackCollectionUpdate;
6178
+ /**
6179
+ * vhQueryClouds
6180
+ * @returns
6181
+ */
6044
6182
  private callbackCollectionDelete;
6183
+ /**
6184
+ * vhQueryClouds
6185
+ * @returns
6186
+ */
6045
6187
  startLocalStorage(): Promise<any>;
6046
6188
  createPaymentVnpay(amount: number, bankCode: string, data: any, backHref: string, fee: object, fee_details: object): any;
6047
6189
  /**
@@ -7584,6 +7726,7 @@ export declare class VhQuerySales {
7584
7726
  private warrantys;
7585
7727
  private discount_bills;
7586
7728
  private discount_saless;
7729
+ private customer_classs;
7587
7730
  private commissions;
7588
7731
  private deliverys;
7589
7732
  private addresss;
@@ -7609,6 +7752,7 @@ export declare class VhQuerySales {
7609
7752
  private subjecttaxs;
7610
7753
  private subjectwarrantys;
7611
7754
  private subjectdiscount_bills;
7755
+ private subjectcustomer_classs;
7612
7756
  private callbacksyncopeningbill;
7613
7757
  private sync_code;
7614
7758
  constructor(vhmongo_firebase: Vhmongo_firebase, vhQuery: VhQuery, vhAuth: VhAuth, vhAlgorithm: VhAlgorithm, iap2: InAppPurchase2, platform: Platform);
@@ -8695,12 +8839,40 @@ export declare class VhQuerySales {
8695
8839
  * @returns void
8696
8840
  */
8697
8841
  closeSyncCollections(): void;
8842
+ /**
8843
+ * vhQuerySales
8844
+ * @returns
8845
+ */
8698
8846
  private callbackCollectionInsert;
8847
+ /**
8848
+ * vhQuerySales
8849
+ * @returns
8850
+ */
8699
8851
  private callbackCollectionUpdate;
8852
+ /**
8853
+ * vhQuerySales
8854
+ * @returns
8855
+ */
8700
8856
  private callbackCollectionDelete;
8857
+ /**
8858
+ * vhQuerySales
8859
+ */
8701
8860
  initChatToAppCare(): Promise<any>;
8861
+ /**
8862
+ * vhQuerySales
8863
+ * @returns
8864
+ */
8702
8865
  listeningChatToAppCare_Insert(): Observable<unknown>;
8866
+ /**
8867
+ * vhQuerySales
8868
+ * @returns
8869
+ */
8703
8870
  listeningChatToAppCare_Update(): Observable<unknown>;
8871
+ /**
8872
+ * vhQuerySales
8873
+ * @param limit
8874
+ * @returns
8875
+ */
8704
8876
  getOldMessages(limit: number): Promise<unknown>;
8705
8877
  /**
8706
8878
  * @example:
@@ -9551,7 +9723,81 @@ export declare class VhQuerySales {
9551
9723
  * @return Promise => array(object) = [{},{},..]
9552
9724
  */
9553
9725
  getWarrantys(): Promise<unknown>;
9726
+ /**
9727
+ * vhQuerySales
9728
+ */
9729
+ private publishObservableEventCustomerClasss;
9730
+ /**
9731
+ *
9732
+ */
9733
+ private observableLocalCustomerClasss;
9734
+ /**
9735
+ * @example:
9736
+ * this.observableCustomerClasss = this.vhQuerySales.getObservableLocalCustomerClasss().subscribe((localCustomer_classs:any) => {
9737
+ do something...
9738
+ })
9739
+
9740
+ ngOnDestroy(){
9741
+ this.observableCustomerClasss.unsubscribe();
9742
+ }
9743
+ * @returns Observerble (Array) => Array(object) => array = [{},{},...]
9744
+ */
9745
+ private getObservableLocalCustomerClasss;
9746
+ /**
9747
+ * @example:
9748
+ * let customer_class = this.vhQuerySales.getlocalCustomerClass('5fb6780ca2148e09806c5b01');
9749
+ * @param id_customer_class
9750
+ * @return Object => obj = {} or null
9751
+ */
9752
+ getlocalCustomerClass(id_customer_class: any): any;
9753
+ /**
9754
+ * @example:
9755
+ * let customer_classs = this.vhQuerySales.getlocalCustomerClasss();
9756
+ * @return Array(object) => array = [{},{},...]
9757
+ */
9758
+ getlocalCustomerClasss(): any;
9759
+ /**
9760
+ * @example:
9761
+ * this.vhQuerySales.addCustomerClass({name:'camera 2', quantity:20, price:200000})
9762
+ .then((customer_class)=>{
9763
+ console.log('addCustomerClass', customer_class);
9764
+ },error=>{
9765
+ console.log('error', error);
9766
+ })
9767
+ * @param colname
9768
+ * @param data
9769
+ * @return Promise => obj = {}
9770
+ * Luu ý: chỉ có 2 trường hợp, hoặc là thêm thành công, hoặc là báo lỗi error
9771
+ */
9772
+ addCustomerClass(data: object): Promise<unknown>;
9773
+ /**
9774
+ * @example:
9775
+ * this.vhQuerySales.updateCustomerClass('5fb6780ca2148e09806c5b01', {quantity:400})
9776
+ .then((bool)=>{
9777
+ console.log('updateCustomerClass', bool);
9778
+ })
9779
+ * @param id_customer_class
9780
+ * @param data
9781
+ * @return Promise => bool = true or false
9782
+ */
9783
+ updateCustomerClass(id_customer_class: string, data: object): Promise<unknown>;
9784
+ /**
9785
+ * @example:
9786
+ * this.vhQuerySales.deleteCustomerClass('5fb67fda87c0f21d484cbdf3')
9787
+ .then((bool)=>{
9788
+ console.log('deleteCustomerClass', bool);
9789
+ })
9790
+ * @param id_customer_class
9791
+ * @return Promise => bool = true or false
9792
+ */
9793
+ deleteCustomerClass(id_customer_class: string): Promise<unknown>;
9794
+ /**
9795
+ * vhQuerySales
9796
+ */
9554
9797
  private publishObservableEventDiscount_bills;
9798
+ /**
9799
+ * vhQuerySales
9800
+ */
9555
9801
  private observableLocalDiscount_bills;
9556
9802
  /**
9557
9803
  * @example:
@@ -9644,7 +9890,7 @@ export declare class VhQuerySales {
9644
9890
  .then((bool)=>{
9645
9891
  console.log('deleteDiscount_sales', bool);
9646
9892
  })
9647
- * @param id_discount_saless
9893
+ * @param id_discount_sales
9648
9894
  * @return Promise => bool = true or false
9649
9895
  */
9650
9896
  deleteDiscount_sales(id_discount_sales: string): Promise<unknown>;
@@ -10624,7 +10870,7 @@ export declare class VhQuerySales {
10624
10870
  * Luu ý: chỉ có 2 trường hợp, hoặc là thêm thành công, hoặc là báo lỗi error
10625
10871
  * @notice : hàm này chỉ dùng tạo những bill_type mà không có phát sinh bill_detail
10626
10872
  */
10627
- createBill(data: object): Promise<unknown>;
10873
+ createBill(data: any): Promise<unknown>;
10628
10874
  /**
10629
10875
  * @example:
10630
10876
  * this.vhQuerySales.updateBill('5fb6780ca2148e09806c5b01', {name:'Khuyến mãi 12/12'})
@@ -10654,18 +10900,28 @@ export declare class VhQuerySales {
10654
10900
  /**
10655
10901
  * Hàm này dùng để đồng bộ hóa đơn đang mở ở 2 giao diện hoặc 2 thiết bị khác nhau
10656
10902
  * @example:
10657
- * this.vhQuerySales.observableSyncOpeningBill('5fb6780ca2148e09806c5b01', 5)
10658
- .subscribe((bill)=> {
10659
- console.log('observableSyncOpeningBill', bill);
10903
+ * this.vhQueryCafe.observableSyncOpeningBill('5fb6780ca2148e09806c5b01', 5)
10904
+ .subscribe((rsp)=> {
10905
+ if(rsp.vcode === 0){
10906
+ //-----------your code 0-----------
10907
+ let bill = rsp.data;
10908
+ console.log('observableSyncOpeningBill', bill);
10909
+ }else if(rsp.vcode === 1){
10910
+ //-----------your code 1-----------
10911
+ }else if(rsp.vcode === 2){
10912
+ //-----------your code 2-----------
10913
+ }
10660
10914
  },(error:any) => {
10661
10915
  console.log(error);
10662
10916
  })
10663
10917
  * @param id_bill
10664
10918
  * @param bill_type
10665
10919
  * @returns Observable => bill hoặc null;
10666
- * + trả về bill hóa đơn đó đang được sử ở thiết bị khác;
10667
- * + trả về null hóa đơn đó đã bị xóa hoặc đã chuyển sang trạng thái bill_type khác
10668
- * @notice : nhớ đóng closeSyncOpeningBill() khi thoát trang hiện tại
10920
+ * @return Observable object => rsp = {vcode, message, data}
10921
+ * vcode == 0: repaired bill by another device
10922
+ * vcode == 1: changed bill_type by another device
10923
+ * vcode == 2: deleted bill by unknown device
10924
+ * @notice : nhớ đóng closeSyncOpeningBill() khi thoát trang hiện tại this.vhQueryCafe.closeSyncOpeningBill();
10669
10925
  */
10670
10926
  observableSyncOpeningBill(id_bill: string, bill_type: number): Observable<unknown>;
10671
10927
  /**
@@ -11672,6 +11928,17 @@ export declare class VhQuerySales {
11672
11928
  */
11673
11929
  private syncInventoryEveryDay_Stock1stDayOfMonth;
11674
11930
  private syncInventoryEveryDay1;
11931
+ /**
11932
+ * Trong quá trình THÊM-XÓA-SỬA có thể xảy ra lỗi bill, bill_detail
11933
+ * Hàm này giúp đồng bộ lại dữ liệu và sửa các bill, bill_detail bị lỗi đó
11934
+ * @example:
11935
+ * this.vhQuerySales.makeCorrectQuantityProducts_byShop()
11936
+ .then((bool)=>{
11937
+ console.log('makeCorrectQuantityProducts_byShop', bool);
11938
+ })
11939
+ * @returns
11940
+ */
11941
+ makeCorrectQuantityProducts_byShop(): Promise<any>;
11675
11942
  /**
11676
11943
  * Hàm này dùng động bộ dữ liệu theo thuật toán 60day
11677
11944
  * @example:
@@ -12154,82 +12421,6 @@ export declare class VhQuerySales {
12154
12421
  * @return Promise => Array<object>
12155
12422
  */
12156
12423
  getEarningPointsProducts(): Promise<unknown>;
12157
- /**
12158
- * @example:
12159
- * this.vhQuerySales.addCustomerClass({name : "Gold"})
12160
- .then((res)=>{
12161
- console.log('addCustomerClass', res);
12162
- }, error=>{
12163
- console.log('error', error);
12164
- })
12165
- * @param data
12166
- * @return Promise => bool = object or error
12167
- */
12168
- addCustomerClass(data: any): Promise<unknown>;
12169
- /**
12170
- * @example:
12171
- * this.vhQuerySales.updateCustomerClass('KNOVIYWKN135468',{name : "Gold"})
12172
- .then((bool)=>{
12173
- console.log('updateCustomerClass', bool);
12174
- }, error=>{
12175
- console.log('error', error);
12176
- })
12177
- * @param id_customer_class
12178
- * @return Promise => bool = true or false
12179
- */
12180
- updateCustomerClass(id_customer_class: any, data: any): Promise<unknown>;
12181
- /**
12182
- * @example:
12183
- * this.vhQuerySales.deleteCustomerClass('KNOVIYWKN135468')
12184
- .then((bool)=>{
12185
- console.log('deleteCustomerClass', bool);
12186
- }, error=>{
12187
- console.log('error', error);
12188
- })
12189
- * @param id_customer_class
12190
- * @return Promise => bool = true or false
12191
- */
12192
- deleteCustomerClass(id_customer_class: any): Promise<unknown>;
12193
- /**
12194
- * @example:
12195
- * this.vhQuerySales.getCustomerClass('KNOVIYWKN135468DWS')
12196
- .then((res)=>{
12197
- console.log('getCustomerClass', res);
12198
- }, error=>{
12199
- console.log('error', error);
12200
- })
12201
- * @param id_customer_class
12202
- * @return Promise => object or null
12203
- */
12204
- getCustomerClass(id_customer_class: any): Promise<unknown>;
12205
- /**
12206
- * @example:
12207
- * this.vhQuerySales.getCustomerClasss()
12208
- .then((array)=>{
12209
- console.log('getCustomerClasss', array);
12210
- }, error=>{
12211
- console.log('error', error);
12212
- })
12213
- * @param data
12214
- * @return Promise => Array<object>
12215
- */
12216
- getCustomerClasss(): Promise<unknown>;
12217
- /**
12218
- * trong local chưa có
12219
- * @example:
12220
- * let customer_class = this.vhQuerySales.getCustomerClasss()
12221
- * @param data
12222
- * @return Array<object>
12223
- */
12224
- getlocalCustomerClasss(): void;
12225
- /**
12226
- * trong local chưa có
12227
- * @example:
12228
- * let customer_class = this.vhQuerySales.getCustomerClass('321987965DOIUEHN')
12229
- * @param id_customer_class
12230
- * @return object or null
12231
- */
12232
- getlocalCustomerClass(id_customer_class: any): void;
12233
12424
  /**
12234
12425
  * @example:
12235
12426
  * this.vhQuerySales.addEmployeeClass({name : "Gold"})
@@ -13933,11 +14124,34 @@ export declare class VhQuerySecurityCam {
13933
14124
  * @returns void
13934
14125
  */
13935
14126
  closeSyncCollections(): void;
14127
+ /**
14128
+ * vhQuerySecurityCam
14129
+ * @returns
14130
+ */
13936
14131
  private callbackCollectionInsert;
14132
+ /**
14133
+ * vhQuerySecurityCam
14134
+ * @returns
14135
+ */
13937
14136
  private callbackCollectionUpdate;
14137
+ /**
14138
+ * vhQuerySecurityCam
14139
+ * @returns
14140
+ */
13938
14141
  private callbackCollectionDelete;
14142
+ /**
14143
+ * vhQuerySecurityCam
14144
+ * @returns
14145
+ */
13939
14146
  startLocalStorage(): Promise<any>;
14147
+ /**
14148
+ * vhQuerySecurityCam
14149
+ */
13940
14150
  private publishObservableEventCameras;
14151
+ /**
14152
+ * vhQuerySecurityCam
14153
+ * @returns
14154
+ */
13941
14155
  private observableLocalCameras;
13942
14156
  /**
13943
14157
  * @example:
@@ -15551,6 +15765,10 @@ export declare class VhQuerySmhome {
15551
15765
  * @returns void
15552
15766
  */
15553
15767
  closeSyncCollections(): void;
15768
+ /**
15769
+ * VhQuerySmhome
15770
+ * @returns
15771
+ */
15554
15772
  private callbackCollectionInsert;
15555
15773
  private callbackCollectionUpdate;
15556
15774
  private callbackCollectionDelete;
@@ -17018,7 +17236,8 @@ export declare class VhQueryCafeWebAdmin {
17018
17236
  }, error=>{
17019
17237
  console.log('error', error);
17020
17238
  })
17021
- * @param data
17239
+ * @param id_product
17240
+ * @param id_product
17022
17241
  * @return Promise => object = {} hoặc null
17023
17242
  * Luu ý: chỉ có 2 trường hợp, hoặc là thêm thành công, hoặc là null
17024
17243
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ionic-vhframeworks",
3
- "version": "4.0.8",
3
+ "version": "4.1.1",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"