ionic-vhframeworks 10.7.8 → 10.8.0

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.
@@ -611,6 +611,17 @@ export declare class VhAuth {
611
611
  * @returns Promise => rsp =string / error
612
612
  */
613
613
  getDVinfo(): Promise<unknown>;
614
+ /**
615
+ * Hàm lấy thông tin banner muốn hiển thị ở giao diện đầu tiên của phần mềm (giao diện signin)
616
+ * @example:
617
+ * this.vhAuth.getViethasPOS_Banner_Signin()
618
+ .then((str)=>{
619
+ }, error=>{
620
+ console.log(error)
621
+ })
622
+ * @returns Promise => rsp =string / error
623
+ */
624
+ getViethasPOS_Banner_Signin(): Promise<unknown>;
614
625
  /**
615
626
  * Nếu paymentIOS == true : cho phép hiển thị các chức năng liên quan đến thanh toán trên iphone, ipad. Ngược lại thì ko
616
627
  * lưu ý: hàm này chỉ dùng cho iphone và ipad
@@ -2816,6 +2827,20 @@ export declare class VhQueryCafe {
2816
2827
  * => true áp dụng cho toàn chi nhánh, false áp dụng riêng cho từng chi nhánh
2817
2828
  */
2818
2829
  getBranch_Management_Scope(): any;
2830
+ /**
2831
+ * Hàm này cấp nhật lại các trường trong phạm vi quản lý bán hàng trong cài đặt
2832
+ * @example:
2833
+ * this.vhQueryCafe.updateBranch_Management_Scope({product_scope:1, employee_scope:1, customer_scope:1, supplier_scope:1, sales_program_scope:2})
2834
+ .then(()=>{
2835
+ console.log('updateBranch_Management_Scope');
2836
+ }, error=>{
2837
+ reject(error);
2838
+ })
2839
+ * @param value = {product_scope, employee_scope, customer_scope, supplier_scope, sales_program_scope}
2840
+ * true áp dụng cho toàn chi nhánh, false áp dụng riêng cho từng chi nhánh
2841
+ * @return Promise => udefined/error
2842
+ */
2843
+ updateBranch_Management_Scope(value: any): Promise<unknown>;
2819
2844
  /**
2820
2845
  * @description: hàm này lấy về những hạn chế của gói main_package trong localstorage
2821
2846
  * @example
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ionic-vhframeworks",
3
- "version": "10.7.8",
3
+ "version": "10.8.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.2.0",
6
6
  "@angular/core": "^12.2.0"