|
|
@@ -0,0 +1,77 @@
|
|
|
+<wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
|
|
|
+<view>
|
|
|
+
|
|
|
+ <view class="detail-top">
|
|
|
+ <image class="scan-image" fit="fill" src="{{imageUrl+'/detail_sale_order.png'}}"></image>
|
|
|
+ <view class="detail-top-sup" style="display: flex;">
|
|
|
+ <view style="width: 15%;">
|
|
|
+ <image class="scan-image-icon" fit="fill" src="{{imageUrl+'/order_billing_detail_01.png'}}"></image>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view>
|
|
|
+ <view style="display: flex;">
|
|
|
+ <view>
|
|
|
+ {{item.cusName}}
|
|
|
+ </view>
|
|
|
+ <view style="padding-left: 20rpx;">
|
|
|
+ {{item.cusPhone}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <view style="z-index: 2;padding-top: 20rpx;">
|
|
|
+ {{ wxmlUtil.addressToIndexOf(item.addressFull)}}
|
|
|
+ </view>
|
|
|
+ <view style="display: flex;padding-top: 20rpx;font-weight: 500;">
|
|
|
+ <view>
|
|
|
+ {{item.staffName}}
|
|
|
+ </view>
|
|
|
+ <view style="padding-left: 20rpx;">|</view>
|
|
|
+ <view style="padding-left: 20rpx;">
|
|
|
+ {{item.orgName}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view style="z-index: 10;padding-top: 40rpx;font-size: 24rpx;font-weight: 400;">
|
|
|
+ 销售日期:{{ wxmlUtil.formatDate(item.makeTime)}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+ <view style="display: flex;padding:10rpx; margin: 10px 22rpx 10px 22rpx;margin-top: 10px;border-radius: 15rpx;">
|
|
|
+ <view style="background-color:#F4F9FF;width:25%;padding:10rpx;border-radius: 16rpx;">
|
|
|
+ <view style="font-size:13px;text-align: center;margin-top: 10rpx;">订单数量</view>
|
|
|
+ <dk-cell left="0rpx" center="center" fontSize="13" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{false}}" content="{{item.sumQuantity}}"></dk-cell>
|
|
|
+ </view>
|
|
|
+ <view style="background-color:#F4F9FF;width: 25%;padding:10rpx;border-radius: 16rpx;margin-left: 20rpx;">
|
|
|
+ <view style="font-size:13px;text-align: center;margin-top: 10rpx;">销售出库</view>
|
|
|
+ <dk-cell left="0rpx" center="center" fontSize="15" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{false}}" content="{{item.outQty}}"></dk-cell>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view style="background-color:#F4F9FF;width:25%;padding:10rpx;border-radius: 16rpx;">
|
|
|
+ <view style="font-size:13px;text-align: center;margin-top: 10rpx;">退货数量</view>
|
|
|
+ <dk-cell left="0rpx" center="center" fontSize="13" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{false}}" content="{{item.returnQty}}"></dk-cell>
|
|
|
+ </view>
|
|
|
+ <view style="background-color:#F4F9FF;width: 25%;padding:10rpx;border-radius: 16rpx;margin-left: 20rpx;">
|
|
|
+ <view style="font-size:13px;text-align: center;margin-top: 10rpx;">销售回库</view>
|
|
|
+ <dk-cell left="0rpx" center="center" fontSize="15" contentFontSize="18" contentColor="#1B365D" spaceWidth="0" contentFontWeight="700" amount="{{false}}" content="{{0}}"></dk-cell>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <dk-goos-list type="sale" list="{{saleList}}" title="商品明细" titleCol="skuName" titleTagCol="brandName" descCol="skuCode" priceCol="priceSale" sumAmountCol="sumAmount" sumQuantity="sumQuantity" quantityCol="itemQty"></dk-goos-list>
|
|
|
+
|
|
|
+ <dk-goos-list list="{{saleOutList}}" no="no" title="销售出库" titleCol="skuName" titleTagCol="brandName" descCol="skuCode" priceCol="priceSale" quantityCol="itemQty"></dk-goos-list>
|
|
|
+
|
|
|
+ <dk-goos-list list="{{saleReturnList}}" no="no" title="销售退货" titleCol="skuName" titleTagCol="brandName" descCol="skuCode" priceCol="priceSale" quantityCol="itemQty"></dk-goos-list>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</view>
|