zm
2020-08-19 d75ce097cb1ee766791f1d5d9d946790adb86cab
src/web/Public/Scripts/PSI/Goods/GoodsWithSalePriceField.js
@@ -8,6 +8,7 @@
  config: {
    parentCmp: null,
    editCustomerName: null,
    editWarehouseName: null,
    showAddButton: false
  },
@@ -52,7 +53,7 @@
    Ext.define(modelName, {
      extend: "Ext.data.Model",
      fields: ["id", "code", "name", "spec", "unitName",
        "salePrice", "memo", "priceSystem", "taxRate"]
        "salePrice", "memo", "priceSystem", "taxRate", "invCnt"]
    });
    var store = Ext.create("Ext.data.Store", {
@@ -80,6 +81,12 @@
        dataIndex: "spec",
        menuDisabled: true,
        flex: 1
      }, {
        header: "当前库存",
        dataIndex: "invCnt",
        menuDisabled: true,
        align: "right",
        width: 100
      }, {
        header: "单位",
        dataIndex: "unitName",
@@ -120,17 +127,17 @@
      handler: me.onOK,
      scope: me
    }, {
        text: "取消",
        handler: function () {
          wnd.close();
        }
      });
      text: "取消",
      handler: function () {
        wnd.close();
      }
    });
    var wnd = Ext.create("Ext.window.Window", {
      title: "选择 - 商品",
      header: false,
      border: 0,
      width: 950,
      width: 1050,
      height: 300,
      layout: "border",
      items: [{
@@ -182,6 +189,12 @@
      customerId = editCustomer.getIdValue();
    }
    var warehouseId = null;
    var editWarehouse = Ext.getCmp(me.getEditWarehouseName());
    if (editWarehouse) {
      warehouseId = editWarehouse.getIdValue();
    }
    wnd.on("close", function () {
      me.focus();
    });
@@ -199,7 +212,8 @@
          + "Home/Goods/queryDataWithSalePrice",
        params: {
          queryKey: editName.getValue(),
          customerId: customerId
          customerId: customerId,
          warehouseId: warehouseId
        },
        method: "POST",
        callback: function (opt, success, response) {