ionic-vhframeworks 4.3.2 → 4.3.3
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/lib/ionic-vhframeworks.service.d.ts +5 -5
- package/package.json +1 -1
|
@@ -10777,17 +10777,17 @@ export declare class VhQuerySales {
|
|
|
10777
10777
|
/**
|
|
10778
10778
|
* @example:
|
|
10779
10779
|
* let print_page = this.vhQuerySales.getLocalPrintPage('page_desktop_sales');
|
|
10780
|
-
* @param
|
|
10780
|
+
* @param print_page_type
|
|
10781
10781
|
* @return Object => obj = {} or null
|
|
10782
10782
|
*/
|
|
10783
|
-
getLocalPrintPage(
|
|
10783
|
+
getLocalPrintPage(print_page_type: string): any;
|
|
10784
10784
|
/**
|
|
10785
10785
|
* @example:
|
|
10786
10786
|
* let pagesize = this.vhQuerySales.getLocalDefaultPageSize('page_desktop_sales');
|
|
10787
|
-
* @param
|
|
10787
|
+
* @param print_page_type
|
|
10788
10788
|
* @return Object => obj = {} or null
|
|
10789
10789
|
*/
|
|
10790
|
-
getLocalDefaultPageSize(
|
|
10790
|
+
getLocalDefaultPageSize(print_page_type: string): any;
|
|
10791
10791
|
/**
|
|
10792
10792
|
* @example:
|
|
10793
10793
|
* this.vhQuerySales.addPrintPage('page_desktop_sales', {name:'camera 2', quantity:20, price:200000})
|
|
@@ -10799,7 +10799,7 @@ export declare class VhQuerySales {
|
|
|
10799
10799
|
* @param data
|
|
10800
10800
|
* Promise => object = {} 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
|
|
10801
10801
|
*/
|
|
10802
|
-
addPrintPage(
|
|
10802
|
+
addPrintPage(print_page_type: string, data: any): Promise<unknown>;
|
|
10803
10803
|
/**
|
|
10804
10804
|
* @example:
|
|
10805
10805
|
* this.vhQuerySales.updatePrintPage('5fb6780ca2148e09806c5b01', {quantity:400})
|