Browse Source

/需求单No.137672

master
xueyingcheng 8 years ago
parent
commit
2b08cbb520
3 changed files with 14 additions and 1 deletions
  1. +7
    -1
      BWP.B3_YunKen.Web/BWP.B3_YunKen.Web.csproj
  2. +3
    -0
      BWP.B3_YunKen.Web/Pages/B3YunKen/Overlays/SaleOutStoreEdit_Ext.cs
  3. +4
    -0
      BWP.B3_YunKen/TypeIoc/SaleOutStoreFreightBearTypeIoc.cs

+ 7
- 1
BWP.B3_YunKen.Web/BWP.B3_YunKen.Web.csproj View File

@ -178,7 +178,13 @@
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Pages\B3YunKen\ProductTask_\SaleOrderToProductNoticePage.xml" />
</ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Pages\B3YunKen\Reports\LogisticsAnalysisReport.xml">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">


+ 3
- 0
BWP.B3_YunKen.Web/Pages/B3YunKen/Overlays/SaleOutStoreEdit_Ext.cs View File

@ -30,6 +30,9 @@ namespace BWP.Web.Pages.B3YunKen.Overlays
config.Add("FreightUnitPrice");
config.Add("FreightPrice");
config.Add("FreightPayment");
//需求单No.137672 【销售出库】‘基本属性’增加字段{承运方}
config.Add("Carrier_ID");
}
protected override void AddLayOutManagerScript(LayoutManager layoutPanel)


+ 4
- 0
BWP.B3_YunKen/TypeIoc/SaleOutStoreFreightBearTypeIoc.cs View File

@ -10,6 +10,10 @@ namespace BWP.B3_YunKen.TypeIoc
public void GetFreightBear(Order order, SaleOutStore outstore)
{
outstore.FreightBear=order.FreightBear;
//需求单No.137672 【销售出库】‘基本属性’增加字段{承运方}
outstore.Carrier_ID = order.Carrier_ID;
outstore.Carrier_Name = order.Carrier_Name;
}
}
}

Loading…
Cancel
Save