ionic-vhframeworks 4.3.1 → 4.3.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 +8 -8
- package/package.json +1 -1
|
@@ -7817,7 +7817,7 @@ export declare class VhQuerySales {
|
|
|
7817
7817
|
private spending_groups;
|
|
7818
7818
|
private branchs;
|
|
7819
7819
|
private promotions;
|
|
7820
|
-
private
|
|
7820
|
+
private print_pages;
|
|
7821
7821
|
private printers;
|
|
7822
7822
|
private hwinfo;
|
|
7823
7823
|
private appsettingstations;
|
|
@@ -10776,7 +10776,7 @@ export declare class VhQuerySales {
|
|
|
10776
10776
|
private refreshLocalPrintPages;
|
|
10777
10777
|
/**
|
|
10778
10778
|
* @example:
|
|
10779
|
-
* let
|
|
10779
|
+
* let print_page = this.vhQuerySales.getLocalPrintPage('page_desktop_sales');
|
|
10780
10780
|
* @param page_type
|
|
10781
10781
|
* @return Object => obj = {} or null
|
|
10782
10782
|
*/
|
|
@@ -10791,8 +10791,8 @@ export declare class VhQuerySales {
|
|
|
10791
10791
|
/**
|
|
10792
10792
|
* @example:
|
|
10793
10793
|
* this.vhQuerySales.addPrintPage('page_desktop_sales', {name:'camera 2', quantity:20, price:200000})
|
|
10794
|
-
.then((
|
|
10795
|
-
console.log('addPrintPage',
|
|
10794
|
+
.then((print_page)=>{
|
|
10795
|
+
console.log('addPrintPage', print_page);
|
|
10796
10796
|
}, error=>{
|
|
10797
10797
|
console.log('error', error);
|
|
10798
10798
|
})
|
|
@@ -10808,16 +10808,16 @@ export declare class VhQuerySales {
|
|
|
10808
10808
|
}, error=>{
|
|
10809
10809
|
console.log('error', error);
|
|
10810
10810
|
})
|
|
10811
|
-
* @param
|
|
10811
|
+
* @param id_print_page
|
|
10812
10812
|
* @param data
|
|
10813
10813
|
* @return Promise => bool = true or false
|
|
10814
10814
|
*/
|
|
10815
|
-
updatePrintPage(
|
|
10815
|
+
updatePrintPage(id_print_page: string, data: object): Promise<unknown>;
|
|
10816
10816
|
/**
|
|
10817
10817
|
* @example
|
|
10818
10818
|
* this.vhQuerySales.getPrintPages()
|
|
10819
|
-
.then((
|
|
10820
|
-
console.log('getPrintPages',
|
|
10819
|
+
.then((print_pages)=>{
|
|
10820
|
+
console.log('getPrintPages', print_pages);
|
|
10821
10821
|
})
|
|
10822
10822
|
* @return array(object) = [{},{},..]
|
|
10823
10823
|
*/
|