Unverified Commit e53b260b authored by Ruslan Konviser's avatar Ruslan Konviser Committed by GitHub
Browse files

Merge pull request #1214 from ever-co/feat/#21-product-unavailable

feat: impl prod unavailable func in merchant
parents 04b2b016 dfa76391
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ export class IsAvailableCheckBox implements ViewCell, OnInit {
		this.isChecked = this.rowData.isProductAvailable;
		this.wareHouseId = this.rowData.storeId;
		this.productId = this.rowData.product.id;
		console.warn(this.rowData);
	}

	async clickHandler() {
+1 −1
Original line number Diff line number Diff line
{
	"name": "@ever-platform/merchant-tablet-ionic",
	"version": "0.3.0",
	"version": "0.3.1",
	"description": "Ever Merchant Tablet App",
	"license": "AGPL-3.0",
	"homepage": "https://ever.co",
+2 −1
Original line number Diff line number Diff line
@@ -309,7 +309,8 @@
			"BULGARIAN": "Български",
			"OPTIONAL": "по избор",
			"DELIVERY": "Доставка",
			"TAKEAWAY": "Вземи на място"
			"TAKEAWAY": "Вземи на място",
			"PRODUCT_AVAILABILITY": "Наличност на продукта"
		},
		"NEW_ORDER_VIEW": {
			"NEW_MANUAL_ORDER": "Нова ръчна поръчка",
+2 −1
Original line number Diff line number Diff line
@@ -309,7 +309,8 @@
			"BULGARIAN": "Български",
			"OPTIONAL": "по избор",
			"DELIVERY": "Доставка",
			"TAKEAWAY": "Вземи на място"
			"TAKEAWAY": "Вземи на място",
			"PRODUCT_AVAILABILITY": "Наличност на продукта"
		},
		"NEW_ORDER_VIEW": {
			"NEW_MANUAL_ORDER": "Нова ръчна поръчка",
+2 −1
Original line number Diff line number Diff line
@@ -312,7 +312,8 @@
			"BULGARIAN": "Bulgarian",
			"OPTIONAL": "optional",
			"TAKEAWAY": "Takeaway",
			"DELIVERY": "Delivery"
			"DELIVERY": "Delivery",
			"PRODUCT_AVAILABILITY": "Product availability"
		},
		"NEW_ORDER_VIEW": {
			"NEW_MANUAL_ORDER": "New Manual Order",
Loading