ionic-vhframeworks 3.4.8 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ionic-vhframeworks.umd.js +1 -1
- package/bundles/ionic-vhframeworks.umd.js.map +1 -1
- package/bundles/ionic-vhframeworks.umd.min.js +1 -1
- package/bundles/ionic-vhframeworks.umd.min.js.map +1 -1
- package/fesm2015/ionic-vhframeworks.js.map +1 -1
- package/ionic-vhframeworks.metadata.json +1 -1
- package/lib/ionic-vhframeworks.service.d.ts +48 -4
- package/package.json +1 -1
|
@@ -982,6 +982,7 @@ export declare class VhQueryCafe {
|
|
|
982
982
|
private subjecttaxs;
|
|
983
983
|
private subjectareas;
|
|
984
984
|
private subjecttables;
|
|
985
|
+
private callbackdispatcher;
|
|
985
986
|
/**
|
|
986
987
|
* @Nghiệp vụ tạo (bill_type 5->1), hủy đơn hàng bán món ăn (dùng hàm)
|
|
987
988
|
* {createBill, getBill} -> {createBill_detail, updateBill_detail, deleteBill_detail} -> {saveBill_Billdetail, deleteBill_Billdetail}
|
|
@@ -1041,7 +1042,6 @@ export declare class VhQueryCafe {
|
|
|
1041
1042
|
*/
|
|
1042
1043
|
sendImageToAppCare(image: string): Promise<unknown>;
|
|
1043
1044
|
startLocalStorage(): Promise<any>;
|
|
1044
|
-
callbackdispatcher: any;
|
|
1045
1045
|
observableDispatcher(ptype: any): Observable<any>;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* @example:
|
|
@@ -4228,6 +4228,7 @@ export declare class VhQueryCloudCam {
|
|
|
4228
4228
|
private callbackCollectionDelete;
|
|
4229
4229
|
startLocalStorage(): Promise<any>;
|
|
4230
4230
|
/**
|
|
4231
|
+
* 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
|
|
4231
4232
|
* lấy về clientRTSPURL cộng với rtspID nhận từ Cloudcam Box, APP sẽ đăng ký camera này lên Clouds, nếu thành công sẽ nhận đc licensecam
|
|
4232
4233
|
* lấy về serverRTSPURL, APP gửi serverRTSPURL cho Cloudcam Box, Box dùng send video của từng camera lên RTSP Server
|
|
4233
4234
|
* lấy về _id truyền vô hàm addCloudCamBoxByEndUser để đăng ký camera này lên Clouds
|
|
@@ -6512,7 +6513,49 @@ export declare class VhEcommerce {
|
|
|
6512
6513
|
private vhmongo_firebase;
|
|
6513
6514
|
private productlistshopees;
|
|
6514
6515
|
private shoplistshopee;
|
|
6516
|
+
private lazadapricecomparinglist;
|
|
6517
|
+
private tikipricecomparinglist;
|
|
6518
|
+
private sendopricecomparinglist;
|
|
6519
|
+
private shopeepricecomparinglist;
|
|
6520
|
+
private callbacklazadapricecomparing;
|
|
6515
6521
|
constructor(vhmongo_firebase: Vhmongo_firebase);
|
|
6522
|
+
/**
|
|
6523
|
+
* @example:
|
|
6524
|
+
* this.vhEcommerce.observableLazadaPriceComparing('5fb6780ca2148e09806c5b01')
|
|
6525
|
+
.subscribe((data)=> {
|
|
6526
|
+
console.log('observableLazadaPriceComparing', data);
|
|
6527
|
+
},(error:any) => {
|
|
6528
|
+
console.log(error);
|
|
6529
|
+
})
|
|
6530
|
+
* @param id_branch
|
|
6531
|
+
* @returns Observable =>
|
|
6532
|
+
*/
|
|
6533
|
+
observableLazadaPriceComparing(id_branch: string): Observable<unknown>;
|
|
6534
|
+
/**
|
|
6535
|
+
* @example:
|
|
6536
|
+
* this.vhEcommerce.closeLazadaPriceComparing();
|
|
6537
|
+
* disconnect LazadaPriceComparing in the APP
|
|
6538
|
+
* @returns void
|
|
6539
|
+
*/
|
|
6540
|
+
closeLazadaPriceComparing(): void;
|
|
6541
|
+
/**
|
|
6542
|
+
* let lazadapricecomparinglist = this.vhEcommerce.getLocalLazadaPriceComparing();
|
|
6543
|
+
* @returns Array
|
|
6544
|
+
*/
|
|
6545
|
+
getLocalLazadaPriceComparing(): any;
|
|
6546
|
+
/**
|
|
6547
|
+
* @example:
|
|
6548
|
+
* this.vhEcommerce.restartEcommercePriceComparingMACHINE('5fb6780ca2148e09806c5b01')
|
|
6549
|
+
.then((bool)=>{
|
|
6550
|
+
console.log('restartEcommercePriceComparingMACHINE', bool);
|
|
6551
|
+
}, error=>{
|
|
6552
|
+
console.log('error', error);
|
|
6553
|
+
})
|
|
6554
|
+
* @param id_billdetail
|
|
6555
|
+
* @param data
|
|
6556
|
+
* @return Promise => bool = true or false
|
|
6557
|
+
*/
|
|
6558
|
+
restartEcommercePriceComparingMACHINE(): Promise<unknown>;
|
|
6516
6559
|
/**
|
|
6517
6560
|
* Lấy về tất cả các shops lazada, sendo, tiki, shopee, dùng trong cấu hình gian hàng
|
|
6518
6561
|
* @example:
|
|
@@ -7122,9 +7165,10 @@ export declare class VhQuerySales {
|
|
|
7122
7165
|
<Product>
|
|
7123
7166
|
<Skus>
|
|
7124
7167
|
<Sku>
|
|
7125
|
-
<
|
|
7126
|
-
<
|
|
7127
|
-
<
|
|
7168
|
+
<ItemId>383144083</ItemId>
|
|
7169
|
+
<SkuId>647304827</SkuId>
|
|
7170
|
+
<SellerSku>ThietBiBaoDongChongTromHongNgoaiHT1AS</SellerSku>
|
|
7171
|
+
<price>268000</price>
|
|
7128
7172
|
</Sku>
|
|
7129
7173
|
</Skus>
|
|
7130
7174
|
</Product>
|